/* ─── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --emerald:    #1A5C35;
  --emerald-md: #2A7A49;
  --emerald-lt: #3DAE69;
  --emerald-bg: #EAF5EE;
  --turmeric:   #D97706;
  --turmeric-lt:#F59E0B;
  --turmeric-bg:#FEF3C7;
  --cream:      #F6F8F4;
  --dark:       #0C2B1A;
  --dark-mid:   #1A4A2E;
  --rust:       #C2440C;
  --text:       #122618;
  --muted:      #476B57;
  --border:     rgba(26,92,53,0.13);
  --white:      #FFFFFF;
  --shadow:     0 4px 24px rgba(12,43,26,0.09);
  --radius:     6px;

  /* Legacy aliases */
  --saffron:    var(--turmeric);
  --saffron-lt: var(--turmeric-lt);
  --saffron-bg: var(--turmeric-bg);
  --brown:      var(--dark);
  --brown-mid:  var(--dark-mid);
  --green:      var(--emerald);
  --green-lt:   var(--emerald-bg);
}

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--dark);
}
h1 { font-size: clamp(42px, 7vw, 76px); font-weight: 400; }
h2 { font-size: clamp(32px, 4.5vw, 52px); font-weight: 400; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 500; }
h4 { font-size: 18px; font-weight: 600; }

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--turmeric);
  margin-bottom: 14px;
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.22s ease;
  border: none;
}
.btn-primary {
  background: var(--emerald);
  color: white;
  box-shadow: 0 4px 16px rgba(26,92,53,0.28);
}
.btn-primary:hover { background: var(--dark-mid); box-shadow: 0 6px 20px rgba(12,43,26,0.3); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--emerald); color: var(--emerald); }

.btn-white {
  background: white;
  color: var(--dark);
}
.btn-white:hover { background: var(--emerald-bg); }

.btn-accent {
  background: var(--turmeric);
  color: white;
  box-shadow: 0 4px 16px rgba(217,119,6,0.3);
}
.btn-accent:hover { background: var(--rust); transform: translateY(-1px); }

/* ─── NAVBAR ────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,248,244,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(26, 92, 53, 0.18);
    background: white;
    box-shadow: 0 2px 8px rgba(26, 92, 53, 0.15);
} 
.logo-text { line-height: 1.1; }
.logo-text strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}
.logo-text span {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turmeric);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }
.nav-links a.active { font-weight: 500; }
.nav-cta { margin-left: 12px; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark); transition: all 0.3s; }
.mobile-menu { display: none; }

/* ─── FOOTER ────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text strong,
.footer-brand .logo-text span { color: white; }
.footer-brand .logo-text span { color: var(--turmeric-lt); }
.footer-brand p {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  max-width: 260px;
}
.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turmeric-lt);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ─── NOISE OVERLAY ─────────────────────────────────── */
.noise::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

/* ─── PAGE HERO BANNER (inner pages) ───────────────── */
.page-hero {
  background: var(--dark);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(26,92,53,0.4) 0%, transparent 65%);
}
.page-hero .section-label { color: var(--turmeric-lt); }
.page-hero h1 { color: white; font-size: clamp(36px, 5vw, 58px); }
.page-hero p { color: rgba(255,255,255,0.6); margin-top: 12px; font-size: 16px; }

/* ─── UTILITIES ─────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

/* ─── ANIMATIONS ────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.48s; }

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ─── MOBILE MENU ───────────────────────────────────── */
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 8px 0 16px;
}
.mobile-menu a {
  padding: 14px 24px;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border: none; }
