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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #f9f9f8;
  --gray-100: #f0efec;
  --gray-200: #e2e0da;
  --gray-400: #9c9a94;
  --gray-700: #3a3935;
  --green: #2d6a4f;
  --green-dark: #1e4d38;
  --green-light: #e8f5ee;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 5%;
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px; letter-spacing: -0.5px;
  color: var(--black); text-decoration: none;
}
.logo span { color: var(--green); }

nav ul {
  list-style: none; display: flex; gap: 2rem; align-items: center;
  justify-content: center;
}
nav ul a {
  font-size: 14px; font-weight: 400; color: var(--gray-700);
  text-decoration: none; transition: color 0.2s;
}
nav ul a:hover, nav ul a.active { color: var(--black); font-weight: 500; }

.nav-right { display: flex; justify-content: flex-end; }

.nav-cta {
  background: var(--black); color: var(--white) !important;
  padding: 8px 20px; border-radius: 100px;
  font-size: 14px !important; font-weight: 500 !important;
  text-decoration: none; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.8; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--black); color: var(--white);
  padding: 14px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
  border: 1.5px solid var(--black); display: inline-block;
}
.btn-primary:hover { background: var(--gray-700); }

.btn-secondary {
  background: transparent; color: var(--black);
  padding: 14px 32px; border-radius: 100px;
  font-size: 15px; font-weight: 400;
  text-decoration: none; border: 1.5px solid var(--gray-200);
  transition: all 0.2s; display: inline-block;
}
.btn-secondary:hover { border-color: var(--black); }

/* ── SECTIONS ── */
section { padding: 100px 5%; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase; color: var(--green); margin-bottom: 1rem; display: block;
}
h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 1.2rem;
}
h2 em { font-style: italic; color: var(--green); }
.section-desc { font-size: 15px; font-weight: 300; color: var(--gray-700); max-width: 540px; line-height: 1.7; }

/* ── PAGE HERO (subpages) ── */
.page-hero { padding:140px 5% 70px; background:var(--gray-50); text-align:center; }
.page-hero h1 {
  font-family:'DM Serif Display',serif;
  font-size:clamp(30px,3.8vw,50px);
  letter-spacing:-1px; line-height:1.1; margin-bottom:0.8rem;
}
.page-hero h1 em { font-style:italic; color:var(--green); }
.page-hero p { font-size:15px; font-weight:300; color:var(--gray-700); max-width:480px; margin:0 auto; }

/* ── FOOTER ── */
footer {
  padding: 36px 5%; border-top: 1px solid var(--gray-200);
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-mid p { font-size: 13px; color: var(--gray-400); }
.footer-right { text-align: right; }
.footer-right p { font-size: 13px; color: var(--gray-400); line-height: 1.9; }
.footer-right a { color: var(--gray-700); text-decoration: none; }
.footer-right a:hover { color: var(--black); }
.footer-links { display: flex; gap: 1.5rem; margin-top: 0.5rem; }
.footer-links a { font-size: 12px; color: var(--gray-400); text-decoration: none; }
.footer-links a:hover { color: var(--black); }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--black); color: var(--white);
  padding: 1.2rem 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: 13px; color: rgba(255,255,255,0.7); max-width: 700px; line-height: 1.5; }
#cookie-banner a { color: #4ade80; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: #4ade80; color: #0a2a14;
  border: none; padding: 8px 20px; border-radius: 100px;
  font-size: 13px; font-weight: 500; cursor: pointer; transition: opacity 0.2s;
}
.cookie-accept:hover { opacity: 0.85; }
.cookie-decline {
  background: transparent; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2); padding: 8px 20px; border-radius: 100px;
  font-size: 13px; cursor: pointer; transition: all 0.2s;
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

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

/* ── HAMBURGER ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 5%; flex-direction: column; gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px; font-weight: 400; color: var(--black);
  text-decoration: none; padding: 0.9rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 0.5rem; }
.mobile-menu a:hover { color: var(--green); }
.mobile-menu .mobile-cta {
  background: var(--black); color: var(--white) !important;
  text-align: center; padding: 12px; border-radius: 100px;
  font-weight: 500 !important; margin-top: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { grid-template-columns: 1fr auto; gap: 1rem; }
  nav ul { display: none; }
  .nav-right { display: none; }
  .hamburger { display: flex; }
  .footer-right { text-align: left; }
}
