/* ══════════════════════════════════════════
   The Trusted Voice — Shared Styles
   Brand: Deep Teal + Mint + Cream
   Fonts: DM Serif Display + DM Sans 300
   ══════════════════════════════════════════ */

:root {
  --teal: #1A3232;
  --forest: #2C5A4E;
  --mint: #6BBFA0;
  --cream: #F7F3EE;
  --bone: #EDE8DF;
  --sand: #E2DAD0;
  --warm-white: #FDFAF6;
  --dark: #0F1F1F;
  --text-dark: #1A3232;
  --text-mid: #4A6060;
  --text-light: #8AA0A0;
  --muted: #7A9090;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(26,50,50,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,191,160,0.1);
}

.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: var(--cream);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 13px;
  color: rgba(247,243,238,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--cream); }

.nav-cta {
  background: var(--mint);
  color: var(--teal) !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500 !important;
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: #7DCFB0 !important; }

/* ── HAMBURGER TOGGLE ── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
}

nav.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

nav.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 260px; height: 100vh;
    background: var(--teal);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,0.2);
  }

  nav.nav-open .nav-links {
    transform: translateX(0);
  }

  .nav-links a { font-size: 15px; }
  .nav-cta { width: 100%; text-align: center; }
}

/* ── SECTION LABEL ── */
.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 16px;
  display: block;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--mint);
  color: var(--teal);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 17px 40px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: #7DCFB0; transform: translateY(-1px); }

.soft-link {
  font-size: 14px;
  color: rgba(247,243,238,0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(247,243,238,0.15);
  padding-bottom: 1px;
  transition: all 0.2s;
}

.soft-link:hover { color: var(--cream); border-color: rgba(247,243,238,0.4); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 48px 32px 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: rgba(247,243,238,0.4);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 12px;
  color: rgba(247,243,238,0.2);
  max-width: 200px;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col h5 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.3);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(247,243,238,0.45);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: rgba(247,243,238,0.75); }

.footer-bottom {
  border-top: 1px solid rgba(247,243,238,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 11px; color: rgba(247,243,238,0.18); }
.footer-copy a { color: rgba(247,243,238,0.18); text-decoration: none; }

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
  font-size: 11px;
  color: rgba(247,243,238,0.18);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(247,243,238,0.4); }

/* ── COOKIE BANNER ── */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--teal);
  border-top: 1px solid rgba(107,191,160,0.2);
  padding: 18px 32px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

#cookie-banner p {
  font-size: 13px;
  color: rgba(247,243,238,0.7);
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

#cookie-banner a {
  color: var(--mint);
  text-decoration: none;
  border-bottom: 1px solid rgba(107,191,160,0.4);
}

.cookie-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 9px 20px;
  cursor: pointer;
  border: none;
}

.cookie-btn-decline {
  background: transparent;
  border: 1px solid rgba(247,243,238,0.2);
  color: rgba(247,243,238,0.5);
}

.cookie-btn-accept {
  background: var(--mint);
  color: var(--teal);
  font-weight: 500;
}

/* ── ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
