:root {
  color-scheme: light;
  --ink: #16201b;
  --muted: #5f6b63;
  --line: #d8ded9;
  --paper: #f7f5ef;
  --white: #ffffff;
  --green: #052117;
  --green-soft: #dfe9df;
  --copper: #a86638;
  --rose: #b7606b;
  --shadow: 0 20px 50px rgba(13, 25, 18, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(247, 245, 239, 0.92);
  border-bottom: 1px solid rgba(22, 32, 27, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a,
.lang-toggle,
.call-link,
.route-link,
.primary-btn,
.secondary-btn,
.service-detail a,
.source-card a,
.mobile-cta a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-links a {
  padding: 0 12px;
}

.nav-links a:hover,
.secondary-btn:hover,
.source-card a:hover {
  background: var(--green-soft);
}

.actions {
  display: inline-flex;
  gap: 8px;
}

.lang-toggle {
  width: 46px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green);
  cursor: pointer;
}

.call-link,
.route-link,
.primary-btn,
.service-detail a,
.mobile-cta a:first-child {
  padding: 0 16px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.call-link:hover,
.route-link:hover,
.primary-btn:hover,
.service-detail a:hover,
.mobile-cta a:first-child:hover {
  transform: translateY(-1px);
  background: #0d3728;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 66px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: end;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(90px, 12vw, 150px) clamp(18px, 5vw, 72px) clamp(28px, 5vw, 60px);
  overflow: clip;
  background: var(--green);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 33, 23, 0.94), rgba(5, 33, 23, 0.70) 42%, rgba(5, 33, 23, 0.20));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content,
.fact-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.23rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.primary-btn,
.secondary-btn {
  padding: 0 20px;
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.10);
  color: var(--white);
  font-weight: 800;
}

.secondary-btn.light {
  border-color: var(--line);
  background: var(--white);
  color: var(--green);
}

.fact-panel {
  display: grid;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.fact-panel div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.fact-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.fact-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.fact-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 1.02rem;
}

.fact-panel small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 86px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro p:last-child,
.visit-copy p,
.proof-card p,
.source-card li,
.service-detail p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.services,
.visit,
.proof {
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.service-tab {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.service-tab.is-active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 170px;
  padding: clamp(18px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(13, 25, 18, 0.07);
}

.service-detail h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  gap: clamp(22px, 5vw, 58px);
  align-items: start;
}

.visit-planner,
.source-card,
.proof-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(13, 25, 18, 0.07);
}

.visit-planner {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.visit-planner label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.visit-planner select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf6;
  color: var(--ink);
}

.planner-output {
  min-height: 104px;
  padding: 14px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green);
  line-height: 1.55;
  font-weight: 750;
}

.visit-actions {
  display: grid;
  gap: 10px;
}

.full {
  width: 100%;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 18px;
}

.proof-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.proof-card img {
  width: 150px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.source-card {
  padding: 24px;
}

.source-card ul {
  margin: 18px 0;
  padding-left: 20px;
}

.source-card a {
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--green);
  font-weight: 850;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px) 90px;
  background: var(--green);
  color: rgba(255, 255, 255, 0.86);
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 850;
  color: var(--white);
}

.mobile-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 30;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-cta a:last-child {
  background: var(--green-soft);
  color: var(--green);
  font-weight: 850;
}

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

  .brand span {
    white-space: normal;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 760px;
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 104px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(5, 33, 23, 0.54), rgba(5, 33, 23, 0.95) 54%, rgba(5, 33, 23, 0.98));
  }

  .hero-content {
    align-self: end;
  }

  .fact-panel {
    align-self: end;
  }

  .intro,
  .visit,
  .proof,
  .service-detail,
  .proof-card {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .service-tabs {
    grid-template-columns: 1fr;
  }

  .service-detail a {
    width: 100%;
  }

  .footer {
    display: block;
  }

  .footer a {
    display: inline-block;
    margin-top: 12px;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 460px) {
  .site-header {
    padding-inline: 12px;
  }

  .actions {
    gap: 6px;
  }

  .route-link {
    display: none;
  }

  .call-link {
    padding-inline: 12px;
  }

  .hero {
    padding-inline: 14px;
  }

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

  .hero-actions a {
    width: 100%;
  }

  .section {
    width: min(100% - 28px, 1120px);
  }
}
