/* HAUS OF V Beauty Studio — Preview stylesheet
   Source of truth: _briefs/THEME_DNA.md
   Mobile-first. Vanilla CSS custom properties. No build step. */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* Colours */
  --color-primary: #0A0A0A;
  --color-bg: #FAFAF7;
  --color-bg-alt: #1A1A1A;
  --color-surface: #E8E2D5;
  --color-text-muted: #6B6660;
  --color-accent-gold: #BC9C22;
  --color-cream: #FAFAF7;

  /* Type */
  --font-display: 'Cinzel', 'Times New Roman', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;

  /* Type scale (mobile defaults — uplifted in min-width queries) */
  --fs-display-xl: clamp(2.5rem, 8vw, 4rem);
  --fs-display-l: clamp(2rem, 6vw, 3rem);
  --fs-display-m: clamp(1.5rem, 4vw, 2rem);
  --fs-display-s: 1.5rem;
  --fs-body-l: 1.125rem;
  --fs-body: 1rem;
  --fs-body-s: 0.875rem;
  --fs-caption: 0.75rem;

  /* Spacing */
  --space-unit: 8px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 56px;
  --space-xl: 96px;
  --space-2xl: 144px;

  /* Layout */
  --max-content: 1280px;
  --max-prose: 720px;
  --page-pad: 24px;

  /* Border radius (sharp by default) */
  --radius-sm: 2px;

  /* Section padding (mobile-first) */
  --section-pad-y: 56px;

  /* Easing */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-slow: cubic-bezier(0.32, 0.72, 0, 1);
}

@media (min-width: 1024px) {
  :root {
    --page-pad: 64px;
    --section-pad-y: 96px;
  }
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--color-primary);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Film-grain overlay — sits BELOW sticky chrome (z:1) so the header + mobile-cta render clean over it */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

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

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

button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

ul { list-style: none; }

:focus-visible {
  outline: 2px solid var(--color-accent-gold);
  outline-offset: 3px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  line-height: 1.15;
}

h1 { font-size: var(--fs-display-xl); }
h2 { font-size: var(--fs-display-l); }
h3 { font-size: var(--fs-display-m); }

p { font-size: var(--fs-body); }

.editorial-italic {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
}

/* ============================================================
   LAYOUT — THE SPINE (the wildcard)
   1px gold vertical hairline down the left viewport edge
   Echoes the H | V monogram divider. Desktop only. ============================================================ */
.spine {
  display: none;
}

@media (min-width: 1024px) {
  .spine {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 1px;
    background: var(--color-accent-gold);
    pointer-events: none;
    z-index: 5;
  }
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

.container--prose {
  max-width: var(--max-prose);
}

section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 18px 40px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 150ms var(--ease), color 150ms var(--ease), border-color 150ms var(--ease);
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-cream);
  border-color: var(--color-primary);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-cream);
  color: var(--color-primary);
}

.btn--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: var(--color-primary);
  color: var(--color-cream);
}

.btn--inverse {
  background: var(--color-cream);
  color: var(--color-primary);
  border-color: var(--color-cream);
}

.btn--inverse:hover,
.btn--inverse:focus-visible {
  background: transparent;
  color: var(--color-cream);
}

/* Button with trailing arrow nested in a hairline circle (editorial variant of "button-in-button") */
.btn--has-arrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-right: 16px;
}

.btn--has-arrow .btn__label {
  display: inline-block;
}

.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.875rem;
  letter-spacing: 0;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 280ms var(--ease-slow);
}

.btn--has-arrow:hover .btn__arrow,
.btn--has-arrow:focus-visible .btn__arrow {
  transform: translate(2px, -1px);
}

/* Tertiary inline link CTA */
.link-cta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-accent-gold);
  padding-bottom: 4px;
  transition: border-color 150ms var(--ease), border-width 150ms var(--ease);
}

.link-cta:hover,
.link-cta:focus-visible {
  border-bottom-color: var(--color-primary);
  border-bottom-width: 2px;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--color-bg);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease);
  /* iOS safe-area: cream bg extends up through the status-bar gutter (with viewport-fit=cover) */
  padding-top: env(safe-area-inset-top);
}

.site-header.is-scrolled {
  border-bottom-color: var(--color-accent-gold);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-sm);
  height: 80px;
}

/* Centered wordmark — HAUS OF V text only (logo SVG moved to the far right) */
.site-header__logo {
  color: var(--color-primary);
  justify-self: center;
  grid-column: 2;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.site-header__logo-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

/* Right group: nav-right (desktop) + logo monogram (always) */
.site-header__right {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.site-header__logo-mark {
  display: flex;
  align-items: center;
  padding-right: 4px;
  color: var(--color-primary);
}

.site-header__logo-mark img,
.site-header__logo-mark svg {
  width: 36px;
  height: 36px;
  display: block;
}

@media (min-width: 768px) {
  .site-header__inner { height: 92px; }
  .site-header__logo-text { font-size: 0.8125rem; letter-spacing: 0.30em; }
  .site-header__logo-mark img,
  .site-header__logo-mark svg { width: 44px; height: 44px; }
  .site-header__logo-mark { padding-right: var(--space-xs); }
}

.site-nav {
  display: none;
}

.site-nav__list {
  display: flex;
  gap: var(--space-md);
}

.site-nav--left { grid-column: 1; justify-self: end; }
/* site-nav--right now lives inside .site-header__right (no direct grid placement) */

.site-nav__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 150ms var(--ease);
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link[aria-current="page"] {
  border-bottom-color: var(--color-accent-gold);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  grid-column: 1;
  justify-self: start;
  align-self: center;
  width: 40px;
  height: 40px;
  position: relative;
}

.menu-toggle__bar {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--color-primary);
  transform-origin: center;
  transition: transform 320ms var(--ease-slow), opacity 200ms var(--ease-slow);
}

/* Hamburger morph to X when menu is open */
.menu-toggle.is-open .menu-toggle__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.is-open .menu-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}
.menu-toggle.is-open .menu-toggle__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .site-nav { display: block; }
  .menu-toggle { display: none; }
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  height: 100svh;
  max-height: 100svh;
  overflow-y: auto;
  background: var(--color-bg);
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: var(--space-md) var(--page-pad);
  transform: translateY(-100%);
  transition: transform 300ms var(--ease), visibility 0s linear 300ms;
  visibility: hidden;
  pointer-events: none;
}

.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 300ms var(--ease), visibility 0s linear 0s;
}

.mobile-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.mobile-menu__close {
  font-size: 1.5rem;
  padding: 8px;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  /* Staggered reveal — items slide+fade in when menu opens */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms var(--ease-slow),
              transform 500ms var(--ease-slow),
              border-color 150ms var(--ease);
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open .mobile-menu__list li:nth-child(1) .mobile-menu__link { transition-delay: 100ms, 100ms, 0ms; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(2) .mobile-menu__link { transition-delay: 160ms, 160ms, 0ms; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(3) .mobile-menu__link { transition-delay: 220ms, 220ms, 0ms; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(4) .mobile-menu__link { transition-delay: 280ms, 280ms, 0ms; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(5) .mobile-menu__link { transition-delay: 340ms, 340ms, 0ms; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(6) .mobile-menu__link { transition-delay: 400ms, 400ms, 0ms; }
.mobile-menu.is-open .mobile-menu__list li:nth-child(7) .mobile-menu__link { transition-delay: 460ms, 460ms, 0ms; }

.mobile-menu__link:hover {
  border-bottom-color: var(--color-accent-gold);
}

@media (min-width: 1024px) {
  .mobile-menu { display: none; }
}

/* ============================================================
   HERO — REBUILT (premium pass)
   Editorial theatre: layered wordmark, edition badge, vertical
   running text, gentle parallax. Anti-slop guardrails preserved.
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-alt);
  color: var(--color-cream);
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}

/* Top wordmark band — sits ABOVE the photo subjects */
.hero__top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-md) var(--page-pad) var(--space-sm);
}

.hero__top-eyebrow {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-cream);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-sm);
  opacity: 0.9;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.hero__top-eyebrow::before,
.hero__top-eyebrow::after {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--color-accent-gold);
  flex-shrink: 0;
}

@media (min-width: 600px) {
  .hero__top-eyebrow {
    font-size: 0.625rem;
    letter-spacing: 0.24em;
    gap: 14px;
  }
  .hero__top-eyebrow::before,
  .hero__top-eyebrow::after { width: 24px; }
}

@media (min-width: 1024px) {
  .hero__top-eyebrow { letter-spacing: 0.32em; }
}

/* Bottom content area — pushed to bottom by margin-top:auto */
.hero__bottom-wrap {
  position: relative;
  z-index: 2;
  margin-top: auto;
  width: 100%;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero__media img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.95) brightness(0.78);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.10) 30%, rgba(10,10,10,0.65) 100%);
  z-index: 1;
}

/* Vertical running text — right edge, desktop only */
.hero__vertical {
  display: none;
}

@media (min-width: 1024px) {
  .hero__vertical {
    display: flex;
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    z-index: 3;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--color-cream);
    align-items: center;
    gap: 18px;
  }

  .hero__vertical::after {
    content: '';
    height: 60px;
    width: 1px;
    background: var(--color-accent-gold);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  /* Bottom padding accounts for mobile sticky-CTA bar (64px) so the hero CTA isn't hidden behind it */
  padding: 0 var(--page-pad) calc(var(--space-lg) + 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .hero__content {
    padding-bottom: var(--space-xl);
    gap: var(--space-lg);
  }
}

.hero__lockup {
  display: flex;
  flex-direction: column;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--color-cream);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-accent-gold);
  display: inline-block;
}

.hero__wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0;
  font-size: clamp(2.75rem, 10vw, 6rem);
  letter-spacing: 0.06em;
  text-align: center;
  display: block;
}

.hero__wordmark-line {
  display: inline;
}

.hero__wordmark-line--indent {
  padding-left: 0;
}

.hero__wordmark-line--italic {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 0.45em;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--color-accent-gold);
  display: inline-block;
  margin-left: 0.3em;
  vertical-align: 0.4em;
}

.hero__tagline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-cream);
  margin-bottom: var(--space-md);
  max-width: 560px;
  line-height: 1.5;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.hero__location {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-cream);
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__location::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--color-accent-gold);
  display: inline-block;
}

@media (min-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: var(--space-xl);
  }
}

/* ============================================================
   BRAND STATEMENT
   ============================================================ */
.brand-statement {
  text-align: center;
}

.brand-statement__symbol {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-accent-gold);
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.brand-statement__text {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.6;
  color: var(--color-primary);
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   ABOUT BAND (dark)
   ============================================================ */
.about-band {
  background: var(--color-bg-alt);
  color: var(--color-cream);
}

.about-band__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.about-band__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-primary);
}

.about-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}

.about-band__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-md);
}

.about-band__title {
  margin-bottom: var(--space-md);
  color: var(--color-cream);
}

.about-band__text {
  font-weight: 300;
  margin-bottom: var(--space-md);
  color: var(--color-cream);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.about-band__inner > div:last-child {
  text-align: center;
}

.about-band__text + .about-band__text {
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .about-band__inner {
    grid-template-columns: 5fr 7fr;
    gap: var(--space-xl);
  }
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-bg-alt);
  color: var(--color-cream);
  padding: var(--space-xl) 0 var(--space-md);
  text-align: center;
  border-top: 1px solid var(--color-accent-gold);
}

.site-footer__masthead {
  text-align: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(188, 156, 34, 0.4);
}

.site-footer__masthead .site-footer__brand-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-cream);
}

.site-footer__tagline {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-cream);
  opacity: 0.75;
  margin-top: var(--space-sm);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer__est {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--color-cream);
  opacity: 0.7;
}

.site-footer__est::before,
.site-footer__est::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-accent-gold);
}

/* Footer columns — 3-col table grid at every viewport, proper top alignment */
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  column-gap: var(--space-md);
  margin-bottom: var(--space-lg);
  text-align: left;
  align-items: start;
}

@media (min-width: 768px) {
  .site-footer__grid {
    gap: var(--space-md);
    column-gap: var(--space-lg);
  }
}

.site-footer h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--space-sm);
  color: var(--color-cream);
}

.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer li {
  font-size: 0.8125rem;
  color: var(--color-cream);
  font-weight: 300;
  line-height: 1.4;
  word-break: break-word;
}

.site-footer a {
  font-size: 0.8125rem;
  color: var(--color-cream);
  font-weight: 300;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 150ms var(--ease);
  min-height: auto;
  display: inline;
}

@media (min-width: 768px) {
  .site-footer h3 { font-size: 0.75rem; }
  .site-footer li,
  .site-footer a { font-size: 0.875rem; }
}

.site-footer a:hover,
.site-footer a:focus-visible {
  border-bottom-color: var(--color-accent-gold);
}

.site-footer__bottom {
  border-top: 1px solid rgba(188, 156, 34, 0.4);
  padding-top: var(--space-md);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-cream);
  opacity: 0.6;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

@media (max-width: 599px) {
  .site-footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

/* ============================================================
   MOBILE STICKY BOOKING BAR
   ============================================================ */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  color: var(--color-cream);
  /* iOS safe-area: extend the bar into the home-indicator gutter so no page bg shows beneath it */
  height: calc(64px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  font-family: var(--font-display);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transform: translateY(100%);
  transition: transform 250ms var(--ease);
}

.mobile-cta.is-visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .mobile-cta { display: none; }
}

/* Add bottom padding to body on mobile when sticky bar exists, so footer doesn't hide.
   Safe-area inset accounts for iOS home indicator gutter when viewport-fit=cover is on. */
@media (max-width: 767px) {
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.page-header {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--space-md);
  text-align: left;
}

.page-header__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.page-header__title {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: var(--space-md);
}

.page-header__lede {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

.page-header__rule {
  width: 100%;
  height: 1px;
  background: var(--color-accent-gold);
  margin-bottom: var(--space-md);
}

.services-section {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.services-section__heading {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.services-section__heading h2 {
  font-size: var(--fs-display-l);
}

.services-section__count {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-accent-gold);
  font-size: 1rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.service-detail:last-child {
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.service-detail__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-surface);
}

.service-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.service-detail__num {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-accent-gold);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.service-detail__title {
  font-size: clamp(1.0625rem, 2.6vw, 1.375rem);
  letter-spacing: 0.10em;
  line-height: 1.2;
  margin: 0;
}

.service-detail__desc {
  font-weight: 300;
  color: var(--color-text-muted);
  margin: 0 auto var(--space-md);
  max-width: 480px;
}

.service-detail__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.service-detail__divider {
  width: 24px;
  height: 1px;
  background: var(--color-accent-gold);
}

.service-detail__price {
  font-weight: 500;
  color: var(--color-primary);
}

.service-detail__cta {
  align-self: center;
}

@media (min-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
  }

  .service-detail--reverse .service-detail__media { order: 2; }
  .service-detail--reverse .service-detail__body { order: 1; }
}

/* Mobile callout band */
.mobile-callout {
  background: var(--color-surface);
  text-align: center;
}

.mobile-callout__inner {
  max-width: 720px;
  margin: 0 auto;
}

.mobile-callout__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-accent-gold);
  margin-bottom: var(--space-md);
}

.mobile-callout__title {
  font-size: var(--fs-display-m);
  margin-bottom: var(--space-md);
}

.mobile-callout__text {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
/* Scroll entry — agency-tier spring physics + blur-resolves-to-sharp */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  transition: opacity 800ms var(--ease-slow),
              transform 800ms var(--ease-slow),
              filter 800ms var(--ease-slow);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1; transform: none; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.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;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 200;
  background: var(--color-primary);
  color: var(--color-cream);
  padding: 12px 16px;
  font-size: 0.875rem;
}

.skip-link:focus {
  left: 8px;
}

/* ============================================================
   PREMIUM PASS — magazine moments, off-grid breaks,
   mobile wildcard, scroll-linked motion.
   Layered on top of the base components above.
   ============================================================ */

/* --- Section marker (mirrored: § N —— Label —— N §) --- */
.section-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-md);
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 0.9375rem;
  color: var(--color-accent-gold);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
  row-gap: 4px;
}

.section-marker__num,
.section-marker__num--mirror {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-accent-gold);
  flex-shrink: 0;
  white-space: nowrap;
}

.section-marker__rule {
  width: 28px;
  height: 1px;
  background: var(--color-accent-gold);
  opacity: 0.5;
  flex-shrink: 0;
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 700ms var(--ease);
}

.section-marker.is-visible .section-marker__rule {
  transform: scaleX(1);
}

.section-marker__label {
  font-family: var(--font-body);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  font-size: 0.625rem;
  color: var(--color-text-muted);
  flex-shrink: 0;
  white-space: nowrap;
}

@media (min-width: 600px) {
  .section-marker { gap: 12px; font-size: 1rem; }
  .section-marker__num,
  .section-marker__num--mirror { font-size: 1.125rem; }
  .section-marker__rule { width: 48px; }
  .section-marker__label { font-size: 0.6875rem; letter-spacing: 0.28em; }
}

@media (min-width: 768px) {
  .section-marker__rule { width: 64px; }
}

.section-marker--inverse {
  color: var(--color-accent-gold);
}

.section-marker--inverse .section-marker__label {
  color: var(--color-cream);
  opacity: 0.8;
}

/* --- Mobile spine (wildcard for narrow screens) ---
   1px gold hairline that anchors the left edge of every
   marker, drawing in on intersection. Replaces "The Spine"
   at narrow widths. */
.section-marker__spine {
  display: inline-block;
  width: 1px;
  background: var(--color-accent-gold);
  align-self: stretch;
  transform-origin: top center;
  transform: scaleY(0);
  transition: transform 600ms var(--ease) 100ms;
  min-height: 28px;
}

.section-marker.is-visible .section-marker__spine {
  transform: scaleY(1);
}

/* --- Drop cap (oversized Cormorant initial that breaks margin) --- */
.drop-cap {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4rem, 12vw, 7rem);
  line-height: 0.85;
  color: var(--color-accent-gold);
  float: left;
  margin: -0.05em 0.2em -0.1em -0.05em;
  padding: 0;
}

@media (min-width: 768px) {
  .drop-cap {
    margin-left: -0.2em;
  }
}

/* --- Pull quote section (full-width editorial moment) --- */
.pull-quote {
  background: var(--color-bg);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  text-align: center;
  position: relative;
}

.pull-quote__ornament {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-accent-gold);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: var(--space-md);
}

.pull-quote__text {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  line-height: 1.25;
  color: var(--color-primary);
  max-width: 920px;
  margin: 0 auto var(--space-md);
  letter-spacing: -0.01em;
}

.pull-quote__attribution {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.pull-quote__attribution::before,
.pull-quote__attribution::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-accent-gold);
}

/* --- Inline service-detail row (matches homepage service-slide__row design language) --- */
.service-detail__row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.service-detail__num {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-accent-gold);
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  position: static;
  display: inline;
}

.service-detail__separator {
  color: var(--color-accent-gold);
  font-size: 0.875rem;
  line-height: 1;
  flex-shrink: 0;
}

/* --- About band: bleed image past container on desktop --- */
@media (min-width: 1024px) {
  .about-band__inner--bleed {
    grid-template-columns: 5fr 7fr;
    gap: 0;
  }
  .about-band__inner--bleed .about-band__media {
    margin-left: calc(var(--page-pad) * -1);
    aspect-ratio: 4 / 5;
  }
  .about-band__inner--bleed > div:last-child {
    padding-left: var(--space-xl);
  }
}

/* --- Hero parallax wiring (JS toggles transform) --- */
.hero__media[data-parallax] {
  transition: transform 200ms linear;
}

/* --- Draw-in rule utility (left-to-right hairline reveal) --- */
.draw-in-rule {
  width: 100%;
  height: 1px;
  background: var(--color-accent-gold);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 700ms var(--ease);
}

.draw-in-rule.is-visible {
  transform: scaleX(1);
}

/* --- Section markers on dark backgrounds need cream label --- */
.about-band .section-marker__label {
  color: var(--color-cream);
  opacity: 0.85;
}

.about-band .section-marker {
  color: var(--color-accent-gold);
}

/* --- Brand statement gets a wider feel + gold em-dash --- */
.brand-statement {
  position: relative;
  padding-bottom: var(--space-md);
}

.brand-statement__signature {
  display: inline-block;
  margin-top: var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.brand-statement__signature::before,
.brand-statement__signature::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-accent-gold);
}

/* --- Service detail title gets a hairline that draws on hover --- */
.service-detail__title {
  position: relative;
}

.service-detail__title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--color-accent-gold);
  transition: width 300ms var(--ease);
}

.service-detail:hover .service-detail__title::after {
  width: 60%;
}

/* --- Numeral underline draws on intersection --- */
.numeral-rule {
  display: block;
  width: 0;
  height: 1px;
  background: var(--color-accent-gold);
  margin-top: 8px;
  margin-bottom: var(--space-sm);
  transition: width 700ms var(--ease) 200ms;
}

.is-visible .numeral-rule,
.fade-up.is-visible .numeral-rule {
  width: 48px;
}

/* --- Page-header: also benefits from rule reveal --- */
.page-header__rule {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 800ms var(--ease);
}

.page-header__rule.is-visible {
  transform: scaleX(1);
}

/* --- Badge component (issue, edition stamps) --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-text-muted);
}

.badge::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--color-accent-gold);
  display: inline-block;
}

.badge--cream {
  color: var(--color-cream);
}

/* ============================================================
   BEFORE & AFTER PAGE — Drag slider
   ============================================================ */
.ba-section {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
}

.ba-block {
  margin-bottom: var(--space-2xl);
}

.ba-block:last-of-type {
  margin-bottom: var(--space-xl);
}

.ba-block__heading {
  text-align: center;
  margin-bottom: var(--space-md);
}

.ba-block__num {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-accent-gold);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.ba-block__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}

.ba-block__meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.ba-slider {
  position: relative;
  aspect-ratio: 4 / 5;
  max-width: 720px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--color-surface);
  user-select: none;
  -webkit-user-select: none;
  cursor: ew-resize;
  touch-action: pan-y;
}

@media (min-width: 768px) {
  .ba-slider { aspect-ratio: 16 / 10; }
}

.ba-slider__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
}

.ba-slider__after-wrapper {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  pointer-events: none;
}

.ba-slider__img--after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 720px;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .ba-slider__img--after { width: 720px; }
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--color-accent-gold);
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
}

.ba-slider__handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-accent-gold);
  border-radius: 50%;
  background: var(--color-bg);
}

.ba-slider__handle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--color-accent-gold);
  z-index: 1;
  letter-spacing: -0.05em;
  line-height: 1;
}

.ba-slider__label {
  position: absolute;
  top: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-cream);
  background: rgba(10, 10, 10, 0.55);
  padding: 5px 10px;
  pointer-events: none;
  z-index: 4;
}

.ba-slider__label--before {
  left: var(--space-sm);
}

.ba-slider__label--after {
  right: var(--space-sm);
}

.ba-section__note {
  text-align: center;
  margin-top: var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-text-muted);
  opacity: 0.6;
}

/* ============================================================
   GATE PAGE — Private preview entry
   ============================================================ */
.gate-body {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  /* No body bottom padding (no sticky bar on gate) */
}

.gate-screen {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--page-pad);
  position: relative;
  z-index: 2;
  text-align: center;
}

.gate-screen__inner {
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gate-screen__edition {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-xl);
}

.gate-screen__edition::before,
.gate-screen__edition::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--color-accent-gold);
}

.gate-screen__monogram {
  display: inline-block;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.gate-screen__monogram img {
  width: 64px;
  height: 64px;
  display: block;
}

.gate-screen__wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 9vw, 4.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 var(--space-md);
  color: var(--color-primary);
}

.gate-screen__wordmark-text {
  display: inline-block;
}

.gate-screen__wordmark-italic {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  text-transform: lowercase;
  font-size: 0.42em;
  color: var(--color-accent-gold);
  display: inline-block;
  margin-left: 0.3em;
  vertical-align: 0.4em;
  letter-spacing: 0.02em;
}

.gate-screen__lede {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0 auto var(--space-xl);
  max-width: 380px;
}

.gate-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.gate-form .form-field {
  text-align: left;
  width: 100%;
}

.gate-form .form-field label {
  text-align: center;
}

.gate-form input[type=email] {
  text-align: center;
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
}

.gate-form__error {
  margin-top: 8px;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--color-accent-gold);
  text-align: center;
}

.gate-form__submit {
  align-self: center;
  margin-top: var(--space-sm);
}

.gate-form__hint {
  margin-top: var(--space-2xl);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-text-muted);
  opacity: 0.55;
}

/* Submit transition — gate fades + softens before redirect */
.gate-body.is-unlocking {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 700ms var(--ease-slow), filter 700ms var(--ease-slow);
  pointer-events: none;
}

/* Entry animation — destination page fades in from gate (HTMl-level class set by guard script) */
@keyframes pageFadeIn {
  from { opacity: 0; filter: blur(10px); }
  to { opacity: 1; filter: blur(0); }
}

html.is-entering body {
  animation: pageFadeIn 1100ms var(--ease-slow);
}

/* ============================================================
   CONTACT PAGE — Form + Studio info
   ============================================================ */
.contact-section {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 7fr 5fr;
    gap: var(--space-2xl);
  }
}

.contact-form__heading,
.contact-info__heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  text-align: center;
}

@media (min-width: 1024px) {
  .contact-form__heading,
  .contact-info__heading { text-align: left; }
}

/* Form fields — hairline-underline style (matches DNA) */
.form-field {
  margin-bottom: var(--space-md);
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form-field__optional {
  font-style: italic;
  font-family: var(--font-editorial);
  text-transform: lowercase;
  letter-spacing: 0;
  color: var(--color-text-muted);
  opacity: 0.7;
}

.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  color: var(--color-primary);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-primary);
  padding: 8px 0;
  border-radius: 0;
  transition: border-color 200ms var(--ease), border-width 200ms var(--ease);
  width: 100%;
  font-family: inherit;
}

.form-field textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.6;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='none' stroke='%23BC9C22' stroke-width='1.4' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-bottom-color: var(--color-accent-gold);
  border-bottom-width: 2px;
}

.contact-form__submit {
  margin-top: var(--space-md);
}

.contact-form__hint {
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-text-muted);
  opacity: 0.6;
  text-align: center;
}

@media (min-width: 1024px) {
  .contact-form__hint { text-align: left; }
}

/* Studio info column */
.contact-info {
  background: var(--color-surface);
  padding: var(--space-md);
  position: relative;
  margin: 8px;
}

.contact-info::before,
.contact-info::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-accent-gold);
  pointer-events: none;
}

.contact-info::before {
  top: -8px;
  left: -8px;
  border-right: none;
  border-bottom: none;
}

.contact-info::after {
  bottom: -8px;
  right: -8px;
  border-left: none;
  border-top: none;
}

.contact-info__block {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
}

.contact-info__block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info__label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.20em;
  color: var(--color-accent-gold);
  margin-bottom: 6px;
}

.contact-info__value {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-primary);
}

.contact-info__value a {
  color: inherit;
  border-bottom: 1px solid var(--color-accent-gold);
  transition: border-color 150ms var(--ease);
}

.contact-info__value a:hover {
  border-bottom-color: var(--color-primary);
}

/* ============================================================
   SHOP PAGE — Product cards
   ============================================================ */
.shop-grid-section {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
}

/* 2-up grid at all viewports — products stack 2 wide, scrolling down */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .shop-grid {
    gap: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .shop-grid {
    gap: var(--space-2xl) var(--space-xl);
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card__link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--color-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  overflow: hidden;
}

/* Corner-marks (double-bezel for placeholders) */
.product-card__media::before,
.product-card__media::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--color-accent-gold);
  pointer-events: none;
}

.product-card__media::before {
  top: 8px; left: 8px;
  border-right: none; border-bottom: none;
}

.product-card__media::after {
  bottom: 8px; right: 8px;
  border-left: none; border-top: none;
}

.product-card__placeholder {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 1.125rem;
  letter-spacing: 0.04em;
}

.product-card__body {
  margin-bottom: var(--space-md);
}

.product-card__num {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-accent-gold);
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 4px;
}

.product-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 1.2;
  margin-bottom: 6px;
}

.product-card__meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.product-card__cta {
  align-self: center;
}

.shop-grid-section__note {
  text-align: center;
  margin-top: var(--space-xl);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-text-muted);
  opacity: 0.6;
}

/* ============================================================
   POLICIES PAGE — long-form editorial prose
   ============================================================ */
.policies__updated {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
}

.policies-prose {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-xl);
}

.policy-section {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.policy-section:first-of-type {
  border-top: none;
  padding-top: var(--space-md);
}

.policy-section h2 {
  margin-bottom: var(--space-md);
  text-align: center;
}

.policy-section p {
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.policy-section p:last-child { margin-bottom: 0; }

.policy-section a {
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-accent-gold);
  transition: border-color 150ms var(--ease);
}

.policy-section a:hover {
  border-bottom-color: var(--color-primary);
}

/* ============================================================
   PORTFOLIO PAGE — Editorial asymmetric grid
   ============================================================ */
.portfolio-filters {
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
}

.portfolio-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xl);
}

@media (min-width: 600px) {
  .portfolio-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
}

@media (min-width: 1024px) {
  .portfolio-page-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: var(--space-md);
  }
  .portfolio-page-grid__item:nth-child(1) { grid-column: 1 / span 6; grid-row: span 4; }
  .portfolio-page-grid__item:nth-child(2) { grid-column: 7 / span 6; grid-row: span 3; margin-top: 40px; }
  .portfolio-page-grid__item:nth-child(3) { grid-column: 1 / span 4; grid-row: span 3; }
  .portfolio-page-grid__item:nth-child(4) { grid-column: 5 / span 8; grid-row: span 2; }
  .portfolio-page-grid__item:nth-child(5) { grid-column: 5 / span 4; grid-row: span 3; margin-top: 32px; }
  .portfolio-page-grid__item:nth-child(6) { grid-column: 9 / span 4; grid-row: span 3; }
}

.portfolio-page-grid__item {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--color-surface);
  aspect-ratio: 4 / 5;
}

@media (min-width: 1024px) {
  .portfolio-page-grid__item { aspect-ratio: auto; }
}

.portfolio-page-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 200ms var(--ease);
}

.portfolio-page-grid__item:hover img,
.portfolio-page-grid__item:focus-visible img {
  filter: saturate(1.05) brightness(1.02);
}

.portfolio-page-grid__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--space-md) var(--space-sm);
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.55) 100%);
  color: var(--color-cream);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  pointer-events: none;
}

.portfolio-page-grid__caption-num {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--color-accent-gold);
  line-height: 1;
}

.portfolio-page-grid__caption-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 0.875rem;
  line-height: 1.2;
  color: var(--color-cream);
}

.portfolio-page-grid__caption-meta {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-cream);
  opacity: 0.8;
}

/* Placeholder tile for "more work being added" */
.portfolio-page-grid__item--placeholder {
  background: var(--color-surface);
  border: 1px dashed var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.portfolio-page-grid__placeholder-text {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* ============================================================
   ABOUT PAGE — Values grid (3 principles)
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

.value-card {
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  border-top: 1px solid var(--color-accent-gold);
}

.value-card__num {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-accent-gold);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.value-card__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: clamp(1.0625rem, 2.6vw, 1.375rem);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.value-card__text {
  font-weight: 300;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  max-width: 320px;
  margin: 0 auto;
}

/* --- Reduced motion override for new pieces --- */
@media (prefers-reduced-motion: reduce) {
  .section-marker__rule,
  .section-marker__spine,
  .draw-in-rule,
  .page-header__rule,
  .numeral-rule {
    transform: none !important;
    width: auto;
  }
}

/* ============================================================
   POST-AUDIT PASS — restructure components
   ============================================================ */

/* H2 size — sized to dominate markers without shouting on mobile */
section h2,
.brand-statement h2,
.services-teaser h2,
.about-band__title,
.testimonials h2,
.booking-frame-section h2,
.landscape-feature__caption-heading {
  font-size: clamp(1.875rem, 5.5vw, 3.25rem);
  letter-spacing: 0.06em;
}

/* Center all main section H2s (and the services page H1) under their section markers */
.services-teaser h2,
#portfolio-heading,
.about-band__title,
.page-header__title,
.services-section__heading h2,
.booking-frame-section h2,
.testimonials h2 {
  text-align: center;
}

.services-section__heading {
  justify-content: center;
}

.page-header {
  text-align: center;
}

.page-header__rule {
  margin-left: auto;
  margin-right: auto;
}

.page-header__lede {
  margin-left: auto;
  margin-right: auto;
}

/* Section markers slightly quieter to subordinate to H2 */
.section-marker {
  font-size: 0.875rem;
}
.section-marker__num {
  font-size: 1rem;
}

/* --- Landscape feature (full-bleed wide editorial moment) --- */
.landscape-feature {
  padding: 0;
  margin: 0;
  position: relative;
}

.landscape-feature__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-surface);
}

@media (min-width: 600px) {
  .landscape-feature__media { aspect-ratio: 16 / 9; }
}

@media (min-width: 1024px) {
  .landscape-feature__media { aspect-ratio: 21 / 9; }
}

.landscape-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96);
}

.landscape-feature__caption {
  display: flex;
  align-items: baseline;
  justify-content: center;
  text-align: center;
  gap: var(--space-md);
  margin: 0;
  padding: var(--space-md) var(--page-pad) var(--space-sm);
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 1rem;
  flex-wrap: wrap;
}

.landscape-feature__caption-num {
  color: var(--color-accent-gold);
  font-size: 1.25rem;
}

.landscape-feature__caption-text {
  flex: 1;
  min-width: 240px;
}

.landscape-feature__caption-meta {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-text-muted);
}

/* --- Testimonials (3-up Cormorant italic, named attribution, no stars)
     Surface bg breaks the cream-monotony rhythm before About (dark band). --- */
.testimonials {
  background: var(--color-surface);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

.testimonials__heading {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.testimonials__heading h2 {
  margin-bottom: var(--space-sm);
}

.testimonials__heading .section-marker {
  justify-content: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

/* Double-bezel: card sits on surface bg, with hairline corner-marks creating an outer "frame" gesture */
.testimonial {
  position: relative;
  padding: var(--space-md) var(--space-sm);
  text-align: left;
  background: var(--color-bg);
  margin: 8px;
}

.testimonial::before,
.testimonial::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-accent-gold);
  pointer-events: none;
}

.testimonial::before {
  top: -8px;
  left: -8px;
  border-right: none;
  border-bottom: none;
}

.testimonial::after {
  bottom: -8px;
  right: -8px;
  border-left: none;
  border-top: none;
}

.testimonial__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  margin-top: calc(var(--space-md) * -1 - 28px);
  margin-left: var(--space-sm);
}

.testimonial__ornament {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-accent-gold);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.testimonial__quote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.45;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  letter-spacing: -0.005em;
}

.testimonial__attribution {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.testimonial__attribution::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-accent-gold);
}

.testimonial__name {
  color: var(--color-primary);
  letter-spacing: 0.18em;
}

.testimonial__placeholder-note {
  text-align: center;
  margin-top: var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-text-muted);
  opacity: 0.6;
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-md);
  }
}

/* --- Booking section (framed Fresha placeholder) --- */
.booking-frame-section {
  background: var(--color-surface);
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
}

@media (min-width: 1024px) {
  .booking-frame-section {
    padding-top: 160px;
    padding-bottom: 160px;
  }
  .about-band {
    padding-top: 128px;
    padding-bottom: 128px;
  }
}

.booking-frame-section__inner {
  text-align: center;
}

.booking-frame-section h2 {
  margin-bottom: var(--space-md);
}

.booking-frame-section__lede {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin: 0 auto var(--space-lg);
  max-width: 560px;
}

.booking-frame {
  background: var(--color-bg);
  border: 1px solid var(--color-accent-gold);
  padding: var(--space-xl) var(--space-md);
  margin: 0 auto;
  max-width: 880px;
  text-align: center;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.booking-frame::before,
.booking-frame::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--color-accent-gold);
}

.booking-frame::before {
  top: -6px;
  left: -6px;
  border-right: none;
  border-bottom: none;
}

.booking-frame::after {
  bottom: -6px;
  right: -6px;
  border-left: none;
  border-top: none;
}

/* ============================================================
   SLIDESHOW — manual scroll-snap (no auto-rotate per brief)
   Used for services + portfolio on homepage. Mobile: peek of
   next slide. Desktop: 3-up.
   ============================================================ */
.slideshow {
  position: relative;
}

.slideshow__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-top: var(--space-sm);
}

.slideshow__viewport::-webkit-scrollbar { display: none; }

/* Track padding sized so first slide naturally centres on init (mobile centre-snap)
   Formula: padding-inline = (viewport - slide_width) / 2 = page-pad + 28px on mobile */
.slideshow__track {
  display: flex;
  gap: 16px;
  padding-left: calc(var(--page-pad) + 28px);
  padding-right: calc(var(--page-pad) + 28px);
  padding-bottom: var(--space-sm);
  width: max-content;
}

.slideshow__slide {
  flex: 0 0 calc(100vw - var(--page-pad) * 2 - 56px);
  max-width: 380px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}

@media (min-width: 600px) {
  .slideshow__track { gap: 24px; padding-left: var(--page-pad); padding-right: var(--page-pad); }
  .slideshow__slide { flex: 0 0 calc((100vw - var(--page-pad) * 2 - 24px) / 2); max-width: 420px; scroll-snap-align: start; }
}

@media (min-width: 1024px) {
  .slideshow__track { gap: 32px; padding-left: var(--page-pad); padding-right: var(--page-pad); }
  .slideshow__slide { flex: 0 0 calc((min(100vw, var(--max-content)) - var(--page-pad) * 2 - 64px) / 3); max-width: 440px; scroll-snap-align: start; }
}

/* Slideshow nav — counter centered above, arrows + progress line below */
.slideshow__nav {
  padding: 0 var(--page-pad);
  margin-top: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.slideshow__counter {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-accent-gold);
  font-size: 1.125rem;
  text-align: center;
  letter-spacing: 0.04em;
}

.slideshow__nav-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  width: 100%;
  max-width: 480px;
}

.slideshow__btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-primary);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 150ms var(--ease), color 150ms var(--ease);
  color: var(--color-primary);
  flex-shrink: 0;
}

.slideshow__btn:hover,
.slideshow__btn:focus-visible {
  background: var(--color-primary);
  color: var(--color-cream);
}

.slideshow__btn[disabled] {
  opacity: 0.3;
  cursor: not-allowed;
}

.slideshow__btn svg {
  width: 14px;
  height: 14px;
}

.slideshow__progress {
  flex: 1;
  height: 1px;
  background: rgba(10, 10, 10, 0.12);
  position: relative;
  overflow: hidden;
}

.slideshow__progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 33.333%;
  background: var(--color-accent-gold);
  transition: width 250ms var(--ease), transform 250ms var(--ease);
}

/* --- Service slide card (vertical, image-top, centered content) --- */
.service-slide {
  display: flex;
  flex-direction: column;
  background: transparent;
  text-align: center;
  align-items: center;
}

.service-slide__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-surface);
  margin-bottom: var(--space-md);
}

.service-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 200ms var(--ease);
}

.service-slide:hover .service-slide__media img {
  filter: saturate(1.05) brightness(1.02);
}

/* Inline: 01 — Bridal Application (number beside title), centered */
.service-slide__row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.service-slide__num {
  font-family: var(--font-editorial);
  font-style: italic;
  color: var(--color-accent-gold);
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.service-slide__separator {
  color: var(--color-accent-gold);
  font-size: 0.875rem;
  line-height: 1;
  flex-shrink: 0;
}

/* Numeral-rule no longer needed in inline layout — hide */
.service-slide__numeral-rule { display: none; }

.service-slide__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: clamp(1.0625rem, 2.6vw, 1.375rem);
  line-height: 1.2;
  margin: 0;
  flex: 1;
}

.service-slide__desc {
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.service-slide__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.service-slide__meta-divider {
  width: 18px;
  height: 1px;
  background: var(--color-accent-gold);
}

.service-slide__desc {
  max-width: 360px;
}

.service-slide__cta {
  align-self: center;
}

/* --- Portfolio slide --- */
.portfolio-slide {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  aspect-ratio: 4 / 5;
}

.portfolio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 200ms var(--ease);
}

.portfolio-slide:hover img {
  filter: saturate(1.05) brightness(1.02);
}

.portfolio-slide__caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-cream);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  display: inline-block;
  width: auto;
  max-width: calc(100% - 32px);
  transition: border-color 150ms var(--ease);
  text-shadow: 0 1px 8px rgba(10, 10, 10, 0.6);
}

.portfolio-slide:hover .portfolio-slide__caption {
  border-bottom-color: var(--color-accent-gold);
}

/* ============================================================
   MOCK CALENDAR — visible mock of the Fresha embed
   ============================================================ */
.mock-calendar {
  background: var(--color-bg);
  border: 1px solid var(--color-accent-gold);
  padding: var(--space-md);
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

.mock-calendar::before,
.mock-calendar::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid var(--color-accent-gold);
}

.mock-calendar::before {
  top: -6px; left: -6px;
  border-right: none; border-bottom: none;
}

.mock-calendar::after {
  bottom: -6px; right: -6px;
  border-left: none; border-top: none;
}

.mock-calendar__label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--color-accent-gold);
  text-align: center;
  margin-bottom: var(--space-md);
}

.mock-calendar__prompt {
  text-align: center;
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  transition: opacity 200ms var(--ease), font-size 200ms var(--ease), color 200ms var(--ease);
}

.mock-calendar__prompt.is-fulfilled {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-style: normal;
  opacity: 0.7;
}

.mock-calendar__details {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 350ms var(--ease), transform 350ms var(--ease);
}

.mock-calendar__details.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.mock-calendar__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
  justify-content: center;
}

.mock-calendar__chip {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 8px 14px;
  border: 1px solid rgba(107, 102, 96, 0.4);
  color: var(--color-text-muted);
  cursor: pointer;
  background: transparent;
  transition: all 150ms var(--ease);
  white-space: nowrap;
}

.mock-calendar__chip--active {
  background: var(--color-primary);
  color: var(--color-cream);
  border-color: var(--color-primary);
}

.mock-calendar__month-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.mock-calendar__month {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.mock-calendar__nav-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-primary);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-primary);
  transition: background-color 150ms var(--ease), color 150ms var(--ease);
}

.mock-calendar__nav-btn:hover {
  background: var(--color-primary);
  color: var(--color-cream);
}

.mock-calendar__nav-btn svg {
  width: 12px;
  height: 12px;
}

.mock-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: var(--space-sm);
}

.mock-calendar__weekday {
  font-family: var(--font-body);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  text-align: center;
  padding: 6px 0;
}

.mock-calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  border: 1px solid transparent;
  cursor: default;
  transition: background-color 150ms var(--ease), color 150ms var(--ease), border-color 150ms var(--ease);
}

.mock-calendar__day--available {
  border-color: var(--color-accent-gold);
  color: var(--color-primary);
  cursor: pointer;
}

.mock-calendar__day--available:hover {
  background: rgba(188, 156, 34, 0.1);
}

.mock-calendar__day--selected {
  background: var(--color-primary);
  color: var(--color-cream);
  border-color: var(--color-primary);
}

.mock-calendar__day--empty {
  visibility: hidden;
}

.mock-calendar__divider {
  height: 1px;
  background: var(--color-accent-gold);
  opacity: 0.4;
  margin: var(--space-md) 0;
}

.mock-calendar__selection {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.mock-calendar__selection strong {
  color: var(--color-primary);
  font-weight: 400;
}

.mock-calendar__slots {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-md);
}

.mock-calendar__slot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(10, 10, 10, 0.10);
  cursor: pointer;
  background: transparent;
  text-align: left;
  transition: border-color 150ms var(--ease), background-color 150ms var(--ease);
  font-family: var(--font-body);
  width: 100%;
}

.mock-calendar__slot:hover {
  border-color: var(--color-accent-gold);
}

.mock-calendar__slot--selected {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-cream);
}

.mock-calendar__slot-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--color-accent-gold);
  flex-shrink: 0;
}

.mock-calendar__slot--selected .mock-calendar__slot-bullet {
  background: var(--color-accent-gold);
  border-color: var(--color-accent-gold);
}

.mock-calendar__slot-time {
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.10em;
}

.mock-calendar__slot-meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  margin-left: auto;
  letter-spacing: 0.04em;
}

.mock-calendar__slot--selected .mock-calendar__slot-meta {
  color: var(--color-cream);
  opacity: 0.85;
}

.mock-calendar__cta {
  width: 100%;
  margin-top: var(--space-sm);
}

.mock-calendar__hint {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
  opacity: 0.65;
}

/* ============================================================
   MOBILE POLISH
   ============================================================ */

/* Disable hero parallax on touch devices (perf + smoother feel) */
@media (hover: none) {
  .hero__media[data-parallax] { transition: none; }
}

/* Slightly tighten section padding on mobile so spacing reads less sparse */
@media (max-width: 767px) {
  :root { --section-pad-y: 64px; }
  .booking-frame-section { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
  .booking-frame { padding: var(--space-md); }
  .testimonials { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
}

/* Touch target minimum 44x44px */
.site-nav__link,
.mobile-menu__link,
.link-cta,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
