/* NEW EDITORIAL DESIGN - SERVICES PAGE */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
  font-family: 'Jost', sans-serif; 
  background: #FFFFFF; 
  color: #6B6B6B;
}

/* TYPOGRAPHY OVERRIDES */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: #1A1A1A;
}

/* HEADER OVERRIDES */
.header {
  background: transparent !important;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease !important;
  border-bottom: none !important;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header.scrolled {
  background: #1C1410 !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3) !important;
  padding-top: 10px;
  padding-bottom: 10px;
}
.header__logo-text {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 24px !important;
  color: #FFF !important;
  text-decoration: none;
}
.nav__link {
  font-family: 'Jost', sans-serif !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  color: #FFF !important;
}
.nav__link:hover {
  color: #C9A84C !important;
}
.header__phone {
  font-family: 'Jost', sans-serif !important;
  font-size: 13px !important;
  color: #FFF !important;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.header__cta {
  background: #C9A84C !important;
  color: #1A1A1A !important;
  font-family: 'Jost', sans-serif !important;
  text-transform: uppercase !important;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  padding: 14px 36px !important;
  border-radius: 0 !important;
  border: none !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.header__cta:hover {
  filter: brightness(1.1) !important;
}
.hamburger__line {
  background-color: #FFF !important;
}

/* SECTION 1 - HERO */
.ed-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('../../assets/images/placeholders/hero-bg.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.ed-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 50%, transparent 80%);
  z-index: 1;
}
.ed-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.ed-hero__eyebrow {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  color: #C9A84C;
  letter-spacing: 0.2em;
  font-size: 11px;
  margin-bottom: 24px;
}
.ed-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.1;
}
.ed-hero__subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
}
.ed-hero__actions {
  display: flex;
  gap: 16px;
}
.ed-btn {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 14px 36px;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ed-btn--gold {
  background: #C9A84C;
  color: #1A1A1A;
  border: 1px solid #C9A84C;
}
.ed-btn--gold:hover {
  filter: brightness(1.1);
}
.ed-btn--outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.ed-btn--outline:hover {
  border-color: #C9A84C;
  color: #C9A84C;
}
.ed-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #C9A84C;
  animation: bounce 2s infinite;
}
.ed-hero__scroll svg {
  width: 24px;
  height: 24px;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -10px); }
  60% { transform: translate(-50%, -5px); }
}

/* GLOBAL SECTION PADDING */
.ed-section {
  padding: 100px 80px;
  background: #FFFFFF;
  position: relative;
}

/* Premium Golden Divider between sections */
.ed-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 800px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,169,110,0.2) 15%, rgba(201,169,110,0.8) 50%, rgba(201,169,110,0.2) 85%, transparent 100%);
  display: block;
  z-index: 2;
}

/* SECTION 2 - OUR SERVICES (2 COLUMNS) */
.ed-split {
  display: flex;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.ed-split__left {
  width: 45%;
  position: relative;
}
.ed-split__right {
  width: 55%;
}

.ed-collage {
  position: relative;
  width: 100%;
  height: 600px;
}
.ed-collage__large {
  position: absolute;
  top: 0;
  left: 0;
  width: 420px;
  height: 520px;
  background: #D4C5B8;
  background-size: cover;
  background-position: center;
}
.ed-collage__small {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 220px;
  height: 280px;
  background: #BFA99A;
  background-size: cover;
  background-position: center;
  z-index: 2;
  transform: translate(-40px, -20px);
}

/* Labels & Headings */
.ed-label {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #C9A84C;
  margin-bottom: 16px;
  display: block;
}
.ed-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 20px;
}
.ed-divider {
  width: 40px;
  height: 1px;
  background: #C9A84C;
  margin: 20px 0;
}

/* Service List */
.ed-service-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.ed-service-item {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid #EBEBEB;
}
.ed-service-item:last-child {
  border-bottom: none;
}
.ed-service-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ed-service-name {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #1A1A1A;
}
.ed-service-desc {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #6B6B6B;
}
.ed-service-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: #C9A84C;
  white-space: nowrap;
  margin-left: 20px;
}
.ed-service-price--text {
  font-size: 15px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
}

/* SECTION 3 - REVERSED */
.ed-split--reverse {
  flex-direction: row-reverse;
}
.ed-split--reverse .ed-split__left {
  width: 55%;
}
.ed-split--reverse .ed-split__right {
  width: 45%;
}
.ed-portrait {
  width: 400px;
  height: 500px;
  background: #C8B5A8;
  background-size: cover;
  background-position: center;
}
.ed-split--reverse .ed-portrait {
  margin-left: auto;
}

/* SECTION 4 - DARK SPECIALITY */
.ed-section--dark {
  background: #1C1410;
  color: #FFFFFF;
}
.ed-section--dark .ed-heading {
  color: #FFFFFF;
}
.ed-section--dark .ed-service-name {
  color: #FFFFFF;
}
.ed-section--dark .ed-service-item {
  border-bottom-color: rgba(255,255,255,0.1);
}
.ed-dark-header {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ed-dark-header .ed-heading {
  font-size: 52px;
  font-weight: 300;
}

.ed-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.ed-col-header {
  margin-bottom: 30px;
}
.ed-col-divider {
  width: 30px;
  height: 1px;
  background: #C9A84C;
  margin-bottom: 20px;
}
.ed-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: #FFFFFF;
  font-weight: 400;
}
.ed-section--dark .ed-service-desc {
  color: #A0A0A0;
}

/* SECTION 5 - PANELS */
.ed-panels {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.ed-panel {
  flex: 1;
  padding: 0 40px;
}
.ed-panel:first-child {
  padding-left: 0;
  padding-right: 60px;
}
.ed-panel:last-child {
  padding-right: 0;
  padding-left: 60px;
}
.ed-panel-divider {
  width: 1px;
  background: #C9A84C;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
}
.ed-panel__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: #1A1A1A;
  font-weight: 400;
  margin-bottom: 16px;
}
.ed-panel__desc {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #6B6B6B;
  margin-bottom: 24px;
  line-height: 1.6;
}
.ed-panel__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: #C9A84C;
  margin-bottom: 32px;
  display: block;
}

/* SECTION 6 - POLICY */
.ed-policy {
  border-top: 1px solid #E8E0D8;
  padding: 40px 80px;
  text-align: center;
  background: #FFFFFF;
}
.ed-policy p {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: #8A8A8A;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ANIMATIONS (Intersection Observer) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ed-section { padding: 80px 40px; }
  .ed-split { gap: 40px; }
  .ed-grid-3 { gap: 40px; }
}

@media (max-width: 768px) {

  /* ═══════════════════════════════════════════════════════════
     FIX 9 — Kill all horizontal overflow
     ═══════════════════════════════════════════════════════════ */
  * { box-sizing: border-box; }
  body { overflow-x: hidden; max-width: 100vw; }
  .ed-section,
  .ed-split,
  .ed-split--reverse,
  .ed-grid-3,
  .ed-panels { max-width: 100%; }

  /* ═══════════════════════════════════════════════════════════
     FIX 1 — Hide broken placeholder images/divs
     ═══════════════════════════════════════════════════════════ */
  .ed-collage { display: none !important; }
  .ed-portrait { display: none !important; }
  .ed-split__left:has(.ed-collage) { display: none !important; }
  .ed-split__right:has(.ed-portrait) { display: none !important; }

  /* Fallback: also hide broken img tags if any appear */
  img:not([src]),
  img[src=""],
  img[src*="placeholder"] { display: none !important; }

  /* ═══════════════════════════════════════════════════════════
     FIX 6 — Hero Section
     ═══════════════════════════════════════════════════════════ */
  .ed-hero {
    height: auto;
    min-height: 72vh;
    padding: 52px 24px 36px;
  }
  .ed-hero__eyebrow {
    font-family: -apple-system, sans-serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    color: #C9A84C;
    margin-bottom: 18px;
  }
  .ed-hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 40px;
    font-weight: 300;
    font-style: italic;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 14px;
  }
  .ed-hero__subtitle {
    font-family: -apple-system, sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 32px;
  }
  .ed-hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .ed-hero__actions .ed-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 12px;
    letter-spacing: 0.15em;
    border-radius: 14px;
  }
  .ed-hero__actions .ed-btn--gold {
    background: linear-gradient(135deg, #C9A96E 0%, #E8C98A 50%, #B8933A 100%);
    border: none;
    color: #1A1311 !important; /* Dark text for high contrast on gold */
    box-shadow: 0 6px 24px rgba(185,147,58,0.32);
  }
  /* === MOBILE HERO BUTTON FIX START === */
  .ed-hero__actions .ed-btn--outline {
    background: rgba(0, 0, 0, 0.2) !important; /* Slightly dark tint for contrast over background image */
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    color: #FFFFFF !important;
    border-radius: 14px !important; /* Matches BOOK NOW radius */
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.15em !important;
    padding: 16px 24px !important; /* Matches BOOK NOW padding */
    box-shadow: none !important;
    background-image: none !important; /* Kill any broken gradient/noise artifacts */
    backdrop-filter: blur(4px) !important; /* Re-add slight blur since Safari handles low blur better now, adds premium feel */
    -webkit-backdrop-filter: blur(4px) !important;
    transition: all 0.3s ease !important;
  }
  .ed-hero__actions .ed-btn--outline:active {
    background: rgba(0, 0, 0, 0.35) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
  }
  /* === MOBILE HERO BUTTON FIX END === */
  .ed-hero__scroll { display: none; }

  /* ═══════════════════════════════════════════════════════════
     FIX 2 — Section Layout: stack cleanly
     ═══════════════════════════════════════════════════════════ */
  .ed-section {
    padding: 48px 0 56px !important;
    background: #FFFFFF;
  }

  .ed-split,
  .ed-split--reverse {
    display: block !important;
    width: 100%;
    padding: 0;
    gap: 0 !important;
  }
  .ed-split__left,
  .ed-split__right {
    width: 100% !important;
  }

  /* ═══════════════════════════════════════════════════════════
     FIX 3 — Section Header Block
     ═══════════════════════════════════════════════════════════ */
  .ed-label {
    font-family: -apple-system, sans-serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #8B4B3F;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    margin-bottom: 14px;
  }

  .ed-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 38px;
    font-weight: 300;
    color: #1D1D1F;
    letter-spacing: -0.5px;
    line-height: 1.1;
    padding: 0 24px;
    margin-bottom: 4px;
  }

  .ed-divider {
    width: 40px;
    height: 1.5px;
    background: linear-gradient(90deg, #C9A96E, #E8C98A);
    margin: 14px 24px 28px;
    display: block;
    border: none;
  }

  /* ═══════════════════════════════════════════════════════════
     FIX 4 — Service Menu List (Apple Settings row style)
     ═══════════════════════════════════════════════════════════ */
  .ed-service-list {
    margin-bottom: 0;
    padding: 0;
  }

  .ed-service-item {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(201,169,110,0.12);
    gap: 16px;
  }
  .ed-service-item:last-child {
    border-bottom: none;
  }

  .ed-service-info {
    flex: 1;
    min-width: 0;
    gap: 3px;
  }

  .ed-service-name {
    font-family: -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #1D1D1F;
    line-height: 1.3;
    margin-bottom: 3px;
  }

  .ed-service-desc {
    font-family: -apple-system, sans-serif;
    font-size: 12px;
    color: #86868B;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
  }

  .ed-service-price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
    color: #C9A96E;
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: 1px;
    margin-left: 0;
  }

  .ed-service-price--text {
    font-family: -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #86868B;
    font-style: italic;
  }

  /* ═══════════════════════════════════════════════════════════
     FIX 5 — BOOK NOW Button (full-width gold gradient pill)
     ═══════════════════════════════════════════════════════════ */
  .ed-btn.ed-btn--gold {
    display: block;
    width: calc(100% - 48px);
    margin: 28px 24px 0;
    padding: 16px 24px;
    background: linear-gradient(135deg, #C9A96E 0%, #E8C98A 50%, #B8933A 100%);
    border: none;
    border-radius: 14px;
    font-family: -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #FFFFFF;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(185,147,58,0.32);
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .ed-btn.ed-btn--gold:active {
    transform: scale(0.98);
    box-shadow: 0 3px 12px rgba(185,147,58,0.2);
  }

  /* ═══════════════════════════════════════════════════════════
     SECTION 4 — Speciality Section (Extensions) — White on mobile
     ═══════════════════════════════════════════════════════════ */
  .ed-section--dark {
    padding: 48px 0 56px !important;
    background: #FFFFFF !important;
    color: #1D1D1F;
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }

  .ed-dark-header {
    margin-bottom: 40px;
    padding: 0 24px;
    text-align: left;
    align-items: flex-start;
  }
  .ed-dark-header .ed-label {
    padding: 0;
    color: #8B4B3F;
  }
  .ed-dark-header .ed-heading {
    padding: 0;
    font-size: 38px;
    color: #1D1D1F;
    margin-bottom: 0;
  }

  .ed-grid-3 {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }

  .ed-col {
    padding: 0;
    border-bottom: 1px solid rgba(201,169,110,0.12);
  }
  .ed-col:last-child {
    border-bottom: none;
  }

  .ed-col-header {
    padding: 28px 24px 0;
    margin-bottom: 8px;
  }
  .ed-col-divider {
    width: 30px;
    height: 1.5px;
    background: linear-gradient(90deg, #C9A96E, #E8C98A);
    margin-bottom: 14px;
  }
  .ed-col-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 24px;
    font-weight: 300;
    color: #1D1D1F;
    letter-spacing: -0.3px;
  }

  .ed-section--dark .ed-service-item {
    padding: 14px 24px;
    border-bottom-color: rgba(201,169,110,0.12);
  }
  .ed-section--dark .ed-service-item:last-child {
    border-bottom: none;
  }
  .ed-section--dark .ed-service-name {
    font-family: -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1D1D1F;
  }
  .ed-section--dark .ed-service-price {
    color: #C9A96E;
    font-size: 15px;
  }
  .ed-section--dark .ed-service-price--text {
    color: #86868B;
    font-size: 12px;
  }

  /* ═══════════════════════════════════════════════════════════
     SECTION 5 — Unique Categories (Mum & Daughter / Senior)
     ═══════════════════════════════════════════════════════════ */
  .ed-panels {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .ed-panel-divider {
    display: none;
  }
  .ed-panel {
    padding: 0 24px 40px !important;
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }
  .ed-panel:last-child {
    padding-bottom: 0 !important;
    border-bottom: none;
  }
  .ed-panel:first-child {
    padding-left: 24px !important;
    padding-right: 24px !important;
    padding-bottom: 40px !important;
  }
  .ed-panel + .ed-panel {
    padding-top: 40px;
  }

  .ed-panel .ed-label {
    padding: 0;
    margin-bottom: 12px;
  }
  .ed-panel__heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 30px;
    font-weight: 300;
    color: #1D1D1F;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
  }
  .ed-panel__desc {
    font-family: -apple-system, sans-serif;
    font-size: 14px;
    color: #86868B;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .ed-panel__price {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: #C9A96E;
    margin-bottom: 24px;
  }
  .ed-panel .ed-btn.ed-btn--gold {
    margin: 0;
    width: 100%;
  }

  /* ═══════════════════════════════════════════════════════════
     SECTION 6 — Policy
     ═══════════════════════════════════════════════════════════ */
  .ed-policy {
    padding: 32px 24px;
    border-top: 1px solid rgba(201,169,110,0.15);
  }
  .ed-policy p {
    font-family: -apple-system, sans-serif;
    font-size: 12px;
    color: #AEAEB2;
    line-height: 1.7;
  }

  /* ═══════════════════════════════════════════════════════════
     EDITORIAL IMAGE CARDS — Mobile Only
     ═══════════════════════════════════════════════════════════ */
  .service-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    width: calc(100% - 40px);
    margin: 0 20px 28px;
  }
  .service-img-wrap:active {
    transform: scale(0.98);
  }

  /* Dark-fade overlay at bottom */
  .service-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(20,12,8,0.55) 0%, transparent 100%);
    border-radius: 0 0 22px 22px;
    pointer-events: none;
    z-index: 1;
  }

  .service-hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center top;
    border-radius: 22px;
    display: block;
    box-shadow: 0 12px 48px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  }

  /* Height variants */
  .service-hero-img--tall {
    height: 320px;
  }
  .service-hero-img--portrait {
    height: 340px;
  }
  .service-hero-img--bw {
    height: 380px;
    filter: contrast(1.08) brightness(0.97);
  }

  /* Editorial break section */
  .lume-editorial-break {
    padding: 56px 0 52px;
    background: #FFFFFF;
  }
  .lume-editorial-label {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 11px;
    font-style: italic;
    letter-spacing: 0.3em;
    color: #8B4B3F;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 14px;
    display: block;
    padding: 0 24px;
  }
  .service-img-wrap--break {
    margin-bottom: 0;
  }
  .service-img-wrap--break .service-hero-img--bw {
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  }

  /* Dark section images — reduce overlay to match dark bg */
  .ed-section--dark .service-img-wrap::after {
    background: linear-gradient(to top, rgba(28,20,16,0.7) 0%, transparent 100%);
  }
}

/* Hide editorial images on desktop */
@media (min-width: 769px) {
  .service-img-wrap { display: none !important; }
  .lume-editorial-break { display: none !important; }
  .footer__subtitle-mobile { display: none !important; }
  .footer__gold-divider { display: none !important; }
  .footer__heading-bar { display: none !important; }
  .footer__newsletter { display: none !important; }
  .footer__ig-gradient { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE FOOTER — Luxury Couture Redesign (services.html)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  .footer {
    background: #1A0F0A !important;
    border-top: 1px solid rgba(201,169,110,0.18);
    padding: 52px 24px 44px !important;
    overflow: hidden;
  }

  .footer .container {
    padding: 0;
    max-width: 100%;
  }

  /* Grid → single column centered */
  .footer__grid {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    padding-bottom: 0;
    border-bottom: none;
    grid-template-columns: unset !important;
  }

  /* ── Logo ── */
  .footer__brand {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__logo {
    display: block;
    margin: 0 auto 20px;
  }

  .footer__logo-img {
    width: 80px !important;
    height: auto !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  /* ── Tagline ── */
  .footer__tagline {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 16px !important;
    font-style: italic;
    font-weight: 300;
    color: rgba(245,239,233,0.72) !important;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 6px !important;
    padding: 0 12px;
  }

  .footer__subtitle-mobile {
    font-size: 11px;
    color: rgba(245,239,233,0.35);
    text-align: center;
    letter-spacing: 0.06em;
    font-family: -apple-system, sans-serif;
    margin: 0 0 26px;
    padding: 0;
  }

  /* ── Social Icons ── */
  .footer__social {
    display: flex !important;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
  }

  .footer__social-link {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    background: rgba(201,169,110,0.1) !important;
    border: 1px solid rgba(201,169,110,0.25);
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    text-decoration: none;
  }
  .footer__social-link:active {
    background: rgba(201,169,110,0.22) !important;
    transform: scale(0.92);
  }

  /* Show gradient IG, hide stroke IG on mobile */
  .footer__ig-gradient { display: block !important; }
  .footer__ig-stroke { display: none !important; }

  /* ── Gold Dividers ── */
  .footer__gold-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201,169,110,0.3) 30%, rgba(201,169,110,0.3) 70%, transparent 100%);
    margin: 0 0 36px;
    border: none;
    display: block;
  }

  /* ── Section Headings ── */
  .footer__heading {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 0.32em !important;
    color: #C9A96E !important;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 6px !important;
    display: block;
  }
  .footer__heading::after {
    display: none !important;
  }

  .footer__heading-bar {
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #C9A96E, transparent);
    margin: 0 auto 20px;
    display: block;
  }

  /* ── Quick Links ── */
  .footer__links {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
  }
  .footer__links li {
    margin: 0 !important;
  }
  .footer__links li + li {
    margin: 0 !important;
  }
  .footer__links a {
    display: block;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 400;
    color: rgba(245,239,233,0.6) !important;
    font-family: -apple-system, sans-serif;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-bottom: 1px solid rgba(201,169,110,0.08);
    transition: color 0.2s ease;
  }
  .footer__links li:last-child a {
    border-bottom: none;
  }
  .footer__links a:active {
    color: #C9A96E !important;
  }

  /* ── Contact Items ── */
  .footer__contact-item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    margin-bottom: 26px;
    text-align: center;
    gap: 0 !important;
  }
  .footer__contact-item + .footer__contact-item {
    margin-top: 0;
  }

  .footer__contact-item svg {
    width: 16px !important;
    height: 16px !important;
    color: #C9A96E;
    flex-shrink: 0;
    margin: 0 0 10px !important;
    padding: 12px;
    width: 40px !important;
    height: 40px !important;
    box-sizing: content-box;
    border-radius: 50%;
    background: rgba(201,169,110,0.1);
    border: 1px solid rgba(201,169,110,0.2);
  }

  .footer__contact-item span {
    font-family: -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(245,239,233,0.82);
    line-height: 1.6;
    text-align: center;
  }

  .footer__contact-item a {
    font-family: -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: rgba(245,239,233,0.85) !important;
    letter-spacing: 0.04em;
    text-decoration: none;
    line-height: 1.8;
  }
  .footer__contact-item a:active {
    color: #C9A96E !important;
  }

  /* Email specific */
  .footer__contact-item:last-child a {
    font-size: 13px;
    color: #C9A96E !important;
    letter-spacing: 0.02em;
  }
  .footer__contact-item:last-child a:active {
    opacity: 0.7;
  }

  /* ── Hours ── */
  .footer__hours {
    width: 100%;
    margin-bottom: 0;
  }
  .footer__hours td {
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(201,169,110,0.08);
    font-family: -apple-system, sans-serif;
    font-size: 14px;
  }
  .footer__hours td:first-child {
    font-weight: 400 !important;
    color: rgba(245,239,233,0.55) !important;
    padding-right: 24px !important;
  }
  .footer__hours td:last-child {
    font-weight: 500;
    color: rgba(245,239,233,0.82);
    text-align: right;
  }
  .footer__hours tr:last-child td {
    border-bottom: none;
  }

  /* ── Newsletter ── */
  .footer__newsletter {
    margin-top: 36px;
    padding: 0;
  }
  .footer__newsletter-label {
    font-size: 10px;
    letter-spacing: 0.35em;
    color: #C9A96E;
    text-align: center;
    font-weight: 600;
    font-family: -apple-system, sans-serif;
    text-transform: uppercase;
    margin: 0 0 16px;
    display: block;
  }
  .footer__newsletter-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
  }
  .footer__newsletter-input {
    flex: 1;
    padding: 14px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201,169,110,0.22);
    border-radius: 14px;
    font-size: 14px;
    color: #F5EFE9;
    font-family: -apple-system, sans-serif;
    outline: none;
    -webkit-appearance: none;
  }
  .footer__newsletter-input::placeholder {
    color: rgba(245,239,233,0.28);
  }
  .footer__newsletter-input:focus {
    border-color: rgba(201,169,110,0.5);
    background: rgba(255,255,255,0.09);
  }
  .footer__newsletter-btn {
    padding: 14px 20px;
    background: linear-gradient(135deg, #C9A96E 0%, #E8C98A 50%, #B8933A 100%);
    border: none;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #FFFFFF;
    font-family: -apple-system, sans-serif;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(185,147,58,0.35);
    text-transform: uppercase;
  }
  .footer__newsletter-btn:active {
    transform: scale(0.96);
  }

  /* ── Copyright ── */
  .footer__bottom {
    margin-top: 40px !important;
    padding-top: 18px !important;
    border-top: 1px solid rgba(201,169,110,0.1) !important;
    flex-direction: column !important;
    align-items: center;
    gap: 4px !important;
    padding-bottom: 0 !important;
  }
  .footer__bottom span {
    font-size: 11px !important;
    color: rgba(245,239,233,0.28) !important;
    text-align: center;
    font-family: -apple-system, sans-serif;
    line-height: 1.7;
  }
  .footer__bottom a {
    color: rgba(201,169,110,0.5) !important;
    text-decoration: none !important;
  }
}
