:root {
  --green: #1f3a2e;
  --green-deep: #15281f;
  --gold: #b8945e;
  --gold-soft: #d4b886;
  --ink: #1a1a1a;
  --paper: #f5f1ea;
  --paper-2: #ece5d8;
  --line: #d9d2c3;
  --muted: #6b6b6b;
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: var(--green-deep);
}

h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { color: #2a2a2a; }

.hl {
  color: var(--gold);
  font-style: italic;
  font-weight: 500;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow.center, h2.center, .pricing-note.center { text-align: center; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--green-deep);
}
.nav-mark-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
}
.nav-name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  text-decoration: none;
  color: var(--green-deep);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 18px;
  border: 1.5px solid var(--green-deep);
  border-radius: 2px;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--green-deep); color: var(--paper); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-bg-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 40, 31, 0.92) 0%, rgba(21, 40, 31, 0.78) 45%, rgba(21, 40, 31, 0.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.3));
}
.hero-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 32px 120px;
}
.hero-text { max-width: 640px; }
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin: 0.8rem 0 1.6rem;
  color: var(--paper);
}
.hero .hl { color: var(--gold-soft); }
.hero .eyebrow.light { color: var(--gold-soft); }
.lede {
  font-size: 1.15rem;
  color: #3a3a3a;
  max-width: 540px;
  margin-bottom: 2rem;
}
.lede.light { color: rgba(245, 241, 234, 0.85); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-ghost-light {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid var(--paper);
  color: var(--paper);
  background: transparent;
}
.btn-ghost-light:hover { background: var(--paper); color: var(--green-deep); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--green-deep);
  color: var(--paper);
  border-color: var(--green-deep);
}
.btn-primary:hover { background: var(--green); border-color: var(--green); }
.btn-ghost {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.btn-ghost:hover { background: var(--green-deep); color: var(--paper); }
.btn.big { padding: 18px 34px; font-size: 1.05rem; }

/* hero button overrides — kept after base .btn rules so they win */
.hero .hero-actions .btn-primary {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--green-deep);
  font-weight: 600;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.45);
}
.hero .hero-actions .btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--paper);
}
.hero .hero-actions .btn-ghost-light {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--paper);
  font-weight: 600;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.45);
}
.hero .hero-actions .btn-ghost-light:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--green-deep);
}

/* ---------- TWO-COL SECTIONS ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.about, .how { padding: 100px 0; border-top: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 30px 60px -30px rgba(21, 40, 31, 0.35);
}
.about-content p { margin-bottom: 1.2rem; font-size: 1.05rem; margin-top: 1rem; }
.about-content p:first-of-type { margin-top: 1.5rem; }
.about-content em { color: var(--green); font-style: italic; }
.how-body p { margin-bottom: 1.2rem; font-size: 1.05rem; }

.steps { list-style: none; margin-top: 1.5rem; }
.steps li {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  font-size: 1.02rem;
}
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps span {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 500;
  min-width: 24px;
}

/* ---------- SERVICES ---------- */
.services {
  padding: 100px 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: all 0.3s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px -20px rgba(21, 40, 31, 0.2);
}
.service-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-body { padding: 26px 24px 30px; }
.service-card .num {
  font-family: 'Fraunces', serif;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.service-card h3 { margin-bottom: 12px; color: var(--green-deep); }
.service-card p { font-size: 0.95rem; color: #4a4a4a; }

/* ---------- PRICING ---------- */
.pricing { padding: 100px 0; border-top: 1px solid var(--line); }
.pricing-note {
  max-width: 640px;
  margin: 0 auto 56px;
  color: var(--muted);
  font-size: 0.98rem;
}
.price-list {
  max-width: 780px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  gap: 24px;
}
.price-row span:first-child { color: var(--ink); }
.price-row .price {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--green-deep);
  white-space: nowrap;
  font-size: 1.08rem;
}

/* ---------- CTA ---------- */
.cta {
  background: var(--green-deep);
  color: var(--paper);
  padding: 110px 0;
  border-top: 1px solid var(--line);
}
.cta-inner { text-align: center; }
.cta h2 {
  color: var(--paper);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin-bottom: 1.2rem;
}
.cta .hl { color: var(--gold-soft); }
.cta p {
  color: rgba(245, 241, 234, 0.78);
  font-size: 1.1rem;
  margin-bottom: 2.4rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
}
.cta .btn-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.cta .btn-ghost { border-color: var(--paper); color: var(--paper); }
.cta .btn-ghost:hover { background: var(--paper); color: var(--green-deep); }

/* ---------- FOOTER ---------- */
.footer {
  padding: 60px 0 40px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.footer-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.footer-sub { color: var(--muted); font-size: 0.9rem; }
.footer-meta a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  display: block;
  margin-bottom: 6px;
}
.footer-meta a:hover { color: var(--gold); }
.footer-legal { text-align: right; font-size: 0.88rem; color: var(--muted); }
.footer-legal .muted { color: var(--gold); font-family: 'Fraunces', serif; margin-top: 4px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { min-height: auto; }
  .hero-inner { padding: 90px 24px 90px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about, .how, .services, .pricing, .cta { padding: 70px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .footer-legal { text-align: left; }
}
@media (max-width: 560px) {
  .container, .nav-inner, .hero-inner { padding-left: 20px; padding-right: 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .nav-cta { padding: 8px 12px; font-size: 0.82rem; }
  .price-row { font-size: 0.95rem; padding: 16px 4px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; width: 100%; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { text-align: center; width: 100%; }
}
