:root {
  --forest: #173528;
  --forest-deep: #0c1f18;
  --moss: #3c5a45;
  --cream: #f4efe4;
  --cream-2: #e8e0ce;
  --ink: #161812;
  --mute: #5a6054;
  --clay: #c4923c;
  --clay-ink: #2f220d;
  --line: rgba(23, 53, 40, 0.16);
  --white: #fffdf7;
  --shadow: 0 22px 55px rgba(12, 31, 24, 0.16);
  --max: 1180px;
  --nav-h: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 480px at 100% -10%, rgba(196, 146, 60, 0.08), transparent 55%),
    var(--cream);
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 1.06rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, .display {
  font-family: "Fraunces", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin: 0;
}
.display em,
h1 em,
h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--forest);
}
.band-forest .display em,
.band-forest h2 em {
  color: #e8c27a;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  background: var(--white);
  padding: 8px 12px;
  z-index: 80;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--forest);
  transition: box-shadow 0.25s ease;
}
.top.scrolled { box-shadow: 0 10px 28px rgba(12, 31, 24, 0.08); }
.top-in {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img {
  width: 54px;
  height: 54px;
}
.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.15;
}
.brand-name span {
  display: block;
  font-family: "Figtree", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav > a {
  text-decoration: none;
  font-weight: 620;
  font-size: 0.95rem;
}
.nav > a:hover { color: var(--moss); }
.nav-cta { display: flex; gap: 8px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  font-weight: 680;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-forest {
  background: var(--forest);
  color: var(--cream);
  box-shadow: 0 8px 20px rgba(23, 53, 40, 0.22);
}
.btn-clay {
  background: var(--clay);
  color: var(--clay-ink);
  box-shadow: 0 8px 20px rgba(196, 146, 60, 0.28);
}
.btn-ghost {
  background: var(--white);
  border-color: var(--forest);
  color: var(--forest);
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 3px;
}

.menu-btn {
  display: none;
  background: var(--white);
  border: 1.5px solid var(--forest);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-weight: 650;
}

.hero { padding: 48px 0 20px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 750;
  color: var(--forest);
  margin: 0 0 16px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(23, 53, 40, 0.07);
  border: 1px solid rgba(23, 53, 40, 0.12);
}
.display { font-size: clamp(2.7rem, 6.4vw, 5.35rem); }
.lede {
  font-size: 1.16rem;
  color: var(--mute);
  max-width: 38rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 22px;
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.facts li {
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--mute);
  font-size: 0.9rem;
}
.facts strong { color: var(--ink); display: block; font-size: 0.95rem; }

.frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--forest-deep);
}
.frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 253, 247, 0.12);
  pointer-events: none;
}
.frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 28% 62%;
  aspect-ratio: 5 / 4;
  transform: scale(1.02);
  transition: transform 1.1s ease;
}
.frame:hover img { transform: scale(1.06); }

.band { padding: 88px 0; }
.band-tight { padding-top: 0; }
.band-forest {
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(196, 146, 60, 0.16), transparent 50%),
    var(--forest);
  color: var(--cream);
}
.band-forest .kicker {
  background: rgba(255, 253, 247, 0.08);
  border-color: rgba(255, 253, 247, 0.16);
  color: #e8c27a;
}
.band-forest .mute,
.band-forest .lede { color: #d5ddd4; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img {
  width: 100%;
  border-radius: 28px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.h2 { font-size: clamp(2.05rem, 4.2vw, 3.35rem); margin-bottom: 16px; }

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  counter-reset: svc;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 20px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(23, 53, 40, 0.28);
}
.card h2 {
  font-size: 1.42rem;
  margin: 0 0 8px;
}
.card h3 {
  font-size: 1.42rem;
  margin: 0 0 8px;
  counter-increment: svc;
}
.card h3::before {
  content: counter(svc, decimal-leading-zero);
  display: block;
  font-family: "Figtree", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--clay);
  margin-bottom: 8px;
}
.card p { margin: 0; color: var(--mute); }

.note {
  font-size: 0.85rem;
  color: var(--mute);
  margin-top: 18px;
}

form {
  display: grid;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.band-forest form {
  color: var(--ink);
  border-color: rgba(255, 253, 247, 0.16);
}
.service-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-copy { animation: rise 0.75s ease both; }
.actions-center { justify-content: center; }
label {
  display: grid;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 680;
}
input, select, textarea {
  font: inherit;
  font-weight: 450;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(23, 53, 40, 0.12);
}
textarea { min-height: 120px; resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.footer {
  background: var(--forest-deep);
  color: #d7e0d6;
  padding: 64px 0 28px;
}
.footer a { color: var(--cream); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}
.footer h2 {
  font-size: 1.85rem;
  color: var(--cream);
  margin-bottom: 10px;
}
.legal {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(243, 238, 227, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}
.legal a { color: #e8c27a; }

.sticky { display: none; }

.page-hero { padding: 56px 0 12px; }
.page-hero h1,
.page-hero-title { font-size: clamp(2.3rem, 5.2vw, 4.2rem); }

.service-list { display: grid; gap: 16px; }
.service-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-row:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 190px;
}
.service-row div { padding: 26px 28px; }
.service-row h2 { font-size: 1.7rem; margin-bottom: 8px; }

.thanks {
  min-height: 58vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 70px 0;
}
.thanks h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); }

.reveal {
  animation: rise 0.7s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .hero-grid, .split, .services, .footer-grid, .service-row, .form-row, .facts, .service-pair {
    grid-template-columns: 1fr;
  }
  .service-row div { padding: 18px; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--nav-h);
    background: var(--white);
    border-bottom: 1px solid var(--forest);
    padding: 16px 20px 22px;
    gap: 16px;
  }
  .menu-btn { display: inline-flex; }
  .sticky {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 50;
    padding: 8px;
    background: var(--forest-deep);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .sticky .btn { min-height: 44px; width: 100%; }
  .sticky .btn-ghost {
    background: transparent;
    border-color: var(--cream);
    color: var(--cream);
    box-shadow: none;
  }
  .sticky .btn-forest { color: var(--cream); }
  .sticky .btn-clay { color: var(--clay-ink); }
  body { padding-bottom: 82px; }
}

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