:root {
  --ink: #17231d;
  --green: #18362a;
  --green-deep: #10271e;
  --green-soft: #dce8df;
  --gold: #bf9255;
  --gold-light: #e3c79e;
  --paper: #f8f5ef;
  --white: #fffdf8;
  --line: #ded9cf;
  --muted: #606b65;
  --shadow: 0 24px 70px rgba(18, 37, 29, 0.12);
  --shell: min(1180px, calc(100% - 48px));
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
a { -webkit-tap-highlight-color: transparent; }

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: 10px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--white);
  color: var(--green);
  font-weight: 750;
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid rgba(23, 35, 29, 0.1);
  background: rgba(248, 245, 239, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  flex: none;
  color: var(--green);
  font-family: var(--serif);
  font-size: clamp(1.28rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
}

.brand span { color: var(--gold); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
  margin-left: auto;
}

.primary-nav a {
  color: #39463f;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible { color: var(--green); }

.header-call {
  padding: 10px 15px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-call:hover,
.header-call:focus-visible {
  background: var(--green);
  color: var(--white);
}

.hero {
  overflow: hidden;
  padding: 72px 0 86px;
  background:
    radial-gradient(circle at 74% 22%, rgba(191, 146, 85, 0.13), transparent 28%),
    linear-gradient(180deg, #f8f5ef 0%, #f4efe6 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: clamp(44px, 6vw, 86px);
}

.eyebrow {
  margin: 0 0 18px;
  color: #7d6039;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 690px;
  color: var(--green-deep);
  font-size: clamp(3.5rem, 6.8vw, 6.35rem);
}

.hero h1 em {
  color: var(--gold);
  font-weight: inherit;
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #425048;
  font-size: clamp(1.05rem, 1.6vw, 1.23rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }

.button-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(24, 54, 42, 0.17);
}

.button-primary:hover,
.button-primary:focus-visible { background: var(--green-deep); }

.button-secondary {
  border-color: #b9b4aa;
  background: rgba(255, 253, 248, 0.45);
  color: var(--green);
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 21px;
  margin: 30px 0 0;
  padding: 0;
  color: #4e5a53;
  font-size: 0.78rem;
  font-weight: 750;
  list-style: none;
}

.proof-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 8px 1px 0;
  border-radius: 50%;
  background: var(--gold);
}

.hero-media {
  position: relative;
  margin: 0;
  border-radius: 3px 66px 3px 3px;
  box-shadow: var(--shadow);
}

.hero-media::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 48%, rgba(10, 29, 21, 0.58) 100%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  min-height: 500px;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

.hero-media figcaption {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 25px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  color: var(--white);
}

.hero-media figcaption span {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.hero-media figcaption strong {
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.section { padding: 112px 0; }

.section-soft { background: #eeebe4; }

.section-dark {
  background: var(--green-deep);
  color: var(--white);
}

.section h2,
.contact h2 {
  color: var(--green-deep);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(60px, 9vw, 130px);
}

.intro-copy {
  padding-top: 30px;
  color: var(--muted);
}

.intro-copy p { margin: 0; }

.intro-copy p + p { margin-top: 20px; }

.large-copy {
  color: #334039;
  font-size: clamp(1.13rem, 1.8vw, 1.35rem);
  line-height: 1.65;
}

.assessment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  gap: clamp(50px, 7vw, 96px);
  align-items: center;
}

.assessment-image {
  margin: 0;
  overflow: hidden;
  border-radius: 4px 4px 56px 4px;
  box-shadow: 0 20px 54px rgba(23, 35, 29, 0.13);
}

.assessment-image img {
  width: 100%;
  min-height: 580px;
  object-fit: cover;
}

.assessment-content h2 { max-width: 620px; }

.assessment-list {
  margin-top: 44px;
  border-top: 1px solid #d1ccc2;
}

.assessment-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 23px 0;
  border-bottom: 1px solid #d1ccc2;
}

.assessment-list article > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
}

.assessment-list h3,
.treatment-card h3,
.process-list h3 {
  margin: 0;
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.assessment-list p,
.treatment-card p,
.process-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.treatment-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 30px 27px;
  border: 1px solid var(--line);
  border-radius: 3px 3px 34px 3px;
  background: rgba(255, 253, 248, 0.66);
}

.treatment-card.featured {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.card-number {
  display: block;
  margin-bottom: 70px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.treatment-card.featured h3,
.treatment-card.featured p { color: var(--white); }

.treatment-card p { line-height: 1.65; }

.treatment-card .card-fit {
  margin-top: auto;
  padding-top: 26px;
  color: #5a675f;
  font-size: 0.78rem;
  font-weight: 750;
}

.treatment-card.featured .card-fit { color: var(--gold-light); }

.guidance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  grid-template-rows: auto auto;
  gap: 34px clamp(50px, 8vw, 120px);
  align-items: end;
}

.eyebrow-light { color: var(--gold-light); }

.guidance-copy {
  padding: 20px 0;
}

.guidance-copy h2,
.contact h2 { color: var(--white); }

.guidance-copy p:not(.eyebrow) {
  max-width: 670px;
  margin: 30px 0 0;
  color: #d1dcd5;
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 28px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 850;
  text-decoration: none;
}

.text-link span { color: var(--gold); }

.text-link-light { color: var(--white); }

.guidance-image {
  grid-row: 1 / 3;
  grid-column: 2;
  margin: 0;
  overflow: hidden;
  border-radius: 52px 3px 3px 3px;
}

.guidance-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center;
}

.guidance-note {
  max-width: 570px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.guidance-note strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.guidance-note p {
  margin: 7px 0 0;
  color: #b8c5be;
  font-size: 0.9rem;
}

.process-heading h2 { max-width: 780px; }

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 80px minmax(190px, 0.5fr) minmax(300px, 0.9fr);
  gap: 28px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}

.process-list li > div {
  display: contents;
}

.process-list p { margin: 0; }

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.7fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.area-grid .large-copy { margin: 28px 0 0; }

.place-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 20px;
  border: 1px solid #d3cec4;
  border-radius: 4px 48px 4px 4px;
  background: rgba(255, 253, 248, 0.5);
}

.place-panel span {
  padding: 17px 12px;
  border-bottom: 1px solid #d8d3c9;
  color: #39473f;
  font-family: var(--serif);
  font-size: 1.12rem;
}

.place-panel span:nth-child(odd) { border-right: 1px solid #d8d3c9; }

.place-panel span:nth-last-child(-n + 2) { border-bottom: 0; }

.sister-site { padding-bottom: 0; }

.sister-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
  padding: clamp(36px, 6vw, 66px);
  border: 1px solid #d8c4a3;
  border-radius: 4px 48px 4px 4px;
  background: #efe1cb;
}

.sister-card h2 {
  max-width: 830px;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.sister-card p:not(.eyebrow) {
  max-width: 780px;
  margin: 24px 0 0;
  color: #526058;
}

.sister-card .button { white-space: nowrap; }

.contact {
  background: var(--paper);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.7fr);
  gap: 58px 80px;
  padding: clamp(42px, 7vw, 82px);
  border-radius: 4px 64px 4px 4px;
  background: var(--green);
  box-shadow: var(--shadow);
  color: var(--white);
}

.contact-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: #d6e0da;
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.contact-actions a {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px 20px 4px 4px;
  background: rgba(255, 255, 255, 0.07);
  text-decoration: none;
}

.contact-actions a:hover,
.contact-actions a:focus-visible { background: rgba(255, 255, 255, 0.13); }

.contact-actions small {
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-actions strong {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 600;
}

.contact-company {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #b9c8c0;
  font-size: 0.76rem;
}

.contact-company span:first-child { color: var(--white); font-weight: 800; }

.site-footer {
  padding: 72px 0 28px;
  background: #0b1d16;
  color: #aebdb5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 0.6fr;
  gap: 60px;
}

.brand-footer { color: var(--white); }

.footer-grid p {
  max-width: 430px;
  margin: 20px 0 0;
  font-size: 0.9rem;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) a {
  display: block;
  margin-top: 8px;
  color: #d4ddd8;
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus-visible { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.73rem;
}

.mobile-call { display: none; }

.privacy-page {
  min-height: 100vh;
  background: var(--paper);
}

.privacy-main {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0 120px;
}

.privacy-main h1 {
  margin: 24px 0 32px;
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.privacy-main h2 {
  margin: 42px 0 10px;
  color: var(--green-deep);
  font-family: var(--serif);
  font-size: 1.5rem;
}

.privacy-main p,
.privacy-main li { color: #526058; }

.privacy-main .back-link {
  display: inline-flex;
  margin-top: 42px;
  color: var(--green);
  font-weight: 800;
}

.privacy-page .header-call { margin-left: auto; }

.error-code { margin-top: 48px; }

:focus-visible {
  outline: 3px solid #d39b50;
  outline-offset: 4px;
}

@media (max-width: 1040px) {
  .primary-nav { display: none; }
  .header-call { margin-left: auto; }

  .hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-media img { min-height: 450px; }

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

  .guidance-grid { grid-template-columns: 1fr 0.7fr; }

  .area-grid { gap: 60px; }
}

@media (max-width: 760px) {
  :root { --shell: min(100% - 32px, 620px); }

  html { scroll-padding-top: 68px; }

  body { padding-bottom: 58px; }

  .header-inner { min-height: 66px; }

  .header-call {
    padding: 8px 12px;
    font-size: 0.78rem;
  }

  .header-call span { display: none; }

  .hero { padding: 48px 0 66px; }

  .hero-grid { gap: 42px; }

  .hero h1 { font-size: clamp(3.15rem, 15vw, 5rem); }

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

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-media { border-radius: 3px 38px 3px 3px; }

  .hero-media img { min-height: 360px; }

  .hero-media figcaption {
    right: 18px;
    bottom: 17px;
    left: 18px;
  }

  .hero-media figcaption strong { display: none; }

  .section { padding: 80px 0; }

  .intro-grid,
  .assessment-grid,
  .section-heading,
  .guidance-grid,
  .area-grid,
  .sister-card,
  .contact-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .assessment-grid,
  .section-heading,
  .area-grid { gap: 38px; }

  .intro-copy { padding-top: 0; }

  .assessment-image img { min-height: 390px; }

  .section-heading { align-items: start; }

  .treatment-grid { grid-template-columns: 1fr; }

  .treatment-card { min-height: 310px; }

  .card-number { margin-bottom: 42px; }

  .guidance-grid { gap: 42px; }

  .guidance-image {
    grid-row: auto;
    grid-column: auto;
  }

  .guidance-image img { height: 520px; }

  .process-list li {
    grid-template-columns: 48px 1fr;
    gap: 15px;
    align-items: start;
  }

  .process-list li > div {
    display: block;
  }

  .process-list p { margin-top: 8px; }

  .place-panel { padding: 12px; }

  .place-panel span { padding: 14px 9px; font-size: 1rem; }

  .contact-card {
    gap: 38px;
    padding: 42px 24px;
    border-radius: 4px 38px 4px 4px;
  }

  .sister-card {
    gap: 30px;
    padding: 34px 24px;
    border-radius: 4px 34px 4px 4px;
  }

  .sister-card .button { width: 100%; }

  .contact-company { grid-column: auto; }

  .footer-grid { gap: 38px; }

  .footer-bottom {
    flex-direction: column;
    margin-top: 44px;
  }

  .mobile-call {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: #10271e;
    font-size: 0.9rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 -8px 24px rgba(12, 27, 20, 0.18);
  }
}

@media (max-width: 390px) {
  .brand { font-size: 1.16rem; }
  .hero h1 { font-size: 3.15rem; }
  .proof-list { display: grid; }
  .place-panel { grid-template-columns: 1fr; }
  .place-panel span,
  .place-panel span:nth-child(odd) { border-right: 0; border-bottom: 1px solid #d8d3c9; }
  .place-panel span:last-child { border-bottom: 0; }
}

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