@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600&family=Oswald:wght@600;700&display=swap');

/* ── TOKENS ── */
:root {
  --green-dark:  #0d4a2c;
  --green-mid:   #1a6b3f;
  --green-light: #2a9058;
  --gold:        #c8922a;
  --gold-light:  #f0b840;
  --gold-glow:   #ffd166;
  --cream:       #fdf8f0;
  --white:       #ffffff;
  --text-dark:   #0a1f12;
  --text-muted:  #4a6b55;
  --shadow:      0 8px 40px rgba(13,74,44,0.18);
  --nav-h:       70px;
}

/* ── RESET ── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a { text-decoration:none; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed; top:0; left:0; right:0; z-index:200;
  background: rgba(13,74,44,0.97);
  backdrop-filter: blur(14px);
  height: var(--nav-h);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: radial-gradient(circle, var(--gold-glow), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  box-shadow: 0 0 16px rgba(240,184,64,0.5);
}
.nav-logo-text { display:flex; flex-direction:column; line-height:1; }
.nav-logo-text .brand-name {
  font-family: 'Oswald', sans-serif;
  color: var(--gold-light); font-size: 1rem; letter-spacing: 1px;
}
.nav-logo-text .brand-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.62rem; letter-spacing: 1.8px;
  text-transform: uppercase; margin-top: 3px;
}

/* Desktop links */
.nav-links {
  display: flex; gap: 4px;
}
.nav-links a {
  padding: 8px 16px; border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: all 0.2s; letter-spacing: 0.4px;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 600;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 150;
  background: rgba(8,36,20,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  padding: 0;
  transition:
    max-height 0.4s cubic-bezier(0.4,0,0.2,1),
    visibility 0.4s,
    padding 0.4s;
}
.mobile-menu.open {
  max-height: 100vh;
  visibility: visible;
  padding: 8px 0 20px;
}
.mobile-menu a {
  display: block;
  padding: 13px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-left: 3px solid transparent;
  transition: all 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold-light);
  border-left-color: var(--gold);
  background: rgba(200,146,42,0.08);
}

/* ══════════════════════════════════════
   PAGE WRAPPER
══════════════════════════════════════ */
.page-wrap { padding-top: var(--nav-h); min-height: 100vh; }

/* ══════════════════════════════════════
   SHARED SECTION
══════════════════════════════════════ */
.section {
  padding: 80px 5%;
  max-width: 1200px; margin: 0 auto;
}
.section-tag {
  display: inline-block;
  background: rgba(13,74,44,0.08);
  color: var(--green-mid);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 30px;
  margin-bottom: 14px;
  border-left: 3px solid var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 700; color: var(--green-dark);
  line-height: 1.15; margin-bottom: 18px;
}
.section-title .gold { color: var(--gold); }
.section-sub {
  font-size: 1rem; line-height: 1.75;
  color: var(--text-muted); max-width: 560px;
  margin-bottom: 44px;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-dark); padding: 13px 30px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer;
  box-shadow: 0 6px 22px rgba(200,146,42,0.38);
  transition: all 0.25s; letter-spacing: 0.5px; text-transform: uppercase;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(200,146,42,0.5); }

.btn-outline {
  background: transparent; color: var(--white);
  padding: 12px 28px; border-radius: 50px;
  font-weight: 500; font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer; transition: all 0.25s; display: inline-block;
}
.btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }

.btn-cta {
  background: var(--green-dark); color: var(--gold-light);
  padding: 13px 34px; border: none; border-radius: 50px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; box-shadow: 0 6px 22px rgba(13,74,44,0.3);
  transition: all 0.25s; display: inline-block;
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(13,74,44,0.4); }

/* ══════════════════════════════════════
   VALUE CARDS
══════════════════════════════════════ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px; margin-top: 36px;
}
.value-card {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 16px; padding: 32px 22px;
  text-align: center; color: var(--white);
  transition: transform 0.3s;
}
.value-card:hover { transform: scale(1.04); }
.value-icon { font-size: 2.4rem; margin-bottom: 12px; display: block; }
.value-card h3 {
  font-family: 'Oswald', sans-serif; font-size: 1.1rem;
  color: var(--gold-light); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 10px;
}
.value-card p { font-size: 0.86rem; color: rgba(255,255,255,0.72); line-height: 1.6; }

/* ══════════════════════════════════════
   CTA BANNER
══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 60px 5%; text-align: center;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--green-dark); margin-bottom: 12px; font-weight: 900;
}
.cta-banner p { color: rgba(13,74,44,0.72); font-size: 1rem; margin-bottom: 26px; }

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0a3020 100%);
  padding: 80px 5% 70px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0; height: 55px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .section-tag { background: rgba(200,146,42,0.15); color: var(--gold-light); }
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--white); margin-bottom: 14px;
}
.page-hero-title .gold { color: var(--gold-light); }
.page-hero-sub {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem; max-width: 480px; margin: 0 auto;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.6);
  padding: 40px 5%; text-align: center;
  border-top: 2px solid var(--gold);
}
.footer-logo {
  font-family: 'Oswald', sans-serif; font-size: 1.3rem;
  color: var(--gold-light); letter-spacing: 2px; margin-bottom: 6px;
}
.footer-tag {
  font-style: italic; font-size: 0.88rem;
  color: rgba(255,255,255,0.45); margin-bottom: 18px;
}
.footer-copy { font-size: 0.78rem; }
.footer-copy a { color: var(--gold); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-22px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(22px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

/* ══════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo-text .brand-sub { display: none; }
}

@media (max-width: 600px) {
  :root { --nav-h: 60px; }
  .section { padding: 60px 5%; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 44px 5%; }
  .page-hero { padding: 60px 5% 56px; }
}

@media (max-width: 420px) {
  .values-grid { grid-template-columns: 1fr; }
  .nav-logo-text .brand-name { font-size: 0.88rem; }
}
