/* ========================================
   MAUOKA — Global Styles (Fixed)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --white: #FDFCF9;
  --mint-light: #E8F5EF;
  --mint: #9DCFB1;
  --mint-dark: #5FA882;
  --gold: #C9A96E;
  --gold-light: #EDD9A3;
  --gold-dark: #A07840;
  --pastel-pink: #F5EBE8;
  --pastel-sage: #EDF5ED;
  --pastel-cream: #FAF6EE;
  --text-dark: #2C2C2C;
  --text-mid: #5A5A5A;
  --text-light: #9A9A9A;
  --border: rgba(201, 169, 110, 0.3);
  --shadow: 0 8px 40px rgba(90, 140, 100, 0.12);
  --shadow-gold: 0 4px 20px rgba(201, 169, 110, 0.2);
  --radius: 18px;
  --radius-sm: 10px;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', 'Segoe UI', system-ui, sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }

.label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
section { padding: 80px 0; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--mint-dark) 0%, #4a9470 100%);
  color: #fff;
  border: none;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(95, 168, 130, 0.4);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(95, 168, 130, 0.5); filter: brightness(1.05); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #fff;
  border: none;
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  text-decoration: none;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201, 169, 110, 0.45); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: transparent;
  color: var(--mint-dark);
  border: 2px solid var(--mint-dark);
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline:hover { background: var(--mint-light); transform: translateY(-2px); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: rgba(253, 252, 249, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  text-decoration: none;
}
.nav-logo span { color: var(--mint-dark); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--mint-dark); }
.nav-links a.active { font-weight: 500; }
.nav-cta { font-size: 0.8rem !important; padding: 10px 22px !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }

/* ── FOOTER ── */
.footer { background: #1e2a1f; color: rgba(255,255,255,0.65); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-logo { color: #fff; font-size: 1.5rem; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 0.84rem; line-height: 1.7; color: rgba(255,255,255,0.55); }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.84rem; color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--mint); }
.footer-contact li { display: flex; gap: 10px; font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; align-items: flex-start; }
.footer-contact li svg { flex-shrink: 0; margin-top: 3px; }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ── Medical Disclaimer ── */
.medical-disclaimer { background: rgba(0,0,0,0.2); border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0; text-align: center; }
.medical-disclaimer p { font-size: 0.74rem; color: rgba(255,255,255,0.38); max-width: 820px; margin: 0 auto; line-height: 1.6; }

/* ── Divider ── */
.divider { width: 56px; height: 2px; background: linear-gradient(to right, var(--gold), var(--mint)); margin: 18px 0 26px; border-radius: 2px; }

/* ── Cards ── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; transition: var(--transition); }
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--mint); }

/* ── Form ── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; color: var(--text-mid); margin-bottom: 7px; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 13px 17px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--mint-dark);
  box-shadow: 0 0 0 3px rgba(95, 168, 130, 0.15);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }

/* ── Badge ── */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: var(--mint-light); border-radius: 30px; font-size: 0.74rem; font-weight: 500; color: var(--mint-dark); letter-spacing: 0.03em; border: 1px solid rgba(95,168,130,0.2); }
.badge-gold { background: rgba(201, 169, 110, 0.15); color: var(--gold-dark); border-color: rgba(201,169,110,0.25); }

/* ── Page Hero ── */
.page-hero {
  padding: 150px 0 80px;
  background: linear-gradient(155deg, var(--pastel-sage) 0%, var(--white) 55%, var(--pastel-cream) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(157,207,177,0.18) 0%, transparent 70%);
  border-radius: 50%;
}

/* ── Section Title ── */
.section-title { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-title .label { margin-bottom: 12px; display: block; }
.section-title p { font-size: 1.02rem; color: var(--text-mid); margin-top: 14px; }

/* ── Animations ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.animate-fade-up { animation: fadeUp 0.6s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.34s; }
.delay-4 { animation-delay: 0.46s; }

/* ── Scroll reveal — FIXED: elements always visible by default ── */
.scroll-reveal { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
.scroll-reveal.hidden { opacity: 0; transform: translateY(24px); }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Cookie Modal ── */
.cookie-modal {
  position: fixed;
  bottom: 20px; left: 20px;
  max-width: 480px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.13);
  z-index: 9999;
  display: none;
}
.cookie-modal.show { display: block; animation: fadeUp 0.4s ease; }
.cookie-modal h4 { font-size: 1.05rem; margin-bottom: 8px; font-family: var(--font-display); }
.cookie-modal p { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 18px; line-height: 1.6; }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-accept { flex: 1; padding: 11px 18px; background: var(--mint-dark); color: #fff; border: none; border-radius: 40px; font-family: var(--font-body); font-size: 0.84rem; font-weight: 500; cursor: pointer; transition: var(--transition); min-width: 110px; }
.cookie-accept:hover { background: var(--mint); }
.cookie-decline { padding: 11px 18px; background: transparent; color: var(--text-mid); border: 1.5px solid var(--border); border-radius: 40px; font-family: var(--font-body); font-size: 0.84rem; cursor: pointer; transition: var(--transition); }
.cookie-decline:hover { border-color: var(--mint-dark); color: var(--mint-dark); }

/* ── Date ── */
.date-info { font-size: 0.77rem; color: var(--text-light); letter-spacing: 0.04em; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 600px) {
  section { padding: 52px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cookie-modal { left: 12px; right: 12px; max-width: none; }
}

/* Mobile Nav */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 99;
}
.nav-links.open a { font-size: 1.4rem; }
.nav-close { position: fixed; top: 22px; right: 22px; background: none; border: none; cursor: pointer; z-index: 101; font-size: 1.6rem; color: var(--text-dark); display: none; }

/* ── Utility ── */
.text-mint { color: var(--mint-dark); }
.text-gold { color: var(--gold-dark); }
