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

:root {
  --ink: #0f1b12;
  --forest: #1a3d2b;
  --leaf: #2d6a4f;
  --sage: #52b788;
  --mint: #b7e4c7;
  --cream: #f8f4ee;
  --sand: #ede8df;
  --white: #ffffff;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --text: #2c3e30;
  --muted: #6b7c6e;
  --radius: 4px;
}

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
background: rgba(15, 27, 18, 0.1);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--ink);
  flex-shrink: 0;
}

.nav-logo-text {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: none;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 2rem;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--forest);
  z-index: 99;
  padding: 1.5rem;
  flex-direction: column;
  gap: 0;
  border-bottom: 2px solid var(--gold);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 7rem 1.5rem 4rem;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { max-width: 780px; position: relative; z-index: 1; }
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 0.28rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  font-weight: 300;
  max-width: 600px;
}

@media (min-width: 640px) { .page-hero { padding: 8rem 2.5rem 5rem; } }
@media (min-width: 1024px) { .page-hero { padding: 8rem 5rem 5rem; } }

/* ── SECTIONS ── */
section { padding: 4.5rem 1.5rem; }
@media (min-width: 640px) { section { padding: 5.5rem 2.5rem; } }
@media (min-width: 1024px) { section { padding: 7rem 5rem; } }

.max-w { max-width: 1200px; margin: 0 auto; }
.max-w-text { max-width: 760px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--leaf);
  flex-shrink: 0;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h2 em { font-style: italic; color: var(--leaf); }

h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--leaf);
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1.5px solid var(--leaf);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline:hover { background: var(--leaf); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

/* ── IMAGE PLACEHOLDER ── */
.img-ph {
  background: rgba(0,0,0,0.06);
  border: 1.5px dashed rgba(0,0,0,0.15);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(0,0,0,0.3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}
.img-ph svg { width: 26px; height: 26px; opacity: 0.4; }
.img-ph.light {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.35);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 3rem 1.5rem;
  color: rgba(255,255,255,0.55);
}
@media (min-width: 640px) { footer { padding: 3rem 2.5rem; } }
@media (min-width: 1024px) { footer { padding: 3.5rem 5rem; } }

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; } }

.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 280px; margin-top: 0.8rem; }

.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  font-size: 0.78rem;
}

/* ── MINI CTA BAND ── */
.cta-band {
  background: var(--forest);
  padding: 3rem 1.5rem;
  text-align: center;
}
@media (min-width: 640px) { .cta-band { padding: 3rem 2.5rem; } }
.cta-band h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.5rem; }
.cta-band p { color: rgba(255,255,255,0.6); margin-bottom: 1.5rem; font-weight: 300; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── FORM STYLES ── */
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  background: var(--mint);
  border: 1.5px solid var(--sage);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  color: var(--forest);
  font-weight: 600;
  font-size: 0.9rem;
  display: none;
}
