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

:root {
  --sand: #F5EFE4;
  --cream: #FAF7F2;
  --warm-mid: #E8DDD0;
  --tan: #C9A97A;
  --tan-dark: #A07848;
  --bark: #6B4E35;
  --dark: #2A1F14;
  --text: #3D2E1E;
  --text-light: #7A6655;
  --white: #FFFFFF;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--warm-mid);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(42,31,20,.08); }

.nav-brand {
  display: flex; flex-direction: column; gap: 1px; text-decoration: none;
}
.nav-brand-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700; color: var(--bark);
  letter-spacing: -0.01em; line-height: 1;
}
.nav-brand-sub {
  font-size: .68rem; font-weight: 300; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-light);
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--text-light); font-size: .88rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: color .2s; position: relative; 
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1.5px; background: var(--tan); transform: scaleX(0);
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--bark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--bark); }

.nav-cta {
  background: var(--bark); color: var(--white) !important;
  padding: 1rem 1.2rem; border-radius: 2px;
  
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--tan-dark) !important; color: var(--white) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { width: 24px; height: 1.5px; background: var(--bark); display: block; transition: .3s; }

/* ── LAYOUT ── */
main { padding-top: var(--nav-h); min-height: calc(100vh - 140px); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: .85rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: .9rem 2rem;
  border: none; transition: all .25s; border-radius: 2px;
}
.btn-primary { background: var(--tan); color: var(--dark); }
.btn-primary:hover { background: var(--tan-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.35); }
.btn-outline-dark:hover { border-color: var(--tan); color: var(--tan); }
.btn-bark { background: var(--bark); color: var(--white); }
.btn-bark:hover { background: var(--tan-dark); transform: translateY(-1px); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--bark); transform: translateY(-1px); }

/* ── SECTION COMMONS ── */
section { padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem); }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-tag {
  display: inline-block; font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--tan-dark);
  border-top: 2px solid var(--tan); padding-top: .5rem; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700; line-height: 1.2; color: var(--dark); margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--bark); }
.section-lead {
  font-size: 1.05rem; color: var(--text-light);
  max-width: 580px; line-height: 1.8; margin-bottom: 3rem;
}

/* ── CARD GRID ── */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 1.5px; background: var(--warm-mid); border: 1.5px solid var(--warm-mid);
}
.card {
  background: var(--cream); padding: 2.2rem; transition: background .25s;
}
.card:hover { background: var(--sand); }
.card-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--dark); margin-bottom: .6rem;
}
.card p { font-size: .92rem; color: var(--text-light); line-height: 1.7; }

/* ── DARK STATS STRIP ── */
.stats-strip {
  background: var(--dark);
  padding: clamp(3rem,6vw,5rem) clamp(1.5rem,5vw,4rem);
}
.stats-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 2.5rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 3rem;
  color: var(--tan); font-weight: 700; line-height: 1;
}
.stat-label {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .15em;
  color: rgba(245,239,228,.45); margin-top: .4rem;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--tan);
  padding: clamp(2.5rem,5vw,4rem) clamp(1.5rem,5vw,4rem);
}
.cta-band-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem,3vw,2rem); color: var(--dark); font-weight: 700;
}
.cta-band p { color: rgba(42,31,20,.65); font-size: .95rem; margin-top: .3rem; }

/* ── FOOTER ── */
footer {
  background: var(--dark); color: rgba(245,239,228,.45);
  padding: clamp(2rem,5vw,3.5rem) clamp(1.5rem,5vw,4rem);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.footer-brand-main {
  font-family: 'Playfair Display', serif; color: var(--tan);
  font-size: 1.1rem; font-weight: 700;
}
.footer-brand-sub {
  font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
  color: rgba(245,239,228,.28); margin-top: .15rem;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  text-decoration: none; color: rgba(245,239,228,.38);
  font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; transition: color .2s;
}
.footer-links a:hover { color: var(--tan); }
.footer-copy { font-size: .78rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    padding:1em;
    position: fixed; 
    inset: inherit;
    top: var(--nav-h);
    background: var(--cream); flex-direction: column;
    align-items: center; 
    gap: 2.5rem; transform: translateX(100%); transition: transform .35s ease;
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

nav.footer-links{
      top: auto;
    position: relative;
    background: none;
    border-bottom:none;
}