
:root {
  /* Core palette — gold + navy anchored, with warm blush accent for approachability */
  --navy: #0A1B3D;
  --navy-soft: #15305E;
  --navy-deep: #061129;       /* deeper navy for hero gradient stops */
  --gold: #C9A24B;
  --gold-warm: #D4B062;
  --sparkle: #E7C97A;
  --blush: #E8C9B8;           /* warm peach/blush accent (sparingly used) */
  --blush-soft: #F3E4DA;      /* soft blush for hover/wash */
  --cream: #F8F5EF;
  --cream-soft: #EFE9DE;      /* slightly warmer, more golden cream */
  --cream-warm: #FBF6EC;      /* lightest cream for inset cards */
  --charcoal: #1A1A1A;
  --ink: #14223F;
  --muted: #6B6B6B;
  --muted-warm: #8B7355;      /* warm muted text for serif body */
  --gold-line: rgba(201, 162, 75, 0.35);
  --gold-line-strong: rgba(201, 162, 75, 0.65);
  --shadow-soft: 0 8px 30px rgba(10, 27, 61, 0.08);
  --shadow-card: 0 4px 20px rgba(10, 27, 61, 0.06);
  --shadow-photo: 0 12px 40px rgba(10, 27, 61, 0.15);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
  body { padding-bottom: 72px; }
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 32px;
  min-height: 48px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  background: var(--sparkle);
  border-color: var(--sparkle);
}

.btn-gold .sparkle-icon {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-gold:hover .sparkle-icon {
  opacity: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 15px 30px;
  min-height: 48px;
  border: 1px solid var(--gold-line);
  cursor: pointer;
  transition: all 0.4s ease;
}

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

/* When .btn-outline is on a light background (cream/services/about/teasers), invert it
   so the text and border are dark enough to read */
.services-teaser .btn-outline,
.services-cta .btn-outline,
.about .btn-outline,
.about-v2 .btn-outline,
.faq .btn-outline,
.gallery .services-cta .btn-outline,  /* gallery section uses dark bg, but the CTA itself sometimes needs dark */
.services .btn-outline,
.journal-preview .btn-outline,
.testimonials .btn-outline,
.editorial-intro .btn-outline,
.editorial-stylist .btn-outline,
.editorial-display .btn-outline,
.editorial-final .btn-outline,
.editorial-work .btn-outline {
  color: var(--ink);
  border-color: var(--ink);
}
.services-teaser .btn-outline:hover,
.services-cta .btn-outline:hover,
.about .btn-outline:hover,
.about-v2 .btn-outline:hover,
.faq .btn-outline:hover,
.services .btn-outline:hover,
.journal-preview .btn-outline:hover,
.testimonials .btn-outline:hover,
.editorial-intro .btn-outline:hover,
.editorial-stylist .btn-outline:hover,
.editorial-display .btn-outline:hover,
.editorial-final .btn-outline:hover,
.editorial-work .btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* Gallery section IS dark — reset btn-outline there to keep light text */
.gallery.section-dark .btn-outline {
  color: var(--cream);
  border-color: var(--gold-line);
  background: transparent;
}
.gallery.section-dark .btn-outline:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 30, 63, 0.96);
  padding: 14px 0;
  border-bottom-color: var(--gold-line);
  backdrop-filter: blur(8px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}
@media (max-width: 768px) {
  .nav-logo img { height: 40px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  white-space: nowrap;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav-links a:not(.btn-gold)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:not(.btn-gold):hover::after { width: 100%; }
.nav-links a.btn-gold { padding: 11px 18px; min-height: 0; font-size: 10.5px; }

/* Drop phone number from nav on medium-large screens to keep all menu items visible.
   But always show in mobile hamburger menu (<=900px the nav becomes a full-screen overlay). */
@media (min-width: 901px) and (max-width: 1280px) {
  .nav-links a[href^="tel:"] { display: none; }
}
/* Hide Journal from nav on smaller desktops; still in footer + mobile hamburger */
@media (min-width: 901px) and (max-width: 1080px) {
  .nav-links a[href="/journal"] { display: none; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--cream);
  margin: 6px 0;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: 100%;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    padding: 0 32px;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 18px; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  background:
    /* Subtle gold halo behind the photo, top-right */
    radial-gradient(ellipse 60% 50% at 78% 35%, rgba(201, 162, 75, 0.10) 0%, transparent 65%),
    /* Lifted blue glow, top-left where hero content sits */
    radial-gradient(ellipse 70% 60% at 22% 28%, rgba(58, 95, 155, 0.45) 0%, transparent 60%),
    /* Mid soft wash */
    radial-gradient(ellipse 50% 40% at 60% 55%, rgba(40, 75, 130, 0.35) 0%, transparent 60%),
    /* Deep bottom-left fade for grounding */
    radial-gradient(ellipse 80% 70% at 10% 100%, rgba(5, 18, 42, 0.85) 0%, transparent 60%),
    /* Deep top-right shadow */
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(5, 15, 38, 0.7) 0%, transparent 55%),
    /* Base diagonal — slightly darker navy for richness */
    linear-gradient(135deg, #0A1B38 0%, #0E2347 50%, #081831 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch' seed='5'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 0.95 0 0 0 0 0.85 0 0 0 0.22 0'/></filter><rect width='400' height='400' filter='url(%23n)'/></svg>");
  opacity: 0.55;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
/* Vignette — soft darkening at the very edges, the secret to depth */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 100% at center, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-bg-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 3;
}
.hero-content .label { display: inline-flex; align-items: center; gap: 10px; }
.hero-content .label::before,
.hero-content .label::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold-line);
}
/* Hide eyebrow side lines on smaller screens so they don't cramp the text */
@media (max-width: 900px) {
  .hero-content .label::before,
  .hero-content .label::after { display: none; }
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
  color: var(--cream);
  margin: 24px 0 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(247, 244, 238, 0.78);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  aspect-ratio: 3/4;
  border: 1px solid var(--gold-line);
  padding: 16px;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold-line);
  transform: translate(12px, 12px);
  z-index: -1;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-image-label {
  position: absolute;
  bottom: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  padding: 0 18px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero { padding: 140px 0 60px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-image { max-width: 380px; margin: 0 auto; }
}

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--navy);
  color: var(--cream);
  padding: 28px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  text-align: center;
}
.intro-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--cream);
}
.intro-strip-inner span:not(.divider) { display: inline-flex; align-items: center; gap: 10px; }
.intro-strip .divider { color: var(--gold); }
.intro-strip a { color: var(--gold); transition: color 0.3s; }
.intro-strip a:hover { color: var(--sparkle); }

/* ===== SECTION SHARED ===== */
section { padding: 100px 0; }
@media (max-width: 768px) { section { padding: 70px 0; } }

.section-head {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 3;
}
.section-head .label { margin-bottom: 18px; display: inline-flex; align-items: center; gap: 10px; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.section-head h2 em { font-style: italic; color: var(--gold); }
.section-head p {
  max-width: 580px;
  margin: 0 auto;
  color: rgba(26, 26, 26, 0.7);
  font-size: 17px;
}
.section-head .ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
}
.section-head .ornament .line {
  width: 50px; height: 1px;
  background: var(--gold-line);
}

/* On navy sections */
.section-dark .section-head h2 { color: var(--cream); }
.section-dark .section-head p { color: rgba(247, 244, 238, 0.7); }

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
}
.service-card {
  background: var(--cream);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  transition: background 0.4s ease;
}
.service-card:hover { background: #FAF7F1; }
.service-card .label { margin-bottom: 14px; }
.service-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.service-card h3 em { font-style: italic; color: var(--gold); }
.service-card p {
  color: rgba(26, 26, 26, 0.72);
  margin-bottom: 22px;
  font-size: 15px;
  flex: 1;
}
.service-card .book-link {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card .book-link:hover { color: var(--gold); transform: translateX(4px); }
.service-card .service-meta {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }
}

.services-cta {
  text-align: center;
  margin-top: 60px;
}

/* ===== GALLERY ===== */
.gallery {
  background:
    radial-gradient(ellipse 65% 50% at 75% 25%, rgba(55, 90, 145, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 60% 55% at 20% 75%, rgba(35, 65, 115, 0.45) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(5, 18, 42, 0.7) 0%, transparent 65%),
    linear-gradient(160deg, #0A1B38 0%, #0E2347 60%, #081831 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.gallery::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch' seed='9'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 0.95 0 0 0 0 0.85 0 0 0 0.18 0'/></filter><rect width='400' height='400' filter='url(%23n)'/></svg>");
  opacity: 0.45;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 110% 110% at center, transparent 55%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}
.gallery .gallery-bg-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  z-index: 2;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 3;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  background: #081831;
  aspect-ratio: 3/4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
/* Captions removed - photos speak for themselves */
/* The rainbow / creative shot is the one truly landscape photo - give it special treatment */
.gallery-item.contain img {
  object-fit: contain;
  background: #081831;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== ABOUT ===== */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--gold-line);
  padding: 14px;
}
.about-image::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold-line);
  transform: translate(-14px, 14px);
  z-index: -1;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content .label { margin-bottom: 18px; }
.about-content h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 28px;
}
.about-content h2 em { font-style: italic; color: var(--gold); }
.about-content p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.78);
  margin-bottom: 20px;
}
.about-creds {
  list-style: none;
  margin: 32px 0;
  padding: 32px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.about-creds li {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  line-height: 1.4;
  color: var(--charcoal);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-creds li::before {
  content: '✦';
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}
.about-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  color: var(--gold);
  margin-top: 28px;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-image { max-width: 380px; margin: 0 auto; }
}

/* ===== VISIT / BUSINESS INFO ===== */
.visit {
  background: var(--cream);
  padding: 100px 0;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}
.visit-map {
  position: relative;
  border: 1px solid var(--gold-line);
  padding: 12px;
  background: var(--cream);
  min-height: 420px;
}
.visit-map::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold-line);
  transform: translate(8px, 8px);
  z-index: -1;
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(0.98);
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
}
.visit-card {
  background: #FAF7F1;
  border: 1px solid var(--gold-line);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.visit-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  gap: 12px;
}
.visit-card h3::before {
  content: '✦';
  color: var(--gold);
  font-size: 14px;
}

.hours-list {
  margin: 0;
}
.hours-list > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(201, 162, 75, 0.2);
}
.hours-list > div:last-child { border-bottom: 0; }
.hours-list dt {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
}
.hours-list dd {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--charcoal);
}
.hours-list dd.closed {
  color: rgba(26, 26, 26, 0.55);
  font-size: 15px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
}

.location-block {
  font-style: normal;
  margin-bottom: 24px;
  line-height: 1.7;
}
.location-block strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--charcoal);
  display: block;
  margin-bottom: 8px;
}
.location-block span {
  display: block;
  font-size: 15px;
  color: rgba(26, 26, 26, 0.78);
  font-family: var(--sans);
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.3s ease, transform 0.3s ease;
  margin-bottom: 28px;
}
.directions-btn:hover { color: var(--gold); transform: translateX(4px); }

.visit-extras {
  border-top: 1px dashed rgba(201, 162, 75, 0.3);
  padding-top: 22px;
  margin-top: auto;
}
.visit-extra-item {
  padding: 8px 0;
}
.visit-extra-label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 3px;
}
.visit-extra-value {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--charcoal);
  line-height: 1.4;
}

@media (max-width: 1000px) {
  .visit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .visit-map { grid-column: 1 / -1; min-height: 380px; }
}
@media (max-width: 700px) {
  .visit-grid { grid-template-columns: 1fr; gap: 22px; }
  .visit-map { min-height: 320px; }
  .visit-card { padding: 28px 24px; }
  .visit { padding: 70px 0; }
}

/* ===== SHIMMER SHOP ===== */
.shimmer-shop {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  color: var(--cream);
  border-top: 1px solid rgba(201, 162, 75, 0.18);
}
.shimmer-shop::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(40, 75, 130, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 85% 80%, rgba(201, 162, 75, 0.10) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.shimmer-shop > .container { position: relative; z-index: 2; }
.shimmer-shop .section-head .label {
  color: var(--sparkle);
  letter-spacing: 0.28em;
}
.shimmer-shop .section-head h2 {
  color: var(--cream);
}
.shimmer-shop .section-head h2 em {
  color: var(--gold);
  font-style: italic;
}
.shimmer-shop .section-head p {
  color: rgba(247, 244, 238, 0.78);
}

.shimmer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.shimmer-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 75, 0.28);
  border-radius: 4px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  position: relative;
}
.shimmer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 75, 0.55);
  background: rgba(255, 255, 255, 0.05);
}
.shimmer-card.featured {
  background: linear-gradient(180deg, rgba(201, 162, 75, 0.07), rgba(201, 162, 75, 0.02));
  border-color: rgba(201, 162, 75, 0.55);
}
.shimmer-card.featured::before {
  content: '✦ Most Popular ✦';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  white-space: nowrap;
}
.shimmer-tag {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.shimmer-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 6px;
}
.shimmer-card h3 em {
  color: var(--gold);
  font-style: italic;
}
.shimmer-sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(231, 201, 122, 0.78);
  margin-bottom: 18px;
}
.shimmer-prices {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.shimmer-prices li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 162, 75, 0.13);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--cream);
}
.shimmer-prices li:last-child { border-bottom: none; }
.shimmer-prices li .price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 17px;
  color: var(--sparkle);
  letter-spacing: 0.02em;
}
.shimmer-prices .featured-line {
  background: rgba(201, 162, 75, 0.08);
  padding: 10px 14px;
  border-radius: 3px;
  border-bottom: none;
  margin: 4px -14px;
}
.shimmer-prices .featured-line .price {
  font-size: 19px;
  color: var(--gold);
}
.mini-badge {
  display: inline-block;
  font-family: var(--sans);
  font-style: normal;
  font-weight: 500;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 2px 7px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: middle;
}
.strand-count {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.05em;
  color: rgba(247, 244, 238, 0.5);
  margin-top: 2px;
}
.shimmer-note {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(247, 244, 238, 0.6);
  letter-spacing: 0.05em;
  text-align: center;
  margin: 14px 0;
  font-style: italic;
}
.shimmer-card .book-link {
  margin-top: auto;
  align-self: center;
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.shimmer-card .book-link:hover {
  color: var(--sparkle);
  border-bottom-color: var(--sparkle);
}

/* Quick Guide */
.shimmer-guide {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(201, 162, 75, 0.20);
  text-align: center;
}
.shimmer-guide h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 24px;
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 640px;
  margin: 0 auto;
}
.guide-tile {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 75, 0.22);
  border-radius: 4px;
  padding: 18px 14px 16px;
  text-align: center;
}
.guide-tile.highlight {
  background: rgba(201, 162, 75, 0.10);
  border-color: rgba(201, 162, 75, 0.55);
}
.guide-num {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  color: var(--sparkle);
  line-height: 1;
  margin-bottom: 6px;
}
.guide-label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.guide-desc {
  display: block;
  font-family: var(--sans);
  font-size: 12.5px;
  color: rgba(247, 244, 238, 0.78);
  line-height: 1.3;
}
.shimmer-footer {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(247, 244, 238, 0.65);
  margin-top: 28px;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .shimmer-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .shimmer-shop { padding: 56px 0; }
  .shimmer-card { padding: 28px 22px 24px; }
  .shimmer-guide { margin-top: 36px; }
  .shimmer-guide h4 { font-size: 22px; }
  .guide-grid { gap: 10px; }
  .guide-num { font-size: 30px; }
  .guide-tile { padding: 14px 8px 12px; }
  .guide-desc { font-size: 11px; }
}

/* ===== WHAT TO EXPECT ===== */
.expect {
  background: var(--cream);
  padding: 100px 0;
  border-top: 1px solid var(--gold-line);
}
.expect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.expect-step {
  position: relative;
  padding: 36px 28px 32px;
  border: 1px solid var(--gold-line);
  background: #FAF7F1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.expect-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(11, 30, 63, 0.08);
}
.expect-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1;
  font-weight: 500;
}
.expect-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.expect-step p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.74);
}
@media (max-width: 1000px) {
  .expect-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .expect-grid { grid-template-columns: 1fr; }
  .expect { padding: 60px 0; }
}

/* ===== FAQ ===== */
.faq {
  background: var(--cream);
  padding: 100px 0;
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-list { margin-top: 20px; }
.faq-item {
  border-bottom: 1px solid var(--gold-line);
}
.faq-item:first-child {
  border-top: 1px solid var(--gold-line);
}
.faq-item summary {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--charcoal);
  padding: 24px 40px 24px 0;
  cursor: pointer;
  position: relative;
  list-style: none;
  transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item summary:hover { color: var(--gold); }
.faq-answer { padding: 0 0 24px; }
.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(26, 26, 26, 0.78);
}
.faq-cta {
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--gold-line);
  text-align: center;
}
.faq-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.faq-cta-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 26px;
  min-height: 46px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline-dark:hover {
  background: var(--gold);
  color: var(--navy);
}
@media (max-width: 700px) {
  .faq { padding: 60px 0; }
  .faq-item summary { font-size: 17px; padding: 20px 36px 20px 0; }
  .faq-answer p { font-size: 15px; }
}

/* ===== EXPERIENCE ===== */
.experience {
  background: var(--cream);
  padding: 80px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.experience-item .icon {
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 18px;
  display: inline-block;
}
.experience-item h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 10px;
}
.experience-item p {
  color: rgba(26, 26, 26, 0.7);
  font-size: 15px;
  max-width: 280px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .experience-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ===== EMAIL CAPTURE / SIGNUP ===== */
.signup {
  background: var(--cream);
  padding: 90px 0;
  border-top: 1px solid var(--gold-line);
}
.signup-card {
  background: #FAF7F1;
  border: 1px solid var(--gold-line);
  padding: 56px 48px;
  position: relative;
}
.signup-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 162, 75, 0.18);
  pointer-events: none;
}
.signup-content { text-align: center; max-width: 560px; margin: 0 auto 36px; position: relative; z-index: 1; }
.signup-content .label { color: var(--gold); margin-bottom: 14px; display: inline-block; }
.signup-content h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.85rem, 3.8vw, 2.5rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 18px;
}
.signup-content h2 em { font-style: italic; color: var(--gold); }
.signup-content p {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.72);
}
.signup-form {
  display: grid;
  grid-template-columns: 1fr 1.4fr auto;
  gap: 10px;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.signup-form input[type="text"],
.signup-form input[type="email"] {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--gold-line);
  color: var(--charcoal);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 48px;
}
.signup-form input::placeholder {
  color: rgba(26, 26, 26, 0.42);
  font-style: italic;
}
.signup-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.12);
}
.signup-form .btn-gold {
  white-space: nowrap;
  padding: 14px 22px;
  font-size: 12px;
}
.signup-fineprint {
  text-align: center;
  font-size: 12px;
  color: rgba(26, 26, 26, 0.55);
  margin-top: 22px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
@media (max-width: 768px) {
  .signup { padding: 64px 0; }
  .signup-card { padding: 38px 24px; }
  .signup-content { margin-bottom: 28px; }
  .signup-form { grid-template-columns: 1fr; gap: 12px; }
  .signup-form .btn-gold { width: 100%; padding: 16px; min-height: 50px; }
}

/* ===== BOOK CTA ===== */
.book-cta {
  background:
    radial-gradient(ellipse 50% 40% at 50% 30%, rgba(201, 162, 75, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 70% 60% at 30% 35%, rgba(55, 90, 145, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 75% 70%, rgba(40, 75, 130, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(5, 18, 42, 0.7) 0%, transparent 60%),
    linear-gradient(145deg, #0A1B38 0%, #102749 50%, #081831 100%);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.book-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch' seed='12'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 0.95 0 0 0 0 0.85 0 0 0 0.2 0'/></filter><rect width='400' height='400' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}
.book-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 110% 110% at center, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 1;
}
.book-cta .gallery-bg-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  z-index: 2;
}
.book-cta-inner { position: relative; z-index: 3; }
.book-cta h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.book-cta h2 em { font-style: italic; color: var(--gold); }
.book-cta p {
  font-size: 18px;
  color: rgba(247, 244, 238, 0.78);
  max-width: 540px;
  margin: 0 auto 40px;
}
.book-cta .contact-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--gold-line);
}
.book-cta .contact-row a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s ease;
}
.book-cta .contact-row a:hover { color: var(--gold); }
.book-cta .contact-row a span:first-child { color: var(--gold); font-style: normal; }
.book-cta .urgency-line {
  margin-top: 26px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--sparkle);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.book-cta .area-served {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(247, 244, 238, 0.7);
  padding: 60px 0 30px;
  border-top: 1px solid var(--gold-line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-logo img {
  height: 64px;
  margin-bottom: 18px;
  display: block;
}
.footer-logo p {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(247, 244, 238, 0.6);
  font-size: 15px;
  max-width: 300px;
}
.footer h5 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer ul { list-style: none; }
.footer li { padding: 5px 0; }
.footer li a {
  color: rgba(247, 244, 238, 0.75);
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer li a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--gold-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(247, 244, 238, 0.55);
  letter-spacing: 0.05em;
}
.footer-bottom a { color: rgba(247, 244, 238, 0.55); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ===== STICKY MOBILE BOOK BAR ===== */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 12px 16px;
  border-top: 1px solid var(--gold);
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.sticky-book a {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px;
  min-height: 48px;
}
.sticky-book a:hover { background: var(--sparkle); }
@media (max-width: 768px) { .sticky-book { display: block; } }

/* ===== SPARKLE ANIMATION ===== */
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.15); }
}
.sparkle-svg { animation: twinkle 6s ease-in-out infinite; transform-origin: center; }
.sparkle-svg:nth-child(2) { animation-duration: 8s; animation-delay: 1s; }
.sparkle-svg:nth-child(3) { animation-duration: 7s; animation-delay: 2.4s; }
.sparkle-svg:nth-child(4) { animation-duration: 9s; animation-delay: 0.6s; }
.sparkle-svg:nth-child(5) { animation-duration: 6.5s; animation-delay: 3.2s; }
.sparkle-svg:nth-child(6) { animation-duration: 7.5s; animation-delay: 1.8s; }
.sparkle-svg:nth-child(7) { animation-duration: 8.5s; animation-delay: 2.8s; }

@media (prefers-reduced-motion: reduce) {
  .sparkle-svg { animation: none; opacity: 0.4; }
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===== MOBILE POLISH ===== */
/* Comprehensive mobile refinements for phones (<= 768px) and small phones (<= 480px) */
@media (max-width: 768px) {

  /* Tighter section padding overall — mobile screens can't afford 100px of whitespace */
  section { padding: 56px 0; }
  .container { padding: 0 20px; }

  /* Make sure sticky book bar never covers content */
  body { padding-bottom: 80px; }

  /* ===== HERO ===== */
  .hero {
    padding: 90px 0 50px;
    min-height: 0; /* let it fit content naturally, not full viewport */
  }
  .hero-grid {
    gap: 40px;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.1rem);
    line-height: 1.05;
    letter-spacing: 0;
    margin: 20px 0 22px;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 28px;
  }
  .hero-content .label { font-size: 10px; gap: 8px; }

  /* Hero buttons — make them side by side, tighter */
  .hero-ctas {
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
  }
  .hero-ctas .btn-gold,
  .hero-ctas .btn-outline {
    flex: 1;
    padding: 14px 18px;
    font-size: 12px;
    letter-spacing: 0.1em;
    min-height: 48px;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
  }

  /* Hero photo — smaller, contained, not full width */
  .hero-image {
    max-width: 320px;
    margin: 0 auto;
    padding: 10px;
  }
  .hero-image::before { transform: translate(8px, 8px); }
  .hero-image-label {
    font-size: 14px;
    padding: 0 12px;
  }

  /* ===== INTRO STRIP ===== */
  .intro-strip { padding: 20px 0; }
  .intro-strip-inner {
    font-size: 14px;
    gap: 14px;
    line-height: 1.5;
  }

  /* ===== SECTION HEADERS ===== */
  .section-head { margin-bottom: 44px; }
  .section-head h2 {
    font-size: clamp(1.75rem, 7vw, 2.4rem);
    line-height: 1.1;
  }
  .section-head p {
    font-size: 15px;
    line-height: 1.55;
  }
  .section-head .label { font-size: 10px; }

  /* ===== SERVICES ===== */
  .service-card {
    padding: 28px 22px;
  }
  .service-card h3 {
    font-size: 23px;
    margin-bottom: 12px;
  }
  .service-card p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 18px;
  }
  .service-card .label {
    font-size: 9.5px;
    margin-bottom: 10px;
  }
  .services-cta { margin-top: 40px; }

  /* ===== GALLERY — 2 columns on phones, not 1 ===== */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery-item { aspect-ratio: 3/4; }

  /* ===== ABOUT ===== */
  .about-grid { gap: 40px; }
  .about-image { max-width: 300px; padding: 10px; }
  .about-image::before { transform: translate(-10px, 10px); }
  .about-content h2 { margin-bottom: 20px; }
  .about-content p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .about-creds {
    margin: 24px 0;
    padding: 22px 0;
  }
  .about-creds li {
    font-size: 17px;
    padding: 7px 0;
    gap: 12px;
  }
  .about-signature {
    font-size: 22px;
    margin-top: 22px;
  }

  /* ===== VISIT ===== */
  .visit { padding: 56px 0; }
  .visit-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .visit-map {
    min-height: 280px;
    padding: 8px;
  }
  .visit-map::before { transform: translate(6px, 6px); }
  .visit-card {
    padding: 26px 22px;
  }
  .visit-card h3 {
    font-size: 21px;
    margin-bottom: 18px;
    padding-bottom: 12px;
  }
  .hours-list > div { padding: 8px 0; }
  .hours-list dt { font-size: 10.5px; }
  .hours-list dd { font-size: 15px; }
  .hours-list dd.closed { font-size: 14px; }
  .location-block strong { font-size: 17px; }
  .location-block span { font-size: 14.5px; }
  .visit-extra-value { font-size: 16px; }
  .visit-extra-label { font-size: 9.5px; }

  /* ===== EXPERIENCE ===== */
  .experience { padding: 56px 0; }
  .experience-grid { gap: 30px; }
  .experience-item h4 { font-size: 20px; }
  .experience-item p { font-size: 14px; }

  /* ===== BOOK CTA ===== */
  .book-cta h2 {
    font-size: clamp(1.9rem, 7.5vw, 2.6rem);
    line-height: 1.1;
    margin-bottom: 18px;
  }
  .book-cta p {
    font-size: 15.5px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .book-cta .btn-gold {
    padding: 16px 24px;
    font-size: 13px;
  }
  .book-cta .contact-row {
    flex-direction: column;
    gap: 14px;
    margin-top: 38px;
    padding-top: 30px;
  }
  .book-cta .contact-row a { font-size: 17px; }
  .book-cta .area-served {
    font-size: 9.5px;
    line-height: 1.7;
    margin-top: 22px;
  }

  /* ===== FOOTER ===== */
  .footer { padding: 44px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 30px;
    text-align: left;
  }
  .footer-logo img { height: 52px; }
  .footer h5 {
    font-size: 10.5px;
    margin-bottom: 14px;
  }
  .footer li { padding: 4px 0; }
  .footer li a, .footer li { font-size: 13.5px; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: left;
    font-size: 11px;
  }

  /* ===== SPARKLES — subtler on mobile ===== */
  .hero-bg-sparkles,
  .gallery-bg-sparkles { opacity: 0.3 !important; }
  .sparkle-svg { transform: scale(0.75); }

  /* ===== ORNAMENTAL DIVIDER ===== */
  .section-head .ornament { margin-top: 18px; }
  .section-head .ornament .line { width: 32px; }

}

/* ===== EXTRA SMALL PHONES (iPhone SE, etc) <= 380px ===== */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-gold,
  .hero-ctas .btn-outline { flex: none; width: 100%; }
  .section-head h2 { font-size: 1.7rem; }
  .book-cta h2 { font-size: 1.85rem; }
  .nav-logo img { height: 36px !important; }
}

/* ===== LANDSCAPE PHONES ===== */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { padding: 80px 0 40px; min-height: 0; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-image { max-width: 240px; }
}


/* ===== SHIMMER SHOP TEASER (replaces the full shimmer section on homepage) ===== */
.shimmer-teaser {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(201, 162, 75, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(58, 95, 155, 0.20) 0%, transparent 60%),
    linear-gradient(135deg, #0A1B38 0%, #0E2347 50%, #081831 100%);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.shimmer-teaser-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  border: 1px solid rgba(201, 162, 75, 0.30);
  background: rgba(11, 30, 63, 0.40);
  position: relative;
}
.shimmer-teaser-card::before,
.shimmer-teaser-card::after {
  content: '✦';
  position: absolute;
  font-size: 18px;
  color: var(--gold);
  opacity: 0.6;
}
.shimmer-teaser-card::before { top: 18px; left: 18px; }
.shimmer-teaser-card::after { bottom: 18px; right: 18px; }
.shimmer-teaser-card .label {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.22em;
}
.shimmer-teaser-card h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--cream);
  margin: 18px 0 22px;
  line-height: 1.12;
}
.shimmer-teaser-card h2 em {
  color: var(--gold);
  font-style: italic;
}
.shimmer-teaser-card p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(247, 244, 238, 0.82);
  max-width: 560px;
  margin: 0 auto 32px;
}
.shimmer-teaser-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
@media (max-width: 600px) {
  .shimmer-teaser { padding: 70px 0; }
  .shimmer-teaser-card { padding: 44px 24px; }
  .shimmer-teaser-card h2 { font-size: 1.85rem; }
  .shimmer-teaser-card p { font-size: 15px; }
  .shimmer-teaser-ctas { flex-direction: column; align-items: stretch; }
  .shimmer-teaser-ctas .btn-gold,
  .shimmer-teaser-ctas .btn-outline { width: 100%; text-align: center; justify-content: center; }
}

/* ===== Services CTA with dual buttons (See Full Menu + Book) ===== */
.services-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 50px;
}
@media (max-width: 600px) {
  .services-cta { flex-direction: column; align-items: stretch; }
  .services-cta .btn-gold,
  .services-cta .btn-outline { width: 100%; text-align: center; justify-content: center; }
}

/* ===== MOBILE GALLERY: 2-column grid (was carousel, simpler & customers see multiple photos) ===== */
@media (max-width: 768px) {
  .gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
    overflow: visible;
    margin: 0;
    padding: 0;
  }
  .gallery-item {
    flex: none;
    aspect-ratio: 3/4;
    scroll-snap-align: none;
  }
}

/* ===== TIGHTER MOBILE SECTION PADDING ===== */
@media (max-width: 768px) {
  section:not(.hero) { padding: 44px 0 !important; }
  .section-head { margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(1.65rem, 6.5vw, 2.2rem); }
  .visit { padding: 44px 0 !important; }
  .gallery { padding: 56px 0 44px !important; }
  /* Hero needs extra top padding to clear the fixed nav header (86px tall) */
  .hero { padding: 130px 0 50px !important; }
}

/* ===================================================================
   MENU (proper service menu with pricing)
   =================================================================== */

.menu-group {
  margin-bottom: 70px;
}
.menu-group:last-of-type {
  margin-bottom: 40px;
}

.menu-group-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--ink);
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gold-line);
  letter-spacing: 0.01em;
}
.menu-group-title em {
  color: var(--gold);
  font-style: italic;
}

.menu-rows {
  display: flex;
  flex-direction: column;
}

.menu-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 22px 4px;
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
}
.menu-row:last-child { border-bottom: none; }
.menu-row.featured {
  background: rgba(201, 162, 75, 0.04);
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
}
.menu-row.consult {
  background: rgba(11, 30, 63, 0.025);
  padding-left: 16px;
  padding-right: 16px;
  margin-left: -16px;
  margin-right: -16px;
}

.menu-row-main {
  flex: 1;
  min-width: 0;
}
.menu-row-main h4 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.25;
}
.menu-row-main p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
  max-width: 520px;
}

.menu-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 162, 75, 0.10);
  border: 1px solid rgba(201, 162, 75, 0.40);
  padding: 3px 9px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
  white-space: nowrap;
}

.menu-row-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.01em;
}
.menu-time {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.menu-footnote {
  text-align: center;
  margin-top: 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
}
.menu-footnote a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201, 162, 75, 0.4);
  text-underline-offset: 3px;
}
.menu-footnote a:hover { text-decoration-color: var(--gold); }

.menu-disclosure {
  text-align: center;
  margin-top: 30px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* MOBILE adjustments: stack price + time below content for readability */
@media (max-width: 600px) {
  .menu-group { margin-bottom: 36px; }
  .menu-group-title {
    font-size: 1.2rem;
    margin-bottom: 18px;
    padding-bottom: 12px;
  }
  .menu-row {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 14px 4px;
  }
  .menu-row-main {
    flex: 1;
    min-width: 0;
  }
  .menu-row-main h4 {
    font-size: 1rem;
    margin: 0;
    line-height: 1.3;
  }
  /* HIDE descriptions on mobile - keep menu clean & scannable */
  .menu-row-main p {
    display: none;
  }
  .menu-row-meta {
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
  }
  .menu-price { font-size: 1rem; }
  .menu-time { font-size: 9.5px; letter-spacing: 0.1em; }
  .menu-row.featured,
  .menu-row.consult {
    padding-left: 14px;
    padding-right: 14px;
    margin-left: -14px;
    margin-right: -14px;
  }
  /* Make the tag smaller and stack below the title on mobile */
  .menu-tag {
    display: inline-block;
    font-size: 8.5px;
    padding: 2px 7px;
    margin-left: 0;
    margin-top: 6px;
    vertical-align: baseline;
  }
  .menu-row-main h4 .menu-tag {
    display: block;
    margin-top: 4px;
  }
}

/* ===================================================================
   FEATURED SERVICES TEASER (homepage compact menu)
   =================================================================== */

.services-teaser {
  position: relative;
  padding: 90px 0;
  background: linear-gradient(180deg, var(--cream-bg) 0%, #FBF7EF 100%);
}

.featured-services-list {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
}

.featured-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 8px;
  border-bottom: 1px solid rgba(201, 162, 75, 0.20);
  transition: background-color 0.25s ease, padding-left 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.featured-service:last-child { border-bottom: none; }
.featured-service:hover {
  background: rgba(201, 162, 75, 0.06);
  padding-left: 14px;
}
.featured-service.featured {
  background: rgba(201, 162, 75, 0.05);
  padding-left: 16px;
  padding-right: 16px;
}

.fs-main {
  flex: 1;
  min-width: 0;
}
.fs-main h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.25;
}
.fs-main p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

.fs-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 162, 75, 0.12);
  border: 1px solid rgba(201, 162, 75, 0.40);
  padding: 3px 9px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
}

.fs-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.fs-price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--gold);
}
.fs-time {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.services-teaser-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 44px;
}

@media (max-width: 600px) {
  .services-teaser { padding: 56px 0; }
  .featured-service {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 18px 4px;
  }
  .featured-service.featured {
    padding-left: 14px;
    padding-right: 14px;
  }
  .featured-service:hover { padding-left: 4px; }
  .featured-service.featured:hover { padding-left: 14px; }
  .fs-main h3 { font-size: 1.05rem; }
  .fs-main p { font-size: 0.88rem; }
  .fs-meta {
    flex-direction: row;
    align-items: center;
    gap: 14px;
  }
  .fs-price { font-size: 1.1rem; }
  .services-teaser-cta {
    flex-direction: column;
    margin-top: 28px;
  }
  .services-teaser-cta .btn-gold,
  .services-teaser-cta .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* On mobile, give the nav a solid navy background by default
   (instead of waiting for scroll). This prevents the hero eyebrow
   text from visually overlapping the logo on small screens. */
@media (max-width: 900px) {
  .nav {
    background: rgba(11, 30, 63, 0.97);
    border-bottom: 1px solid var(--gold-line);
    backdrop-filter: blur(8px);
  }
}

/* ============================================================
   PRICE STRIP — trust signal directly below hero
   ============================================================ */
.price-strip {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  border-bottom: 1px solid var(--gold-line);
  padding: 22px 0;
  text-align: center;
}
.price-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--ink);
}
.price-strip-inner .price-amount {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}
.price-strip-inner .divider {
  color: var(--gold);
  font-size: 14px;
}
@media (max-width: 600px) {
  .price-strip-inner { gap: 14px; font-size: 16px; }
  .price-strip-inner .divider { font-size: 12px; }
}

/* ============================================================
   TESTIMONIALS — social proof block between gallery and about
   ============================================================ */
.testimonials {
  background: var(--cream-soft);
  padding: 90px 0;
  position: relative;
}
.testimonials .container {
  position: relative;
  z-index: 2;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--gold-line);
  padding: 40px 32px;
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.testimonial-card::before {
  content: '✦';
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--cream-soft);
  color: var(--gold);
  font-size: 18px;
  padding: 0 8px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.testimonial-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
}
.testimonial-author {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.testimonial-author strong {
  color: var(--ink);
  font-weight: 600;
}
.testimonials-cta {
  text-align: center;
  margin-top: 50px;
}
.testimonials-cta a {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 4px;
  transition: color 0.3s, border-color 0.3s;
}
.testimonials-cta a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr; gap: 24px; }
  .testimonials { padding: 70px 0; }
  .testimonial-card { padding: 32px 26px; }
  .testimonial-text { font-size: 18px; }
}

/* ============================================================
   JOURNAL PREVIEW — internal link block to build SEO equity
   ============================================================ */
.journal-preview {
  background: var(--cream);
  padding: 90px 0;
  border-top: 1px solid var(--gold-line);
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 50px;
}
.journal-card {
  display: block;
  background: var(--cream-soft);
  border: 1px solid var(--gold-line);
  padding: 36px 32px;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  position: relative;
}
.journal-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: var(--cream);
}
.journal-card-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
  display: block;
}
.journal-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 14px;
  font-weight: 500;
}
.journal-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.journal-card-link {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.journal-card-link::after {
  content: ' →';
  transition: padding-left 0.3s;
}
.journal-card:hover .journal-card-link::after {
  padding-left: 6px;
}
.journal-preview-cta {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .journal-grid { grid-template-columns: 1fr; gap: 20px; }
  .journal-preview { padding: 70px 0; }
  .journal-card { padding: 28px 24px; }
  .journal-card h3 { font-size: 22px; }
}

/* ============================================================
   STICKY MOBILE BAR — now split into Call + Book
   ============================================================ */
.sticky-book {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 10px 12px;
  border-top: 1px solid var(--gold);
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  gap: 8px;
}
.sticky-book a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px;
  min-height: 48px;
  border-radius: 0;
  transition: background 0.3s ease;
}
.sticky-book .sticky-call {
  flex: 0 0 38%;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--gold);
}
.sticky-book .sticky-call:hover { background: rgba(201, 162, 75, 0.12); }
.sticky-book .sticky-book-btn {
  flex: 1 1 auto;
  background: var(--gold);
  color: var(--navy);
}
.sticky-book .sticky-book-btn:hover { background: var(--sparkle); }
@media (max-width: 768px) {
  .sticky-book { display: flex; }
}

/* ============================================================
   STRONGER HERO SUB FOR SEO/CLARITY
   ============================================================ */
.hero-sub strong {
  color: var(--cream);
  font-weight: 500;
}

/* Slightly richer cream backgrounds for sections so they feel layered */
.services-teaser,
.faq {
  background: var(--cream);
}
.shimmer-teaser {
  background: var(--cream-soft);
}


/* ============================================================
   V2 REDESIGN — Modern Boutique + Warm Approachable
   Hero collage, editorial gallery, refined About
   ============================================================ */

/* ===== HERO COLLAGE — replaces single hero image ===== */
.hero-collage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}
.hero-collage-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-line-strong);
  box-shadow: var(--shadow-photo);
}
.hero-collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.hero-collage-item:hover img { transform: scale(1.05); }

/* Hero collage layout: tall main + 2 stacked smaller */
.hero-collage-item.main {
  grid-row: 1 / span 2;
  aspect-ratio: auto;
}
.hero-collage-item.top {
  grid-column: 2;
  grid-row: 1;
}
.hero-collage-item.bottom {
  grid-column: 2;
  grid-row: 2;
}

/* Hero collage gold corner accent — editorial detail */
.hero-collage-item.main::before,
.hero-collage-item.main::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  z-index: 2;
  pointer-events: none;
}
.hero-collage-item.main::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}
.hero-collage-item.main::after {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

/* Hero badge — replaces hero-image-label */
.hero-badge {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--gold);
  padding: 8px 22px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.04em;
  border: 1px solid var(--gold-line);
  white-space: nowrap;
  z-index: 4;
}

@media (max-width: 900px) {
  .hero-collage { min-height: 480px; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 500px) {
  .hero-collage { min-height: 420px; gap: 10px; }
  .hero-collage-item.main::before,
  .hero-collage-item.main::after { width: 20px; height: 20px; }
  .hero-badge { font-size: 14px; padding: 6px 18px; bottom: 14px; }
}

/* ===== EDITORIAL GALLERY — refined 3-column rhythm with portrait-friendly layout ===== */
.gallery-editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  position: relative;
  z-index: 3;
}
.gallery-editorial .ge-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  background: #081831;
  aspect-ratio: 3/4;
}
.gallery-editorial .ge-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease, filter 0.6s ease;
}
.gallery-editorial .ge-item:hover img {
  transform: scale(1.05);
}

/* Gold corner accent on the featured (first) photo */
.gallery-editorial .ge-item.featured::before {
  content: '✦';
  position: absolute;
  top: 14px;
  right: 16px;
  color: var(--gold);
  font-size: 16px;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Layout rhythm: featured first item spans 2 cols (wider), rest fall into grid */
.gallery-editorial .ge-1 {
  grid-column: span 2;
  aspect-ratio: 16/10;
}

@media (max-width: 900px) {
  .gallery-editorial {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .gallery-editorial .ge-1 {
    grid-column: span 2;
    aspect-ratio: 4/3;
  }
}
@media (max-width: 500px) {
  .gallery-editorial {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gallery-editorial .ge-1 {
    grid-column: span 1;
    aspect-ratio: 4/5;
  }
}

/* ===== REDESIGNED ABOUT — refined editorial layout ===== */
.about-v2 {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}
.about-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 100%);
  z-index: 1;
}
.about-v2-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
  position: relative;
}
.about-v2-photo {
  position: relative;
  aspect-ratio: 3/2;
}
.about-v2-photo .photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold-line-strong);
  padding: 14px;
  background: var(--cream);
  box-shadow: var(--shadow-photo);
  z-index: 2;
}
.about-v2-photo .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Layered offset frame behind photo for depth */
.about-v2-photo::before {
  content: '';
  position: absolute;
  top: 28px; left: 28px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  z-index: 1;
}
/* Gold corner accents — editorial signature */
.about-v2-photo .photo-frame::before,
.about-v2-photo .photo-frame::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--gold);
  z-index: 3;
}
.about-v2-photo .photo-frame::before {
  top: -1px; left: -1px;
  border-right: none;
  border-bottom: none;
}
.about-v2-photo .photo-frame::after {
  bottom: -1px; right: -1px;
  border-left: none;
  border-top: none;
}
/* Tagline overlay */
.about-v2-photo .photo-tag {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--cream);
  padding: 10px 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.04em;
  border: 1px solid var(--gold);
  white-space: nowrap;
  z-index: 4;
}
.about-v2-photo .photo-tag .gold-mark { color: var(--gold); margin: 0 8px; }

.about-v2-content .label { margin-bottom: 22px; }
.about-v2-content h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  margin-bottom: 30px;
  letter-spacing: -0.005em;
}
.about-v2-content h2 em { font-style: italic; color: var(--gold); }
.about-v2-content .lead {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.about-v2-content p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted-warm);
  margin-bottom: 18px;
}

/* Credentials/specialties row — replaces bullet list */
.about-creds-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.about-cred-card {
  text-align: center;
}
.about-cred-card .cred-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.about-cred-card .cred-title {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.about-cred-card .cred-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--muted-warm);
}

.about-v2-content p.about-v2-signature,
.about-v2-signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  color: var(--gold);
  margin-top: 24px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.about-v2-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

@media (max-width: 1100px) {
  .about-v2-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}
@media (max-width: 900px) {
  .about-v2 { padding: 80px 0; }
  .about-v2-grid { grid-template-columns: 1fr; gap: 70px; }
  .about-v2-photo { max-width: 380px; margin: 0 auto; }
  .about-v2-photo::before { top: 18px; left: 18px; }
  .about-creds-v2 { grid-template-columns: 1fr; gap: 14px; padding: 22px 0; }
  .about-cred-card { display: flex; align-items: center; gap: 16px; text-align: left; }
  .about-cred-card .cred-mark { font-size: 24px; margin-bottom: 0; }
  .about-cred-card .cred-text { flex: 1; }
  .about-cred-card .cred-sub { font-size: 13px; }
}

/* ===== REFINED SECTION DIVIDER — soft gold hairline with sparkle ===== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0;
  margin: 0;
}
.section-divider .line {
  flex: 0 1 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-line-strong) 50%, transparent 100%);
}
.section-divider .mark {
  color: var(--gold);
  font-size: 12px;
}

/* ===== REFINED SECTION HEAD — tighter tracking, more drama ===== */
.section-head h2 {
  letter-spacing: -0.008em;
}


/* ============================================================
   V3 EDITORIAL REDESIGN — Moxie Roots inspired
   Single-column, photography-forward, lots of breathing room
   ============================================================ */

/* ===== Editorial body adjustments ===== */
body.editorial { background: var(--cream); }

/* ===== Editorial Hero — full bleed photo + bold serif headline ===== */
.editorial-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  padding: 120px 24px 80px;
}
.editorial-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.editorial-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Dark gradient overlay for text legibility */
.editorial-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,27,61,0.5) 0%, rgba(10,27,61,0.25) 40%, rgba(10,27,61,0.75) 100%),
    linear-gradient(90deg, rgba(10,27,61,0.45) 0%, rgba(10,27,61,0.15) 50%, rgba(10,27,61,0.45) 100%);
}
.editorial-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  color: var(--cream);
}
.editorial-hero-pretitle {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: 0.02em;
  color: var(--sparkle);
  margin-bottom: 36px;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.editorial-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -0.012em;
  color: var(--cream);
  margin-bottom: 0;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.editorial-hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.editorial-hero-locale {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  font-weight: 500;
}
.editorial-hero-locale .dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}
.editorial-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  opacity: 0.7;
}
.editorial-hero-scroll .line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, transparent 0%, var(--gold) 100%);
}
.editorial-hero-scroll .text {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .editorial-hero { min-height: 85vh; padding: 100px 20px 60px; }
  .editorial-hero h1 { font-size: clamp(2.2rem, 12vw, 3.4rem); }
  .editorial-hero-pretitle { font-size: 17px; margin-bottom: 26px; }
  .editorial-hero-scroll { bottom: 90px; }  /* Avoid sticky book bar */
}

/* ===== Editorial Value Props — vertical stack with generous space ===== */
.editorial-values {
  background: var(--cream);
  padding: 120px 24px;
  text-align: center;
}
.editorial-values-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.editorial-value {
  font-family: var(--serif);
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.2;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.003em;
}
.editorial-value em {
  font-style: italic;
  color: var(--gold);
}
.editorial-value-divider {
  width: 38px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  opacity: 0.6;
}
@media (max-width: 700px) {
  .editorial-values { padding: 80px 20px; }
  .editorial-values-inner { gap: 40px; }
  .editorial-value { font-size: 26px; }
}

/* ===== Editorial 3-photo row ===== */
.editorial-trio {
  background: var(--cream);
  padding: 30px 24px 100px;
}
.editorial-trio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.editorial-trio-grid .et-item {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.editorial-trio-grid .et-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.editorial-trio-grid .et-item:hover img { transform: scale(1.04); }
@media (max-width: 700px) {
  .editorial-trio { padding: 20px 16px 60px; }
  .editorial-trio-grid { grid-template-columns: 1fr; gap: 14px; max-width: 440px; }
}

/* ===== Editorial intro / long-form copy block ===== */
.editorial-intro {
  background: var(--cream);
  padding: 100px 24px;
  text-align: center;
}
.editorial-intro-inner {
  max-width: 740px;
  margin: 0 auto;
}
.editorial-intro p {
  font-family: var(--serif);
  font-size: clamp(20px, 2.3vw, 26px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.editorial-intro p em { color: var(--gold); font-style: italic; }
.editorial-intro p strong { font-weight: 500; color: var(--navy); }
.editorial-intro .cta-line {
  margin-top: 50px;
}
@media (max-width: 700px) {
  .editorial-intro { padding: 70px 20px; }
  .editorial-intro p { font-size: 19px; }
}

/* ===== Editorial display headline section ===== */
.editorial-display {
  background: var(--cream-soft);
  padding: 140px 24px;
  text-align: center;
  position: relative;
}
.editorial-display::before,
.editorial-display::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  height: 60px;
  background: linear-gradient(var(--gold), transparent);
}
.editorial-display::before { top: 0; }
.editorial-display::after { bottom: 0; background: linear-gradient(transparent, var(--gold)); }
.editorial-display-inner { max-width: 1000px; margin: 0 auto; }
.editorial-display-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--muted-warm);
  margin-bottom: 18px;
}
.editorial-display h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 50px;
}
.editorial-display h2 em { font-style: italic; color: var(--gold); }
.editorial-display p.lead {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.6;
  color: var(--muted-warm);
  max-width: 620px;
  margin: 0 auto 40px;
}
@media (max-width: 700px) {
  .editorial-display { padding: 90px 20px; }
  .editorial-display h2 { font-size: 2.4rem; }
  .editorial-display p.lead { font-size: 18px; }
}

/* ===== Editorial Stylist Section — single big photo + text ===== */
.editorial-stylist {
  background: var(--cream);
  padding: 130px 24px;
}
.editorial-stylist-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
}
.editorial-stylist-photo {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.editorial-stylist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.editorial-stylist-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-line-strong);
  z-index: 2;
  pointer-events: none;
}
.editorial-stylist-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
  display: block;
}
.editorial-stylist h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin-bottom: 30px;
}
.editorial-stylist h2 em { font-style: italic; color: var(--gold); }
.editorial-stylist p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted-warm);
  margin-bottom: 22px;
}
.editorial-stylist .stylist-cred-line {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  margin: 30px 0 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.editorial-stylist .stylist-cred-line .gold-sep {
  color: var(--gold);
  font-size: 10px;
}
.editorial-stylist .signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
  margin: 30px 0;
}
@media (max-width: 1000px) {
  .editorial-stylist-grid { grid-template-columns: 1fr; gap: 60px; }
  .editorial-stylist-photo { max-width: 520px; margin: 0 auto; }
}
@media (max-width: 700px) {
  .editorial-stylist { padding: 80px 20px; }
}

/* ===== Editorial Testimonials — minimal, italicized, single column rotation feel ===== */
.editorial-testimonials {
  background: var(--navy);
  color: var(--cream);
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.editorial-testimonials::before {
  content: '"';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 220px;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
  font-style: italic;
}
.editorial-testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.editorial-testimonials-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 50px;
  display: block;
}
.editorial-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.editorial-testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--cream);
  margin-bottom: 24px;
}
.editorial-testimonial-quote em { color: var(--gold); font-style: italic; }
.editorial-testimonial-author {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sparkle);
  font-weight: 500;
}
.editorial-testimonials-heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-top: 70px;
  color: var(--cream);
}
.editorial-testimonials-heading em { font-style: italic; color: var(--gold); }
@media (max-width: 900px) {
  .editorial-testimonials-grid { grid-template-columns: 1fr; gap: 50px; }
  .editorial-testimonials { padding: 100px 20px; }
}

/* ===== Editorial Final CTA — Moxie Roots closing pattern ===== */
.editorial-final {
  background: var(--cream);
  padding: 0;
}
.editorial-final-photo {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  max-height: 720px;
  overflow: hidden;
}
.editorial-final-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.editorial-final-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,27,61,0.65) 100%);
}
.editorial-final-content {
  background: var(--cream);
  padding: 100px 24px 140px;
  text-align: center;
}
.editorial-final-content .eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--muted-warm);
  margin-bottom: 20px;
}
.editorial-final-content h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin-bottom: 40px;
}
.editorial-final-content h2 em { font-style: italic; color: var(--gold); }
.editorial-final-content .btn-gold { font-size: 13px; padding: 18px 42px; }
.editorial-final-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--muted-warm);
  margin-top: 60px;
}
.editorial-final-tagline em { color: var(--gold); font-weight: 500; }
@media (max-width: 700px) {
  .editorial-final-photo { height: 55vh; min-height: 400px; }
  .editorial-final-content { padding: 70px 20px 100px; }
}


/* ===== Editorial Visit section ===== */
.editorial-visit {
  background: var(--cream-soft);
  padding: 110px 24px;
  text-align: center;
  position: relative;
}
.editorial-visit-inner {
  max-width: 900px;
  margin: 0 auto;
}
.editorial-visit-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
  display: block;
}
.editorial-visit h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin-bottom: 40px;
}
.editorial-visit h2 em { font-style: italic; color: var(--gold); }
.editorial-visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
  text-align: left;
}
.editorial-visit-card {
  padding: 32px 24px;
  background: var(--cream);
  border: 1px solid var(--gold-line);
}
.editorial-visit-card .vc-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 14px;
}
.editorial-visit-card .vc-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.editorial-visit-card .vc-content {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted-warm);
}
.editorial-visit-card .vc-content a {
  color: var(--ink);
  border-bottom: 1px solid var(--gold-line);
  transition: color 0.3s, border-color 0.3s;
}
.editorial-visit-card .vc-content a:hover { color: var(--gold); border-color: var(--gold); }
.editorial-visit-card .vc-content strong { color: var(--ink); font-weight: 500; }
@media (max-width: 900px) {
  .editorial-visit-grid { grid-template-columns: 1fr; gap: 18px; }
  .editorial-visit { padding: 80px 20px; }
}


/* ===== Editorial "The Work" Gallery — featured shot + grid ===== */
.editorial-work {
  background: var(--cream);
  padding: 120px 24px;
}
.editorial-work-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}
.editorial-work-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
  display: block;
}
.editorial-work h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin-bottom: 24px;
}
.editorial-work h2 em { font-style: italic; color: var(--gold); }
.editorial-work-head p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted-warm);
}
.editorial-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.editorial-work-grid .ew-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: #0c1a36;
}
.editorial-work-grid .ew-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 1s ease;
}
.editorial-work-grid .ew-item:hover img { transform: scale(1.04); }

/* All gallery items uniform — clean 3x2 grid */
.editorial-work-grid .ew-featured {
  grid-column: span 1;
  aspect-ratio: 3/4;
}
.editorial-work-grid .ew-featured::before {
  content: '✦';
  position: absolute;
  top: 14px;
  right: 16px;
  color: var(--gold);
  font-size: 16px;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.editorial-work-cta {
  text-align: center;
  margin-top: 60px;
}

@media (max-width: 900px) {
  .editorial-work-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .editorial-work-grid .ew-featured { grid-column: span 1; aspect-ratio: 3/4; }
}
@media (max-width: 500px) {
  .editorial-work { padding: 80px 16px; }
  .editorial-work-grid { grid-template-columns: 1fr; gap: 12px; }
  .editorial-work-grid .ew-featured { grid-column: span 1; aspect-ratio: 4/5; }
}

/* ===== Editorial Map ===== */
.editorial-visit-map {
  max-width: 1100px;
  margin: 50px auto 0;
  border: 1px solid var(--gold-line-strong);
  overflow: hidden;
  aspect-ratio: 16/7;
  background: var(--cream);
}
.editorial-visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 700px) {
  .editorial-visit-map { aspect-ratio: 4/5; margin-top: 36px; }
}

