@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=DM+Sans:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --ivory: #FAF6F0;
  --ivory-dark: #F2EBE0;
  --cream: #EDE3D5;
  --coffee: #6B4A35;
  --coffee-light: #8B6651;
  --coffee-dark: #4A3025;
  --gold: #C9A84C;
  --gold-light: #E4C97A;
  --gold-pale: #F5E9C8;
  --text-dark: #2C1A0E;
  --text-mid: #5C4033;
  --text-soft: #8B7355;
  --white: #FFFFFF;
  --shadow-warm: rgba(107, 74, 53, 0.12);
  --shadow-gold: rgba(201, 168, 76, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--coffee-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

.serif-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
}

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

/* ===== NAVIGATION ===== */
nav {
  background: var(--ivory);
  border-bottom: 1px solid var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px var(--shadow-warm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--coffee-dark);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.3s;
  text-transform: uppercase;
}

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

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  font-weight: 500 !important;
}

.nav-cta:hover {
  background: var(--coffee) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--coffee-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--coffee);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--shadow-gold);
}

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

.btn-outline:hover {
  background: var(--coffee);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== GOLD DIVIDER ===== */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px auto;
  border-radius: 2px;
}

.gold-line-left {
  margin: 16px 0;
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px var(--shadow-warm);
  border: 1px solid var(--cream);
}

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--cream);
  border-radius: 10px;
  background: var(--ivory);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group input::placeholder {
  color: var(--text-soft);
  font-weight: 300;
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(135deg, var(--ivory) 0%, var(--ivory-dark) 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-pale) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold-pale);
  color: var(--coffee);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  border: 1px solid var(--gold-light);
  margin-bottom: 16px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--coffee-dark);
  color: var(--cream);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--gold-light);
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(230,210,190,0.8);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(230,210,190,0.75);
  font-size: 0.88rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(230,210,190,0.75);
}

.footer-contact-item .icon {
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(230,210,190,0.5);
}

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

.footer-legal-links a {
  font-size: 0.82rem;
  color: rgba(230,210,190,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: var(--gold-light);
}

/* Medical Disclaimer */
.medical-disclaimer {
  background: rgba(0,0,0,0.2);
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.medical-disclaimer p {
  font-size: 0.78rem;
  color: rgba(230,210,190,0.45);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== COOKIE MODAL ===== */
.cookie-overlay {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 520px;
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
  border: 1px solid var(--cream);
  z-index: 9999;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-overlay.show {
  display: block;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--coffee-dark);
  margin-bottom: 10px;
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 20px;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: none;
}

.cookie-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btns .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ===== SECTION TITLES ===== */
.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 48px;
  font-weight: 300;
}

/* ===== DECORATIVE ELEMENTS ===== */
.leaf-deco {
  display: inline-block;
  color: var(--gold);
  font-size: 1rem;
  margin: 0 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--cream);
    box-shadow: 0 8px 24px var(--shadow-warm);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
  }

  .nav-cta {
    margin: 8px 24px !important;
    border-radius: 30px !important;
    text-align: center !important;
    padding: 12px 24px !important;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 56px 0;
  }
}

/* ===== PAGE HERO BANNER ===== */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory-dark) 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero-tag {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ===== FAQ ===== */
.faq-item {
  border-bottom: 1px solid var(--cream);
  padding: 24px 0;
}

.faq-question {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--coffee-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-question .icon {
  color: var(--gold);
  font-size: 1.3rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-answer {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-top: 16px;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

/* ===== STEPS ===== */
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 16px;
}

/* ===== TRUST BADGES ===== */
.trust-bar {
  background: var(--coffee-dark);
  padding: 16px 0;
  overflow: hidden;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.trust-item svg {
  color: var(--gold-light);
}

/* ===== CURRENT DATE ===== */
.current-date {
  font-size: 0.8rem;
  color: var(--text-soft);
}
