:root {
  color-scheme: light;
  --ink: #172126;
  --muted: #58666d;
  --paper: #f7f6f1;
  --surface: #ffffff;
  --line: #d8ddd6;
  --green: #1f5c45;
  --green-dark: #143b31;
  --brick: #a64d3d;
  --blue: #2f5160;
  --gold: #c49a4a;
  --shadow: 0 18px 45px rgba(16, 28, 32, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  border-radius: 6px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 2rem;
  background: rgba(247, 246, 241, 0.96);
  border-bottom: 1px solid rgba(23, 33, 38, 0.1);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  text-decoration: none;
}

.brand strong {
  display: block;
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a.is-active {
  color: var(--green-dark);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 2px;
  background: var(--green);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 8px;
  background: var(--green-dark);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.quick-contact-bar {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-media,
.hero-image,
.hero-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  display: block;
}

.hero-image {
  position: static;
  object-fit: cover;
  object-position: center 42%;
}

.hero-cover {
  background: rgba(10, 24, 26, 0.58);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 7rem 2rem 4.5rem;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--brick);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3ca77;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 4.4rem;
  line-height: 1.02;
  hyphens: auto;
  overflow-wrap: break-word;
}

.hero-lead {
  max-width: 720px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.18rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(16, 28, 32, 0.15);
}

.button-primary {
  background: var(--gold);
  color: #111a1d;
}

.button-secondary {
  background: var(--green);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--green-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 3rem 0 0;
  padding: 0;
}

.hero-facts div {
  min-width: 150px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0.1rem 0 0;
  font-weight: 800;
}

.info-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.content-grid,
.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 2rem;
}

.info-grid p {
  margin: 0;
  padding: 1.25rem 1rem;
  border-left: 1px solid var(--line);
}

.info-grid p:last-child {
  border-right: 1px solid var(--line);
}

.info-grid strong,
.info-grid span {
  display: block;
}

.info-grid span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 5rem 2rem;
  background: var(--surface);
}

.section-muted {
  background: #eef2ee;
}

.photo-section {
  background: #f7f6f1;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section h2,
.price-band h2,
.contact-section h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.12;
  hyphens: auto;
  overflow-wrap: break-word;
}

.section-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.photo-card {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe8e2;
  box-shadow: var(--shadow);
}

.photo-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
}

.photo-card-large picture,
.photo-card-large img {
  min-height: 516px;
}

.photo-card figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: rgba(17, 26, 29, 0.78);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
}

.target-card,
.equipment-panel,
.contact-card,
.request-form,
.price-box,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.target-card {
  padding: 1.25rem;
}

.target-card h3,
.equipment-panel h3 {
  margin: 1rem 0 0.55rem;
  font-size: 1.08rem;
}

.target-card p,
.equipment-panel p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.icon-badge {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: #e5efe8;
  color: var(--green);
}

.icon-badge svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.two-column,
.location-layout,
.contact-layout,
.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 3rem;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  left: 0;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 3px;
  background: var(--green);
  box-shadow: inset 0 0 0 3px #dbe8de;
}

.equipment-panel {
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0 1.2rem;
}

.equipment-list span {
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  background: #eef2ee;
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.distance-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 1.7rem;
}

.distance-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.distance-list dt {
  font-weight: 800;
}

.distance-list dd {
  margin: 0;
  color: var(--muted);
}

.map-figure {
  margin: 0;
}

.map-figure img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.map-figure figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-band {
  padding: 4rem 2rem;
  background: var(--green-dark);
  color: #fff;
}

.price-band .eyebrow {
  color: #f3ca77;
}

.price-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
}

.price-box {
  padding: 1.4rem;
  color: var(--ink);
}

.price-box strong,
.price-box span {
  display: block;
}

.price-box strong {
  font-size: 2rem;
}

.price-box span {
  margin-bottom: 1rem;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  padding: 1rem 1.15rem;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq-list p {
  margin-top: 0.7rem;
}

.contact-section {
  background: var(--surface);
}

.contact-card {
  display: grid;
  gap: 0.25rem;
  max-width: 380px;
  margin-top: 1.5rem;
  padding: 1.25rem;
  font-style: normal;
}

.contact-card a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.request-form {
  display: grid;
  gap: 1rem;
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field-group {
  display: grid;
  gap: 0.35rem;
}

.field-group label {
  font-weight: 800;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.75rem;
  border: 1px solid #cbd2cb;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.field-group textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 2rem;
  background: #111a1d;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2rem;
  align-items: center;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-inner p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner nav {
  display: flex;
  gap: 1rem;
}

.footer-inner a {
  color: #fff;
  text-decoration: none;
}

.footer-copy {
  white-space: nowrap;
}

.legal-page {
  background: var(--surface);
}

.site-nav-static {
  justify-content: flex-end;
}

.legal-main {
  padding: 4rem 2rem;
}

.legal-content {
  width: min(100%, 820px);
  margin: 0 auto;
}

.legal-content h1 {
  margin: 0 0 1.5rem;
  font-size: 3rem;
  line-height: 1.05;
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.legal-content p {
  color: var(--muted);
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.8rem;
    border-radius: 6px;
  }

  .site-nav a:hover,
  .site-nav a:focus {
    background: #eef2ee;
  }

  .site-nav a.is-active::after {
    display: none;
  }

  .site-nav-static {
    position: static;
    display: flex;
    flex-direction: row;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .target-grid,
  .info-grid,
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-card-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .photo-card-large img {
    min-height: 360px;
  }

  .two-column,
  .location-layout,
  .contact-layout,
  .price-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 64px;
  }

  .site-header {
    padding: 0.75rem 1rem;
    grid-template-columns: 1fr auto;
  }

  .brand small,
  .header-phone,
  .site-nav-static {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding: 5.5rem 1.1rem 3rem;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quick-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(23, 33, 38, 0.16);
    background: #fff;
    box-shadow: 0 -12px 28px rgba(16, 28, 32, 0.14);
  }

  .quick-contact-bar a {
    display: grid;
    min-height: 58px;
    place-items: center;
    color: var(--green-dark);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
  }

  .quick-contact-bar a + a {
    border-left: 1px solid var(--line);
  }

  .quick-contact-bar a:nth-child(2) {
    background: var(--green);
    color: #fff;
  }

  .hero-facts {
    margin-top: 2rem;
  }

  .hero-facts div {
    flex: 1 1 100%;
  }

  .section,
  .price-band,
  .legal-main {
    padding: 3.2rem 1rem;
  }

  .section h2,
  .price-band h2,
  .contact-section h2 {
    font-size: 2rem;
  }

  .target-grid,
  .info-grid,
  .photo-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .photo-card-large {
    grid-column: span 1;
  }

  .photo-card,
  .photo-card img,
  .photo-card-large img {
    min-height: 260px;
  }

  .info-grid p,
  .info-grid p:last-child {
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .distance-list div,
  .form-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-inner nav {
    flex-wrap: wrap;
  }

  .legal-content h1 {
    font-size: 2.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
