/* ============================================
   MARGOT MARIE — Stylesheet
   Palette: Blush, Cream, Rose, Warm Charcoal
   ============================================ */

:root {
  --cream:       #FAF6F1;
  --blush:       #F2D9D0;
  --rose:        #C9897A;
  --rose-dark:   #A8695A;
  --petal:       #EBC4BA;
  --charcoal:    #2C2420;
  --warm-grey:   #7A6E6A;
  --light-grey:  #EDE8E3;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --max-w: 1200px;
  --nav-h: 72px;
}

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

html { scroll-behavior: smooth; }

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

/* ---- AGE GATE ---- */
#age-gate {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
#age-gate.hidden {
  opacity: 0;
  pointer-events: none;
}
.age-gate-inner {
  text-align: center;
  padding: 60px 40px;
  max-width: 480px;
}
.age-gate-logo {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--petal);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.age-gate-divider {
  width: 60px;
  height: 1px;
  background: var(--rose);
  margin: 0 auto 28px;
}
.age-gate-text {
  color: var(--light-grey);
  font-size: 1rem;
  margin-bottom: 8px;
}
.age-gate-sub {
  color: var(--warm-grey);
  font-size: 0.875rem;
  margin-bottom: 40px;
}
.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.btn-enter {
  background: var(--rose);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  width: 100%;
  max-width: 300px;
}
.btn-enter:hover { background: var(--rose-dark); }
.btn-exit {
  color: var(--warm-grey);
  font-size: 0.8rem;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}
.btn-exit:hover { color: var(--petal); }

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(250, 246, 241, 0.97);
  box-shadow: 0 1px 20px rgba(44,36,32,0.08);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.06em;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-links .nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 10px 22px;
  transition: background 0.3s !important;
}
.nav-links .nav-cta:hover { background: var(--rose-dark) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--charcoal);
  transition: 0.3s;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: calc(var(--nav-h) + 60px) 48px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 70% 50%, var(--blush) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 20%, var(--petal) 0%, transparent 60%),
    var(--cream);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9897A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--rose);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--warm-grey);
  max-width: 440px;
  margin-bottom: 44px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
  padding: 14px 32px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  padding: 14px 32px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}
.btn-ghost:hover { background: var(--charcoal); color: var(--cream); }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-grey);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ---- INTRO STRIP ---- */
.intro-strip {
  background: var(--charcoal);
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 40px;
}
.strip-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--rose);
  font-style: italic;
}
.strip-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-grey);
}
.strip-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.1);
}

/* ---- PHILOSOPHY ---- */
.philosophy {
  padding: 120px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 24px;
}
h2 em {
  font-style: italic;
  color: var(--rose);
}
.body-text {
  color: var(--warm-grey);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 32px;
}
.btn-underline {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 2px;
  transition: color 0.3s;
}
.btn-underline:hover { color: var(--rose); }
.philosophy-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.phil-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  padding: 28px 32px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.phil-card:hover {
  box-shadow: 0 8px 32px rgba(201,137,122,0.12);
  transform: translateY(-2px);
}
.phil-icon {
  color: var(--rose);
  font-size: 1rem;
  margin-bottom: 12px;
}
.phil-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.phil-card p {
  font-size: 0.88rem;
  color: var(--warm-grey);
  line-height: 1.7;
}

/* ---- SERVICES PREVIEW ---- */
.services-preview {
  background: var(--blush);
  padding: 100px 48px;
}
.services-header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.service-card {
  background: var(--cream);
  padding: 44px 36px;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s;
}
.service-card:hover::before { background: var(--rose); }
.service-card.featured {
  background: var(--charcoal);
}
.service-card.featured::before { background: var(--rose); }
.service-card:hover { box-shadow: 0 12px 40px rgba(44,36,32,0.12); transform: translateY(-4px); }
.service-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--petal);
  margin-bottom: 20px;
  line-height: 1;
}
.service-card.featured .service-num { color: var(--rose); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.service-card.featured h3 { color: var(--cream); }
.service-card p {
  font-size: 0.88rem;
  color: var(--warm-grey);
  line-height: 1.8;
  margin-bottom: 24px;
}
.service-card.featured p { color: rgba(250,246,241,0.7); }
.card-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--rose);
  transition: letter-spacing 0.3s;
}
.card-link:hover { letter-spacing: 0.18em; }

/* ---- CTA BAND ---- */
.cta-band {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'MM';
  position: absolute;
  font-family: var(--font-display);
  font-size: 28rem;
  font-style: italic;
  color: rgba(255,255,255,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}
.cta-inner { position: relative; z-index: 1; }
.cta-band h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}
.cta-band h2 em { color: var(--petal); }
.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 40px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-ghost-dark {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 14px 32px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s;
  display: inline-block;
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.15); }
.cta-band .btn-primary {
  background: var(--white);
  color: var(--rose-dark);
}
.cta-band .btn-primary:hover { background: var(--cream); }

/* ---- FOOTER ---- */
footer {
  background: var(--charcoal);
  padding: 80px 48px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--petal);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(250,246,241,0.5);
  font-size: 0.85rem;
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 8px;
}
.footer-email a {
  color: var(--rose);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-email a:hover { color: var(--petal); }
.footer-location {
  font-size: 0.8rem;
  color: rgba(250,246,241,0.35) !important;
}
.footer-links h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  font-weight: 400;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  color: rgba(250,246,241,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--petal); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.footer-bottom p {
  color: rgba(250,246,241,0.25);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

/* ---- PAGE HEADER (for inner pages) ---- */
.page-header {
  padding: calc(var(--nav-h) + 80px) 48px 80px;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, var(--blush) 0%, transparent 70%),
    var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: attr(data-title);
  position: absolute;
  font-family: var(--font-display);
  font-size: 18rem;
  font-style: italic;
  color: rgba(201,137,122,0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}
.page-header .section-eyebrow { margin-bottom: 12px; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.page-header h1 em { font-style: italic; color: var(--rose); }
.page-header .lead {
  font-size: 1.05rem;
  color: var(--warm-grey);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ---- GENERIC CONTENT SECTION ---- */
.content-section {
  padding: 100px 48px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.content-section.bg-blush {
  background: var(--blush);
  max-width: 100%;
  padding: 100px 48px;
}
.content-section.bg-blush .inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ---- FAQ ACCORDION ---- */
.faq-list { border-top: 1px solid var(--light-grey); }
.faq-item { border-bottom: 1px solid var(--light-grey); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .faq-icon {
  color: var(--rose);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 22px;
  color: var(--warm-grey);
  font-size: 0.93rem;
  line-height: 1.85;
  max-width: 680px;
}
.faq-a.open { display: block; }

/* ---- FORM STYLES ---- */
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--light-grey);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--charcoal);
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.8rem;
  color: var(--warm-grey);
  margin-bottom: 28px;
  line-height: 1.7;
}
.form-submit {
  width: 100%;
  background: var(--rose);
  color: var(--white);
  border: none;
  padding: 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.form-submit:hover { background: var(--rose-dark); }

/* ---- FEATURE LIST ---- */
.feature-list {
  list-style: none;
  margin: 24px 0;
}
.feature-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 0.93rem;
  color: var(--warm-grey);
  border-bottom: 1px solid var(--light-grey);
  line-height: 1.7;
}
.feature-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 0.6rem;
  top: 14px;
}

/* ---- INFO BOXES ---- */
.info-box {
  background: var(--blush);
  border-left: 3px solid var(--rose);
  padding: 24px 28px;
  margin: 32px 0;
}
.info-box p {
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.8;
}
.info-box strong { color: var(--rose-dark); }

/* ---- STEP CARDS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin: 48px 0;
}
.step-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--light-grey);
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-style: italic;
  color: var(--petal);
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.85rem;
  color: var(--warm-grey);
  line-height: 1.75;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  #navbar { padding: 0 24px; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(44,36,32,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--light-grey);
  }
  .nav-links .nav-cta {
    margin-top: 12px;
    text-align: center;
    border: none;
  }
  .nav-toggle { display: flex; }

  .hero { padding: 120px 24px 80px; }
  .hero-scroll { display: none; }
  .intro-strip { padding: 20px 24px; gap: 0; }
  .strip-item { padding: 10px 20px; }
  .strip-divider { display: none; }

  .philosophy {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 48px;
  }
  .services-preview { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 80px 24px; }
  footer { padding: 60px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }

  .page-header { padding: calc(var(--nav-h) + 48px) 24px 60px; }
  .page-header::before { font-size: 8rem; }
  .content-section { padding: 60px 24px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; }
  .age-gate-inner { padding: 40px 24px; }
  .age-gate-logo { font-size: 2.2rem; }
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
