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

:root {
  --cream: #F4ECE1;
  --cream-mid: #EDE3D6;
  --dark: #2B2225;
  --rose: #1E3A5F;
  --blush: #A8BDD4;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1.1rem 3rem;
  background: #EAE0D3;
  box-shadow: 0 1px 0 rgba(43, 34, 37, 0.07);
  transition: background 0.35s, box-shadow 0.35s;
}
nav.scrolled {
  background: #E3D8CA;
  box-shadow: 0 1px 0 rgba(43, 34, 37, 0.11);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.nav-logo-sub {
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0.6;
}
.nav-mark { flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--dark);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--rose); }
.nav-links a.active { opacity: 1; color: var(--rose); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-cta {
  background: var(--rose);
  color: var(--cream);
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: #2a5080; transform: translateY(-1px); }

/* ── HERO ── */
.hero-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 9rem 3rem 5rem;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}
.hero-content { display: flex; flex-direction: column; align-items: flex-start; }
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 1.75rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(43, 34, 37, 0.6);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-ctas {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--rose);
  color: var(--cream);
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.925rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: #2a5080;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.35);
}
.btn-ghost {
  color: var(--dark);
  text-decoration: none;
  font-size: 0.925rem;
  font-weight: 400;
  opacity: 0.55;
  transition: opacity 0.2s;
}
.btn-ghost:hover { opacity: 1; }
.hero-visual {
  position: relative;
  height: 560px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ── CALENDAR ANIMATION ── */
.cal-scene {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem 2rem;
  gap: 1rem;
}
.cal-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(30,58,95,0.13);
  padding: 1.6rem 1.4rem 1.4rem;
  width: 100%;
  max-width: 460px;
  opacity: 0;
  animation: calFadeIn 0.5s ease-out 0.2s 1 forwards;
}
@keyframes calFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}
.cal-month-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.cal-badge {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--rose);
  background: rgba(30,58,95,0.09);
  padding: 0.22rem 0.6rem;
  border-radius: 99px;
  opacity: 0;
  animation: calFadeIn 0.4s ease-out 5.3s 1 forwards;
}
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 0.45rem;
}
.cal-weekdays span {
  text-align: center;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(43,34,37,0.3);
  padding-bottom: 0.4rem;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.3rem;
}
.cal-cell {
  position: relative;
  min-height: 58px;
  background: rgba(43,34,37,0.03);
  border-radius: 7px;
  padding: 0.35rem 0.4rem;
}
.cal-cell.today { background: rgba(30,58,95,0.07); }
.cal-num {
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(43,34,37,0.35);
  display: block;
  margin-bottom: 0.2rem;
}
.cal-cell.today .cal-num { color: var(--rose); font-weight: 700; }
.cal-event {
  background: var(--rose);
  color: #fff;
  font-size: 0.56rem;
  font-weight: 500;
  padding: 0.2rem 0.3rem;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transform: scale(0.6) translateY(4px);
  animation: eventPop 0.35s cubic-bezier(0.34,1.56,0.64,1) 1 forwards;
}
@keyframes eventPop {
  from { opacity: 0; transform: scale(0.6) translateY(4px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cal-event + .cal-event { margin-top: 0.18rem; }
.e1  { animation-delay: 0.6s; }
.e2  { animation-delay: 1.0s; }
.e3  { animation-delay: 1.5s; }
.e4  { animation-delay: 1.85s; }
.e5  { animation-delay: 2.05s; }
.e6  { animation-delay: 2.5s; }
.e7  { animation-delay: 2.9s; }
.e8  { animation-delay: 3.2s; }
.e9  { animation-delay: 3.5s; }
.e10 { animation-delay: 3.75s; }
.e11 { animation-delay: 3.95s; }
.e12 { animation-delay: 4.35s; }
.e13 { animation-delay: 4.75s; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.3;
}
.hero-scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--dark);
  transform-origin: top;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.3; }
  50% { transform: scaleY(0.45); opacity: 0.8; }
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--dark);
  padding: 3.5rem 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1;
  color: var(--blush);
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(244, 236, 225, 0.5);
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}

/* ── SHARED SECTION ── */
.section-pad {
  padding: 6rem 3rem;
}
.section-inner {
  max-width: 1160px;
  margin: 0 auto;
}
.section-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rose);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.section-desc {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(43, 34, 37, 0.6);
  max-width: 520px;
  line-height: 1.75;
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  padding: 11rem 3rem 4rem;
  background: var(--cream);
  text-align: center;
}
.page-hero .section-inner { max-width: 760px; }
.page-hero .section-desc { margin: 0 auto; max-width: 620px; }
.page-hero.on-dark { background: var(--dark); }
.page-hero.on-dark .section-title { color: var(--cream); }
.page-hero.on-dark .section-desc { color: rgba(244,236,225,0.55); }
.page-hero.on-dark .section-label { color: var(--blush); }

/* ── CTA BAND (subpages) ── */
.cta-band {
  background: var(--dark);
  text-align: center;
  padding: 5rem 2rem;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 0.85rem;
}
.cta-band h2 em { font-style: italic; color: var(--blush); }
.cta-band p {
  font-size: 1rem;
  color: rgba(244,236,225,0.5);
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* ── SERVICES ── */
.services-bg, .process-bg, .pricing-bg, .faqs-bg, .booking-bg {
  scroll-margin-top: 80px;
}
.services-bg { background: var(--dark); }
.services-bg .section-label { color: var(--blush); }
.services-bg .section-title { color: var(--cream); }
.services-bg .section-desc { color: rgba(244, 236, 225, 0.5); }
.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(244, 236, 225, 0.08);
}
.service-card {
  padding: 2.5rem;
  border-right: 1px solid rgba(244, 236, 225, 0.08);
  transition: background 0.3s;
}
.service-card:last-child { border-right: none; }
.service-card:hover { background: rgba(190, 101, 113, 0.06); }
.service-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: var(--rose);
  margin-bottom: 1.75rem;
  opacity: 0.8;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.service-card p {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(244, 236, 225, 0.48);
  line-height: 1.7;
}

/* ── SERVICES (expanded page) ── */
.service-detail {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(244, 236, 225, 0.1);
}
.service-detail:last-child { border-bottom: none; }
.service-detail .service-num { margin-bottom: 0; font-size: 1.4rem; }
.service-detail h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 0.9rem;
  line-height: 1.15;
}
.service-detail p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(244, 236, 225, 0.55);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 1.1rem;
}
.service-detail ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.service-detail li {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--blush);
  background: rgba(168, 189, 212, 0.1);
  border: 1px solid rgba(168, 189, 212, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
}

/* ── PROCESS ── */
.process-bg { background: var(--cream); }
.process-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 7rem;
  align-items: start;
}
.process-steps { display: flex; flex-direction: column; }
.process-step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(43, 34, 37, 0.09);
}
.process-step:first-child { padding-top: 0; }
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--rose);
  line-height: 1.1;
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}
.step-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(43, 34, 37, 0.55);
  line-height: 1.7;
}
.process-aside {
  position: sticky;
  top: 7rem;
}
.process-card {
  background: var(--dark);
  color: var(--cream);
  padding: 3rem;
  border-radius: 3px;
}
.process-card-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1.5rem;
}
.process-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.process-card h3 em { font-style: italic; color: var(--blush); }
.process-card p {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(244, 236, 225, 0.5);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.btn-rose {
  display: inline-block;
  background: var(--rose);
  color: var(--cream);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-rose:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(190, 101, 113, 0.35);
  background: #c97280;
}

/* ── PRICING ── */
.pricing-bg { background: var(--dark); }
.pricing-bg .section-label { color: var(--blush); }
.pricing-bg .section-title { color: var(--cream); }
.pricing-intro {
  color: rgba(244,236,225,0.5);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-top: 0.75rem;
}
.pricing-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 3.5rem;
}
.pricing-left {}
.pricing-rate {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pricing-rate-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pricing-rate-unit {
  font-size: 0.9rem;
  color: rgba(244,236,225,0.5);
  line-height: 1.4;
}
.pricing-rate-unit strong {
  display: block;
  color: rgba(244,236,225,0.75);
  font-weight: 500;
}
.pricing-guarantee-line {
  font-size: 0.9rem;
  color: rgba(244,236,225,0.5);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.pricing-guarantee-line em {
  color: var(--blush);
  font-style: normal;
  font-weight: 500;
}
.pricing-cta-link {
  display: inline-block;
  background: var(--cream);
  color: var(--rose);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.pricing-cta-link:hover { background: #e8ddd0; }
.pricing-roi {
  background: rgba(244,236,225,0.05);
  border: 1px solid rgba(244,236,225,0.1);
  border-radius: 14px;
  padding: 2rem;
}
.pricing-roi-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1.5rem;
}
.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(244,236,225,0.07);
}
.roi-row:last-child { border-bottom: none; }
.roi-label {
  font-size: 0.85rem;
  color: rgba(244,236,225,0.5);
}
.roi-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
}
.roi-value.highlight { color: #7EC8A0; }
.roi-divider {
  text-align: center;
  color: rgba(244,236,225,0.2);
  font-size: 1.2rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(244,236,225,0.07);
}
.roi-note {
  margin-top: 1.2rem;
  font-size: 0.75rem;
  color: rgba(244,236,225,0.3);
  line-height: 1.5;
}

/* ── PRICING (expanded page packages) ── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.pkg-card {
  background: rgba(244,236,225,0.05);
  border: 1px solid rgba(244,236,225,0.12);
  border-radius: 14px;
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
}
.pkg-card.featured {
  border-color: var(--blush);
  background: rgba(168,189,212,0.08);
}
.pkg-tag {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark);
  background: var(--blush);
  align-self: flex-start;
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  margin-bottom: 1.1rem;
}
.pkg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.pkg-price {
  font-size: 0.95rem;
  color: var(--blush);
  font-weight: 500;
  margin-bottom: 1.4rem;
}
.pkg-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex-grow: 1;
}
.pkg-card li {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(244,236,225,0.6);
  line-height: 1.5;
  padding-left: 1.3rem;
  position: relative;
}
.pkg-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--blush);
  font-size: 0.7rem;
  top: 0.15rem;
}

/* ── FAQs ── */
.faqs-bg { background: var(--cream-mid); }
.faqs-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 7rem;
  align-items: start;
}
.faqs-left { position: sticky; top: 7rem; }
.faq-list { margin-top: 0; }
.faq-item { border-top: 1px solid rgba(43, 34, 37, 0.1); }
.faq-item:last-child { border-bottom: 1px solid rgba(43, 34, 37, 0.1); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.35rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.975rem;
  font-weight: 400;
  color: var(--dark);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--rose); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(43, 34, 37, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.faq-icon svg { width: 10px; height: 10px; transition: transform 0.3s; }
.faq-item.open .faq-icon {
  background: var(--rose);
  border-color: var(--rose);
  color: white;
}
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(43, 34, 37, 0.6);
  line-height: 1.75;
}

/* ── BOOKING ── */
.booking-bg { background: var(--cream-mid); }
.booking-header {
  text-align: center;
  padding: 5rem 2rem 4rem;
}
.booking-header .section-label { color: var(--rose); font-size: 1.1rem; letter-spacing: 0.08em; }
.booking-header .section-title { color: var(--dark); margin-bottom: 1rem; }
.booking-header .section-desc {
  margin: 0 auto;
  max-width: 500px;
  color: rgba(43, 34, 37, 0.6);
}
.cal-container {
  background: var(--cream-mid);
  padding: 3rem 2rem 4rem;
}
.cal-wrapper {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(43, 34, 37, 0.08);
}
#sweetlead-cal {
  width: 100%;
  min-height: 640px;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(244, 236, 225, 0.06);
  padding: 1.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
footer .nav-logo { color: var(--cream); opacity: 0.4; font-size: 1.15rem; }
footer p {
  font-size: 0.78rem;
  color: rgba(244, 236, 225, 0.28);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .nav-logo { font-size: 1.9rem; }
  .nav-logo-sub { font-size: 1.1rem; }
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 4rem; gap: 2.5rem; }
  .hero-visual { height: 380px; background: transparent; border-radius: 0; }
  .hero-scroll { display: none; }
  .hero-content { align-items: center; text-align: center; }
  .hero-sub { max-width: 100%; }
  .section-pad { padding: 4.5rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
  .stats-strip { grid-template-columns: 1fr; padding: 3rem 2rem; gap: 2.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(2) { border-right: none; }
  .service-card:nth-child(3) { border-top: 1px solid rgba(244, 236, 225, 0.08); }
  .service-card:nth-child(4) { border-right: none; border-top: 1px solid rgba(244, 236, 225, 0.08); }
  .process-layout { grid-template-columns: 1fr; gap: 3.5rem; }
  .pricing-body { grid-template-columns: 1fr; gap: 3rem; }
  .pkg-grid { grid-template-columns: 1fr; }
  .process-aside { position: static; }
  .faqs-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .faqs-left { position: static; }
  .booking-header { padding: 3.5rem 1.5rem 2.5rem; }
  .cal-container { padding: 1.5rem 1rem 3rem; }
  .service-detail { grid-template-columns: 1fr; gap: 0.75rem; }
  footer { flex-direction: column; text-align: center; padding: 1.75rem 1.5rem; }
}
@media (max-width: 600px) {
  nav { padding: 0.85rem 1.25rem; }
  .nav-logo { font-size: 1.6rem; gap: 0.4rem; }
  .nav-logo-sub { font-size: 0.95rem; }
  .nav-mark { width: 28px; height: 25px; }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.78rem; }
  .hero { padding: 6rem 1.25rem 3rem; }
  .hero h1 { font-size: clamp(2.6rem, 10vw, 3.8rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-visual { height: auto; background: transparent; border-radius: 0; box-shadow: none; }
  .cal-scene { padding: 0.5rem 0 1rem; }
  .cal-card { padding: 1rem 0.9rem 0.9rem; }
  .cal-month-label { font-size: 1.05rem; }
  .cal-badge { font-size: 0.58rem; padding: 0.18rem 0.45rem; }
  .cal-cell { min-height: 46px; padding: 0.22rem 0.28rem; }
  .cal-event { font-size: 0.48rem; padding: 0.12rem 0.22rem; }
  .btn-ghost { display: none; }
  .section-pad { padding: 3.5rem 1.25rem; }
  .section-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; border-top: 1px solid rgba(244, 236, 225, 0.08); padding: 1.75rem 1.5rem; }
  .service-card:first-child { border-top: none; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .process-card { padding: 2rem 1.5rem; }
  .pricing-rate-num { font-size: 3.5rem; }
  .pricing-roi { padding: 1.5rem; }
  .stats-strip { padding: 2.5rem 1.25rem; }
  .booking-header { padding: 3rem 1.25rem 2rem; }
  .booking-header .section-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  footer .nav-logo { font-size: 1rem; }
  #intro-logo-sub { font-size: clamp(0.75rem, 3.5vw, 1.1rem); }
}
/* ── HAMBURGER MENU ── */
#menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
}
#menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
#menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#menu-toggle.open span:nth-child(2) { opacity: 0; }
#menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#mobile-menu {
  display: none;
  position: fixed;
  top: 56px;
  left: 0; right: 0;
  background: #EAE0D3;
  z-index: 99;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 0;
  box-shadow: 0 4px 24px rgba(43,34,37,0.1);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
#mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}
.mobile-link {
  display: block;
  padding: 0.95rem 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(43,34,37,0.08);
  opacity: 0.75;
}
.mobile-link:last-of-type { border-bottom: none; }
.mobile-cta {
  display: block;
  margin-top: 1.25rem;
  background: var(--rose);
  color: var(--cream);
  text-decoration: none;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 900px) {
  #menu-toggle { display: flex; }
  .nav-cta { display: none; }
  #mobile-menu { display: flex; }
}

/* ── INTRO ANIMATION ── */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
#intro-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 10vw, 6rem);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
  white-space: nowrap;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  transform-origin: center center;
}
#intro-logo-sub {
  font-size: 2.6rem;
  font-weight: 400;
  opacity: 0.6;
}
