/* =========================================================
   THE CLASSY MEDIA — styles.css
   Luxury editorial · gold + black · Vanessa Michelle
   ========================================================= */

/* ── Custom properties ─────────────────────────────────── */
:root {
  --bg:           #0d0b09;
  --bg-surface:   #111009;
  --bg-lifted:    #181410;
  --gold:         #c9a84c;
  --gold-light:   #dfc070;
  --gold-dim:     #7a6330;
  --cream:        #f2ece0;
  --cream-dim:    #b0a898;
  --oxblood:      #38101a;
  --oxblood-mid:  #501828;
  --white:        #ffffff;

  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --pad-x:        clamp(1.25rem, 5vw, 4.5rem);
  --pad-y:        clamp(4rem,   8vw, 7rem);
  --container:    1180px;
  --slide-h:      58vh;
  --kb-dur:       5s;
  --transition:   0.65s ease;
}

@media (min-width: 768px) {
  :root { --slide-h: 82vh; }
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* Reduced-motion blanket */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Accessibility */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Paper grain overlay ────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='512' height='512' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* ── Placeholders (show until real images drop in) ─────── */
.placeholder {
  background: linear-gradient(145deg, #181410, #0f0d0b);
  border: 1px dashed var(--gold-dim);
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--gold-dim);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 1.5rem;
}
.placeholder::before { content: '▢'; font-size: 2rem; opacity: 0.35; }
.placeholder::after  { content: attr(data-label); opacity: 0.8; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8em 2.2em;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.18s;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold    { background: var(--gold); color: #0d0b09; }
.btn--gold:hover { background: var(--gold-light); }

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(201,168,76,.35);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--full { width: 100%; text-align: center; }

/* ── Typography helpers ─────────────────────────────────── */
.script-accent {
  font-family: var(--font-script);
  font-style: normal;
  color: var(--gold-light);
  font-size: 1.2em;
}

.label-tag {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* ── Scroll reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  align-content: start; /* mobile: size rows to content, no stretch gap */
  min-height: 100svh;
  background: var(--bg);
  position: relative; /* anchors the scroll-cue arrow */
}

/* Mobile: stacked — portrait on top */
.hero__right {
  order: -1;
  position: relative;
  height: 62vw;
  min-height: 260px;
  max-height: 480px;
  overflow: hidden;
}

.hero__portrait {
  width: 100%;
  height: 100%;
}
.hero__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  animation: heroReveal 1.4s ease-out both;
}
@keyframes heroReveal {
  from { transform: scale(1.06); }
  to   { transform: scale(1); }
}

/* Left→right gradient that bleeds into text column (mobile: bottom↑) */
.hero__portrait-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 55%);
  pointer-events: none;
}

.hero__left {
  padding: 2.5rem var(--pad-x) 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero__name { line-height: 1; }

.hero__first {
  display: block;
  font-family: var(--font-script);
  font-size: clamp(3.2rem, 10vw, 7rem);
  color: var(--gold-light);
  letter-spacing: 0.02em;
  line-height: 1.05;
  animation: fadeUp 0.9s 0.15s both ease-out;
}
.hero__last {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--cream);
  animation: fadeUp 0.9s 0.3s both ease-out;
}

.hero__rule {
  border: none;
  width: 56px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  animation: fadeUp 0.9s 0.45s both ease-out;
}
.hero__titles {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  animation: fadeUp 0.9s 0.55s both ease-out;
}
.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: var(--cream);
  line-height: 1.75;
  max-width: 38ch;
  animation: fadeUp 0.9s 0.65s both ease-out;
}
.hero__btns {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.8s both ease-out;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: var(--pad-x);
  color: var(--gold-dim);
  animation: float 2.8s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* Desktop: side-by-side */
@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    align-content: stretch; /* desktop: single row fills full viewport height */
  }
  .hero__right {
    order: unset;
    height: auto;
    max-height: unset;
    min-height: unset;
  }
  .hero__portrait { height: 100%; }
  .hero__portrait-fade {
    background: linear-gradient(to right, var(--bg) 0%, transparent 35%);
  }
  .hero__left {
    padding: var(--pad-y) var(--pad-x);
    justify-content: center;
  }
  .hero__scroll-cue { bottom: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   2. QUOTE BAND
═══════════════════════════════════════════════════════════ */
.quote-band {
  position: relative;
  height: clamp(140px, 26vw, 260px);
  overflow: hidden;
}
.quote-band__bg {
  width: 100%;
  height: 100%;
  background: #1c1410 center/cover no-repeat;
}
.quote-band__overlay {
  position: absolute; inset: 0;
  background: rgba(8,6,4,.68);
}
.quote-band__text {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem var(--pad-x);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 2.3vw, 1.55rem);
  color: var(--cream);
  text-align: center;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   3. ABOUT — From Vision to Empire
═══════════════════════════════════════════════════════════ */
.about {
  background: var(--bg-surface);
  padding: var(--pad-y) var(--pad-x);
}

.about__inner {
  max-width: var(--container);
  margin: 0 auto;
}

.about__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.about__subhead {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 2rem;
}

.about__body p {
  color: var(--cream-dim);
  line-height: 1.85;
  margin-bottom: 1.1rem;
  max-width: 68ch;
  font-size: 0.94rem;
}

.about__pullquote {
  border-left: 2px solid var(--gold);
  margin: 2.5rem 0 0;
  padding: 1rem 0 1rem 1.8rem;
}

.about__pullquote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 0.6rem;
}

.about__pullquote-cite {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════
   4. PORTFOLIO SLIDESHOW
═══════════════════════════════════════════════════════════ */
.portfolio { background: #090807; }

/* ── Category tab bar ───────────────────────── */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  background: #0a0908;
  border-bottom: 1px solid rgba(201,168,76,.12);
}

.portfolio-tab {
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0.9rem 1.8rem;
  border-bottom: 2px solid transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  transition: color 0.2s, border-color 0.2s;
  background: none;
}

.portfolio-tab--active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.portfolio-tab:hover:not(.portfolio-tab--active) {
  color: var(--cream);
}

/* ── Main stage ─────────────────────────────── */
.slideshow {
  position: relative;
  width: 100%;
  height: var(--slide-h);
  overflow: hidden;
  outline: none;
}
.slideshow__stage {
  position: absolute; inset: 0;
}

/* ── Individual slides ──────────────────────── */
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  overflow: hidden;
}
.slide--active { opacity: 1; }

.slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

/* Letterboxed slides — full portrait photo shown uncropped over a
   blurred fill, for images too tall to cover the wide slide box. */
.slide__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(35px) brightness(0.55) saturate(1.1);
  transform: scale(1.15);
  z-index: 0;
}
.slide__img--contain {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center;
}
.slide--ph {
  background: #0f0d0b;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ken Burns zoom — class toggled per-slide by JS */
@keyframes kb {
  from { transform: scale(1)    translate(0,      0); }
  to   { transform: scale(1.09) translate(-1.5%, -1%); }
}
.slide__img.kb {
  animation: kb var(--kb-dur) ease-in-out forwards;
}

/* Bottom gradient on slideshow */
.slideshow::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(0,0,0,.75), transparent);
  pointer-events: none;
  z-index: 2;
}

/* ── HUD: counter ───────────────────────────── */
.slideshow__counter {
  position: absolute;
  top: 1.4rem; right: 1.8rem;
  z-index: 4;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: 0.25em;
}
.counter-sep { opacity: 0.45; }

/* ── HUD: caption ───────────────────────────── */
.slideshow__caption {
  position: absolute;
  bottom: 2.4rem; left: 2.2rem;
  z-index: 4;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s 0.35s, transform 0.4s 0.35s;
}
.slideshow__caption.cap-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Arrows ─────────────────────────────────── */
.slideshow__arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 4;
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.38);
  border: 1px solid rgba(201,168,76,.25);
  color: var(--cream);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.slideshow__arrow:hover {
  background: rgba(201,168,76,.18);
  border-color: var(--gold);
  color: var(--gold);
}
.slideshow__arrow--prev { left: 0.9rem; }
.slideshow__arrow--next { right: 0.9rem; }

/* ── Progress bar ───────────────────────────── */
.slideshow__progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,.1);
  z-index: 4;
}
.slideshow__progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
}

/* ── Filmstrip ──────────────────────────────── */
.filmstrip {
  display: flex;
  gap: 3px;
  background: #060504;
  padding: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filmstrip::-webkit-scrollbar { display: none; }

.filmstrip__thumb {
  flex: 1;
  min-width: 72px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  background: #1a1612;
  position: relative;
  padding: 0;
  display: block;
}
.filmstrip__thumb--active { border-color: var(--gold); }

.filmstrip__thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: opacity 0.2s;
  display: block;
}
.filmstrip__thumb--active .filmstrip__thumb-img,
.filmstrip__thumb:hover    .filmstrip__thumb-img { opacity: 1; }

.filmstrip__thumb-ph {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding: 4px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   4. HER STORY
═══════════════════════════════════════════════════════════ */
.story {
  position: relative;
  overflow: hidden;
  background: var(--oxblood);
  background-image:
    radial-gradient(ellipse 80% 60% at 65% 40%, var(--oxblood-mid) 0%, var(--oxblood) 55%, #110609 100%);
}
/* Subtle marble texture */
.story::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.35' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 400px;
  opacity: 0.06;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.story__inner {
  position: relative; z-index: 1;
  display: grid;
  gap: 2.5rem;
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}

.story__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.4rem;
}
.story__paragraphs p {
  color: var(--cream-dim);
  line-height: 1.85;
  margin-bottom: 1.1rem;
  max-width: 54ch;
}
.story__script {
  font-family: var(--font-script);
  font-size: clamp(1.25rem, 2.8vw, 1.9rem);
  color: var(--gold-light);
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

/* Memoir card */
.memoir-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(201,168,76,.18);
  padding: 1rem 1.25rem;
  max-width: 380px;
  transition: border-color 0.3s, background 0.3s;
}
.memoir-card:hover {
  border-color: var(--gold);
  background: rgba(0,0,0,.5);
}

.memoir-card__cover {
  width: 68px;
  flex-shrink: 0;
}
.memoir-card__cover .placeholder { min-height: 102px; }
.memoir-card__cover-img { width: 68px; height: 102px; object-fit: cover; }

.memoir-card__badge {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 2px 7px;
  margin-bottom: 0.5rem;
}
.memoir-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--cream);
  line-height: 1.35;
}
.memoir-card__sub {
  font-size: 0.72rem;
  color: var(--cream-dim);
  margin-top: 0.3rem;
}

.story__portrait {
  position: relative;
  overflow: hidden;
}
.story__portrait-img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@media (min-width: 768px) {
  .story__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 4rem;
  }
  .story__portrait { max-height: 640px; }
}

/* ═══════════════════════════════════════════════════════════
   5. SERVICES
═══════════════════════════════════════════════════════════ */
.services {
  background: var(--bg-surface);
  padding: var(--pad-y) var(--pad-x);
  text-align: center;
}

.services__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
}

.services__grid {
  display: grid;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.services__col-heading {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.8rem;
}

/* Monogram */
.services__monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-script);
  font-size: 2.8rem;
  color: var(--gold-dim);
  position: relative;
}
.services__monogram::before,
.services__monogram::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  background: rgba(201,168,76,.2);
  height: 70px;
}
.services__monogram::before { bottom: calc(100% + 4px); }
.services__monogram::after  { top:    calc(100% + 4px); }

/* Price list */
.price-list { text-align: left; margin-bottom: 2rem; }
.price-list__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
}
.price-list__name  { font-size: 0.84rem; color: var(--cream-dim); }
.price-list__price { font-size: 0.84rem; color: var(--gold); font-weight: 500; white-space: nowrap; }

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
  }
  .services__monogram { flex-direction: column; }
}

/* ═══════════════════════════════════════════════════════════
   6. BOOK + CONTACT
═══════════════════════════════════════════════════════════ */
.book-contact {
  background: var(--bg);
  padding: var(--pad-y) var(--pad-x);
  border-top: 1px solid rgba(201,168,76,.08);
}

.book-contact__inner {
  display: grid;
  gap: 3rem;
  max-width: 1120px;
  margin: 0 auto;
}

/* Widget column */
.book-contact__widget {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.book-contact__heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── SimplyBook widget container ────────────────────────── */
.widget-wrap {
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(201,168,76,.18);
  min-height: 620px;
  position: relative;
  overflow: hidden;
}

/* Make any injected iframe fill the container */
.widget-wrap iframe {
  display: block;
  width: 100%;
  min-height: 620px;
  border: none;
}

/* ── Fallback shown when embedCode is empty ─────────────── */
.widget-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  height: 100%;
  min-height: 620px;
  padding: 3rem 2rem;
  text-align: center;
}

.widget-fallback__icon {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
}

.widget-fallback__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--cream);
}

.widget-fallback__body {
  font-size: 0.84rem;
  color: var(--cream-dim);
  line-height: 1.7;
  max-width: 42ch;
}

.widget-fallback__setup {
  font-size: 0.72rem;
  color: var(--gold-dim);
  background: rgba(201,168,76,.06);
  border: 1px dashed var(--gold-dim);
  padding: 0.9rem 1.2rem;
  line-height: 1.8;
  text-align: left;
  max-width: 44ch;
}

.widget-fallback__setup code {
  font-family: 'Courier New', monospace;
  color: var(--gold-light);
  font-size: 0.68rem;
}

/* "Powered by" line under widget */
.powered-by {
  font-size: 0.68rem;
  color: var(--cream-dim);
  opacity: 0.6;
  letter-spacing: 0.07em;
}
.powered-by__fallback {
  color: var(--gold-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.powered-by__fallback:hover { color: var(--gold); }

/* Divider */
.book-contact__divider { display: none; }

/* Right — form */
.book-contact__form-heading {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.book-contact__form-sub {
  font-size: 0.84rem;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

/* Form fields */
.form__row {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}
.form__field { margin-bottom: 0.9rem; }
.form__row .form__field { margin-bottom: 0; }

input, textarea {
  width: 100%;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(201,168,76,.2);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.9em 1.1em;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: rgba(176,168,152,.45); }
input:focus, textarea:focus { border-color: var(--gold); }

.form__status {
  margin-top: 1rem;
  font-size: 0.82rem;
  padding: 0.75rem 1rem;
}
.form__status--ok  {
  background: rgba(201,168,76,.08);
  color: var(--gold-light);
  border: 1px solid var(--gold-dim);
}
.form__status--err {
  background: rgba(180,40,40,.08);
  color: #d88080;
  border: 1px solid rgba(180,40,40,.3);
}

@media (min-width: 768px) {
  .book-contact__inner {
    grid-template-columns: 3fr 1px 2fr;   /* widget: 60% · form: 40% */
    gap: 0 3.5rem;
    align-items: start;
  }
  .book-contact__divider {
    display: block;
    background: rgba(201,168,76,.18);
    align-self: stretch;
  }
  .form__row { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE OVERRIDES  (≤ 767px)
═══════════════════════════════════════════════════════════ */

/* ── Slideshow: tell the browser horizontal swipe is ours,
      vertical scrolling is still free ─────────────────── */
.slideshow { touch-action: pan-y; }

/* ── Slideshow: compact HUD on small screens ─────────────── */
@media (max-width: 479px) {
  :root { --slide-h: 52vh; }

  .slideshow__arrow {
    width: 36px;
    height: 36px;
  }
  .slideshow__arrow svg { width: 20px; height: 20px; }
  .slideshow__arrow--prev { left: 0.4rem; }
  .slideshow__arrow--next { right: 0.4rem; }

  .slideshow__counter { top: 0.6rem; right: 0.7rem; font-size: 0.62rem; }
  .slideshow__caption { bottom: 1.2rem; left: 1rem; font-size: 0.62rem; }

  .portfolio-tab { padding: 0.75rem 0.9rem; font-size: 0.6rem; letter-spacing: 0.14em; }
}

/* ── Hero: hide scroll cue on very short viewports ───────── */
@media (max-height: 520px) {
  .hero__scroll-cue { display: none; }
}

/* ── Hero: tighten name on narrow phones ─────────────────── */
@media (max-width: 359px) {
  .hero__first { font-size: 2.8rem; }
  .hero__last  { font-size: 1.35rem; letter-spacing: 0.2em; }
}

/* ── Story: full-width portrait on mobile stacks below text ─ */
@media (max-width: 767px) {
  .story__portrait-img { max-height: 380px; }
  .memoir-card { max-width: 100%; }
}

/* ── Services: hide monogram decorative lines on mobile ──── */
@media (max-width: 767px) {
  .services__monogram::before,
  .services__monogram::after { display: none; }
}

/* ── Book/Contact: shrink widget min-height on mobile ─────── */
@media (max-width: 767px) {
  .widget-wrap        { min-height: 480px; }
  .widget-wrap iframe { min-height: 480px; }
  .widget-fallback    { min-height: 480px; }
}

/* ── Footer: wrap email + phone to separate lines ────────── */
@media (max-width: 600px) {
  .footer__inner    { flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer__sep      { display: none; }
  .footer__contact  { flex-direction: column; align-items: center; gap: 0.25rem; }
}

/* ═══════════════════════════════════════════════════════════
   7. FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: linear-gradient(120deg, #8a6f33 0%, var(--gold) 50%, #8a6f33 100%);
  padding: 1.5rem var(--pad-x) 1rem;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  max-width: var(--container);
  margin: 0 auto 1rem;
}

.footer__socials { display: flex; gap: 1.1rem; align-items: center; }

.footer__social-link {
  color: var(--bg);
  opacity: 0.78;
  transition: opacity 0.2s, transform 0.2s;
}
.footer__social-link:hover { opacity: 1; transform: translateY(-2px); }

.footer__sep { color: rgba(0,0,0,.3); font-size: 1.2rem; }

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.5rem;
  font-size: 0.78rem;
  color: var(--bg);
}
.footer__email { font-weight: 600; }
.footer__email:hover { text-decoration: underline; }

.footer__copy {
  text-align: center;
  font-size: 0.65rem;
  color: rgba(0,0,0,.45);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE  (about.html)
═══════════════════════════════════════════════════════════ */

/* ── Nav bar ────────────────────────────────── */
.ap-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem var(--pad-x);
  background: var(--bg);
  border-bottom: 1px solid rgba(201,168,76,.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.ap-nav__back {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.ap-nav__back:hover { color: var(--gold); }

.ap-nav__brand {
  font-family: var(--font-script);
  font-size: 1.15rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.ap-nav__book { font-size: 0.65rem; padding: 0.6em 1.5em; }

/* ── Portrait hero ──────────────────────────── */
.ap-hero {
  position: relative;
  height: clamp(420px, 70vh, 680px);
  overflow: hidden;
  background: var(--bg);
}

.ap-hero__portrait {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
}

.ap-hero__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.ap-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,11,9,.15) 0%,
    rgba(13,11,9,.45) 55%,
    rgba(13,11,9,.9) 100%
  );
}

.ap-hero__text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 2.5rem var(--pad-x);
}

.ap-hero__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.ap-hero__subhead {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Content body ───────────────────────────── */
.ap-content {
  background: var(--bg-surface);
  padding: var(--pad-y) var(--pad-x);
}

.ap-content__inner {
  max-width: 720px;
  margin: 0 auto;
}

.ap-content__body p {
  color: var(--cream-dim);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: 0.96rem;
}

/* ── Pull quote ─────────────────────────────── */
.ap-pullquote {
  border-left: 2px solid var(--gold);
  margin: 2.5rem 0 3rem;
  padding: 1.1rem 0 1.1rem 2rem;
}

.ap-pullquote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 0.7rem;
}

.ap-pullquote__cite {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── CTA row ────────────────────────────────── */
.ap-content__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

@media (max-width: 479px) {
  .ap-nav__brand { display: none; }
  .ap-content__cta { flex-direction: column; }
  .ap-content__cta .btn { text-align: center; }
}
