/* ---------- Brand tokens ---------- */
:root {
  --green-900: #0b2e22;
  --green-800: #0f3d2e;
  --green-700: #14523d;
  --green-600: #1c6a4e;
  --gold-500: #c9a961;
  --gold-400: #d8bc7c;
  --cream-100: #f5f1e8;
  --cream-50: #faf7f0;
  --ink-900: #1a1a1a;
  --ink-700: #3a3a3a;
  --ink-500: #6b6b6b;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(11, 46, 34, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 46, 34, 0.12);
  --shadow-lg: 0 20px 50px rgba(11, 46, 34, 0.18);
  --radius: 6px;
  --radius-lg: 12px;
  --max-width: 1180px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--green-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-500); }

/* Typography — original weights and tracking restored */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--green-900);
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-700); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Eyebrow / utility ---------- */
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-700);
  margin: 0 0 1rem;
}
.eyebrow.gold { color: var(--gold-500); }
.lede { font-size: 1.075rem; color: var(--ink-500); max-width: 640px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }

/* ---------- Header (item 9: sticky + scrolled state w/ backdrop-blur) ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #F5F1EE;
  border-bottom: 1px solid rgba(11, 46, 34, 0.08);
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(245, 241, 238, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom-color: rgba(11, 46, 34, 0.04);
  box-shadow: 0 8px 24px -16px rgba(11, 46, 34, 0.15);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--green-900);
}
.brand:hover { color: var(--green-900); }
.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  background: var(--cream-50);
  border-radius: 50%;
  padding: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(201, 169, 97, 0.22),
    0 2px 6px rgba(11, 46, 34, 0.06);
}
.footer-logo { width: 72px; height: 72px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.brand-tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-700);
  letter-spacing: 0.02em;
}
.site-nav a:hover { color: var(--green-700); }
.site-nav .nav-cta {
  background: var(--green-800);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
}
.site-nav .nav-cta:hover { background: var(--green-900); color: var(--white); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green-900);
  transition: transform .2s ease, opacity .2s ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s ease;
}
.btn-primary {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}
.btn-primary:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  color: var(--green-900);
  border-color: var(--green-800);
}
.btn-ghost:hover {
  background: var(--green-800);
  color: var(--white);
}
.btn-block { width: 100%; }

/* ---------- Hero (item 8: watermark dropped, hero sharpened) ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.14), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(28, 106, 78, 0.30), transparent 55%),
    linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 55%, var(--green-700) 100%);
  color: var(--white);
  padding: clamp(100px, 14vw, 170px) 0 clamp(110px, 16vw, 180px);
  overflow: hidden;
}
/* Watermark removed. Subtle gold accent rule below copy instead. */
.hero-inner {
  position: relative;
  max-width: 920px;
}
.hero .eyebrow { color: var(--gold-400); }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn-ghost { color: var(--white); border-color: var(--gold-500); }
.hero .btn-ghost:hover { background: var(--gold-500); color: var(--green-900); border-color: var(--gold-500); }
.hero .btn-primary { background: var(--gold-500); border-color: var(--gold-500); color: var(--green-900); }
.hero .btn-primary:hover { background: var(--gold-400); border-color: var(--gold-400); color: var(--green-900); }

/* ---------- Sections ---------- */
.section { padding: clamp(70px, 10vw, 120px) 0; }
.section-light { background: var(--white); }
.section-cream { background: var(--cream-100); }
.section-dark { background: var(--green-900); color: var(--cream-100); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(245, 241, 232, 0.78); }

.section-head { max-width: 760px; margin: 0 auto 60px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.grid-2.reverse > div:first-child { order: 2; }

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(11, 46, 34, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat {
  background: var(--cream-50);
  padding: 36px 28px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green-800);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-500);
}

/* ---------- Service cards (item 1: SVG icons) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.22);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-500);
  background: rgba(255, 255, 255, 0.06);
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 169, 97, 0.14);
  box-shadow: inset 0 0 0 1px rgba(201, 169, 97, 0.25);
  color: var(--gold-400);
  margin-bottom: 22px;
}
.card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.25;
}
.card h3 { color: var(--white); margin-bottom: 10px; }
.card p { font-size: 0.95rem; margin: 0; }

/* ---------- Approach visual ---------- */
.approach-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.approach-logo {
  width: 100%;
  height: auto;
  max-width: 380px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(11, 46, 34, 0.18));
}

.check-list { list-style: none; padding: 0; margin: 20px 0 0; }
.check-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid rgba(11, 46, 34, 0.08);
  color: var(--ink-700);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  background: var(--green-800);
  color: var(--gold-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.check-list li:last-child { border-bottom: 0; }

/* ---------- Roster placeholder ---------- */
.roster-placeholder {
  text-align: center;
  padding: 60px 24px;
  border: 1px dashed rgba(201, 169, 97, 0.4);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
}
.roster-placeholder p {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cream-100);
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 400;
}

/* ---------- Contact ---------- */
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; }
.contact-list li {
  display: flex;
  flex-direction: column;
  padding: 16px 0;
  border-bottom: 1px solid rgba(11, 46, 34, 0.1);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 4px;
}
.contact-list a, .contact-list span:last-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--green-900);
}

.contact-form {
  background: var(--cream-50);
  border: 1px solid rgba(11, 46, 34, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-700);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(11, 46, 34, 0.18);
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--ink-900);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(20, 82, 61, 0.12);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-note {
  margin: 14px 0 0;
  font-size: 0.9rem;
  text-align: center;
  color: var(--green-700);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-900);
  color: rgba(245, 241, 232, 0.7);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-tag { color: var(--gold-500); }
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
}
.footer-contact a { color: var(--cream-100); }
.footer-contact a:hover { color: var(--gold-500); }
.footer-copy {
  font-size: 0.82rem;
  text-align: right;
  color: rgba(245, 241, 232, 0.5);
}

/* ---------- Scroll reveal (item 5) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-d="1"] { transition-delay: 80ms; }
.reveal[data-d="2"] { transition-delay: 160ms; }
.reveal[data-d="3"] { transition-delay: 240ms; }
.reveal[data-d="4"] { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Mobile sticky CTA bar (item 12) ---------- */
.mobile-cta-bar { display: none; }
@media (max-width: 880px) {
  .mobile-cta-bar {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: fixed;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 40;
    padding: 10px 10px 10px 22px;
    background: var(--green-900);
    color: var(--white);
    border-radius: 999px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow:
      0 0 0 1px rgba(201, 169, 97, 0.30),
      0 18px 36px -10px rgba(11, 46, 34, 0.55);
    transition: background .2s ease, transform .2s ease;
  }
  .mobile-cta-bar:hover, .mobile-cta-bar:focus {
    color: var(--white);
    background: var(--green-800);
  }
  .mobile-cta-bar:active { transform: scale(0.985); }
  .mobile-cta-bar .label { line-height: 1; }
  .mobile-cta-bar .arrow {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: var(--gold-500);
    color: var(--green-900);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform .25s ease;
  }
  .mobile-cta-bar:hover .arrow { transform: translate(2px, -2px); }
  .mobile-cta-bar .arrow svg { width: 12px; height: 12px; stroke-width: 1.75; }

  /* Keep footer content above the sticky bar */
  .site-footer { padding-bottom: 96px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(11, 46, 34, 0.1);
    padding: 8px 24px 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .site-header.scrolled .site-nav {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .site-nav.open { max-height: 400px; }
  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(11, 46, 34, 0.06);
  }
  .site-nav .nav-cta {
    margin-top: 12px;
    text-align: center;
  }
  .grid-2 { grid-template-columns: 1fr; gap: 48px; }
  .grid-2.reverse > div:first-child { order: 0; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-copy { text-align: center; }
  .stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .brand-text { display: none; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; }
  .contact-form { padding: 24px; }
}
