:root {
  --forest: #1b3a2e;
  --forest-2: #24483a;
  --cream: #f2efe6;
  --cream-soft: #faf8f3;
  --gold: #c6a24a;
  --moss: #7a8f6a;
  --ink: #1f1f1f;
  --muted: #6f746f;
  --line: rgba(27, 58, 46, 0.16);
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 86px;
  padding: 0 4.5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(242, 239, 230, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.logo-wrap { display: flex; align-items: center; }
.logo {
  width: auto;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  color: rgba(31, 35, 33, .8);
}
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--forest); }
.nav-button {
  padding: 11px 18px;
  border: 1px solid var(--forest);
  border-radius: 100px;
  color: var(--forest);
}
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 1px; background: var(--forest); margin: 6px 0; }

.hero {
  padding: 70px 4.5vw 64px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  min-height: calc(100vh - 220px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 7vw;
  align-items: center;
}
.hero-grid > *,
.section-title-row > *,
.serve-layout > * {
  min-width: 0;
}
.eyebrow,
.section-kicker {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
h1, h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  color: var(--forest);
}
h1 {
  max-width: 780px;
  font-size: clamp(58px, 7vw, 108px);
  line-height: .94;
  letter-spacing: -.045em;
}
.hero-sub {
  max-width: 680px;
  margin: 30px 0 0;
  font-size: clamp(19px, 1.9vw, 24px);
  line-height: 1.55;
  color: rgba(31,35,33,.72);
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: transform .18s ease, opacity .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: var(--white); }
.button-secondary {
  background: transparent;
  color: var(--forest);
  border: 1px solid var(--forest);
}
.text-link {
  font-size: 14px;
  color: var(--forest);
  font-weight: 600;
}
.text-link span { margin-left: 8px; color: var(--gold); }

.hero-art { display: flex; justify-content: center; }
.hero-art-inner {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 1 / 1.05;
  background:
    radial-gradient(circle at 70% 20%, rgba(198,162,74,.24), transparent 30%),
    linear-gradient(145deg, #24483a 0%, #123128 100%);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(27,58,46,.18);
}
.hero-art-inner::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,255,255,.17);
}
.shape-moss {
  position: absolute;
  width: 380px;
  height: 380px;
  right: -140px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(122,143,106,.5), rgba(122,143,106,0) 70%);
}
.curve {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(122,143,106,.5);
}
.curve-one {
  width: 540px;
  height: 300px;
  left: -100px;
  top: 130px;
  transform: rotate(28deg);
}
.curve-two {
  width: 420px;
  height: 180px;
  left: 110px;
  top: 250px;
  transform: rotate(-20deg);
  border-color: rgba(198,162,74,.8);
}
.hero-stat {
  position: absolute;
  left: 54px;
  bottom: 92px;
  right: 54px;
  color: white;
}
.hero-stat-label {
  display: block;
  margin-bottom: 20px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}
.hero-stat strong {
  display: inline-block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
}
.hero-stat .arrow {
  margin: 0 14px;
  color: var(--gold);
}
.hero-note {
  position: absolute;
  left: 54px;
  bottom: 40px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.intro-strip {
  padding: 76px 7vw;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--forest);
  color: white;
}
.intro-line {
  height: 1px;
  background: var(--gold);
  margin-top: 19px;
}
.intro-strip p {
  max-width: 1040px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.2;
}

.section { padding: 110px 4.5vw; }
.section-title-row {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 52px;
}
.section-title-row h2,
.serve-copy h2,
.dark-band h2,
.final-cta h2 {
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -.03em;
}
.section-title-row p,
.serve-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-card {
  min-height: 350px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-soft);
  transition: background .25s ease, transform .25s ease;
}
.service-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}
.service-top { display: flex; align-items: center; gap: 18px; }
.service-top span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .14em;
}
.service-rule { height: 1px; flex: 1; background: var(--line); }
.service-card h3 {
  margin: 100px 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--forest);
  font-size: 34px;
  font-weight: 500;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.serve-section { border-top: 1px solid var(--line); }
.serve-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: start;
}
.serve-copy p { margin-top: 28px; max-width: 620px; }
.serve-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  column-gap: 40px;
}
.serve-list div {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.serve-list span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .12em;
}
.serve-list strong {
  color: var(--forest);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}

.dark-band {
  padding: 110px 4.5vw;
  background: var(--forest-2);
  color: white;
}
.section-kicker.light { color: var(--gold); }
.dark-band h2 { color: white; max-width: 980px; }
.principle-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 28px;
  margin-top: 64px;
}
.principle-grid article {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.22);
  transition: border-color .25s ease;
}
.principle-grid article:hover { border-color: var(--gold); }
.principle-grid span {
  display: block;
  margin-bottom: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}
.principle-grid p {
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
}

.process-section { padding: 110px 4.5vw; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 52px;
}
.process-step {
  position: relative;
  padding: 28px 28px 0 0;
  border-left: 1px solid var(--line);
}
.process-step:first-child { border-left: none; }
.process-step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 44px;
  height: 2px;
  background: var(--gold);
}
.process-step span {
  display: block;
  margin-bottom: 22px;
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--gold);
}
.process-step h3 {
  margin: 0 0 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  color: var(--forest);
  font-size: 28px;
}
.process-step p {
  margin: 0;
  max-width: 300px;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  padding: 105px 4.5vw;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  background: var(--cream-soft);
}
.final-cta h2 { max-width: 880px; font-weight: 600; }

.footer {
  padding: 56px 4.5vw 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid var(--line);
  color: rgba(31,35,33,.6);
  font-size: 14px;
}
.footer-brand strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 8px;
}
.footer-brand p { margin: 0; color: var(--muted); }
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.footer-contact a { font-weight: 600; color: var(--forest); }
.footer-contact a:hover { color: var(--gold); }
.footer-copyright {
  width: 100%;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .section-title-row,
  .serve-layout {
    grid-template-columns: 1fr;
  }
  .hero-art { margin-top: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .principle-grid,
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { padding-top: 24px; }
  .process-step:nth-child(2n+1) { border-left: none; }
  .process-step:nth-child(-n+2) {
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .process-step::before { display: none; }
  .service-card { min-height: 260px; }
  .service-card h3 { margin-top: 60px; }
  .final-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
  .header { height: 74px; padding: 0 20px; }
  .logo { height: 48px; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 20px 30px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .hero,
  .section,
  .dark-band,
  .process-section,
  .final-cta { padding-left: 20px; padding-right: 20px; }
  .hero { padding-top: 46px; }
  .hero-grid { min-height: auto; }
  .hero-art-inner { min-height: 420px; }
  .intro-strip {
    grid-template-columns: 1fr;
    padding: 58px 20px;
  }
  .intro-line { width: 80px; }
  .serve-list { grid-template-columns: 1fr; }
  .principle-grid,
  .process-grid { grid-template-columns: 1fr; }
  .process-step {
    border-left: none !important;
    border-top: 1px solid var(--line) !important;
    padding: 24px 0 0;
  }
  .final-cta { padding-top: 78px; padding-bottom: 78px; }
  .footer { padding: 40px 20px 28px; flex-direction: column; }
  .footer-contact { align-items: flex-start; }
}
