/** Shopify CDN: Minification failed

Line 2864:12 Expected identifier but found whitespace
Line 2864:13 Unexpected "20px"

**/
/* ============================================
   SHINING COACHING — THEME CSS
   Design System: Official Brand Palette
   Core: Charcoal / White / Gold / Soft Grey
   Accent: Campaign Burgundy
   ============================================ */

:root {
  /* ── Official Brand Colours ── */
  --gold:         #C3A76F;   /* Gold */
  --gold-light:   #E8D8A3;   /* Light Gold */
  --gold-pale:    #F5EDD8;   /* very pale tint for backgrounds */
  --charcoal:     #43444B;   /* Charcoal — primary dark */
  --dark:         #43444B;   /* alias → charcoal */
  --dark-2:       #2E2F35;   /* deeper charcoal for overlays */
  --dark-3:       #1E1F23;   /* darkest charcoal */
  --white:        #FCFCFC;   /* White */
  --soft-grey:    #EAEAEA;   /* Soft Grey */
  --cream:        #FCFCFC;   /* alias → white */
  --cream-2:      #EAEAEA;   /* alias → soft grey */
  --warm-white:   #FAFAFA;   /* page background */
  --burgundy:     #7A2E3A;   /* Campaign Burgundy — selected accents */

  /* Text */
  --text-body:    #43444B;
  --text-muted:   #7A7B82;
  --text-light:   #AEAFB5;

  /* Typography — matching brand serif + geometric sans */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Josefin Sans', sans-serif;
  --font-body:    'Montserrat', sans-serif;

  /* Spacing */
  --section-padding: clamp(60px, 8vw, 120px);
  --container-max: 1280px;
  --container-wide: 1440px;

  /* Transitions */
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Shadows — charcoal-tinted */
  --shadow-soft:   0 4px 30px rgba(67, 68, 75, 0.08);
  --shadow-medium: 0 8px 50px rgba(67, 68, 75, 0.14);
  --shadow-strong: 0 20px 80px rgba(67, 68, 75, 0.22);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============ TYPOGRAPHY ============ */
.display-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

.section-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
}

/* ============ LAYOUT ============ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.container--wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.section-padding {
  padding: var(--section-padding) 0;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: var(--transition);
}

.btn:hover::before { transform: translateX(0); }

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

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(195, 167, 111, 0.45);
}

.btn--dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(67, 68, 75, 0.3);
}

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

.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn--outline-cream {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(252,252,252,0.4);
}

.btn--outline-cream:hover {
  background: rgba(252, 252, 252, 0.1);
  border-color: var(--white);
}

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

.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* Campaign Burgundy button — use for bridal/selected campaigns */
.btn--burgundy {
  background: var(--burgundy);
  color: var(--white);
}

.btn--burgundy:hover {
  background: #8e3545;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(122, 46, 58, 0.35);
}

.btn svg { transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}

.site-header.scrolled,
.header-solid .site-header {
  background: var(--charcoal) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(67,68,75,0.25);
}

/* Offset page content so it doesn't hide under solid header on non-hero pages */
.header-solid #main-content > section:not(.ss-hero):not(.be-hero):not(.op-hero):not(.rc-hero):first-child,
.header-solid #main-content > div:first-child {
  padding-top: 80px;
}

/* Nav always white (over dark hero photo) */
.main-nav__link {
  color: rgba(252,252,252,0.85);
}

.main-nav__link:hover { color: var(--gold); }

/* Logo always white over dark bg */
.site-logo__text-shining {
  color: var(--white) !important;
}

/* Cart icon */
[data-cart-trigger] {
  color: rgba(252,252,252,0.85);
}

/* Mobile toggle */
.menu-toggle span {
  background: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo__text {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}

.site-logo__sub {
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.site-logo img {
  height: 50px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav__item {
  position: relative;
}

.main-nav__link {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(252,252,252,0.8);
  padding: 8px 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav__link:hover { color: var(--gold); }

.main-nav__link .chevron {
  width: 10px;
  height: 10px;
  transition: transform var(--transition);
}

.main-nav__item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--dark-2);
  border: 1px solid rgba(195, 167, 111, 0.25);
  min-width: 220px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-strong);
}

.main-nav__item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__link {
  display: block;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(252,252,252,0.72);
  transition: var(--transition);
}

.nav-dropdown__link:hover {
  color: var(--gold);
  padding-left: 28px;
}

.header-cta {
  flex-shrink: 0;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--soft-grey);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-nav.active { display: flex; }

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  letter-spacing: 0.05em;
  transition: var(--transition);
  text-align: center;
}

.mobile-nav__link:hover { color: var(--gold); }

.mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--charcoal);
  font-size: 30px;
  cursor: pointer;
  line-height: 1;
}

/* ============ HERO — FULL WIDTH EDITORIAL ============ */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* ── Background ── */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-placeholder {
  width: 100%;
  height: 100%;
  /* Elegant gradient until photo is added */
  background:
    linear-gradient(160deg,
      #1E1F23 0%,
      #2E2F35 40%,
      #35302A 75%,
      #2A2520 100%);
}

/* Photo version — add class="hero__bg-img" to <img> when uploading */
.hero__bg img,
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

/* Multi-layer overlay: darkened for text legibility */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(20,18,14,0.72) 0%,
      rgba(20,18,14,0.45) 35%,
      rgba(20,18,14,0.45) 55%,
      rgba(15,13,10,0.88) 78%,
      rgba(15,13,10,0.97) 100%
    );
}

/* ── Main container ── */
.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px) 70px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Eyebrow ── */
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.2s;
}

.hero__eyebrow span {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.hero__eyebrow-line {
  height: 1px;
  background: rgba(195,167,111,0.5);
  flex: 0 0 44px;
}

/* ── Headline ── */
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 9vw, 130px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  max-width: 820px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.35s;
}

.hero__headline em {
  color: var(--gold);
  font-style: italic;
}

/* ── Sub ── */
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 300;
  color: rgba(252,252,252,0.72);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.55s;
}

/* ── CTAs ── */
.hero__cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
  animation-delay: 0.7s;
}

.hero__btn-primary {
  /* override default btn padding for hero */
  padding: 17px 40px;
  font-size: 11px;
}

.hero__link-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,252,252,0.75);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid rgba(195,167,111,0.4);
  padding-bottom: 3px;
}

.hero__link-secondary:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.hero__link-secondary svg { transition: transform var(--transition); }
.hero__link-secondary:hover svg { transform: translateX(4px); }

/* ── Trust strip ── */
.hero__trust {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(195,167,111,0.2);
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1s;
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 32px;
}

.hero__trust-number {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero__trust-number em {
  color: var(--gold);
  font-style: normal;
}

.hero__trust-label {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,252,252,0.45);
}

.hero__trust-sep {
  color: var(--gold);
  opacity: 0.4;
  font-size: 12px;
  padding: 0 28px 0 0;
  flex-shrink: 0;
  margin-bottom: 16px; /* align with number baseline */
}

/* ── Scroll ── */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  right: clamp(20px,5vw,80px);
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s forwards;
  animation-delay: 1.4s;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(195,167,111,0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    min-height: 100vh;
    justify-content: flex-end;
  }

  .hero__bg img,
  .hero__bg-img {
    object-position: 70% 20%;
  }

  .hero__container {
    padding: 0 20px 50px;
  }

  .hero__headline {
    font-size: clamp(44px, 12vw, 72px);
    margin-bottom: 18px;
  }

  .hero__sub {
    font-size: 14px;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 40px;
  }

  .hero__btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
  }

  .hero__trust-sep--hide,
  .hero__trust-item--hide {
    display: none;
  }

  .hero__trust-item {
    padding-right: 20px;
  }

  .hero__trust-sep {
    padding-right: 20px;
  }

  .hero__trust-number {
    font-size: 20px;
  }

  .hero__scroll { display: none; }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: clamp(38px, 11vw, 58px);
    line-height: 1;
  }

  .hero__eyebrow-line { flex: 0 0 24px; }

  .hero__trust {
    gap: 0;
  }

  .hero__trust-item {
    padding-right: 14px;
  }

  .hero__trust-sep {
    padding-right: 14px;
    font-size: 10px;
  }
}


/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--charcoal);
  padding: 28px 0;
  border-top: 1px solid rgba(195, 167, 111, 0.2);
  border-bottom: 1px solid rgba(195, 167, 111, 0.2);
  overflow: hidden;
}

.trust-bar__track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
  will-change: transform;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  padding: 0 48px;
}

.trust-bar__item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.trust-bar__item .number {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.trust-bar__item .label {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252, 252, 252, 0.6);
  display: block;
}

.trust-bar__divider {
  color: var(--gold);
  opacity: 0.3;
  font-size: 20px;
  flex-shrink: 0;
  padding: 0 8px;
}

/* ============ TESTIMONIALS PREVIEW ============ */
.testimonials-preview {
  background: var(--soft-grey);
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.section-header .section-label {
  display: block;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 48px;
}

.testimonial-card {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: pointer;
  background: var(--dark-3);
}

/* Remove the old spanning first card */
.testimonial-card:first-child {
  grid-row: span 1;
  aspect-ratio: 1/1;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.testimonial-card:hover img { transform: scale(1.06); }

.testimonial-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,8,6,0.95) 0%,
    rgba(10,8,6,0.7) 50%,
    rgba(10,8,6,0.35) 100%
  );
  opacity: 0;
  transition: var(--transition);
}

.testimonial-card:hover .testimonial-card__overlay { opacity: 1; }

.testimonial-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

.testimonial-card:hover .testimonial-card__content {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 8px;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Placeholder for testimonial cards without images */
.testimonial-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.testimonial-placeholder .stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.testimonial-placeholder blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--white);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 16px;
}

.testimonial-placeholder cite {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ============ BRAND INTRO ============ */
.brand-intro {
  background: var(--charcoal);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.brand-intro__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 15vw, 200px);
  font-weight: 300;
  font-style: italic;
  color: rgba(195, 167, 111, 0.05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.brand-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.brand-intro__visual {
  position: relative;
}

.brand-intro__image-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.brand-intro__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-intro__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-intro__image-placeholder span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: rgba(252, 252, 252, 0.3);
  letter-spacing: 0.1em;
}

.brand-intro__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(195, 167, 111, 0.3);
  pointer-events: none;
}

.brand-intro__label {
  margin-bottom: 20px;
}

.brand-intro__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 30px;
}

.brand-intro__heading em {
  color: var(--gold);
  font-style: italic;
}

.brand-intro__body p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(252, 252, 252, 0.72);
  line-height: 1.9;
  margin-bottom: 20px;
}

.brand-intro__pullquote {
  border-left: 2px solid var(--gold);
  padding: 20px 30px;
  margin: 36px 0;
  background: rgba(195, 167, 111, 0.07);
}

.brand-intro__pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--gold-light);
  line-height: 1.5;
  margin: 0;
}

/* ============ WHO IT'S FOR ============ */
.who-for {
  background: var(--soft-grey);
  padding: var(--section-padding) 0;
}

.who-for__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.who-for__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0;
}

.who-for__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border-left: 3px solid transparent;
  transition: var(--transition);
  cursor: default;
}

.who-for__item:hover {
  border-left-color: var(--gold);
  box-shadow: var(--shadow-soft);
  transform: translateX(6px);
}

.who-for__item-icon {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.who-for__item-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.7;
}

.who-for__closing {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--charcoal);
  margin-bottom: 32px;
}

.who-for__visual {
  position: relative;
}

.who-for__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.who-for__image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-for__image-placeholder span {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(252,252,252,0.3);
  font-size: 16px;
}

.who-for__stat-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 20px 24px;
  box-shadow: var(--shadow-medium);
}

.who-for__stat-badge .stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  display: block;
}

.who-for__stat-badge .stat-label {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* ============ SERVICES ============ */
.services {
  background: var(--white);
  padding: var(--section-padding) 0;
}

.services__intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--soft-grey);
}

.service-card {
  background: var(--white);
  padding: clamp(36px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover { box-shadow: var(--shadow-medium); }

.service-card--featured {
  background: var(--charcoal);
  grid-column: span 1;
}

.service-card__number {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 300;
  color: var(--soft-grey);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.3;
  transition: var(--transition);
  display: block;
}

.service-card:hover .service-card__number,
.service-card--featured .service-card__number { opacity: 0.5; }

.service-card--featured .service-card__number { color: var(--gold); }

.service-card__badge {
  display: inline-block;
  padding: 5px 14px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  align-self: flex-start;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 8px;
}

.service-card--featured .service-card__title { color: var(--white); }

.service-card__subtitle {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card__text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 32px;
}

.service-card--featured .service-card__text { color: rgba(252,252,252,0.65); }

.service-card__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

/* ============ MEET GEMMA ============ */
.meet-gemma {
  background: var(--white);
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.meet-gemma__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.meet-gemma__image-col {
  position: relative;
}

.meet-gemma__image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
}

.meet-gemma__image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--dark-2), var(--dark-3));
  display: flex;
  align-items: center;
  justify-content: center;
}

.meet-gemma__image-placeholder span {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(252,252,252,0.25);
  font-size: 16px;
}

.meet-gemma__gold-line {
  position: absolute;
  top: 30px;
  left: -15px;
  width: 3px;
  height: 40%;
  background: var(--gold);
}

.meet-gemma__label { margin-bottom: 16px; }

.meet-gemma__heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 8px;
}

.meet-gemma__heading em {
  color: var(--gold);
  font-style: italic;
}

.meet-gemma__role {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
  display: block;
}

.meet-gemma__body p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 20px;
}

.meet-gemma__quals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}

.qual-tag {
  padding: 8px 18px;
  border: 1px solid rgba(195, 167, 111, 0.4);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: var(--transition);
}

.qual-tag:hover {
  border-color: var(--gold);
  color: var(--charcoal);
  background: var(--gold-pale);
}

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--charcoal);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: 
    radial-gradient(circle at 20% 50%, var(--gold) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, var(--gold) 0%, transparent 50%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta__label { margin-bottom: 24px; }

.final-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.final-cta__heading em { color: var(--gold); }

.final-cta__body {
  font-size: 16px;
  font-weight: 300;
  color: rgba(252,252,252,0.72);
  line-height: 1.8;
  margin-bottom: 48px;
}

.final-cta__divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}

.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ============ CONTACT FORM ============ */
.contact-form-section {
  background: var(--soft-grey);
  padding: var(--section-padding) 0;
}

.contact-form-section .container {
  max-width: 640px;
}

.contact-form__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 8px;
}

.contact-form__sub {
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(67, 68, 75, 0.15);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(195,167,111,0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-group select option { background: var(--white); color: var(--charcoal); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  text-align: center;
  margin-top: 36px;
}

.form-success {
  text-align: center;
  padding: 30px;
  background: rgba(195, 167, 111, 0.08);
  border: 1px solid rgba(195, 167, 111, 0.3);
  display: none;
}

.form-success p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(195, 167, 111, 0.12);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(252, 252, 252, 0.1);
  margin-bottom: 36px;
}

.footer-brand__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: rgba(252,252,252,0.5);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social__link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(195, 167, 111, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(252,252,252,0.5);
  transition: var(--transition);
  font-size: 14px;
}

.footer-social__link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-nav h4 {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav ul li a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(252,252,252,0.5);
  transition: var(--transition);
}

.footer-nav ul li a:hover {
  color: var(--white);
  padding-left: 6px;
}

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

.footer-bottom p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(252, 252, 252, 0.3);
  letter-spacing: 0.05em;
}

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

.footer-legal a {
  font-size: 11px;
  color: rgba(252, 252, 252, 0.3);
  transition: var(--transition);
}

.footer-legal a:hover { color: var(--white); }

/* ============ SERVICE PAGES ============ */
.page-hero {
  background: var(--charcoal);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,11,8,0.9) 40%, rgba(14,11,8,0.5) 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero__label { margin-bottom: 20px; }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.page-hero__title em { color: var(--gold); }

.page-hero__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(252,252,252,0.75);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
}

.service-content {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.service-content__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.service-intro-text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-body);
  margin-bottom: 50px;
}

.service-intro-text p { margin-bottom: 20px; }

.includes-section { margin-bottom: 50px; }

.includes-section h3 {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.includes-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  transition: var(--transition);
}

.includes-item:hover {
  background: var(--soft-grey);
  padding-left: 28px;
}

.includes-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.includes-item span {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.6;
}

/* Sticky sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--charcoal);
  padding: 36px;
  margin-bottom: 20px;
}

.sidebar-card__title {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.sidebar-card__price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.sidebar-card__price-note {
  font-size: 12px;
  font-weight: 300;
  color: rgba(252,252,252,0.4);
  margin-bottom: 24px;
}

.sidebar-card__divider {
  height: 1px;
  background: rgba(195, 167, 111, 0.18);
  margin: 20px 0;
}

.sidebar-card__cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 12px; }

/* Bridal extras */
.extras-section {
  background: var(--white);
  padding: var(--section-padding) 0;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.extra-card {
  background: var(--white);
  padding: 32px 28px;
  border-top: 3px solid transparent;
  transition: var(--transition);
}

.extra-card:hover {
  border-top-color: var(--gold);
  box-shadow: var(--shadow-soft);
}

.extra-card__price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}

.extra-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 12px;
}

.extra-card__text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Plans page pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  border: 1px solid transparent;
  transition: var(--transition);
}

.pricing-card:hover, .pricing-card--featured {
  border-color: var(--gold);
}

.pricing-card--featured {
  background: var(--charcoal);
}

.pricing-card--featured * { color: var(--white) !important; }
.pricing-card--featured .pricing-card__price { color: var(--gold) !important; }

.pricing-card__featured-label {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 16px;
}

.pricing-card__title {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: block;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card__sub {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-card .btn { width: 100%; justify-content: center; }

/* ============ SCROLL TOP ============ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-medium);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--gold-light);
  transform: translateY(-4px);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============ PRODUCT PAGE ============ */
.product-page {
  padding: 120px 0 var(--section-padding);
  background: var(--white);
}

.product-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-images__main {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--soft-grey);
  margin-bottom: 8px;
}

.product-images__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 8px;
}

.product-info__price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 28px;
}

.product-info__desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 32px;
}

.product-form .btn { width: 100%; justify-content: center; font-size: 12px; padding: 18px; }

/* ============ CART DRAWER ============ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(67, 68, 75, 0.65);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: var(--charcoal);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  border-left: 1px solid rgba(195, 167, 111, 0.18);
}

.cart-drawer.active { transform: translateX(0); }

.cart-drawer__header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(195, 167, 111, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
}

.cart-drawer__close {
  background: none;
  border: none;
  color: rgba(252,252,252,0.5);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  transition: var(--transition);
}

.cart-drawer__close:hover { color: var(--white); }

.cart-drawer__items { flex: 1; overflow-y: auto; padding: 20px 28px; }

.cart-drawer__footer {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(195, 167, 111, 0.12);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cart-total__label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,252,252,0.5);
}

.cart-total__price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
}

/* ============ ABOUT PAGE ============ */
.about-page {
  padding: 120px 0 var(--section-padding);
}

.about-hero {
  background: var(--charcoal);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-values {
  background: var(--white);
  padding: var(--section-padding) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--soft-grey);
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  background: var(--charcoal);
}

.value-card:hover .value-card__title { color: var(--white); }
.value-card:hover .value-card__text { color: rgba(252,252,252,0.65); }

.value-card__icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
  transition: var(--transition);
}

.value-card__text {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  transition: var(--transition);
}

/* ============ UTILITY ============ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-cream { color: var(--white); }
.mt-auto { margin-top: auto; }
.w-full { width: 100%; }

.gold-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(195, 167, 111, 0.35);
}

.gold-divider span {
  color: var(--gold);
  font-size: 16px;
}

/* ============ RESPONSIVE — MOBILE FIRST ============ */

/* ── Tablet: 768px–1024px ── */
@media (max-width: 1024px) {
  :root { --section-padding: clamp(50px, 7vw, 90px); }

  .services__grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .service-content__grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .extras-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 48px auto 0; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile: ≤768px ── */
@media (max-width: 768px) {
  /* Nav */
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .site-header { padding: 16px 0; }
  .site-header.scrolled { padding: 12px 0; }

  /* Trust bar */
  .trust-bar__item { padding: 0 24px; }
  .trust-bar__item .number { font-size: 20px; }
  .trust-bar__item .label { font-size: 9px; }

  /* Section headers */
  .section-header h2 { font-size: clamp(28px, 8vw, 42px); }
  .section-header p { font-size: 14px; }

  /* Testimonials — 2 columns on mobile, all 6 cards */
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3px;
  }
  .testimonial-card:first-child { grid-row: span 1; aspect-ratio: 1/1; }
  .testimonial-card { aspect-ratio: 1/1; }
  .testimonial-card:nth-child(6) { display: block; }
  .testimonial-card__overlay { opacity: 1; }
  .testimonial-card__content { opacity: 1; transform: translateY(0); }

  /* Brand intro */
  .brand-intro__grid { grid-template-columns: 1fr; gap: 32px; }
  .brand-intro__image-accent { display: none; }
  .brand-intro__image-wrapper { aspect-ratio: 4/3; }
  .brand-intro__heading { font-size: clamp(28px, 7vw, 40px); }
  .brand-intro__body p { font-size: 14px; }
  .brand-intro__pullquote { padding: 16px 20px; }
  .brand-intro__pullquote p { font-size: clamp(16px, 4vw, 20px); }

  /* Who it's for */
  .who-for__grid { grid-template-columns: 1fr; gap: 28px; }
  .who-for__visual { order: -1; }
  .who-for__image { aspect-ratio: 4/3; }
  .who-for__image-placeholder { aspect-ratio: 4/3; }
  .who-for__stat-badge {
    left: 16px;
    bottom: 16px;
    padding: 14px 18px;
  }
  .who-for__stat-badge .stat-number { font-size: 32px; }
  .who-for__item { padding: 14px 16px; }
  .who-for__item:hover { transform: none; }
  .who-for__closing { font-size: clamp(18px, 5vw, 24px); }

  /* Services */
  .services__grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { padding: 28px 22px; }
  .service-card__number { font-size: 56px; margin-bottom: 12px; }
  .service-card__title { font-size: clamp(20px, 5vw, 26px); }
  .service-card__cta { flex-direction: column; }
  .service-card__cta .btn { width: 100%; justify-content: center; }

  /* Meet Gemma */
  .meet-gemma__inner { grid-template-columns: 1fr; gap: 28px; }
  .meet-gemma__image { aspect-ratio: 4/3; object-position: center 35%; }
  .meet-gemma__image-placeholder { aspect-ratio: 4/3; }
  .meet-gemma__gold-line { display: none; }
  .meet-gemma__heading { font-size: clamp(30px, 8vw, 44px); }
  .meet-gemma__quals { gap: 8px; }
  .qual-tag { padding: 6px 14px; font-size: 8px; }

  /* Final CTA */
  .final-cta__heading { font-size: clamp(30px, 8vw, 50px); }
  .final-cta__body { font-size: 14px; margin-bottom: 32px; }
  .final-cta__buttons { flex-direction: column; align-items: stretch; }
  .final-cta__buttons .btn { width: 100%; justify-content: center; }

  /* Contact form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form__heading { font-size: clamp(22px, 6vw, 32px); }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .footer-legal { justify-content: center; }
  .footer-brand__tagline { max-width: 100%; }

  /* Service pages */
  .page-hero { padding: 120px 0 60px; }
  .page-hero__title { font-size: clamp(30px, 7vw, 48px); }
  .page-hero__sub { font-size: 14px; }
  .page-hero__content .btn { width: 100%; justify-content: center; margin-bottom: 10px; }

  /* Includes list */
  .includes-item { padding: 12px 14px; }
  .includes-item span { font-size: 13px; }

  /* Sidebar cards */
  .sidebar-card { padding: 24px; }
  .sidebar-card__price { font-size: 36px; }

  /* Extras grid */
  .extras-grid { grid-template-columns: 1fr; }
  .extra-card { padding: 24px 20px; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
  .pricing-card { padding: 32px 24px; }

  /* Cart */
  .cart-drawer { width: 100%; }

  /* Product page */
  .product-page__grid { grid-template-columns: 1fr; gap: 30px; }
  .product-page { padding: 100px 0 var(--section-padding); }

  /* About */
  .about-hero__grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  /* Scroll top */
  .scroll-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }

  /* Section label */
  .section-label { font-size: 10px; }
}

/* ── Small Mobile: ≤480px ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  :root { --section-padding: clamp(44px, 10vw, 70px); }

  .hero__headline { font-size: clamp(30px, 9.5vw, 44px); }
  .hero__tag span { font-size: 9px; letter-spacing: 0.25em; }
  .hero__tag::before, .hero__tag::after { width: 24px; }

  .trust-bar__track { animation-duration: 22s; }

  .testimonial-card { aspect-ratio: 1/1; }

  .brand-intro__label { margin-bottom: 12px; }

  .who-for__list { gap: 10px; }

  .service-card__number { font-size: 44px; }
  .service-card__title { font-size: 20px; }

  .meet-gemma__heading { font-size: clamp(26px, 8vw, 38px); }

  .section-header h2 { font-size: clamp(26px, 8vw, 36px); }

  .btn { padding: 14px 24px; font-size: 10px; }
  .btn--primary { padding: 15px 28px; }

  .sidebar-card__price { font-size: 30px; }

  .footer-social { gap: 8px; }
  .footer-social__link { width: 36px; height: 36px; }

  .page-hero { padding: 100px 0 50px; }
  .page-hero__title { font-size: clamp(26px, 8vw, 38px); }
}

/* ── Touch device improvements ── */
@media (hover: none) {
  .who-for__item:hover { transform: none; box-shadow: none; border-left-color: transparent; }
  .service-card:hover::before { transform: scaleX(0); }
  .testimonial-card__overlay { opacity: 1; }
  .testimonial-card__content { opacity: 1; transform: translateY(0); }
  .btn:hover { transform: none; }
  .btn--primary:hover { box-shadow: none; }
}

/* ── Safe area insets for notched phones ── */
@supports (padding: max(0px)) {
  .site-header {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
  .mobile-nav {
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }
  .cart-drawer {
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }
}

/* ============================================
   SHINE STAR — PRODUCT PAGE
   ============================================ */

/* ── Hero ── */
.ss-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.ss-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ss-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.ss-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,18,14,0.65) 0%,
    rgba(20,18,14,0.35) 35%,
    rgba(20,18,14,0.4) 55%,
    rgba(15,13,10,0.9) 80%,
    rgba(15,13,10,0.98) 100%
  );
}

.ss-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 140px 0 70px;
}

.ss-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.ss-hero__eyebrow-line {
  height: 1px;
  width: 44px;
  background: rgba(195,167,111,0.5);
}

.ss-hero__eyebrow span {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.ss-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 84px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}

.ss-hero__title em { color: var(--gold); font-style: italic; }

.ss-hero__intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 22px);
  color: rgba(252,252,252,0.85);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 16px;
}

.ss-hero__sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: rgba(252,252,252,0.6);
  margin-bottom: 36px;
}

.ss-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.ss-hero__link {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,252,252,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(195,167,111,0.4);
  padding-bottom: 3px;
  transition: var(--transition);
}

.ss-hero__link:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ── Intro grid ── */
.ss-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.ss-intro__image {
  position: relative;
}

.ss-intro__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.ss-intro__image-fallback {
  display: none;
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #2E2F35 0%, #1E1F23 100%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.ss-intro__image-fallback span {
  color: var(--gold);
  font-size: 32px;
}

.ss-intro__image-fallback p {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(195,167,111,0.5);
}

.ss-intro__image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(195,167,111,0.35);
  z-index: -1;
}

/* ── What's Included — photo background section ── */
.ss-includes-section {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.ss-includes-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ss-includes-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ss-includes-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,31,35,0.82);
}

/* ── What's Included grid ── */
.ss-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(195,167,111,0.15);
}

.ss-include-card {
  background: var(--dark-2);
  padding: 36px 28px;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  position: relative;
}

.ss-include-card:hover {
  border-bottom-color: var(--gold);
  background: var(--dark-3);
}

/* Core card — brighter background */
.ss-include-card--core {
  background: var(--white);
}

.ss-include-card--core:hover {
  background: var(--gold-pale);
  border-bottom-color: var(--gold);
}

.ss-include-card--core .ss-include-card__num { color: var(--gold); }
.ss-include-card--core .ss-include-card__title { color: var(--charcoal); }
.ss-include-card--core .ss-include-card__text { color: var(--text-muted); }

/* Badges */
.ss-include-card__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 12px;
}

.ss-include-card__badge--core {
  background: var(--gold);
  color: var(--charcoal);
}

.ss-include-card__badge--opt {
  background: rgba(195,167,111,0.15);
  color: var(--gold);
  border: 1px solid rgba(195,167,111,0.3);
}

.ss-include-card__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.ss-include-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}

.ss-include-card__text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(252,252,252,0.55);
  line-height: 1.7;
}

/* ── Who It's For — photo background section ── */
.ss-whofor-section {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.ss-whofor-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ss-whofor-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.ss-whofor-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,18,14,0.78);
}

/* Light variant for who-for items on dark bg */
.ss-forwho-item--light {
  background: rgba(252,252,252,0.07);
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.ss-forwho-item--light:hover {
  background: rgba(252,252,252,0.12);
  border-left-color: var(--gold);
  transform: translateX(6px);
}

.ss-forwho-item--light p { color: rgba(252,252,252,0.85); }

/* ── Real Results video ── */
.ss-result__video {
  overflow: hidden;
  background: var(--dark-3);
}

.ss-result__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 10px;
}

.ss-include-card__text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Who it's for list ── */
.ss-forwho-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ss-forwho-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 26px;
  background: var(--soft-grey);
  transition: var(--transition);
}

.ss-forwho-item:hover {
  background: var(--gold-pale);
}

.ss-forwho-item__icon {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ss-forwho-item p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.7;
}

/* ── Transformations banner ── */
.ss-result {
  background: var(--charcoal);
  padding: var(--section-padding) clamp(20px, 5vw, 80px);
}

.ss-result__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.ss-result__header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin: 12px 0;
}

.ss-result__header .section-label { display: block; }

.ss-result__header p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(252,252,252,0.6);
}

.ss-result__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.ss-result__image {
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ss-result__image img {
  width: 100%;
  height: auto;
  display: block;
}

.ss-result__quote {
  background: var(--dark-2);
  border: 1px solid rgba(195,167,111,0.15);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ss-result__quote .stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.ss-result__quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 18px;
}

.ss-result__quote cite {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── Steps ── */
.ss-steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ss-step {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 32px;
  background: var(--white);
  transition: var(--transition);
}

.ss-step:hover { background: var(--gold-pale); }

.ss-step__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 50px;
}

.ss-step__text {
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.6;
}

/* ── Final CTA (page-specific, charcoal) ── */
.ss-final-cta {
  background: var(--charcoal);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.ss-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(195,167,111,0.06), transparent 60%);
}

.ss-final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.ss-final-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.ss-final-cta__heading em { color: var(--gold); }

.ss-final-cta__body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(252,252,252,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ss-includes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ss-forwho-item--light:hover { transform: none; }
  .ss-result__video { min-height: 260px; }

  /* Hero */
  .ss-hero {
    min-height: 100vh;
    min-height: 100svh;
    align-items: flex-end;
  }
  .ss-hero__content {
    padding: 0 0 44px;
    max-width: 100%;
  }
  .ss-hero__eyebrow {
    margin-bottom: 16px;
  }
  .ss-hero__eyebrow span {
    font-size: 9px;
    letter-spacing: 0.25em;
  }
  .ss-hero__eyebrow-line { display: none; }
  .ss-hero__title {
    font-size: clamp(32px, 11vw, 50px);
    line-height: 1.12;
    margin-bottom: 14px;
  }
  .ss-hero__intro {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .ss-hero__sub {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 28px;
  }
  .ss-hero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .ss-hero__cta .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 11px;
  }
  .ss-hero__link {
    text-align: center;
    padding: 4px 0;
  }

  /* Encouragement banner */
  .ss-encourage-banner { padding: 20px 0; }
  .ss-encourage-banner p { font-size: 15px; line-height: 1.5; padding: 0 8px; }

  /* Intro */
  .ss-intro { padding: 50px 0; }
  .ss-intro__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ss-intro__image { order: -1; }
  .ss-intro__image-accent { display: none; }
  .ss-intro h2 { font-size: clamp(26px, 7vw, 36px) !important; margin-bottom: 18px !important; }
  .ss-intro .service-intro-text p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 16px;
  }
  .ss-intro .service-intro-text p[style*="italic"] {
    font-size: 17px !important;
    margin-top: 18px !important;
  }

  /* Section headers */
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: clamp(24px, 7.5vw, 34px); }
  .section-header p { font-size: 13px; padding: 0 8px; }

  /* What's included */
  .ss-includes-grid { grid-template-columns: 1fr; gap: 1px; }
  .ss-include-card { padding: 24px 20px; }
  .ss-include-card__num { font-size: 32px; margin-bottom: 10px; }
  .ss-include-card__title { font-size: 18px; margin-bottom: 6px; }
  .ss-include-card__text { font-size: 13px; }

  /* Who it's for */
  .ss-forwho-list { gap: 1px; }
  .ss-forwho-item { padding: 16px 18px; gap: 14px; }
  .ss-forwho-item p { font-size: 14px; line-height: 1.6; }
  .ss-forwho-item__icon { font-size: 14px; }

  /* Real Results */
  .ss-result { padding: 44px 16px; }
  .ss-result__header { margin-bottom: 32px; }
  .ss-result__header h2 { font-size: clamp(26px, 8vw, 38px); }
  .ss-result__header p { font-size: 13px; padding: 0 12px; }
  .ss-result__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ss-result__image img { height: auto; }
  .ss-result__quote {
    padding: 24px 22px;
  }
  .ss-result__quote .stars { font-size: 13px; margin-bottom: 14px; }
  .ss-result__quote blockquote { font-size: 16px; margin-bottom: 14px; }
  .ss-result__quote cite { font-size: 9px; }

  /* Steps */
  .ss-steps { gap: 1px; }
  .ss-steps .ss-step { padding: 18px 18px; gap: 16px; }
  .ss-step__num { font-size: 24px; min-width: 32px; }
  .ss-step__text { font-size: 13px; line-height: 1.6; }

  /* Final CTA */
  .ss-final-cta { padding: 50px 0; }
  .ss-final-cta__heading {
    font-size: clamp(26px, 8vw, 38px);
    line-height: 1.25;
  }
  .ss-final-cta__body {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 28px;
  }
}

@media (max-width: 480px) {
  .ss-hero__title { font-size: clamp(30px, 12vw, 42px); }
  .ss-include-card__num { font-size: 28px; }

  .ss-final-cta__heading { font-size: clamp(24px, 9vw, 32px); }
}


/* ============================================
   BRIDAL EXPERIENCE — PRODUCT PAGE
   ============================================ */

/* ── Shared placeholder ── */
.be-placeholder {
  background: linear-gradient(135deg, #2E2F35 0%, #1E1F23 100%);
  position: relative;
}

.be-placeholder::after {
  content: '📷 Photo placeholder';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(195,167,111,0.4);
}

/* ── Hero ── */
.be-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.be-hero__bg { position: absolute; inset: 0; z-index: 0; }
.be-hero__bg-placeholder { width: 100%; height: 100%; }
.be-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.be-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(20,18,14,0.92) 0%,
      rgba(122,46,58,0.35) 45%,
      rgba(30,31,35,0.55) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(15,13,10,0.2) 0%,
      rgba(15,13,10,0.25) 40%,
      rgba(15,13,10,0.75) 75%,
      rgba(15,13,10,0.95) 100%
    );
}

.be-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 140px 0 40px;
}

.be-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.be-hero__eyebrow-line {
  height: 1px;
  width: 44px;
  background: var(--gold);
}

.be-hero__eyebrow span {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.be-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
}

.be-hero__title em { color: var(--gold); font-style: italic; }

.be-hero__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(252,252,252,0.8);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

.be-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.be-hero__link {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,252,252,0.75);
  text-decoration: none;
  transition: var(--transition);
}

.be-hero__link:hover { color: var(--gold); }

/* Floating sparkles in hero */
.be-sparkle {
  position: absolute;
  color: var(--gold);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
  animation: sparkleFloat 6s ease-in-out infinite;
}

.be-sparkle--1 { top: 18%; right: 12%; font-size: 28px; animation-delay: 0s; }
.be-sparkle--2 { top: 55%; right: 22%; font-size: 18px; animation-delay: 2s; }
.be-sparkle--3 { top: 35%; right: 6%; font-size: 14px; animation-delay: 4s; }

@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-16px) rotate(15deg); opacity: 0.7; }
}

/* ── Intro ── */
.be-intro__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.be-intro__image {
  position: relative;
}

.be-intro__image-placeholder,
.be-intro__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.be-intro__ring {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 45%;
  aspect-ratio: 1;
  border: 1px solid var(--burgundy);
  z-index: -1;
}

.be-intro__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(67,68,75,0.18);
}

.be-intro__badge-icon { font-size: 24px; }

.be-intro__badge-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.4;
}

/* ── Journey timeline ── */
.be-journey { background: var(--soft-grey); }

.be-timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 40px;
}

.be-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--burgundy));
}

.be-timeline__item {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  position: relative;
}

.be-timeline__item:last-child { margin-bottom: 0; }

.be-timeline__marker {
  position: absolute;
  left: -40px;
  top: 0;
  width: 24px;
  height: 24px;
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gold);
  flex-shrink: 0;
}

.be-timeline__content {
  background: var(--white);
  padding: 24px 28px;
  flex: 1;
}

.be-timeline__label {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: block;
  margin-bottom: 10px;
}

.be-timeline__content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.be-timeline__content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Includes grid (dark) ── */
.be-includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(195,167,111,0.1);
}

.be-include-card {
  background: var(--dark-2);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
}

.be-include-card:hover { background: var(--dark-3); }

/* Core card — bright white background */
.be-include-card--core {
  background: var(--white);
}

.be-include-card--core:hover {
  background: var(--gold-pale);
}

.be-include-card--core .be-include-card__title { color: var(--charcoal); }
.be-include-card--core .be-include-card__text  { color: var(--text-muted); }

/* Badges */
.be-include-card__badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.be-include-card__badge--core {
  background: var(--gold);
  color: var(--charcoal);
}

.be-include-card__badge--comp {
  background: rgba(195,167,111,0.15);
  color: var(--gold);
  border: 1px solid rgba(195,167,111,0.3);
}

.be-include-card__icon {
  color: var(--gold);
  font-size: 18px;
  display: block;
  margin-bottom: 14px;
}

.be-include-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 8px;
}

.be-include-card__text {
  font-size: 12px;
  font-weight: 300;
  color: rgba(252,252,252,0.55);
  line-height: 1.7;
}

/* ── Important note ── */
.be-note__icon {
  font-size: 32px;
  display: block;
}

/* ── Extras: build your journey ── */
.be-extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.be-extra-card {
  background: var(--white);
  padding: 32px 28px;
  border: 1px solid var(--soft-grey);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.be-extra-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--burgundy));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.be-extra-card:hover::before { transform: scaleX(1); }
.be-extra-card:hover { box-shadow: var(--shadow-medium); transform: translateY(-4px); }

.be-extra-card--featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.be-extra-card--featured .be-extra-card__title,
.be-extra-card--featured .be-extra-card__text { color: var(--white); }
.be-extra-card--featured .be-extra-card__text { color: rgba(252,252,252,0.65); }

.be-extra-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.be-extra-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.be-extra-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.25;
}

.be-extra-card__price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--burgundy);
  white-space: nowrap;
  flex-shrink: 0;
  padding-top: 2px;
}

.be-extra-card__price--gold { color: var(--gold); }

.be-extra-card--featured .be-extra-card__price { color: var(--gold); }

.be-extra-card__text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 0;
}

/* ── Gallery ── */
.be-gallery {
  background: var(--white);
  padding: var(--section-padding) clamp(20px, 5vw, 80px);
}

.be-gallery__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.be-gallery__header h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.1;
  margin: 12px 0;
}

.be-gallery__header .section-label { display: block; }

.be-gallery__header p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
}

.be-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.be-gallery__item {
  aspect-ratio: 3/4;
}

/* Photo items with overlay */
.be-gallery__item--photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.be-gallery__item--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.be-gallery__item--photo:hover img {
  transform: scale(1.05);
}

.be-gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,13,10,0) 30%,
    rgba(15,13,10,0.85) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 1;
}

.be-gallery__item-quote .stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
}

.be-gallery__item-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--white);
  line-height: 1.55;
  margin: 0;
}

/* Old quote card style (kept for fallback) */
.be-gallery__item--quote {
  background: var(--soft-grey);
  border: 1px solid rgba(195,167,111,0.2);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.be-gallery__item--quote .stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.be-gallery__item--quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 14px;
}

.be-gallery__item--quote cite {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-style: normal;
}

/* ── Final CTA ── */
.be-final-cta {
  background: var(--charcoal);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.be-final-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.be-final-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.be-final-cta__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(67,68,75,0.88) 0%,
    rgba(53,38,42,0.82) 100%
  );
}

.be-final-cta__sparkles {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  pointer-events: none;
  opacity: 0.15;
  z-index: 1;
}

.be-final-cta__sparkles span {
  color: var(--gold);
  font-size: clamp(20px, 4vw, 48px);
  animation: sparkleFloat 8s ease-in-out infinite;
}

.be-final-cta__sparkles span:nth-child(2) { animation-delay: 1.5s; }
.be-final-cta__sparkles span:nth-child(3) { animation-delay: 3s; }
.be-final-cta__sparkles span:nth-child(4) { animation-delay: 4.5s; }
.be-final-cta__sparkles span:nth-child(5) { animation-delay: 6s; }

.be-final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.be-final-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.be-final-cta__heading em { color: var(--gold); }

.be-final-cta__body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(252,252,252,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ── Note section with photo background ── */
.be-note-section {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
}

.be-note-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.be-note-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.be-note-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,18,14,0.65) 0%,
    rgba(20,18,14,0.72) 100%
  );
}

/* ── Image break ── */
.be-image-break {
  position: relative;
  height: clamp(300px, 40vw, 520px);
  overflow: hidden;
}

.be-image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.be-image-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,13,10,0.1) 0%,
    rgba(15,13,10,0.55) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 40px;
}

.be-image-break__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 3vw, 36px);
  color: var(--white);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .be-includes-grid { grid-template-columns: repeat(2, 1fr); }
  .be-extras-grid { grid-template-columns: repeat(2, 1fr); }
  .be-gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

@media (max-width: 768px) {
  .be-hero { min-height: 90vh; }
  .be-hero__content { padding: 110px 0 30px; }
  .be-hero__title { font-size: clamp(32px, 10vw, 48px); }
  .be-hero__sub { font-size: 14px; }
  .be-hero__cta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .be-hero__cta .btn { width: 100%; justify-content: center; }
  .be-sparkle--2, .be-sparkle--3 { display: none; }

  .be-intro__grid { grid-template-columns: 1fr; gap: 40px; }
  .be-intro__ring { display: none; }
  .be-intro__badge { padding: 14px 18px; bottom: -14px; right: 10px; }
  .be-intro__badge-text { font-size: 12px; }

  .be-timeline { padding-left: 32px; }
  .be-timeline::before { left: 9px; }
  .be-timeline__marker { left: -32px; width: 20px; height: 20px; font-size: 9px; }
  .be-timeline__content { padding: 18px 20px; }
  .be-timeline__content h3 { font-size: 18px; }
  .be-timeline__content p { font-size: 13px; }

  .be-includes-grid { grid-template-columns: 1fr; }
  .be-include-card { padding: 24px 20px; }

  .be-extras-grid { grid-template-columns: 1fr; }
  .be-extra-card { padding: 28px 24px; }

  .be-gallery { padding: 50px 16px; }
  .be-gallery__grid { grid-template-columns: 1fr; gap: 10px; }
  .be-gallery__item-overlay { opacity: 1; }
  .be-gallery__item-quote blockquote { font-size: 13px; }

  .be-final-cta__heading { font-size: clamp(26px, 8vw, 38px); }
  .be-final-cta__sparkles span { font-size: 20px; }
}

@media (max-width: 480px) {
  .be-gallery__grid { grid-template-columns: 1fr; }
}

/* ============================================
   ONE-OFF PLANS — PRODUCT PAGE
   ============================================ */

/* ── Hero ── */
.op-hero {
  background: var(--charcoal);
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
}

.op-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(195,167,111,0.08), transparent 55%);
}

.op-hero__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.op-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.op-hero__eyebrow-line {
  height: 1px;
  width: 44px;
  background: var(--gold);
}

.op-hero__eyebrow span {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.op-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 76px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
}

.op-hero__title em { color: var(--gold); font-style: italic; }

.op-hero__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(252,252,252,0.7);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 36px;
}

.op-hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.op-hero__link {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,252,252,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(195,167,111,0.4);
  padding-bottom: 3px;
  transition: var(--transition);
}

.op-hero__link:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* ── Plans grid ── */
.op-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.op-plan-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  border: 1px solid transparent;
}

.op-plan-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.op-plan-card--featured {
  border-color: var(--gold);
  order: -1;
}

.op-plan-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--charcoal);
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 2;
}

.op-plan-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--soft-grey);
}

.op-plan-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.op-plan-card__body {
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.op-plan-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 14px;
}

.op-plan-card__text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.op-plan-card__footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--soft-grey);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.op-plan-card__price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
}

.op-plan-card--featured .op-plan-card__price { color: var(--gold); }

.op-plan-card__price-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.op-plan-card__save {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.op-plan-card [data-add-to-cart] {
  padding: 13px 22px;
  font-size: 10px;
  white-space: nowrap;
}

/* ── Why grid ── */
.op-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--soft-grey);
}

.op-why-card {
  background: var(--white);
  padding: 36px 26px;
  text-align: center;
  transition: var(--transition);
}

.op-why-card:hover { background: var(--gold-pale); }

.op-why-card__icon {
  font-size: 30px;
  display: block;
  margin-bottom: 16px;
}

.op-why-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.op-why-card p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Final CTA ── */
.op-final-cta {
  background: var(--charcoal);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.op-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(195,167,111,0.06), transparent 60%);
}

.op-final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.op-final-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.op-final-cta__heading em { color: var(--gold); }

.op-final-cta__body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(252,252,252,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .op-plans-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .op-plan-card--featured { order: 0; }
  .op-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .op-hero { padding: 110px 0 60px; }
  .op-hero__title { font-size: clamp(36px, 11vw, 54px); }
  .op-hero__sub { font-size: 14px; }
  .op-hero__cta { flex-direction: column; align-items: stretch; gap: 16px; }
  .op-hero__cta .btn { width: 100%; justify-content: center; }
  .op-hero__link { text-align: center; padding: 4px 0; }

  .op-plans-grid { gap: 20px; }
  .op-plan-card__body { padding: 24px 20px; }
  .op-plan-card__title { font-size: 20px; }
  .op-plan-card__footer { flex-direction: column; align-items: stretch; gap: 14px; }
  .op-plan-card__footer .btn { width: 100%; justify-content: center; }
  .op-plan-card__price-group { align-items: center; text-align: center; }

  .op-why-grid { grid-template-columns: 1fr 1fr; }
  .op-why-card { padding: 28px 18px; }
  .op-why-card h3 { font-size: 16px; }
  .op-why-card p { font-size: 12px; }

  .op-final-cta__heading { font-size: clamp(28px, 8vw, 40px); }
  .op-final-cta__body { font-size: 13px; }
}

@media (max-width: 480px) {
  .op-why-grid { grid-template-columns: 1fr; }
}

/* ============================================
   RECIPE CLUB — PRODUCT PAGE
   ============================================ */

/* ── Hero ── */
.rc-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.rc-hero__bg { position: absolute; inset: 0; z-index: 0; }
.rc-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.rc-hero__bg-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #2E2F35 0%, #1E1F23 60%, #35302A 100%);
}

.rc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,18,14,0.55) 0%,
    rgba(20,18,14,0.2) 35%,
    rgba(20,18,14,0.25) 55%,
    rgba(15,13,10,0.88) 80%,
    rgba(15,13,10,0.97) 100%
  );
}

.rc-hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 140px 0 70px;
}

.rc-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.rc-hero__eyebrow-line {
  height: 1px;
  width: 44px;
  background: var(--gold);
}

.rc-hero__eyebrow span {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.rc-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 80px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
}

.rc-hero__title em { color: var(--gold); font-style: italic; }

.rc-hero__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(252,252,252,0.75);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 32px;
}

.rc-hero__cta { margin-bottom: 14px; }

.rc-hero__note {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,252,252,0.45);
}

/* ── Intro ── */
.rc-intro__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.rc-intro__image {
  position: relative;
}

.rc-intro__image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

/* Stacked presentation: primary image with floating secondary image */
.rc-intro__image--stack {
  position: relative;
}

.rc-intro__image-primary {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.rc-intro__image-secondary {
  position: absolute;
  bottom: -32px;
  left: -32px;
  width: 55%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  border: 6px solid var(--white);
  box-shadow: 0 16px 50px rgba(67,68,75,0.2);
  z-index: 2;
}

.rc-intro__image-fallback {
  display: none;
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #2E2F35 0%, #1E1F23 100%);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.rc-intro__image-fallback span { color: var(--gold); font-size: 32px; }

.rc-intro__image-fallback p {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(195,167,111,0.5);
}

.rc-intro__image-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 45%;
  aspect-ratio: 1;
  border: 1px solid rgba(195,167,111,0.35);
  z-index: -1;
}

/* ── Includes grid ── */
.rc-includes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--charcoal);
}

.rc-include-card {
  background: var(--white);
  padding: 32px 24px;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.rc-include-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: var(--shadow-soft);
}

.rc-include-card__icon {
  font-size: 28px;
  display: block;
  margin-bottom: 14px;
}

.rc-include-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: 10px;
}

.rc-include-card__text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Who it's for ── */
.rc-forwho-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rc-forwho-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 26px;
  background: var(--soft-grey);
  transition: var(--transition);
}

.rc-forwho-item:hover { background: var(--gold-pale); }

.rc-forwho-item__icon {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.rc-forwho-item p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.7;
}

/* ── Final CTA ── */
.rc-final-cta {
  background: var(--charcoal);
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.rc-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(195,167,111,0.07), transparent 60%);
}

.rc-final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.rc-final-cta__heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.rc-final-cta__heading em { color: var(--gold); }

.rc-final-cta__body {
  font-size: 15px;
  font-weight: 300;
  color: rgba(252,252,252,0.65);
  line-height: 1.8;
  margin-bottom: 36px;
}

.rc-final-cta__note {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252,252,252,0.4);
  margin-top: 20px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .rc-includes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .rc-hero { min-height: 85vh; }
  .rc-hero__content { padding: 110px 0 50px; }
  .rc-hero__title { font-size: clamp(36px, 11vw, 56px); }
  .rc-hero__sub { font-size: 14px; }
  .rc-hero__cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .rc-intro__grid { grid-template-columns: 1fr; gap: 28px; }
  .rc-intro__image { order: -1; }
  .rc-intro__image-accent { display: none; }

  .rc-intro__image--stack { margin-bottom: 50px; }
  .rc-intro__image-secondary {
    width: 60%;
    bottom: -28px;
    left: -16px;
    border-width: 4px;
  }

  .rc-includes-grid { grid-template-columns: 1fr; }
  .rc-include-card { padding: 24px 20px; }

  .rc-forwho-item { padding: 16px 18px; gap: 14px; }
  .rc-forwho-item p { font-size: 14px; }

  .rc-final-cta { padding: 50px 0; }
  .rc-final-cta__heading { font-size: clamp(28px, 9vw, 42px); }
  .rc-final-cta__body { font-size: 13px; margin-bottom: 28px; }
  .rc-final-cta__inner .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }
}

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */

/* ── Featured video block ── */
.tp-featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.tp-featured__video {
  aspect-ratio: 9/16;
  overflow: hidden;
  background: var(--dark-3);
  max-height: 560px;
}

.tp-featured__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tp-featured__stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 14px;
}

.tp-featured__name {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 16px;
}

.tp-featured__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 20px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

.tp-featured__programme {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Photo grid ── */
.tp-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tp-photo-card {
  background: var(--white);
  border: 1px solid var(--soft-grey);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.tp-photo-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-4px);
}

.tp-photo-card__img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.tp-photo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.tp-photo-card:hover .tp-photo-card__img img {
  transform: scale(1.04);
}

.tp-photo-card__overlay {
  position: absolute;
  top: 12px;
  left: 12px;
}

.tp-photo-card__programme {
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--charcoal);
  padding: 4px 10px;
  display: inline-block;
}

.tp-photo-card__body {
  padding: 18px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tp-photo-card__stars {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.tp-photo-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 10px;
}

.tp-photo-card__name {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Written reviews grid ── */
.tp-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tp-review {
  background: var(--white);
  padding: 32px 28px;
  border-top: 3px solid var(--soft-grey);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.tp-review:hover {
  border-top-color: var(--gold);
  box-shadow: var(--shadow-soft);
}

.tp-review--featured {
  background: var(--charcoal);
  border-top-color: var(--burgundy);
  grid-column: span 2;
}

.tp-review--featured .tp-review__quote { color: rgba(252,252,252,0.85); }
.tp-review--featured .tp-review__name { color: var(--gold); }
.tp-review--featured .tp-review__badge { color: var(--white); }

.tp-review__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.tp-review__stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
}

.tp-review__badge {
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--charcoal);
  padding: 4px 10px;
}

.tp-review__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.tp-review__name {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .tp-photo-grid { grid-template-columns: repeat(3, 1fr); }
  .tp-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .tp-review--featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  .tp-featured__grid { grid-template-columns: 1fr; gap: 28px; }
  .tp-featured__video {
    aspect-ratio: auto;
    max-height: none;
  }
  .tp-featured__video video {
    aspect-ratio: 9/16;
    height: auto;
    object-fit: contain;
    background: var(--dark-3);
  }
  .tp-featured__quote { font-size: 17px; }

  .tp-photo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tp-photo-card__body { padding: 14px 12px; }
  .tp-photo-card__quote { font-size: 13px; }

  .tp-reviews-grid { grid-template-columns: 1fr; }
  .tp-review--featured { grid-column: span 1; }
  .tp-review { padding: 24px 20px; }
  .tp-review__quote { font-size: 14px; }
}

@media (max-width: 480px) {
  .tp-photo-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}
