/* ═══════════════════════════════════════════════════════════════
   Dr. Christine Blom Aesthetics — Shared Design System
   All reusable component styles live here.
   Each page links to this file; page-specific overrides go inline.
═══════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

/* ── DESIGN TOKENS ── */
:root {
  --cream:      #F7F3ED;
  --cream-d:    #EDE6DA;
  --charcoal:   #1A1817;
  --charcoal-d: #141210;
  --gold:       #B8936A;
  --gold-l:     #D4B896;
  --gold-p:     #F0E8DE;
  --blush:      #E8DDD4;
  --muted:      #7A6E69;
  --white:      #FFFFFF;
  --nav-h:      68px;
}

/* ── BODY ── */
body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', system-ui, sans-serif;
  margin: 0;
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
#site-nav-el {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 40px;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
#site-nav-el.scrolled {
  background: rgba(247, 243, 237, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 40px;
  box-shadow: 0 1px 0 rgba(184,147,106,0.15), 0 4px 24px rgba(26,24,23,0.06);
}

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

/* Logo */
.nav-logo-wrap { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo { height: 36px; width: auto; object-fit: contain; }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 400; letter-spacing: 0.05em;
  color: var(--charcoal); line-height: 1.25;
}
.nav-logo-text em { display: block; font-style: italic; font-size: 14px; color: var(--gold); letter-spacing: 0.1em; }

/* Links row */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Each nav item (may wrap a dropdown) */
.nav-item { position: relative; }

/* Transparent bridge fills the gap between the trigger and the dropdown
   so :hover stays active as the mouse moves from one to the other */
.nav-item.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -24px;
  right: -24px;
  height: 24px; /* must be >= the gap defined on .nav-dropdown (18px + buffer) */
}

/* Nav link anchor */
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; font-weight: 400;
  color: var(--charcoal); text-decoration: none;
  display: flex; align-items: center; gap: 5px;
  padding-bottom: 2px; position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-link:hover,
.nav-item.active > .nav-link { color: var(--gold); }
.nav-link:hover::after,
.nav-item.active > .nav-link::after { width: 100%; }
.nav-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 1px; }

.nav-arrow {
  font-size: 8px; opacity: 0.5;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-item:hover .nav-arrow,
.nav-item.open .nav-arrow { transform: rotate(180deg); opacity: 0.85; }

/* ── DROPDOWN PANEL ── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  box-shadow: 0 20px 60px rgba(26,24,23,0.11), 0 1px 0 rgba(26,24,23,0.06);
  padding: 32px 36px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease,
              visibility 0.22s ease,
              transform 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 560px;
}
/* Caret */
.nav-dropdown::before {
  content: '';
  position: absolute; top: -7px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 7px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: var(--white);
}

/* Open state (CSS hover + JS class for keyboard) */
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Mega menu (services) */
.dropdown-mega { min-width: 800px; }

/* Left-anchored variant (shop, near left edge) */
.dropdown-left {
  left: 0;
  transform: translateX(0) translateY(-8px);
}
.dropdown-left::before { left: 36px; transform: none; }
.nav-item.has-dropdown:hover .dropdown-left,
.nav-item.open .dropdown-left {
  transform: translateX(0) translateY(0);
}

/* Dropdown internals */
.dd-cols-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.dd-cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

.dd-cat {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 500; color: var(--muted);
  margin: 0 0 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--blush);
}
.dd-cat + .dd-cat,
* + .dd-cat { margin-top: 22px; }

.dd-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.dd-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px; color: var(--charcoal); text-decoration: none;
  padding: 2px 0;
  transition: color 0.18s ease, padding-left 0.18s ease;
  display: block;
}
.dd-links a:hover { color: var(--gold); padding-left: 4px; }
.dd-links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 1px; }

.dd-divider {
  border: none; border-top: 1px solid var(--blush);
  margin: 24px 0 0;
}

/* View All link */
.dd-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; font-weight: 500;
  transition: gap 0.2s ease;
}
.dd-view-all:hover { gap: 10px; }
.dd-view-all:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 1px; }

/* Book Online CTA strip inside services dropdown */
.dd-book-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--cream);
  padding: 14px 20px;
  margin-top: 16px;
  text-decoration: none;
  border-left: 3px solid var(--gold);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.dd-book-cta:hover { background: var(--cream-d); }
.dd-book-cta:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.dd-book-label { display: flex; flex-direction: column; gap: 2px; }
.dd-book-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.dd-book-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; color: var(--charcoal); letter-spacing: 0.01em;
}
.dd-book-arrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; white-space: nowrap;
}

/* ── MOBILE MENU ── */
.mobile-menu-btn {
  display: none;
  background: none; border: none; padding: 4px;
  flex-direction: column; gap: 5px;
}
.mobile-menu-btn span {
  display: block; width: 22px; height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--cream); z-index: 999;
  padding: 80px 32px 48px;
  overflow-y: auto;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }

.mob-item { border-bottom: 1px solid var(--blush); }
.mob-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; background: none; border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s ease;
}
.mob-trigger:hover { color: var(--gold); }
.mob-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.2s ease;
}
.mob-link:hover { color: var(--gold); }
.mob-sub { display: none; padding: 4px 0 16px 12px; }
.mob-sub.open { display: block; }
.mob-sub a {
  display: block; padding: 7px 0;
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  color: var(--muted); text-decoration: none;
  transition: color 0.2s ease;
}
.mob-sub a:hover { color: var(--gold); }
.mob-sub .mob-book {
  margin-top: 10px; padding: 10px 14px;
  background: var(--cream-d);
  color: var(--gold) !important; font-weight: 500;
  display: block; text-decoration: none;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
}

@media (max-width: 960px) {
  .nav-links, .nav-right-cta { display: none !important; }
  .mobile-menu-btn { display: flex; }
}
@media (min-width: 961px) {
  .mobile-menu { display: none !important; }
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-block; text-decoration: none; border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  padding: 12px 28px; cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease,
              box-shadow 0.25s ease, transform 0.15s ease;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }

.btn-dark  { background: var(--charcoal); color: var(--cream); }
.btn-dark:hover  { background: var(--gold); box-shadow: 0 4px 20px rgba(184,147,106,0.28); }

.btn-gold  { background: var(--gold); color: var(--cream); }
.btn-gold:hover  { background: #9E7A56; box-shadow: 0 4px 20px rgba(184,147,106,0.3); }

.btn-outline { background: transparent; color: var(--charcoal); border: 1px solid var(--charcoal); padding: 11px 28px; }
.btn-outline:hover { background: var(--charcoal); color: var(--cream); }

.btn-outline-light { background: transparent; color: var(--cream); border: 1px solid rgba(247,243,237,0.45); padding: 11px 28px; }
.btn-outline-light:hover { background: rgba(247,243,237,0.12); border-color: rgba(247,243,237,0.75); }

.btn-lg { padding: 15px 36px; font-size: 12px; }

/* ══════════════════════════════════════════
   TYPOGRAPHY HELPERS
══════════════════════════════════════════ */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; font-weight: 500;
  color: var(--gold);
}
.body-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; line-height: 1.75; color: var(--muted);
}
.divider-gold { width: 40px; height: 1px; background: var(--gold); }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  position: relative; min-height: 480px;
  padding-top: var(--nav-h);
  display: flex; align-items: flex-end;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal-d);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: var(--charcoal-d);
}
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0.5;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,24,23,0.75) 0%, rgba(26,24,23,0.25) 55%, rgba(26,24,23,0.4) 100%);
}
/* Shared alias used by all inner pages */
.page-hero-text,
.page-hero-content {
  position: relative; z-index: 2;
  padding: 64px 40px; max-width: 1320px; width: 100%;
}
.page-hero-text h1,
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 300; letter-spacing: -0.025em; line-height: 1.0;
  color: var(--cream); margin: 14px 0 18px;
}
.page-hero-text p,
.page-hero-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: rgba(247,243,237,0.65); line-height: 1.7;
  max-width: 480px; margin: 0;
}

/* ══════════════════════════════════════════
   SERVICE DETAIL PAGE LAYOUT
══════════════════════════════════════════ */
.svc-detail-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .svc-detail-body { grid-template-columns: 1fr; gap: 40px; }
}

.svc-detail-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 300;
  letter-spacing: -0.02em; color: var(--charcoal); margin: 0 0 20px;
}
.svc-detail-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 26px); font-weight: 400;
  letter-spacing: -0.01em; color: var(--charcoal); margin: 36px 0 12px;
}
.svc-detail-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--muted); line-height: 1.75; margin: 0 0 16px;
}
.svc-detail-text ul {
  padding: 0; margin: 0 0 20px; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.svc-detail-text ul li {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--muted); line-height: 1.6;
  display: flex; align-items: flex-start; gap: 12px;
}
.svc-detail-text ul li::before {
  content: '';
  display: block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); margin-top: 8px; flex-shrink: 0;
}

/* Sidebar */
.svc-detail-sidebar {
  position: sticky; top: calc(var(--nav-h) + 24px);
  background: var(--cream-d);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 0;
}
.sidebar-info-block {
  padding: 16px 0;
  border-bottom: 1px solid rgba(26,24,23,0.08);
}
.sidebar-info-block:last-of-type { border-bottom: none; }
.sidebar-info-head {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 5px; font-weight: 500;
}
.sidebar-info-block p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; color: var(--charcoal); line-height: 1.5; margin: 0;
}

/* ══════════════════════════════════════════
   FAQ SECTION (details/summary)
══════════════════════════════════════════ */
.faq-section {
  background: var(--cream-d);
  padding: 80px 40px;
}
.faq-inner {
  max-width: 760px; margin: 0 auto;
}
.faq-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 300;
  letter-spacing: -0.02em; color: var(--charcoal); margin: 12px 0 36px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-list details {
  border-bottom: 1px solid var(--blush);
}
.faq-list details summary {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--charcoal);
  padding: 18px 0;
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  transition: color 0.2s ease;
}
.faq-list details summary::-webkit-details-marker { display: none; }
.faq-list details summary::after {
  content: '+';
  font-size: 22px; color: var(--gold); flex-shrink: 0;
  transition: transform 0.25s ease;
  font-weight: 300; line-height: 1;
}
.faq-list details[open] summary { color: var(--gold); }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--muted); line-height: 1.75;
  padding: 0 0 18px; margin: 0;
}

/* ══════════════════════════════════════════
   BOOK CTA BANNER
══════════════════════════════════════════ */
.book-cta-banner {
  background: var(--charcoal);
  padding: 96px 40px;
  text-align: center;
}
.book-cta-inner { max-width: 640px; margin: 0 auto; }
.book-cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 54px); font-weight: 300;
  letter-spacing: -0.02em; line-height: 1.1;
  color: var(--cream); margin: 12px 0 16px;
}
.book-cta-inner p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: rgba(247,243,237,0.5); line-height: 1.75;
  margin: 0 0 32px;
}

/* ══════════════════════════════════════════
   SERVICE CARDS (overview grid)
══════════════════════════════════════════ */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--blush);
}
@media (max-width: 800px) { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  position: relative; overflow: hidden;
  aspect-ratio: 1 / 1; background: var(--cream);
  display: block; text-decoration: none;
}
.svc-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.svc-card:hover img { transform: scale(1.07); }
.svc-card-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,24,23,0.82) 0%, rgba(26,24,23,0.15) 55%, transparent 100%);
}
.svc-card-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 20px;
  transition: opacity 0.3s ease;
}
.svc-card-label h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 400; color: var(--cream); margin: 0 0 4px;
}
.svc-card-label p {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(212,184,150,0.8); margin: 0;
}
.svc-card-hover {
  position: absolute; inset: 0;
  background: rgba(26,24,23,0.88);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 28px; text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.svc-card:hover .svc-card-hover { opacity: 1; }
.svc-card:hover .svc-card-label { opacity: 0; }
.svc-card-hover h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 400; color: var(--cream); margin: 0 0 10px;
}
.svc-card-hover p {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; color: rgba(247,243,237,0.6); line-height: 1.65; margin: 0 0 18px;
}
.svc-hover-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  border: 1px solid rgba(247,243,237,0.38); padding: 8px 20px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.svc-hover-cta:hover { background: rgba(247,243,237,0.12); border-color: rgba(247,243,237,0.7); }
.svc-hover-cta:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ══════════════════════════════════════════
   SERVICE DETAIL PAGE
══════════════════════════════════════════ */
.service-body { max-width: 1120px; margin: 0 auto; padding: 80px 40px; }

.service-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start; margin-bottom: 80px;
}
@media (max-width: 768px) { .service-intro { grid-template-columns: 1fr; gap: 40px; } }

.service-intro-img {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--blush);
}
.service-intro-img img { width: 100%; height: 100%; object-fit: cover; }

.service-intro-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 300; letter-spacing: -0.02em;
  color: var(--charcoal); margin: 14px 0 18px;
}

.bullet-list { list-style: none; padding: 0; margin: 20px 0; display: flex; flex-direction: column; gap: 11px; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--muted); line-height: 1.6;
}
.bullet-list li::before {
  content: '';
  display: block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); margin-top: 8px; flex-shrink: 0;
}

/* Process steps */
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--blush); margin: 48px 0;
}
@media (max-width: 700px) { .process-steps { grid-template-columns: 1fr; } }
.process-step {
  padding: 36px 28px; background: var(--cream-d);
  border-top: 2px solid var(--gold);
}
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px; font-weight: 300; color: var(--gold-l);
  line-height: 1; margin-bottom: 14px;
}
.process-step h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--charcoal); margin: 0 0 10px; font-weight: 500;
}
.process-step p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--muted); line-height: 1.65; margin: 0;
}

/* FAQ */
.faq-wrap { max-width: 720px; margin: 64px auto; }
.faq-head {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 40px); font-weight: 300; letter-spacing: -0.02em;
  color: var(--charcoal); margin: 12px 0 32px;
}
.faq-item { border-bottom: 1px solid var(--blush); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; cursor: pointer; list-style: none;
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  color: var(--charcoal);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q .faq-icon {
  font-size: 22px; color: var(--gold); flex-shrink: 0;
  transition: transform 0.25s ease;
}
details[open] .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 18px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--muted); line-height: 1.7;
}

/* Related services */
.related-section { margin-top: 80px; }
.related-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 40px); font-weight: 300; letter-spacing: -0.02em;
  color: var(--charcoal); margin: 12px 0 32px;
}
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--blush);
}
@media (max-width: 700px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  position: relative; overflow: hidden; aspect-ratio: 4/3;
  background: var(--cream); display: block; text-decoration: none;
}
.related-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.related-card:hover img { transform: scale(1.06); }
.related-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,24,23,0.75) 0%, transparent 60%);
}
.related-label {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 18px;
}
.related-label h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 400; color: var(--cream); margin: 0 0 3px;
}
.related-label p {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.11em; text-transform: uppercase;
  color: rgba(212,184,150,0.8); margin: 0;
}

/* Book CTA banner */
.book-banner {
  background: var(--charcoal); padding: 80px 40px; text-align: center;
}
.book-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 50px); font-weight: 300; letter-spacing: -0.01em;
  color: var(--cream); margin: 12px 0 14px;
}
.book-banner p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: rgba(247,243,237,0.5); line-height: 1.7;
  margin: 0 auto 32px; max-width: 440px;
}

/* ══════════════════════════════════════════
   SHOP
══════════════════════════════════════════ */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

.product-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.product-img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 1/1;
  background: var(--blush); margin-bottom: 14px;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-brand-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 4px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; color: var(--charcoal); margin: 0 0 5px;
}
.product-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; color: var(--muted); line-height: 1.65; margin: 0 0 12px; flex: 1;
}
.product-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 500; color: var(--gold); margin: 0 0 12px;
}

/* Shop brand hero */
.brand-hero {
  background: var(--cream-d); padding: 120px 40px 64px;
  display: flex; align-items: center; gap: 48px;
  flex-wrap: wrap;
}
.brand-hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 6vw, 64px); font-weight: 300; letter-spacing: -0.025em;
  color: var(--charcoal); margin: 0 0 14px;
}
.brand-hero-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 520px; margin: 0;
}

/* ══════════════════════════════════════════
   MEMBERSHIPS
══════════════════════════════════════════ */
.membership-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--blush);
}
@media (max-width: 768px) { .membership-grid { grid-template-columns: 1fr; } }

.membership-card { background: var(--cream); padding: 48px 36px; text-align: center; }
.membership-card.featured { background: var(--charcoal); }

.mem-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin: 0 0 18px;
}
.mem-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px; font-weight: 300; letter-spacing: -0.01em;
  color: var(--charcoal); margin: 0 0 8px;
}
.membership-card.featured .mem-name { color: var(--cream); }
.mem-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300; color: var(--gold); margin: 0 0 4px; line-height: 1;
}
.mem-period {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; color: var(--muted); letter-spacing: 0.05em; margin: 0 0 32px;
}
.membership-card.featured .mem-period { color: rgba(247,243,237,0.45); }
.mem-features {
  list-style: none; padding: 0; margin: 0 0 36px;
  display: flex; flex-direction: column; gap: 11px; text-align: left;
}
.mem-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--muted); line-height: 1.5;
}
.membership-card.featured .mem-features li { color: rgba(247,243,237,0.6); }
.mem-features li::before {
  content: '✓'; color: var(--gold); font-size: 12px; font-weight: 700;
  flex-shrink: 0; margin-top: 2px;
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 560px;
}
@media (max-width: 768px) { .about-split { grid-template-columns: 1fr; } }
.about-img { position: relative; overflow: hidden; min-height: 480px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about-text {
  padding: 80px 56px;
  background: var(--cream-d);
  display: flex; flex-direction: column; justify-content: center;
}
@media (max-width: 768px) { .about-text { padding: 48px 32px; } }
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 300; letter-spacing: -0.02em;
  color: var(--charcoal); margin: 14px 0 22px;
}

/* Credentials list */
.creds { list-style: none; padding: 0; margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.creds li {
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--muted); line-height: 1.5;
  display: flex; gap: 10px; align-items: flex-start;
}
.creds li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; max-width: 1120px; margin: 0 auto; padding: 80px 40px;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}
.form-input, .form-textarea, .form-select {
  border: 1px solid var(--blush); background: var(--white);
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--charcoal);
  outline: none; -webkit-appearance: none; appearance: none;
  transition: border-color 0.25s ease;
}
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-textarea { min-height: 130px; resize: vertical; }

/* Contact info block */
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 40px); font-weight: 300; letter-spacing: -0.02em;
  color: var(--charcoal); margin: 12px 0 28px;
}
.contact-detail {
  display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px;
}
.contact-detail-item { display: flex; flex-direction: column; gap: 4px; }
.contact-detail-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.contact-detail-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--charcoal); line-height: 1.6; text-decoration: none;
  transition: color 0.2s ease;
}
a.contact-detail-value:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   NEWSLETTER (shared)
══════════════════════════════════════════ */
.newsletter-section {
  background: var(--charcoal); padding: 80px 40px; text-align: center;
}
.newsletter-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 300; letter-spacing: -0.01em;
  color: var(--cream); margin: 12px 0 12px; line-height: 1.2;
}
.newsletter-section > p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: rgba(247,243,237,0.5); line-height: 1.7;
  margin: 0 auto 32px; max-width: 420px;
}
.newsletter-form {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: wrap; max-width: 500px; margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1 1 240px; min-width: 0;
  background: rgba(247,243,237,0.07); border: 1px solid rgba(247,243,237,0.18);
  color: var(--cream); padding: 13px 18px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; outline: none;
  transition: border-color 0.25s ease;
}
.newsletter-form input::placeholder { color: rgba(247,243,237,0.35); font-size: 12px; letter-spacing: 0.04em; }
.newsletter-form input:focus { border-color: rgba(184,147,106,0.55); }

/* ══════════════════════════════════════════
   FOOTER (injected)
══════════════════════════════════════════ */
#site-footer-el { background: var(--charcoal-d); }

.footer-top {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 40px 0;
  display: grid; grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 52px;
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }

.footer-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 400; letter-spacing: 0.06em;
  color: rgba(247,243,237,0.6); margin: 0 0 16px; line-height: 1.3;
}
.footer-wordmark em { font-style: italic; font-size: 15px; letter-spacing: 0.1em; color: rgba(184,147,106,0.75); }
.footer-about {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; color: rgba(247,243,237,0.38); line-height: 1.7; margin: 0 0 18px;
}
.footer-social { display: flex; gap: 18px; }
.footer-social a {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(247,243,237,0.42); text-decoration: none;
  transition: color 0.2s ease;
}
.footer-social a:hover { color: var(--gold-l); }

.footer-col-head {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(247,243,237,0.38); margin: 0 0 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: rgba(247,243,237,0.55); text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--gold-l); }

.footer-contact-block { font-style: normal; display: flex; flex-direction: column; gap: 10px; }
.footer-contact-block p, .footer-contact-block a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: rgba(247,243,237,0.55); line-height: 1.65; margin: 0;
  text-decoration: none; transition: color 0.2s ease;
}
.footer-contact-block a:hover { color: var(--gold-l); }

.footer-bottom {
  max-width: 1200px; margin: 48px auto 0;
  border-top: 1px solid rgba(247,243,237,0.07);
  padding: 22px 40px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy, .footer-legal {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; color: rgba(247,243,237,0.28); margin: 0;
}
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: rgba(247,243,237,0.28); text-decoration: none; transition: color 0.2s ease; }
.footer-legal a:hover { color: rgba(247,243,237,0.55); }

/* ══════════════════════════════════════════
   UTILITY / LAYOUT
══════════════════════════════════════════ */
.max-w-site { max-width: 1200px; margin: 0 auto; }
.px-site { padding-left: 40px; padding-right: 40px; }
.section-pad { padding: 80px 40px; }
.section-pad-lg { padding: 100px 40px; }
.text-center { text-align: center; }
.bg-cream { background: var(--cream); }
.bg-cream-d { background: var(--cream-d); }
.bg-charcoal { background: var(--charcoal); }

@media (max-width: 480px) {
  .section-pad, .section-pad-lg { padding: 60px 20px; }
  .px-site { padding-left: 20px; padding-right: 20px; }
}
