/* =========================================================
   Amanda Phillips Makeup — main stylesheet
   Soft blush editorial · premium · approachable
   ========================================================= */

/* --------- Reset & tokens --------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; }
img, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

:root {
  --bg:        #FDFBF9;
  --bg-warm:   #F7EFE9;
  --cream:     #F4E8DF;
  --blush:     #E8A89B;
  --blush-deep:#D08C7C;
  --blush-soft:#F5DCD3;
  --gold:      #C7A57B;
  --ink:       #2A2724;
  --ink-soft:  #6B6661;
  --ink-faint: #A09994;
  --border:    #EBE2DA;
  --shadow-sm: 0 2px 12px rgba(42, 39, 36, .06);
  --shadow-md: 0 16px 48px rgba(42, 39, 36, .08);
  --shadow-lg: 0 40px 80px rgba(42, 39, 36, .12);

  --font-display: "Cormorant Garamond", "Cormorant", "EB Garamond", Georgia, serif;
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease:        cubic-bezier(.2,.7,.2,1);
  --ease-out:    cubic-bezier(.16,.84,.44,1);
  --dur-fast:    .25s;
  --dur:         .55s;
  --dur-slow:    .9s;

  --pad-x:       clamp(20px, 5vw, 64px);
  --section-y:   clamp(80px, 12vw, 160px);
  --max:         1440px;
}

/* --------- Base typography --------- */
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

.serif       { font-family: var(--font-display); font-style: italic; font-weight: 500; }
.serif-up    { font-family: var(--font-display); font-weight: 500; letter-spacing: .02em; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

.lead { font-size: clamp(17px, 1.6vw, 19px); color: var(--ink-soft); line-height: 1.7; max-width: 56ch; }

/* --------- Layout --------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }

section { padding: var(--section-y) 0; position: relative; }
.section-head { max-width: 760px; margin: 0 auto var(--section-y) auto; text-align: center; padding-top: 8px; }
.section-head .eyebrow { margin-bottom: 24px; display: inline-block; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(36px, 5.5vw, 68px); font-weight: 400; }
.section-head h2 em { font-style: italic; color: var(--blush-deep); }
.section-head .lead { margin: 24px auto 0; }

.divider {
  display:flex; align-items:center; gap: 16px;
  color: var(--blush); width: 64px; height: 1px; background: currentColor; margin: 28px auto;
}

/* --------- Buttons --------- */
.btn {
  /* Local custom props — prefixed so they don't collide with global --bg / --ink */
  --btn-bg: var(--ink);
  --btn-fg: #FDFBF9;
  position: relative;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 34px;
  font-size: 12px; font-weight: 500; letter-spacing: .26em; text-transform: uppercase;
  background: var(--btn-bg); color: var(--btn-fg);
  border-radius: 999px;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  overflow: hidden;
}
.btn::after {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; transition: transform var(--dur-fast) var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:hover::after { transform: translateX(4px); }

.btn--ink    { --btn-bg: var(--ink);   --btn-fg: #FDFBF9; }
.btn--blush  { --btn-bg: var(--blush); --btn-fg: #fff; }
.btn--ghost  { --btn-bg: transparent;  --btn-fg: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #FDFBF9; }
.btn--light  { --btn-bg: #FDFBF9;      --btn-fg: var(--ink); }

.btn-text {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase; font-weight: 500;
  position: relative; padding-bottom: 4px;
  color: var(--ink);
}
.btn-text::after {
  content: ""; position: absolute; left: 0; right: 24px; bottom: 0; height: 1px;
  background: currentColor; transform-origin: left; transform: scaleX(.4);
  transition: transform var(--dur) var(--ease);
}
.btn-text:hover::after { transform: scaleX(1); }
.btn-text .arrow { transition: transform var(--dur) var(--ease); }
.btn-text:hover .arrow { transform: translateX(6px); }

/* --------- Nav --------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 4px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  /* Solid cream background so the logo (which has dark text) always reads
   * clearly, including over the hero veil image at the top of the page. */
  background: var(--bg);
  color: var(--ink);
  border-bottom: 1px solid var(--border);
  transition: padding var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.nav.is-stuck {
  background: rgba(253, 251, 249, .96);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
/* Stacked wordmark logo
 * Italic serif "Amanda Phillips" / hairline + dot ornament / spaced "MAKEUP"
 */
.nav__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: opacity var(--dur-fast) var(--ease);
  padding: 10px 0;
}
.nav__logo-img {
  display: block;
  height: 67px;          /* 20% larger than previous 56px */
  width: auto;
  max-width: none;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: filter 480ms var(--ease);
}
.nav__logo:hover .nav__logo-img,
.nav__logo:focus-visible .nav__logo-img {
  filter:
    drop-shadow(0 0 10px rgba(232, 168, 155, .55))
    drop-shadow(0 0 22px rgba(208, 140, 124, .35));
}
@media (prefers-reduced-motion: reduce) {
  .nav__logo-img { transition: none; }
}
@media (max-width: 880px) {
  .nav__logo-img { height: 58px; }
}
@media (max-width: 480px) {
  .nav__logo-img { height: 50px; }
  /* Mobile hero — heading scales up; tagline phrase stacks into two
   * balanced centred lines so it can't break on a dangling separator. */
  .hero h1.hero__tagline {
    font-size: 101px;
    max-width: 9ch;
    line-height: .98;
    letter-spacing: -.02em;
  }
  .hero__sub {
    margin-top: 26px;
    font-size: 12px;
    letter-spacing: .34em;
    line-height: 1.05;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .hero__sub-line { display: block; line-height: 1.05; }
  .hero__sub-sep { display: none; }
}
@media (max-width: 380px) {
  .nav__logo-img { height: 46px; }
  .hero h1.hero__tagline { font-size: 88px; max-width: 9ch; }
  .hero__sub { margin-top: 22px; font-size: 11.5px; letter-spacing: .3em; gap: 0; line-height: 1.05; }
  .hero__sub-line { line-height: 1.05; }
}

.nav__logo-fx {
  position: relative;
  display: inline-block;
}
/* No pseudo-element flourishes on the logo wrapper or anchor. */
.nav__logo-fx::before,
.nav__logo-fx::after,
.nav__logo::before,
.nav__logo::after {
  content: none;
}
.nav__links { display: flex; gap: 36px; align-items: center; }
.nav__links a {
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase; font-weight: 500;
  position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { padding: 12px 22px; font-size: 11px; }
.nav__toggle { display: none; }
.nav__mobile { display: none; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__toggle {
    display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; padding: 14px; min-width: 44px; min-height: 44px;
    z-index: 110;
  }
  .nav__toggle span { width: 22px; height: 1.5px; background: currentColor; transition: transform .3s var(--ease), opacity .3s var(--ease); }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .nav__cta { display: none; }
  .nav__mobile {
    position: fixed; inset: 0;
    background: var(--bg); color: var(--ink);
    padding: 96px var(--pad-x) 32px;
    display: flex; flex-direction: column; gap: 4px;
    opacity: 0; visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .4s var(--ease), transform .5s var(--ease), visibility 0s linear .4s;
    z-index: 105;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav__mobile.is-open {
    opacity: 1; visibility: visible; transform: translateY(0);
    transition: opacity .4s var(--ease), transform .5s var(--ease), visibility 0s linear 0s;
  }
  .nav__mobile-close {
    position: absolute;
    top: calc(18px + env(safe-area-inset-top, 0px));
    right: 18px;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--ink);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--dur-fast) var(--ease),
                border-color var(--dur-fast) var(--ease),
                transform var(--dur-fast) var(--ease);
    z-index: 1;
  }
  .nav__mobile-close:hover,
  .nav__mobile-close:focus-visible {
    background: var(--blush-soft);
    border-color: var(--blush-deep);
    transform: rotate(90deg);
    outline: none;
  }
  .nav__mobile-close svg { display: block; }
  .nav__mobile a {
    font-family: var(--font-display); font-style: italic; font-size: clamp(28px, 8vw, 40px);
    border-bottom: 1px solid var(--border); padding: 16px 0; line-height: 1.2;
  }
  .nav__mobile-cta {
    font-family: var(--font-sans) !important; font-style: normal !important;
    font-size: 12px !important; letter-spacing: .26em; text-transform: uppercase;
    color: var(--blush-deep) !important; border-bottom: 0 !important;
    margin-top: 24px; padding: 16px 0 !important;
  }
}

/* ---- Extra small phones (≤380px) ---- */
@media (max-width: 380px) {
  :root { --pad-x: 18px; --section-y: 72px; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero__cta .btn { justify-content: center; }
  .btn { padding: 16px 24px; }
  .nav__logo { font-size: 18px; }
  .nav__logo small { font-size: 8px; }
  .section-head h2 { font-size: 32px; }
  .about__media-accent { width: 50%; }
  .about__stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .about__stat .n { font-size: 32px; }
  .marquee__item { font-size: 20px; }
  .service { padding: 36px 24px; min-height: 320px; }
  .investment__list .price { font-size: 22px; }
  .footer__bottom { font-size: 10px; }
}

/* --------- Hero --------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  color: #fff; overflow: hidden;
  padding: 120px var(--pad-x) 64px;
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
}
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
  animation: hero-zoom 18s var(--ease) forwards;
}
@keyframes hero-zoom { to { transform: scale(1); } }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0,0,0,0) 0%, rgba(0,0,0,.35) 80%),
    linear-gradient(to bottom, rgba(42,39,36,.25), rgba(42,39,36,.55));
}
/* Slow ambient warm-light drift — adds cinematic atmosphere without distraction */
.hero__media::before {
  content: ""; position: absolute; inset: -10%;
  background: radial-gradient(circle at 30% 40%, rgba(232, 168, 155, .18), transparent 50%);
  z-index: 1;
  pointer-events: none;
  animation: hero-light-drift 18s ease-in-out infinite alternate;
  mix-blend-mode: soft-light;
}
@keyframes hero-light-drift {
  0%   { transform: translate(0, 0) scale(1); opacity: .9; }
  50%  { transform: translate(8%, -4%) scale(1.1); opacity: 1; }
  100% { transform: translate(-6%, 6%) scale(1.05); opacity: .85; }
}
.hero__content { position: relative; z-index: 2; text-align: center; max-width: 1100px; }
.hero__eyebrow {
  font-size: 11px; letter-spacing: .42em; text-transform: uppercase;
  opacity: 0; transform: translateY(12px);
  animation: rise .9s var(--ease-out) .2s forwards;
}
.hero h1 {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(64px, 13vw, 200px);
  line-height: .92; letter-spacing: -.02em;
  margin: 18px 0 8px;
}
/* Tagline: longer line, smaller scale, balanced wrap, gentle fade-up */
.hero h1.hero__tagline {
  font-size: clamp(36px, 6.4vw, 84px);
  line-height: 1.08;
  letter-spacing: -.005em;
  max-width: 18ch;
  margin: 22px auto 14px;
  text-wrap: balance;
  opacity: 0; transform: translateY(20px);
  animation: rise 1s var(--ease-out) .5s forwards;
}
.hero h1 .word { display: inline-block; overflow: hidden; }
.hero h1 .letter {
  display: inline-block; transform: translateY(110%);
  animation: letter-rise .9s var(--ease-out) forwards;
}
.hero__sub {
  font-size: clamp(13px, 1.2vw, 15px); letter-spacing: .42em; text-transform: uppercase;
  opacity: 0; transform: translateY(12px);
  animation: rise .9s var(--ease-out) 1.1s forwards;
}
.hero__sub-line { display: inline-block; }
.hero__sub-sep { color: inherit; }
.hero__cta {
  margin-top: 56px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  opacity: 0; transform: translateY(12px);
  animation: rise .9s var(--ease-out) 1.3s forwards;
}

/* ----- Primary CTA: layered attention-pulling animation -----
 * 1. cta-breathe — slow box-shadow breath, gives the button a soft "alive" feel
 * 2. cta-ring-pulse — expanding ring around the button every few seconds
 * 3. Hover state still wins via transition; the pulse pauses on hover so the
 *    user's interaction feels responsive, not fighting the loop.
 */
.hero__cta .btn--blush {
  position: relative;
  isolation: isolate;
  animation: cta-breathe 2.8s ease-in-out 1.4s infinite;
}
/* Outer ring — expands and fades away, signals "tap me" */
.hero__cta .btn--blush::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--blush);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  animation: cta-ring-pulse 2.8s ease-out 1.8s infinite;
}
/* Inner halo — sits beneath the button, breathes in sync with the box-shadow */
.hero__cta .btn--blush::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(232, 168, 155, .55) 0%, rgba(232, 168, 155, 0) 70%);
  opacity: 0;
  filter: blur(8px);
  z-index: -2;
  pointer-events: none;
  animation: cta-halo 2.8s ease-in-out 1.4s infinite;
}
.hero__cta .btn--blush:hover,
.hero__cta .btn--blush:hover::before,
.hero__cta .btn--blush:hover::after {
  animation-play-state: paused;
}
@keyframes cta-breathe {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(232, 168, 155, .9),
      0 8px 26px 4px rgba(208, 140, 124, .35);
  }
  50% {
    box-shadow:
      0 0 28px 6px rgba(232, 168, 155, .85),
      0 16px 44px 10px rgba(208, 140, 124, .55);
  }
}
@keyframes cta-halo {
  0%, 100% { opacity: .35; transform: scale(0.96); }
  50%      { opacity: 1;   transform: scale(1.12); }
}
@keyframes cta-ring-pulse {
  0%   { transform: scale(0.94); opacity: 1; border-width: 2px; }
  70%  { transform: scale(1.42); opacity: 0; border-width: 1px; }
  100% { transform: scale(1.42); opacity: 0; border-width: 1px; }
}

/* ----- Subtitle dots: gentle pulse to add life ----- */
/* Commas inherit colour; no animation needed. */
@keyframes dot-pulse {
  0%, 100% { opacity: .55; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.15); }
}
.hero__scroll {
  /* Full-width band anchored to the bottom of the hero. Using left/right:0
   * with text-align:center centres children against the actual viewport,
   * sidestepping every flex+intrinsic-width quirk that bit us trying to
   * align letter-spaced text with the pulse line below.
   */
  position: absolute; bottom: 32px;
  left: 0; right: 0;
  text-align: center;
  font-size: 10px; text-transform: uppercase;
  z-index: 3; opacity: 0;
  animation: rise .9s var(--ease-out) 1.6s forwards;
  pointer-events: none;
}
/* The text gets letter-spacing for the editorial feel, but no asymmetric
 * trailing slug because we render it as inline content inside a centred
 * block — `text-align: center` will optically centre the visible glyphs,
 * and the line below is its own absolutely-positioned element so its
 * centring is entirely independent of the text's bounding box. */
.hero__scroll-text {
  display: inline-block;
  letter-spacing: .12em;
  pointer-events: auto;
  /* Pad the leading edge by the letter-spacing value so the visible
   * glyph midpoint sits at the geometric centre of the span box, which
   * `text-align: center` then aligns to the viewport centre. */
  padding-left: .12em;
}
.hero__scroll::after {
  /* The pulse line is positioned absolutely, NOT as a flex item, so its
   * x-axis position is page-centre regardless of how the text box ends
   * up sized. This is the single source of truth for "centre". */
  content: "";
  position: absolute;
  left: 50%;
  bottom: -48px;
  transform: translateX(-50%);
  width: 1px; height: 38px;
  background: currentColor;
  animation: scroll-pulse 2s var(--ease) infinite;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 38px; background: currentColor;
  animation: scroll-pulse 2s var(--ease) infinite;
}
.hero__credit {
  position: absolute; bottom: 14px; right: 18px;
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: none;
  color: #fff;
  opacity: .35;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .35);
}
@media (max-width: 560px) {
  .hero__credit { font-size: 8px; bottom: 10px; right: 12px; opacity: .3; }
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes letter-rise { to { transform: translateY(0); } }
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(0); transform-origin: bottom; opacity: .4; }
}

/* --------- Marquee ---------
 * Editorial drift, not ticker tape. Soft-mask the left/right edges so terms
 * emerge from and dissolve into the cream, slow the motion to ~90s/loop so it
 * reads as ambient rather than aggressive, and quiet the typography to a
 * letter-spaced Inter so it sits behind the hero without competing.
 */
.marquee {
  background: var(--cream);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  /* Fade text into the background at both edges. -webkit prefix for Safari. */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 14%, #000 86%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 14%, #000 86%, transparent 100%);
}
.marquee__track {
  display: flex;
  animation: marquee 90s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-sans);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .38em;
  color: var(--ink-soft);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  /* The gap sits before each item; the `::after` is the separator that
   * sits after each item. Combined they create rhythm without crowding. */
  padding: 0 clamp(28px, 4vw, 56px) 0 0;
}
.marquee__item::after {
  content: "";
  display: inline-block;
  width: clamp(18px, 2vw, 28px);
  height: 1px;
  background: var(--border);
  margin-left: clamp(28px, 4vw, 56px);
  vertical-align: middle;
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 720px) {
  .marquee { padding: 14px 0; }
  .marquee__item { font-size: 11px; letter-spacing: .32em; padding-right: 28px; }
  .marquee__item::after { width: 16px; margin-left: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* --------- Capabilities strip ---------
 * Static, editorial replacement for the old scrolling marquee. Eyebrow on
 * the left, italic-serif capability terms on the right, separated by the
 * same blush sparkle accent the marquee used. Wraps gracefully on narrow
 * viewports; hover lifts each term toward the blush palette.
 */
.capabilities {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(22px, 3.4vw, 34px) 0;
}
.capabilities__row {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  flex-wrap: nowrap;
}
.capabilities__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .32em;
  color: var(--ink-soft);
  white-space: nowrap;
  position: relative;
  padding-right: clamp(14px, 2vw, 22px);
  flex: 0 0 auto;
}
.capabilities__eyebrow::after {
  content: "";
  position: absolute; right: 0; top: 50%;
  width: 1px; height: 14px;
  background: var(--border);
  transform: translateY(-50%);
}
.capabilities__list {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.capabilities__list li {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(13px, 1.35vw, 20px);
  color: var(--ink);
  letter-spacing: .005em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  transition: color var(--dur) var(--ease);
}
.capabilities__list li + li::before {
  content: "✺";
  font-style: normal;
  font-size: .6em;
  color: var(--blush);
  margin: 0 clamp(7px, 0.9vw, 14px);
  display: inline-block;
  transform: translateY(-2px);
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.capabilities__list li:hover { color: var(--blush-deep); }
.capabilities__list li:hover + li::before,
.capabilities__list li:has(+ li:hover)::before { color: var(--blush-deep); transform: translateY(-2px) rotate(45deg); }
@media (max-width: 1100px) {
  .capabilities { padding: clamp(24px, 6vw, 36px) 0; }
  .capabilities__row { flex-direction: column; align-items: center; gap: 18px; text-align: center; }
  .capabilities__eyebrow { padding-right: 0; }
  .capabilities__eyebrow::after { display: none; }
  .capabilities__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: clamp(18px, 5vw, 40px);
    row-gap: 14px;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    justify-content: center;
    justify-items: center;
  }
  .capabilities__list li {
    justify-content: center;
    font-size: clamp(17px, 2.4vw, 22px);
    line-height: 1.1;
  }
  /* Drop the desktop interstitial sparkle; give every item its own leading flourish */
  .capabilities__list li + li::before { content: none; margin: 0; }
  .capabilities__list li::before {
    content: "✺";
    font-style: normal;
    font-size: .55em;
    color: var(--blush);
    margin-right: 8px;
    transform: translateY(-2px);
    display: inline-block;
  }
}
@media (max-width: 480px) {
  .capabilities__list { grid-template-columns: 1fr; max-width: 280px; row-gap: 12px; }
  .capabilities__list li { font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .capabilities__list li,
  .capabilities__list li + li::before { transition: none; }
}

/* --------- About --------- */
.about { background: var(--bg); }
.about__grid {
  display: grid; gap: clamp(40px, 6vw, 96px);
  grid-template-columns: 1fr 1.05fr; align-items: center;
}
.about__media { position: relative; }
.about__media-main {
  aspect-ratio: 4/5; overflow: hidden; position: relative;
  border-radius: 2px;
}
.about__media-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.about__media:hover .about__media-main img { transform: scale(1.04); }
.about__media-accent {
  position: absolute; right: -8%; bottom: -10%;
  width: 46%; aspect-ratio: 3/4; overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 8px solid var(--bg);
}
.about__media-accent img { width: 100%; height: 100%; object-fit: cover; object-position: 28% center; }
.about__media-tag {
  position: absolute; top: 24px; left: -28px;
  writing-mode: vertical-rl; transform: rotate(180deg);
  font-size: 10px; letter-spacing: .42em; text-transform: uppercase; color: var(--ink-soft);
}
.about__text h2 {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); font-weight: 400; margin-bottom: 28px;
}
.about__text h2 em { color: var(--blush-deep); }
.about__text p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin-bottom: 18px; }
.about__sig {
  font-family: var(--font-display); font-style: italic; font-size: 36px; color: var(--blush-deep);
  margin-top: 12px;
}
.about__credential {
  display: flex; align-items: center; gap: 18px;
  margin-top: 36px; padding: 18px 22px;
  background: var(--bg-warm); border: 1px solid var(--border);
  border-left: 2px solid var(--blush-deep);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.about__credential:hover { transform: translateY(-2px); border-color: var(--blush); box-shadow: var(--shadow-sm); }
.about__credential-seal {
  width: 44px; height: 44px; flex: none;
  color: var(--blush-deep);
}
.about__credential-body { display: flex; flex-direction: column; gap: 2px; line-height: 1.3; }
.about__credential-body strong {
  font-family: var(--font-sans); font-weight: 600;
  font-size: 14px; letter-spacing: .02em; color: var(--ink);
}
.about__credential-body span {
  font-family: var(--font-display); font-style: italic;
  font-size: 17px; color: var(--blush-deep);
}

.about__stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border);
}
.about__stat .n { font-family: var(--font-display); font-size: 42px; font-style: italic; color: var(--blush-deep); display: block; line-height: 1; }
.about__stat .l { font-size: 10px; letter-spacing: .32em; text-transform: uppercase; color: var(--ink-soft); margin-top: 8px; display: block; }

@media (max-width: 880px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media-tag { left: 12px; top: 12px; writing-mode: horizontal-tb; transform: none; background: var(--bg); padding: 4px 8px; }
  .about__media-accent { right: 0; }
}

/* --------- Services --------- */
.services { background: var(--bg); }
.services__grid {
  display: grid; gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.services__grid--4 { grid-template-columns: repeat(4, 1fr); }
.services__grid--3 { grid-template-columns: repeat(3, 1fr); }
.service {
  background: var(--bg); padding: 48px 36px;
  position: relative; overflow: hidden; min-height: 380px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.service::before {
  content: ""; position: absolute; inset: 0;
  background: var(--blush);
  transform: translateY(100%);
  transition: transform var(--dur) var(--ease);
  z-index: 0;
}
.service:hover { color: #fff; }
.service:hover::before { transform: translateY(0); }
.service > * { position: relative; z-index: 1; }
.service__num { font-family: var(--font-display); font-style: italic; font-size: 18px; opacity: .55; }
.service__title { font-family: var(--font-display); font-size: 32px; font-weight: 400; margin: 16px 0 14px; }
.service__title em { font-style: italic; }
.service__body { font-size: 15px; line-height: 1.7; opacity: .85; }
.service__price {
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  border-top: 1px solid currentColor; padding-top: 18px; margin-top: 28px; opacity: .85;
}
.service__price b { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: 22px; letter-spacing: 0; text-transform: none; }

@media (max-width: 1080px) {
  .services__grid--4 { grid-template-columns: repeat(2, 1fr); }
  .services__grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 560px)  { .services__grid--4 { grid-template-columns: 1fr; } }

/* --------- Portfolio (horizontal scroll carousel) ---------
 * One long row of fixed-width portrait cards that scrolls horizontally.
 * Scroll-snap on each card so finger flicks land cleanly. Bleeds to the
 * right edge of the viewport so the row visibly continues past the
 * gutter, hinting that more work lives off-screen.
 */
.portfolio { background: var(--bg-warm); overflow: hidden; }
.portfolio__grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--pad-x);
  /* Bleed the row to the right viewport edge while keeping content aligned
   * to the wrap on the left. The wrap's max-width already centres things;
   * adding 100vw negative-margin on the right lets the row run to the edge. */
  margin-right: calc(50% - 50vw);
  padding: 4px var(--pad-x) 24px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--blush-deep) transparent;
  -webkit-overflow-scrolling: touch;
}
.portfolio__grid::-webkit-scrollbar { height: 6px; }
.portfolio__grid::-webkit-scrollbar-track { background: transparent; }
.portfolio__grid::-webkit-scrollbar-thumb { background: var(--blush); border-radius: 999px; }
.portfolio__grid::-webkit-scrollbar-thumb:hover { background: var(--blush-deep); }

.portfolio__item {
  position: relative;
  flex: 0 0 auto;
  width: 320px;
  aspect-ratio: 4/5;
  overflow: hidden;
  display: block;
  cursor: zoom-in;
  scroll-snap-align: start;
  border-radius: 4px;
}
@media (max-width: 880px) {
  .portfolio__item { width: 280px; }
}
@media (max-width: 480px) {
  .portfolio__item { width: 240px; }
}
.portfolio__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter var(--dur) var(--ease);
}
.portfolio__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(232, 168, 155, .55), rgba(232, 168, 155, 0) 40%);
  opacity: 0; transition: opacity var(--dur) var(--ease);
  pointer-events: none;
}
.portfolio__item:hover img { transform: scale(1.05); filter: saturate(1.05); }
.portfolio__item:hover::after { opacity: 1; }
.portfolio__caption {
  position: absolute; left: 20px; right: 20px; bottom: 20px;
  font-family: var(--font-display); font-style: italic; font-size: 20px; color: #fff;
  opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  z-index: 2;
}
.portfolio__item:hover .portfolio__caption { opacity: 1; transform: translateY(0); }
/* On touch devices, captions are always visible (no hover state) */
@media (hover: none) {
  .portfolio__caption { opacity: 1; transform: translateY(0); }
  .portfolio__item::after { opacity: .6; }
}

/* Subtle drag-to-scroll hint that fades after first interaction */
.portfolio__hint {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-soft); margin: -12px 0 16px;
  opacity: .8;
}
.portfolio__hint .arrow {
  display: inline-block; width: 28px; height: 1px;
  background: var(--ink-soft); position: relative;
}
.portfolio__hint .arrow::after {
  content: ""; position: absolute; right: 0; top: -2px;
  width: 5px; height: 5px;
  border-right: 1px solid var(--ink-soft);
  border-top: 1px solid var(--ink-soft);
  transform: rotate(45deg);
  animation: portfolio-hint-pulse 2.4s ease-in-out infinite;
}
@keyframes portfolio-hint-pulse {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: .8; }
  50%      { transform: rotate(45deg) translate(3px, -3px); opacity: .4; }
}

/* --------- Moments (video strip) --------- */
.moments { background: var(--bg); padding-top: 0; }
.moments__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 16px;
}
@media (max-width: 880px) { .moments__grid { grid-template-columns: 1fr 1fr; } .moments__cell:last-child { grid-column: span 2; } }
@media (max-width: 560px) { .moments__grid { grid-template-columns: 1fr; } .moments__cell:last-child { grid-column: 1; } }
.moments__cell {
  position: relative; overflow: hidden; aspect-ratio: 4/5;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Per-cell poster fallbacks. CSS background-images bypass the iOS Safari
 * quirk where <video poster> attributes silently fail when Cloudflare
 * Polish reformats the JPEG to WebP on the fly. The poster is always
 * visible until the user explicitly plays the video. */
.moments__cell--mirror { background-image: url('/assets/video/moment-mirror-poster.jpg'); }
.moments__cell--atwork { background-image: url('/assets/video/moment-atwork-poster.jpg'); }
.moments__cell--final  { background-image: url('/assets/video/hero-loop-poster.jpg'); }
.moments__cell--wide { aspect-ratio: 5/6; }
.moments__cell video, .moments__cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), opacity .25s var(--ease);
}
/* Keep the <video> element transparent so the cell's poster
 * background-image shows through. When playing, the video fades in. */
.moments__cell video { opacity: 0; }
.moments__cell.is-playing video { opacity: 1; }
.moments__cell:hover video, .moments__cell:hover img { transform: scale(1.04); }
.moments__cell-label {
  position: absolute; bottom: 16px; left: 20px;
  color: #fff; font-family: var(--font-display); font-style: italic; font-size: 22px;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
  pointer-events: none;
}
.moments__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
  z-index: 2;
}
.moments__play svg {
  width: 56px; height: 56px;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,.55));
}
/* Explicit kill-switches for any legacy pause/polygon artifacts so a
   stale CDN cache cannot bleed through to a confused mid-state UI. */
.moments__play::before,
.moments__play::after { content: none !important; display: none !important; }
.moments__play svg polygon { display: inline !important; }

/* While playing, fully hide the overlay button — no half-state pause icon. */
.moments__cell.is-playing .moments__play {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none !important;
}

/* Touch / no-hover devices: surface the play button as the trigger */
@media (hover: none) {
  .moments__play { opacity: .85; pointer-events: auto; }
}

/* --------- Investment / pricing --------- */
.investment { background: var(--bg); }
.investment__card {
  background: var(--bg-warm); border: 1px solid var(--border);
  padding: clamp(36px, 5vw, 64px); border-radius: 4px;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px);
}
@media (max-width: 880px) { .investment__card { grid-template-columns: 1fr; } }
.investment__intro h3 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 44px); font-weight: 400; margin-bottom: 18px; }
.investment__intro p { color: var(--ink-soft); }
.investment__list { list-style: none; padding: 0; margin: 0; }
.investment__list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 18px 0; border-bottom: 1px dashed var(--border);
}
.investment__list li:last-child { border-bottom: 0; }
.investment__list .name { font-size: 14px; letter-spacing: .04em; }
.investment__list .name small { display: block; color: var(--ink-soft); font-size: 12px; margin-top: 2px; letter-spacing: 0; }
.investment__list .price {
  font-family: var(--font-display); font-style: italic; font-size: 28px; color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 16px;
}
.investment__list .name { padding-right: 12px; min-width: 0; }
.investment__note {
  margin-top: 24px; padding: 18px 22px; background: var(--blush-soft);
  font-size: 13px; color: var(--ink); line-height: 1.55;
  border-left: 2px solid var(--blush-deep);
}
.investment__fineprint {
  font-size: 12px; color: var(--ink-soft); line-height: 1.65;
  padding: 0 22px;
}
.investment__fineprint p { margin: 0 0 6px; }
.investment__fineprint p:last-child { margin-bottom: 0; }
.investment__fineprint sup { color: var(--blush-deep); font-weight: 600; margin-right: 2px; }
.investment__list .price sup,
.service__price sup { color: var(--blush-deep); font-size: .7em; vertical-align: super; margin-left: 1px; }

/* --------- Process --------- */
.process { background: var(--bg-warm); }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
@media (max-width: 880px) { .process__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .process__grid { grid-template-columns: 1fr; } }
.process__step { background: var(--bg-warm); padding: 40px 28px; transition: background var(--dur) var(--ease); }
.process__step:hover { background: var(--bg); }
.process__num { font-family: var(--font-display); font-style: italic; font-size: 56px; color: var(--blush-deep); line-height: 1; }
.process__title { font-family: var(--font-display); font-size: 24px; margin: 20px 0 12px; }
.process__body { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* --------- FAQ --------- */
.faq { background: var(--bg); }
.faq__list { max-width: 920px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0;
  font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 28px); color: var(--ink);
  transition: color var(--dur-fast) var(--ease);
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none; user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }
.faq__q * { cursor: pointer; pointer-events: none; }
.faq__q:hover { color: var(--blush-deep); }
.faq__q:hover .ic { border-color: var(--blush); color: var(--blush-deep); }
.faq__q .ic {
  width: 32px; height: 32px; border: 1px solid var(--ink-faint); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; flex: none;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  cursor: pointer;
}
.faq__item[open] .faq__q .ic { transform: rotate(45deg); background: var(--blush); border-color: var(--blush); color: #fff; }
.faq__a { padding: 0 0 28px; color: var(--ink-soft); max-width: 70ch; font-size: 16px; line-height: 1.75; }

/* --------- Journal promo (sits between FAQ and Book) --------- */
.journal-promo { padding: clamp(48px, 7vw, 96px) 0; background: var(--bg); }
.journal-promo__card {
  max-width: 1080px; margin: 0 auto;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(36px, 5vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.journal-promo__card::before {
  /* faint blush light in the corner */
  content: "";
  position: absolute; top: -40%; right: -20%;
  width: 60%; height: 140%;
  background: radial-gradient(closest-side, rgba(232, 168, 155, .35), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.journal-promo__card > * { position: relative; z-index: 1; }
.journal-promo__card h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(34px, 4.5vw, 56px);
  margin: 14px 0 16px;
}
.journal-promo__card h2 em { font-style: italic; color: var(--blush-deep); }
.journal-promo__card .lead {
  max-width: 640px; margin: 0 auto 36px;
  color: var(--ink-soft); font-size: 16px; line-height: 1.7;
}
.journal-promo__topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 880px;
  margin: 0 auto 36px;
  text-align: left;
}
@media (max-width: 720px) {
  .journal-promo__topics { grid-template-columns: 1fr; }
}
.journal-promo__topic {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px 22px;
  text-decoration: none;
  color: var(--ink);
  transition: transform var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}
.journal-promo__topic:hover {
  transform: translateY(-2px);
  border-color: var(--blush-deep);
  box-shadow: 0 12px 28px rgba(42, 39, 36, .08);
}
.journal-promo__topic-eyebrow {
  display: block;
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--blush-deep); margin-bottom: 8px; font-weight: 500;
}
.journal-promo__topic-title {
  display: block;
  font-family: var(--font-display);
  font-size: 18px; line-height: 1.35; font-weight: 500;
  color: var(--ink);
}
.journal-promo__cta { display: flex; justify-content: center; }
.journal-promo__cta .arrow {
  font-family: var(--font-display); font-size: 20px;
  transition: transform var(--dur-fast) var(--ease);
}
.journal-promo__cta .btn:hover .arrow { transform: translateX(4px); }

/* --------- Booking form --------- */
.book {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
  /* The previous section (FAQ) already supplies generous bottom breathing
   * room via its own padding. The default `padding: var(--section-y) 0` on
   * sections stacked two big paddings on top of each other, leaving an
   * uncomfortable gap before the "Let's begin" header. Trim the top so the
   * combined cushion reads as one deliberate breath, not a wide chasm. */
  padding-top: clamp(36px, 5vw, 72px);
}
/* The header inside the book section also doesn't need a giant bottom
 * margin — its surrounding form already has its own internal padding. */
.book .section-head { margin-bottom: clamp(28px, 3vw, 56px); }
.book__wrap {
  max-width: 920px; margin: 0 auto;
  background: var(--bg); border: 1px solid var(--border);
  padding: clamp(28px, 4vw, 56px);
  box-shadow: var(--shadow-md);
}
.book__progress {
  display: flex; gap: 8px; margin-bottom: 36px;
}
.book__progress span {
  flex: 1; height: 2px; background: var(--border); border-radius: 1px; position: relative; overflow: hidden;
}
.book__progress span::after {
  content: ""; position: absolute; inset: 0; background: var(--blush-deep);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.book__progress span.is-done::after { transform: scaleX(1); }
.book__progress span.is-current::after { transform: scaleX(.6); }

.book__step { display: none; }
.book__step.is-active { display: block; animation: rise .55s var(--ease-out); }

/* Step 4 — "what happens next" panel */
.next-steps {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 22px 26px;
  margin: 28px 0 8px;
}

/* Success state after booking submit */
.book__success { text-align: center; padding: 32px 0 16px; }
.book__success-mark {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  color: var(--blush-deep);
  animation: success-pop .6s cubic-bezier(.34, 1.4, .64, 1) both;
}
.book__success h3 { margin-bottom: 14px; }
@keyframes success-pop {
  0%   { opacity: 0; transform: scale(.6); }
  100% { opacity: 1; transform: scale(1); }
}
.book__progress.is-complete span::after { transform: scaleX(1) !important; background: var(--blush-deep); }

.book__step-eyebrow { font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--blush-deep); margin-bottom: 10px; }
.book__step h3 { font-family: var(--font-display); font-size: clamp(28px, 3.4vw, 40px); font-weight: 400; margin-bottom: 8px; }
.book__step p.help { color: var(--ink-soft); margin-bottom: 28px; }

.field { margin-bottom: 22px; }
.field label {
  display: block; font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 8px; font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 2px;
  font-size: 15px; transition: border var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--blush-deep); background: #fff;
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 540px) { .field--row { grid-template-columns: 1fr; } }
.field .hint { font-size: 12px; color: var(--ink-soft); margin-top: 6px; }

.opt-grid { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .opt-grid { grid-template-columns: 1fr; } }
.opt {
  position: relative; cursor: pointer;
  padding: 22px 24px; border: 1px solid var(--border); border-radius: 2px;
  background: var(--bg);
  transition: border var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt:hover { border-color: var(--blush-deep); transform: translateY(-1px); }
.opt input:checked ~ .opt__body { color: var(--ink); }
.opt:has(input:checked) { border-color: var(--blush-deep); background: var(--blush-soft); }
.opt__title { font-family: var(--font-display); font-size: 22px; font-style: italic; }
.opt__sub { font-size: 13px; color: var(--ink-soft); margin-top: 6px; }
.opt__price { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; margin-top: 12px; color: var(--ink); }

.party-add { display: flex; align-items: center; gap: 14px; margin-top: 14px; }
.party-add button {
  width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 50%;
  font-size: 18px; transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.party-add button:hover { background: var(--blush); color: #fff; border-color: var(--blush); }
.party-add .count {
  font-family: var(--font-display); font-style: italic; font-size: 36px; min-width: 60px; text-align: center;
}

.summary {
  background: var(--bg-warm); border: 1px solid var(--border); padding: 22px 24px;
  margin: 24px 0; border-radius: 2px;
}
.summary__row { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; font-size: 14px; }
.summary__row.total { padding-top: 14px; border-top: 1px solid var(--border); margin-top: 8px; }
.summary__row.total .v { font-family: var(--font-display); font-style: italic; font-size: 28px; }
.summary__row.fee .v { color: var(--blush-deep); }

.contract-box {
  border: 1px solid var(--border); padding: 24px;
  max-height: 360px; overflow-y: auto; background: var(--bg);
  font-size: 14px; line-height: 1.65; color: var(--ink-soft);
}
.contract-box h4 { font-family: var(--font-display); font-style: italic; color: var(--ink); font-size: 18px; margin: 18px 0 8px; }
.contract-box ol { padding-left: 18px; }
.contract-box li { margin-bottom: 4px; }

.sig-block { margin-top: 24px; }
.sig-pad {
  border: 1px solid var(--border); border-radius: 2px; background: var(--bg);
  height: 160px; width: 100%; cursor: crosshair; touch-action: none;
}
.sig-clear { display: inline-block; margin-top: 8px; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-soft); cursor: pointer; }
.sig-clear:hover { color: var(--blush-deep); }

.consent {
  display: flex; gap: 12px; align-items: flex-start; padding: 16px;
  background: var(--bg-warm); border: 1px solid var(--border); border-radius: 2px;
  margin: 20px 0;
}
.consent input { margin-top: 4px; accent-color: var(--blush-deep); width: 18px; height: 18px; flex: none; }
.consent label { font-size: 14px; color: var(--ink); line-height: 1.55; }

.book__nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 14px; flex-wrap: wrap; }
.book__error { font-size: 13px; color: #B23A48; padding: 10px 14px; background: #FBE5E1; border-left: 2px solid #B23A48; margin-bottom: 18px; display: none; }
.book__error.is-shown { display: block; }

/* --------- Footer --------- */
.footer {
  background: var(--ink); color: var(--bg); padding: 96px var(--pad-x) 48px;
}
.footer__wrap { max-width: var(--max); margin: 0 auto; }
/* Reserve-your-date CTA pinned to the top of the footer, identical pill to
 * the hero CTA. Carries the same breathing halo + ring-pulse animation. */
.footer__cta {
  display: flex; justify-content: center;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 48px;
}
.footer__cta .btn--blush {
  position: relative;
  isolation: isolate;
  animation: cta-breathe 2.8s ease-in-out 0s infinite;
}
.footer__cta .btn--blush::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--blush);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  animation: cta-ring-pulse 2.8s ease-out .4s infinite;
}
.footer__cta .btn--blush::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(232, 168, 155, .55) 0%, rgba(232, 168, 155, 0) 70%);
  opacity: 0;
  filter: blur(8px);
  z-index: -2;
  pointer-events: none;
  animation: cta-halo 2.8s ease-in-out 0s infinite;
}
.footer__cta .btn--blush:hover,
.footer__cta .btn--blush:hover::before,
.footer__cta .btn--blush:hover::after { animation-play-state: paused; }

.footer__top { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,.12); }
@media (max-width: 720px) { .footer__top { grid-template-columns: 1fr; gap: 32px; } }
.footer__col h5 { font-size: 11px; letter-spacing: .32em; text-transform: uppercase; font-weight: 500; margin: 0 0 18px; opacity: .7; }
.footer__col a, .footer__col p { display: block; font-size: 14px; opacity: .9; margin-bottom: 8px; }
.footer__col a { transition: color var(--dur-fast) var(--ease); }
.footer__col a:hover { color: var(--blush); }
.footer__inquiry {
  margin-top: 14px !important;
  font-size: 12px !important;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blush) !important;
  border-bottom: 1px solid rgba(232, 168, 155, .35);
  padding-bottom: 6px;
  display: inline-block !important;
  width: auto !important;
}
.footer__inquiry:hover { color: #fff !important; border-color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; padding-top: 32px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; opacity: .6; gap: 18px; flex-wrap: wrap; }
.footer__signature { text-transform: none; letter-spacing: .02em; font-size: 12px; }
.footer__signature a { color: var(--blush); transition: color var(--dur-fast) var(--ease); }
.footer__signature a:hover { color: #fff; }

/* --------- Reveal animation --------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* --------- Success / cancel --------- */
.flashpage { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; background: var(--bg); }
.flashpage__card { max-width: 560px; }
.flashpage h1 { font-family: var(--font-display); font-size: clamp(48px, 7vw, 84px); font-style: italic; margin-bottom: 16px; }
.flashpage p { color: var(--ink-soft); margin-bottom: 24px; }

/* --------- Journal — listing & article --------- */
.journal-hero {
  padding: 180px var(--pad-x) 80px;
  background: var(--bg-warm);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.journal-hero h1 { font-family: var(--font-display); font-size: clamp(48px, 8vw, 96px); font-weight: 400; line-height: 1; }
.journal-hero h1 em { color: var(--blush-deep); }
.journal-hero p { color: var(--ink-soft); max-width: 56ch; margin: 24px auto 0; }

.journal-grid {
  max-width: var(--max); margin: 0 auto;
  padding: var(--section-y) var(--pad-x);
  display: grid; gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.journal-card {
  display: flex; flex-direction: column;
  background: var(--bg); border: 1px solid var(--border);
  padding: 36px 32px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.journal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blush); }
.journal-card .eyebrow { color: var(--blush-deep); }
.journal-card h2 {
  font-family: var(--font-display); font-size: 28px; font-weight: 400;
  margin: 16px 0 14px; line-height: 1.15;
}
.journal-card h2 em { color: var(--blush-deep); }
.journal-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; flex-grow: 1; }
.journal-card .btn-text { margin-top: 18px; align-self: flex-start; }

.article {
  max-width: 760px; margin: 0 auto;
  padding: 160px var(--pad-x) 96px;
}
.article__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 32px;
  transition: color var(--dur-fast) var(--ease);
}
.article__back:hover { color: var(--blush-deep); }
.article__meta { font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 18px; }
.article h1 {
  font-family: var(--font-display); font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 400; line-height: 1.08; letter-spacing: -.01em; margin: 0 0 24px;
}
.article h1 em { font-style: italic; color: var(--blush-deep); }
.article__lede {
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.55;
  color: var(--ink); margin-bottom: 40px;
  padding: 24px 28px; background: var(--blush-soft);
  border-left: 3px solid var(--blush-deep);
}
.article__body { font-size: 17px; line-height: 1.78; color: var(--ink); }
.article__body h2 {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(26px, 3vw, 36px); font-weight: 400;
  margin: 56px 0 18px; color: var(--ink);
}
.article__body h3 {
  font-size: 18px; font-weight: 600; letter-spacing: -.005em;
  margin: 36px 0 12px;
}
.article__body p { margin: 0 0 1.1em; color: var(--ink-soft); }
.article__body strong { color: var(--ink); }
.article__body em { color: var(--ink); font-style: italic; }
.article__body ul, .article__body ol { padding-left: 22px; color: var(--ink-soft); margin: 0 0 1.4em; }
.article__body li { margin-bottom: .5em; }
.article__body a { color: var(--blush-deep); border-bottom: 1px solid var(--blush); transition: color var(--dur-fast) var(--ease); }
.article__body a:hover { color: var(--ink); }
.article__body blockquote {
  margin: 32px 0; padding: 16px 24px;
  border-left: 2px solid var(--blush); background: var(--bg-warm);
  font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--ink);
}
.article__cta {
  margin-top: 64px; padding: 40px; text-align: center;
  background: var(--bg-warm); border: 1px solid var(--border);
}
.article__cta h3 { font-family: var(--font-display); font-size: 28px; font-weight: 400; margin-bottom: 8px; }
.article__cta p { color: var(--ink-soft); margin-bottom: 20px; }
.article__related {
  margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--border);
}
.article__related h4 { font-size: 11px; letter-spacing: .32em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 18px; }
.article__related a {
  display: block; padding: 14px 0; border-bottom: 1px solid var(--border);
  font-family: var(--font-display); font-size: 20px; color: var(--ink);
  transition: color var(--dur-fast) var(--ease), padding var(--dur-fast) var(--ease);
}
.article__related a:hover { color: var(--blush-deep); padding-left: 8px; }

/* Journal controls — search + filter pills */
.journal-controls {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 32px var(--pad-x);
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(253, 251, 249, .94);
}
.journal-controls__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-direction: column; gap: 18px;
}
.journal-search {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px; background: var(--bg); border: 1px solid var(--border);
  border-radius: 999px; max-width: 560px; margin: 0 auto; width: 100%;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.journal-search:focus-within { border-color: var(--blush-deep); box-shadow: var(--shadow-sm); }
.journal-search svg { color: var(--ink-soft); flex: none; }
.journal-search input {
  flex: 1; border: 0; background: none; padding: 0;
  font-size: 15px; color: var(--ink); outline: none;
}
.journal-search input::placeholder { color: var(--ink-faint); }
#journal-search-clear {
  display: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg-warm); color: var(--ink-soft);
  font-size: 18px; line-height: 1;
  align-items: center; justify-content: center;
}
#journal-search-clear:hover { background: var(--blush); color: #fff; }
.journal-filters {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}
.filter-pill {
  padding: 10px 18px; border: 1px solid var(--border); background: var(--bg);
  border-radius: 999px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  color: var(--ink-soft);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.filter-pill:hover { border-color: var(--blush-deep); color: var(--ink); }
.filter-pill.is-active {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}
.journal-count { text-align: center; font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--ink-soft); }
.journal-count span { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--blush-deep); margin-right: 4px; letter-spacing: 0; }

.journal-empty {
  display: none;
  max-width: 480px; margin: 0 auto;
  padding: 80px 24px; text-align: center;
}
.journal-empty p { color: var(--ink-soft); }

.journal-card__pillar {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--blush);
  color: #fff;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  border-radius: 2px;
  font-weight: 600;
}

/* Article breadcrumb */
.article__breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 14px;
}
.article__breadcrumb a { color: var(--ink-soft); transition: color var(--dur-fast) var(--ease); }
.article__breadcrumb a:hover { color: var(--blush-deep); }
.article__breadcrumb span { color: var(--ink-faint); }

/* Article FAQ section */
.article__faq {
  margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--border);
}
.article__faq h2 {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(26px, 3vw, 36px); font-weight: 400;
  margin-bottom: 20px;
}

/* --------- Sticky mobile CTA ---------
 * Hidden on desktop, hidden on first paint until the hero has scrolled
 * past, hidden again while the booking form is in view. Bottom-anchored,
 * full-width on phones, capped on tablets.
 */
.sticky-cta {
  display: none;
  position: fixed;
  /* Centered pill, matching the hero CTA's proportions (not a bottom bar). */
  left: 50%;
  bottom: calc(8px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  align-items: center; justify-content: center; gap: 12px;
  padding: 16px 32px;
  font-family: var(--font-sans);
  font-size: 12px; letter-spacing: .26em; text-transform: uppercase; font-weight: 500;
  text-decoration: none;
  color: #FDFBF9;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(42, 39, 36, .28), 0 2px 6px rgba(42, 39, 36, .16);
  opacity: 0;
  transform: translate(-50%, 160%);
  transition: opacity .35s var(--ease), transform .45s cubic-bezier(.34, 1.2, .64, 1), background var(--dur-fast) var(--ease);
  white-space: nowrap;
  max-width: calc(100vw - 32px);
}
.sticky-cta__text { white-space: nowrap; }
.sticky-cta__arrow {
  font-family: var(--font-display);
  font-size: 20px; line-height: 1;
  transform: translateY(-1px);
  transition: transform var(--dur-fast) var(--ease);
}
.sticky-cta:hover { background: var(--blush-deep); }
.sticky-cta:hover .sticky-cta__arrow { transform: translateX(3px) translateY(-1px); }
.sticky-cta.is-visible { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 880px) {
  .sticky-cta { display: inline-flex; }
}
/* Phones: keep the same centred pill, just dial the padding slightly so
 * "RESERVE YOUR DATE" stays on a single line on the narrowest devices. */
@media (max-width: 480px) {
  .sticky-cta { padding: 14px 22px; font-size: 11px; letter-spacing: .2em; gap: 10px; }
}
@media (max-width: 360px) {
  .sticky-cta { padding: 13px 18px; font-size: 10px; letter-spacing: .18em; gap: 8px; }
  .sticky-cta__arrow { font-size: 18px; }
}

/* --------- Lightbox ---------
 * Full-bleed image viewer for portfolio photos. Backdrop is a deep, warm
 * near-black so the soft cream tones in the photography hold their warmth.
 * Caption sits below the image in italic serif to match the rest of the
 * editorial typography. Arrows let users cycle through the portfolio
 * without re-opening; ESC and backdrop tap dismiss.
 */
.lightbox {
  position: fixed; inset: 0; z-index: 1100;
  display: none;
  align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.lightbox[aria-hidden="false"] { display: flex; }
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(28, 22, 20, .94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: lightbox-fade .28s var(--ease, ease-out) both;
}
.lightbox__figure {
  position: relative; z-index: 2;
  margin: 0;
  max-width: min(1280px, 92vw);
  max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  animation: lightbox-rise .36s var(--ease, ease-out) both;
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(88vh - 56px);
  object-fit: contain;
  display: block;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45);
  background: var(--bg-warm, #F4EDE6);
}
.lightbox__caption {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, .88);
  letter-spacing: .01em;
  text-align: center;
}
.lightbox__close,
.lightbox__nav {
  position: absolute; z-index: 3;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--dur, .25s) var(--ease, ease), border-color var(--dur, .25s) var(--ease, ease), transform var(--dur, .25s) var(--ease, ease);
  -webkit-tap-highlight-color: transparent;
}
.lightbox__close { top: clamp(14px, 2.5vw, 28px); right: clamp(14px, 2.5vw, 28px); width: 44px; height: 44px; border-radius: 999px; }
.lightbox__nav   { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 999px; }
.lightbox__nav--prev { left: clamp(8px, 2vw, 28px); }
.lightbox__nav--next { right: clamp(8px, 2vw, 28px); }
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(232, 168, 155, .35); border-color: rgba(232, 168, 155, .6); }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__nav:focus-visible,
.lightbox__close:focus-visible { outline: 2px solid var(--blush, #E8A89B); outline-offset: 3px; }
@media (max-width: 560px) {
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav svg { width: 22px; height: 22px; }
  .lightbox__close { width: 40px; height: 40px; }
}
@keyframes lightbox-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes lightbox-rise {
  from { opacity: 0; transform: translateY(8px) scale(.985); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

/* --------- Inquiry modal --------- */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal[aria-hidden="false"] { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(42, 39, 36, .58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  animation: modal-fade-in .25s var(--ease) forwards;
}
.modal__panel {
  position: relative;
  width: min(540px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 48px 40px 36px;
  box-shadow: 0 30px 80px rgba(42, 39, 36, .25);
  opacity: 0;
  transform: translateY(12px) scale(.98);
  animation: modal-pop-in .35s cubic-bezier(.34, 1.2, .64, 1) .05s forwards;
}
@keyframes modal-fade-in { to { opacity: 1; } }
@keyframes modal-pop-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal__close {
  position: absolute; top: 12px; right: 14px;
  width: 36px; height: 36px;
  background: transparent; border: none; cursor: pointer;
  font-size: 28px; line-height: 1; color: var(--ink-soft);
  border-radius: 50%;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.modal__close:hover { background: var(--bg-warm); color: var(--ink); }
.modal__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(30px, 4vw, 38px);
  font-weight: 500;
  margin: 0 0 10px;
  color: var(--ink);
}
.modal__sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 24px;
  line-height: 1.55;
}
.modal__form { display: flex; flex-direction: column; gap: 16px; }
.modal__row { display: flex; flex-direction: column; gap: 6px; }
.modal__row label {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
}
.modal__row input,
.modal__row textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.modal__row textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.modal__row input:focus,
.modal__row textarea:focus {
  outline: none;
  border-color: var(--blush-deep);
  box-shadow: 0 0 0 3px rgba(208, 140, 124, .15);
}
.modal__row.is-error input,
.modal__row.is-error textarea { border-color: #c0392b; }
.modal__actions {
  display: flex; justify-content: flex-end; gap: 12px;
  margin-top: 8px;
}
.modal__actions .btn { padding: 12px 22px; font-size: 12px; }
.modal__status {
  margin: 0; min-height: 1.4em;
  font-size: 13px; color: var(--ink-soft); text-align: center;
}
.modal__status.is-success { color: var(--blush-deep); font-weight: 500; }
.modal__status.is-error   { color: #c0392b; }

body.modal-open { overflow: hidden; }

@media (max-width: 480px) {
  .modal__panel { padding: 40px 22px 28px; border-radius: 12px; }
  .modal__actions { flex-direction: column-reverse; }
  .modal__actions .btn { width: 100%; justify-content: center; }
}

/* --------- Reduced motion --------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .hero__media video, .hero__media img { animation: none; transform: none; }
  .marquee__track { animation: none; }
}
