/* ==========================================================================
   fayeconstant.com  v2
   Type system UNCHANGED (Faye approved): Fraunces display + Karla body.
   v2 shifts everything else warmer, softer, more playful:
   - palette pushed toward sorbet (apricot + wisteria promoted from bit-part)
   - arch-topped imagery (the feminine editorial move that is not pink)
   - blurred gradient blobs + scalloped edges for softness
   - rounder radii, bento layout energy, stagger motion
   Editorial restraint kept: hairline rules, real hierarchy, generous space.
   ========================================================================== */

:root {
  --ink:        #2A1226;   /* deepest. footer only */
  --ink-lift:   #4A2343;   /* lifted plum for booking/studio/cta. 1.33x separation from --ink so two dark sections never merge. cream on it = 11.84 AA */
  --ink-soft:   #5A3C52;
  --ink-faint:  #76646E;   /* darkened: 2.90 -> 4.54 on cream-deep = AA */
  --cream:      #FBF3E9;   /* warmer butter */
  --cream-deep: #F6E7D8;   /* peach-tinted */
  --blush:      #F2D4CE;   /* soft clay, warmth not pink-candy */
  --persimmon:  #E14B36;   /* LARGE display type only. 3.63 on cream = AA large, not AA small */
  --persimmon-t: #C6422F;  /* small text + eyebrows. 4.52 on cream = AA */   /* primary accent */
  --apricot:    #F7B172;   /* sorbet secondary */
  --wisteria:   #B49BDB;   /* the playful note, now actually present */
  --line:       rgba(42, 18, 38, 0.13);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Karla', system-ui, sans-serif;

  --wrap: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section: clamp(4rem, 11vw, 9rem);

  --arch: 999px 999px 20px 20px;
  --r-lg: 28px;
  --r-md: 18px;
}

*, *::before, *::after { box-sizing: border-box; }

/* overflow-x: clip (not hidden). The off-canvas mobile nav is position:fixed and
   translated past the right edge, which extends scrollable overflow. `hidden` on
   body does NOT clip fixed elements; `clip` on html does. Without this every page
   has 304px of horizontal scroll at a 390px viewport. Verified. */
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* paper grain */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 3;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.wrap { width: min(100% - var(--gutter) * 2, var(--wrap)); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream);
  padding: 0.75rem 1.25rem; z-index: 999; text-decoration: none;
}
.skip:focus { left: 1rem; top: 1rem; }

:focus-visible { outline: 2.5px solid var(--persimmon); outline-offset: 3px; border-radius: 4px; }

/* ---------- soft gradient blobs (atmosphere) ---------- */
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: 0.5;
  pointer-events: none; z-index: 0;
  will-change: transform;
}
.blob--a { width: 46vw; height: 46vw; max-width: 560px; max-height: 560px;
  background: radial-gradient(circle at 30% 30%, var(--apricot), transparent 68%);
  top: -8%; right: -10%; animation: float1 22s ease-in-out infinite; }
.blob--b { width: 38vw; height: 38vw; max-width: 460px; max-height: 460px;
  background: radial-gradient(circle at 60% 40%, var(--wisteria), transparent 68%);
  bottom: -14%; left: -10%; animation: float2 27s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-26px, 22px) scale(1.06); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(22px, -20px) scale(1.05); } }

/* ---------- Type ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 90, 'WONK' 1, 'opsz' 100;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--persimmon-t); margin: 0 0 1.25rem;
}
.eyebrow--quiet { color: var(--ink-faint); }

.lede {
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.4rem);
  line-height: 1.55; color: var(--ink-soft); max-width: 54ch;
}
p { max-width: 62ch; }
a { color: inherit; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 243, 233, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--line); }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; }

.brand {
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 90, 'WONK' 1, 'opsz' 40;
  font-weight: 600; font-size: 1.2rem;
  letter-spacing: -0.02em; text-decoration: none; white-space: nowrap;
}
.brand em { font-style: normal; color: var(--persimmon); }

.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-menu a {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  text-decoration: none; color: var(--ink-soft);
  position: relative; padding: 0.25rem 0; transition: color 0.2s;
}
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--persimmon);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-menu a:hover { color: var(--ink); }
.nav-menu a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-menu a[aria-current='page'] { color: var(--ink); font-weight: 700; }
.nav-menu a[aria-current='page']::after { transform: scaleX(1); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem; color: var(--ink); }
.nav-toggle svg { display: block; }

@media (max-width: 820px) {
  .nav-toggle { display: block; position: relative; z-index: 70; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto;
    width: min(78vw, 320px);
    background: var(--ink);
    border-radius: var(--r-lg) 0 0 var(--r-lg);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 0.35rem; padding: 2rem var(--gutter);
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 60;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a {
    font-family: var(--font-display);
    font-variation-settings: 'SOFT' 90, 'WONK' 1, 'opsz' 40;
    font-size: 1.85rem; color: var(--cream-deep); padding: 0.5rem 0;
  }
  .nav-menu a[aria-current='page'] { color: var(--apricot); }
  .nav-menu a::after { display: none; }
  .nav-toggle[aria-expanded='true'] { color: var(--cream); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  padding: 1rem 1.75rem;
  border: 1.5px solid var(--ink); border-radius: 999px;
  background: var(--ink); color: var(--cream);
  transition: transform 0.25s cubic-bezier(0.34, 1.3, 0.64, 1), background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { background: var(--persimmon-t); border-color: var(--persimmon-t); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.btn--light { background: var(--cream); border-color: var(--cream); color: var(--ink); }
.btn--light:hover { background: var(--apricot); border-color: var(--apricot); color: var(--ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ---------- Reveal (staggered) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.stagger.visible > * { opacity: 1; transform: none; }
.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.13s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.21s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.29s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.37s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .stagger > * { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .blob { animation: none; }
}

/* ---------- Photo frames + slots ---------- */
.frame { position: relative; overflow: hidden; background: var(--cream-deep); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--arch { border-radius: var(--arch); }
.frame--soft { border-radius: var(--r-lg); }

.slot {
  position: relative;
  background:
    repeating-linear-gradient(45deg, transparent, transparent 11px, rgba(225, 75, 54, 0.05) 11px, rgba(225, 75, 54, 0.05) 22px),
    var(--cream-deep);
  border: 1.5px dashed rgba(225, 75, 54, 0.45);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.25rem; gap: 0.4rem; overflow: hidden;
}
.slot--arch { border-radius: var(--arch); }
.slot--soft { border-radius: var(--r-lg); }
.slot__label {
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 90, 'WONK' 1, 'opsz' 40;
  font-size: clamp(0.95rem, 0.9rem + 0.3vw, 1.15rem);
  font-weight: 600; line-height: 1.15;
}
.slot__spec { font-size: 0.66rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; line-height: 1.5; }
.slot__file {
  font-family: 'SF Mono', 'Cascadia Code', Consolas, monospace;
  font-size: 0.63rem; color: var(--persimmon-t);
  background: rgba(225, 75, 54, 0.09);
  padding: 0.15rem 0.45rem; border-radius: 4px; word-break: break-all;
}
.ratio-23 { aspect-ratio: 2 / 3; }
.ratio-45 { aspect-ratio: 4 / 5; }
.ratio-916 { aspect-ratio: 9 / 16; }
.ratio-32 { aspect-ratio: 3 / 2; }

/* real stills from the skincare shoot, native 3:2 */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-top: 2rem; }
.gallery > * { border-radius: 10px; }
@media (max-width: 860px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.stills { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.stills > * { border-radius: var(--r-md); }
@media (max-width: 760px) { .stills { grid-template-columns: 1fr; } }

/* ---------- Scalloped divider ---------- */
.scallop { display: block; width: 100%; height: 26px; position: relative; z-index: 2; color: var(--ink); }
.scallop svg { display: block; width: 100%; height: 100%; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink); color: var(--cream-deep);
  padding: clamp(3rem, 7vw, 5rem) 0 2.5rem;
  position: relative; z-index: 2; overflow: hidden;
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; position: relative; z-index: 2; }
@media (max-width: 760px) { .footer-top { grid-template-columns: 1fr; gap: 2.5rem; } }

.footer-title { font-size: clamp(2rem, 1.4rem + 3vw, 3.6rem); color: var(--cream); margin-bottom: 1.25rem; }
.footer-title em { font-style: normal; color: var(--apricot); }

.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.footer-links a { color: var(--cream-deep); text-decoration: none; font-size: 0.92rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--apricot); }

.footer-bottom {
  margin-top: 4rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(251, 243, 233, 0.15);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: 0.75rem; color: var(--ink-faint); position: relative; z-index: 2;
}

/* ---------- Home ---------- */
.hero { padding: clamp(3rem, 8vw, 6rem) 0 var(--section); position: relative; z-index: 2; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: end; position: relative; z-index: 2; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; align-items: start; } }

.hero-name { font-size: clamp(3.4rem, 1.5rem + 10vw, 9.5rem); line-height: 0.86; letter-spacing: -0.045em; margin-bottom: 1.5rem; }
.hero-name span { display: block; }
.hero-name .n2 { padding-left: 0.14em; color: var(--persimmon); }

.hero-crafts {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 0.9rem;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink-soft); margin-bottom: 2rem;
}
.hero-crafts i { font-style: normal; color: var(--wisteria); font-size: 1.2rem; line-height: 0; }

.hero-media { position: relative; max-width: 400px; margin-left: auto; width: 100%; }
@media (max-width: 900px) { .hero-media { margin-left: 0; max-width: 330px; } }

/* rotated sticker badge */
.sticker {
  position: absolute; z-index: 4; right: -14px; top: 18px;
  display: grid; place-items: center; text-align: center;
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--wisteria); color: var(--ink);
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 90, 'WONK' 1, 'opsz' 20;
  font-size: 0.7rem; font-weight: 600; line-height: 1.2;
  transform: rotate(-11deg);
  box-shadow: 0 10px 26px rgba(42, 18, 38, 0.16);
}
@media (max-width: 900px) { .sticker { width: 80px; height: 80px; font-size: 0.62rem; right: -8px; } }

.rule-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.1rem 0; overflow: hidden; position: relative; z-index: 2; background: var(--blush); }
.rule-strip__inner {
  display: flex; gap: 3rem; width: max-content;
  animation: drift 34s linear infinite;
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 90, 'WONK' 1, 'opsz' 40;
  font-size: 1.05rem; color: var(--ink-soft); white-space: nowrap;
}
.rule-strip__inner b { font-weight: 600; color: var(--ink); }
@keyframes drift { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .rule-strip__inner { animation: none; } }

.about { padding: var(--section) 0; position: relative; z-index: 2; }
.about-grid { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: clamp(2rem, 5vw, 5rem); }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.about h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem); }
.about-body p + p { margin-top: 1.35rem; }
.about-body p:first-child { margin-top: 0; }

/* bento entry cards */
.entries { padding-bottom: var(--section); position: relative; z-index: 2; }
.entry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
@media (max-width: 900px) { .entry-grid { grid-template-columns: 1fr; } }

.entry {
  display: block; text-decoration: none;
  border-radius: var(--r-lg);
  padding: 0 0 1.5rem;
  overflow: hidden;
  background: var(--cream-deep);
  border: 1px solid transparent;
  position: relative; overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s, background 0.35s;
}
.entry:nth-child(2) { background: var(--blush); }
.entry:nth-child(3) { background: color-mix(in srgb, var(--wisteria) 26%, var(--cream)); }
.entry:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(42, 18, 38, 0.13); }
.entry__media { display: block; width: 100%; aspect-ratio: 4/5; overflow: hidden; background: var(--cream-deep); }
.entry__media--wide { aspect-ratio: 3/2; }
.entry__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.entry:hover .entry__media img { transform: scale(1.045); }
.entry__body { padding: 1.5rem 1.75rem 0.5rem; display: block; }
.entry__head { display: flex; align-items: baseline; gap: 0.7rem; margin: 0.15rem 0 0.55rem; }
.entry__num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; color: var(--ink-faint); }
.entry__title {
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 90, 'WONK' 1, 'opsz' 72;
  font-size: clamp(1.6rem, 1.3rem + 1.1vw, 2.05rem);
  font-weight: 600; letter-spacing: -0.025em;
  margin: 0;
  display: flex; align-items: center; gap: 0.5rem;
}
.entry__title .arrow { transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1); font-size: 0.7em; }
.entry:hover .entry__title .arrow { transform: translateX(7px); }
.entry__desc { font-size: 0.9rem; color: var(--ink-soft); margin: 0 0 1rem; max-width: 34ch; }
.entry__tag {
  display: inline-block; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft); border: 1px solid rgba(42, 18, 38, 0.2);
  padding: 0.25rem 0.6rem; border-radius: 999px;
}

.studio { background: var(--ink-lift); color: var(--cream-deep); padding: var(--section) 0; position: relative; z-index: 2; }
.studio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 860px) { .studio-grid { grid-template-columns: 1fr; } }
.studio h2 { color: var(--cream); font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem); margin-bottom: 1.25rem; }
.studio h2 em { font-style: normal; color: var(--apricot); }
.studio p { color: var(--cream-deep); opacity: 0.82; }

/* ---------- Modeling ---------- */
.page-head { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem); position: relative; z-index: 2; }
.page-title { font-size: clamp(3rem, 1.6rem + 7vw, 7.5rem); line-height: 0.88; letter-spacing: -0.04em; }
.page-title em { font-style: normal; color: var(--persimmon); }

.compcard { padding-bottom: var(--section); position: relative; z-index: 2; }
.compcard-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 900px) { .compcard-grid { grid-template-columns: 1fr; } }

.stats-card { background: var(--cream-deep); border-radius: var(--r-lg); padding: clamp(1.15rem, 2vw, 1.5rem); }
/* two columns halves the height of the sizes chart. one column on narrow screens. */
.stats { border-top: 2px solid var(--ink); margin: 0; display: grid; grid-template-columns: 1fr 1fr; column-gap: 1.75rem; padding-top: 0.15rem; }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr; column-gap: 0; } }
.stat { display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; padding: 0.42rem 0; border-bottom: 1px solid var(--line); }
.stat dt { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-faint); margin: 0; }
.stat dd {
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 90, 'WONK' 1, 'opsz' 40;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem);
  font-weight: 600; letter-spacing: -0.01em; margin: 0; text-align: right;
}
.stat--wide dd { font-size: 1rem; font-family: var(--font-body); font-weight: 500; }
/* the note spans the whole card, not just the left column */
.stats-note { font-size: 0.74rem; color: var(--ink-faint); margin-top: 1rem; line-height: 1.6; max-width: none; }
.stats-title { font-size: 1.15rem; margin: 0 0 0.65rem; font-variation-settings: 'SOFT' 90, 'WONK' 1, 'opsz' 40; }
.compcard-lead { margin-bottom: 1.4rem; }

.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.sec-head h2 { font-size: clamp(1.7rem, 1.3rem + 2vw, 2.7rem); }
.sec-head p { font-size: 0.82rem; color: var(--ink-faint); margin: 0; max-width: 40ch; }

.band { padding: var(--section) 0; border-top: 1px solid var(--line); position: relative; z-index: 2; }

.gal { display: grid; gap: 1.1rem; }
.gal--digitals { grid-template-columns: repeat(5, 1fr); }
.gal--book { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .gal--digitals { grid-template-columns: repeat(3, 1fr); } .gal--book { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gal--digitals { grid-template-columns: repeat(2, 1fr); } .gal--book { grid-template-columns: 1fr; } }

/* every other select gets an arch, for rhythm */
.gal--book > *:nth-child(odd) { border-radius: var(--arch); }
.gal--book > *:nth-child(even) { border-radius: var(--r-lg); }

.booking { background: var(--ink-lift); color: var(--cream-deep); padding: var(--section) 0; position: relative; z-index: 2; overflow: hidden; }
.booking h2 { color: var(--cream); font-size: clamp(2.2rem, 1.5rem + 3.4vw, 4rem); margin-bottom: 1.25rem; }
.booking h2 em { font-style: normal; color: var(--apricot); }
.booking-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 5vw, 4rem); position: relative; z-index: 2; }
@media (max-width: 860px) { .booking-grid { grid-template-columns: 1fr; } }
.booking p { color: var(--cream-deep); opacity: 0.82; }
.lane-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.lane-list li { font-size: 0.88rem; padding-left: 1.3rem; position: relative; color: var(--cream-deep); opacity: 0.85; }
.lane-list li::before { content: '\25CF'; position: absolute; left: 0; color: var(--apricot); font-size: 0.5rem; top: 0.55em; }

/* ---------- Soon pages ---------- */
.soon { padding: clamp(3rem, 8vw, 6rem) 0 var(--section); position: relative; z-index: 2; overflow: hidden; }
.soon-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; position: relative; z-index: 2; }
/* UGC: give the hero more horizontal room and separate it from the reel */
.soon-grid--ugc { grid-template-columns: 1fr 1.05fr; margin-bottom: clamp(3rem, 7vw, 5rem); }
.soon-grid--ugc .hero-media { max-width: 520px; }
@media (max-width: 900px) { .soon-grid { grid-template-columns: 1fr; } }
.soon-head { max-width: 62ch; margin-bottom: clamp(2.5rem, 6vw, 4rem); position: relative; z-index: 2; }
.soon-title { font-size: clamp(3rem, 1.6rem + 7vw, 7rem); line-height: 0.88; letter-spacing: -0.04em; margin-bottom: 1.5rem; }
.soon-title em { font-style: normal; color: var(--persimmon); }

.badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em;
  border: 1px solid rgba(42, 18, 38, 0.18); border-radius: 999px;
  background: var(--blush);
  padding: 0.5rem 1rem; margin-bottom: 1.75rem; color: var(--ink-soft);
}
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--persimmon); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.78); } }

.what { border-top: 1px solid var(--line); padding-top: 2rem; margin-top: 2.5rem; }
.what h2 { font-size: 1.1rem; margin-bottom: 1rem; }
.what-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.what-list li { font-size: 0.78rem; font-weight: 500; border: 1px solid rgba(42, 18, 38, 0.16); border-radius: 999px; padding: 0.4rem 0.9rem; color: var(--ink-soft); background: var(--cream-deep); }

.stack { display: grid; gap: 1rem; position: relative; z-index: 2; }
.stack > *:nth-child(1) { transform: rotate(-1.6deg); }
.stack > *:nth-child(2) { transform: rotate(1.2deg); }

.reel { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: var(--section); }
@media (max-width: 900px) { .reel { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .reel { grid-template-columns: 1fr; } }

.cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); border-top: 1px solid var(--line); padding-top: clamp(2rem, 5vw, 3.5rem); }
@media (max-width: 860px) { .cols { grid-template-columns: 1fr; gap: 2rem; } }
.cols h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2rem); margin-bottom: 1rem; }

.tick { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.tick li { font-size: 0.92rem; color: var(--ink-soft); padding-left: 1.4rem; position: relative; }
.tick li::before { content: '\2726'; position: absolute; left: 0; color: var(--wisteria); font-size: 0.8rem; top: 0.2em; }

/* ---------- Constant Creates ---------- */
.cc-hero { padding: clamp(3rem, 8vw, 6rem) 0 var(--section); position: relative; z-index: 2; overflow: hidden; }
.cc-title { font-size: clamp(2.6rem, 1.4rem + 6vw, 6rem); line-height: 0.9; letter-spacing: -0.04em; margin-bottom: 1.75rem; }
.cc-title em { font-style: normal; color: var(--persimmon); }
.cc-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; position: relative; z-index: 2; }
@media (max-width: 900px) { .cc-grid { grid-template-columns: 1fr; } }

.role-card { border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.25rem); background: var(--blush); margin: 0; }
.role-card dt { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-faint); }
.role-card dd {
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 90, 'WONK' 1, 'opsz' 40;
  font-size: 1.15rem; font-weight: 600; margin: 0.3rem 0 1.4rem; letter-spacing: -0.01em;
}
.role-card dd:last-child { margin-bottom: 0; }

.svc { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 860px) { .svc { grid-template-columns: 1fr; } }
.svc-item { border-radius: var(--r-md); padding: 1.35rem; background: var(--cream-deep); border-top: 3px solid var(--persimmon); }
.svc-item:nth-child(2) { border-top-color: var(--apricot); }
.svc-item:nth-child(3) { border-top-color: var(--wisteria); }
.svc-item:nth-child(4) { border-top-color: var(--apricot); }
.svc-item:nth-child(5) { border-top-color: var(--wisteria); }
.svc-item h3 { font-size: 1.2rem; margin-bottom: 0.5rem; font-variation-settings: 'SOFT' 90, 'WONK' 1, 'opsz' 40; }
.svc-item p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }

.cta-band { background: var(--ink-lift); color: var(--cream-deep); padding: var(--section) 0; position: relative; z-index: 2; text-align: center; }
.cta-band h2 { color: var(--cream); font-size: clamp(2rem, 1.4rem + 3.4vw, 3.8rem); margin-bottom: 1.25rem; }
.cta-band h2 em { font-style: normal; color: var(--apricot); }
.cta-band p { color: var(--cream-deep); opacity: 0.82; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }

/* ---------- Contact form ---------- */
.form { display: grid; gap: 1rem; max-width: 560px; }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--cream-deep); opacity: 0.75; }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 0.95rem;
  padding: 0.85rem 1rem;
  border-radius: var(--r-md);
  border: 1.5px solid rgba(251, 243, 233, 0.22);
  background: rgba(251, 243, 233, 0.06);
  color: var(--cream); width: 100%;
  transition: border-color 0.2s, background 0.2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: rgba(251, 243, 233, 0.4); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--apricot); background: rgba(251, 243, 233, 0.1); outline: none; }
.field select option { background: var(--ink); color: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* honeypot: must stay reachable to bots but invisible + unfocusable for humans */
.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 0 !important; width: 0 !important; overflow: hidden !important; pointer-events: none !important; }

.form-status { font-size: 0.9rem; margin: 0; min-height: 1.4em; }
.form-status[data-state='ok'] { color: var(--apricot); }
.form-status[data-state='err'] { color: #FF9C8A; }
.form-note { font-size: 0.75rem; color: var(--cream-deep); opacity: 0.55; margin-top: 0.5rem; }
