/* =====================================================================
   NEW CREATION WOMAN — brand-hub design system
   Garden-Eden skin: Alive · Sacred · Redemptive
   ===================================================================== */

:root {
  /* garden palette */
  --sun-gold: #E9B96A;
  --sky-blue: #8FB8DC;
  --cloud-white: #F4EFE6;
  --emerald: #1F5D4C;
  --jungle-green: #5C7A3A;
  --coral: #E26D5A;
  --blush: #E8B4B8;
  --blush-deep: #D98C8F;
  --cream-stone: #EFE6D2;
  --terracotta: #C9714F;
  --rose-mist: #F5DDDB;
  --rose-soft: #F8E5E2;
  --rose-warm: #EFC9C5;
  --wine: #5C1A36;
  --wine-deep: #3F0F23;
  --ink: #2A1E1E;

  --maxw: 1240px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--rose-soft);
  color: var(--ink);
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.serif { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
.italic { font-style: italic; }

.label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 500;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.text-coral { color: var(--coral); }
.text-wine { color: var(--wine); }
.text-terra { color: var(--terracotta); }
.text-blush { color: var(--blush-deep); }
.text-gold { color: var(--sun-gold); }
.op-70 { opacity: .7; } .op-80 { opacity: .8; } .op-50 { opacity: .5; }

/* ============ FIXED ROSE BACKGROUND ============ */
.rose-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.rose-blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .6;
  will-change: transform; mix-blend-mode: multiply;
}
.rose-blob.b1 {
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, var(--rose-warm) 0%, var(--blush) 40%, transparent 70%);
  top: -10vw; left: -15vw;
}
.rose-blob.b2 {
  width: 50vw; height: 50vw;
  background: radial-gradient(circle, var(--blush) 0%, var(--coral) 50%, transparent 70%);
  top: 30vh; right: -15vw; opacity: .42;
}
.rose-blob.b3 {
  width: 70vw; height: 70vw;
  background: radial-gradient(circle, var(--rose-warm) 0%, var(--blush-deep) 35%, transparent 70%);
  bottom: -20vw; left: 20vw; opacity: .48;
}
@keyframes float-rot {
  0%   { transform: translate(0,0) rotate(0deg) }
  50%  { transform: translate(2vw,-1vw) rotate(180deg) }
  100% { transform: translate(0,0) rotate(360deg) }
}
.rose-blob.b1 { animation: float-rot 28s ease-in-out infinite; }
.rose-blob.b2 { animation: float-rot 36s ease-in-out infinite reverse; }
.rose-blob.b3 { animation: float-rot 44s ease-in-out infinite; }

main, section, header, footer { position: relative; z-index: 1; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(24px, 4vw, 56px);
  opacity: 0; transform: translateY(-100%); pointer-events: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease), padding .5s var(--ease);
}
.nav.revealed {
  opacity: 1; transform: none; pointer-events: auto;
  background: rgba(248, 229, 226, .85);
  backdrop-filter: blur(16px);
  padding-top: 14px; padding-bottom: 14px;
  box-shadow: 0 1px 0 rgba(217,140,143,.28);
}
.nav .brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 26px; letter-spacing: .02em;
  color: var(--wine); line-height: 1;
}
.nav .brand small {
  display: block; font-family: 'Inter', sans-serif; font-weight: 500;
  font-size: 8.5px; letter-spacing: .3em; opacity: .6; margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 40px); }
.nav-links a {
  font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 500; color: var(--ink);
  opacity: .72; transition: opacity .3s var(--ease); position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--coral); transition: width .4s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { opacity: 1; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--wine); }

@media (max-width: 780px) {
  .nav-links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center;
    gap: 30px; background: rgba(248,229,226,.97); backdrop-filter: blur(20px);
    transform: translateY(-100%); transition: transform .6s var(--ease);
  }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 18px; }
  .nav-toggle { display: block; z-index: 60; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 500;
  border-radius: 999px; padding: 17px 34px; cursor: pointer;
  border: 1.5px solid var(--blush-deep); background: transparent; color: var(--ink);
  transition: all .5s var(--ease);
}
.btn:hover {
  background: var(--coral); border-color: var(--coral); color: var(--cloud-white);
  transform: translateY(-3px); box-shadow: 0 18px 30px -10px rgba(226,109,90,.55);
}
.btn.primary { background: var(--coral); border-color: var(--coral); color: var(--cloud-white); }
.btn.primary:hover { background: var(--wine); border-color: var(--wine); box-shadow: 0 20px 40px -8px rgba(92,26,54,.5); }
.btn.ghost { border-color: rgba(92,26,54,.28); }
.btn.on-dark { border-color: rgba(255,255,255,.5); color: var(--cloud-white); }
.btn.on-dark:hover { background: var(--cloud-white); color: var(--wine); border-color: var(--cloud-white); }

/* ============ REVEALS ============ */
.reveal {
  opacity: 0; transform: translateY(40px) scale(.97); filter: blur(4px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease), filter 1.2s var(--ease);
}
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal-l { opacity: 0; transform: translateX(-50px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal-r { opacity: 0; transform: translateX(50px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal-l.in, .reveal-r.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: .12s; } .delay-2 { transition-delay: .26s; }
.delay-3 { transition-delay: .42s; } .delay-4 { transition-delay: .58s; }
.delay-5 { transition-delay: .74s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-l, .reveal-r { opacity: 1 !important; transform: none !important; filter: none !important; }
  .rose-blob { animation: none; }
}

/* ============ DIVIDER ============ */
.divider { display: flex; align-items: center; justify-content: center; gap: 18px; color: var(--terracotta); opacity: .5; }
.divider .line { flex: 1; height: 1px; background: currentColor; max-width: 120px; }

/* ============ HERO ============ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, transparent 20%, rgba(63,15,35,.28) 100%),
    linear-gradient(to bottom, rgba(63,15,35,.28), transparent 30%, transparent 60%, rgba(63,15,35,.42));
}
.hero-inner { position: relative; z-index: 2; padding: 0 24px; max-width: 900px; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500; font-style: italic;
  color: var(--cloud-white); line-height: 1.02;
  font-size: clamp(44px, 8.5vw, 118px); letter-spacing: -.01em;
  text-shadow: 0 8px 40px rgba(63,15,35,.5);
}
.hero .kicker { color: var(--cloud-white); opacity: .92; }
.hero .sub { color: var(--cloud-white); opacity: .9; font-size: clamp(15px, 2vw, 20px); max-width: 560px; margin: 26px auto 0; }
.hero .cta-row { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-cue { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2; color: var(--cloud-white); opacity: .7; }
@keyframes pulse { 0%,100% { opacity:.4; transform: translate(-50%,0) } 50% { opacity:1; transform: translate(-50%,8px) } }
.scroll-cue { animation: pulse 2.4s ease-in-out infinite; }

/* ============ SECTION ============ */
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(48px, 7vw, 80px); }
.section-head h2 {
  font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--ink);
  font-size: clamp(34px, 6vw, 72px); line-height: 1.08; margin: 16px 0 0;
}
.section-head p { margin: 22px auto 0; font-size: clamp(16px, 1.6vw, 19px); opacity: .78; max-width: 560px; }
h3.h3 { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--ink); font-size: clamp(28px, 4vw, 52px); line-height: 1.12; }

/* ============ MEDIA SHELL ============ */
.media-shell {
  position: relative; border-radius: 40px; overflow: hidden; background: var(--blush);
  box-shadow: 0 40px 80px -30px rgba(217,140,143,.55), 0 8px 20px -8px rgba(201,113,79,.18), inset 0 0 0 1px rgba(255,255,255,.55);
  transition: transform .8s var(--ease), box-shadow .8s var(--ease);
}
.media-shell:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 50px 90px -20px rgba(217,140,143,.7), 0 10px 30px -8px rgba(201,113,79,.25), inset 0 0 0 1px rgba(255,255,255,.6);
}
.media-shell video, .media-shell img { width: 100%; height: 100%; object-fit: cover; }
.media-shell.small { border-radius: 28px; }

/* ============ DOORWAY CARDS ============ */
.doorways { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 3vw, 34px); }
@media (max-width: 820px) { .doorways { grid-template-columns: 1fr; } }
.doorway {
  position: relative; border-radius: 36px; overflow: hidden; min-height: 460px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 40px;
  color: var(--cloud-white); isolation: isolate;
  box-shadow: 0 40px 80px -30px rgba(92,26,54,.5), inset 0 0 0 1px rgba(255,255,255,.25);
  transition: transform .8s var(--ease), box-shadow .8s var(--ease);
}
.doorway:hover { transform: translateY(-8px); box-shadow: 0 60px 110px -30px rgba(92,26,54,.6); }
.doorway .bg { position: absolute; inset: 0; z-index: -2; }
.doorway .bg img, .doorway .bg video { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.doorway:hover .bg img, .doorway:hover .bg video { transform: scale(1.06); }
.doorway::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(63,15,35,.82), rgba(63,15,35,.25) 55%, rgba(63,15,35,.1));
}
.doorway .tag { font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; opacity: .85; }
.doorway h4 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(30px, 4vw, 46px); line-height: 1.05; margin: 12px 0 10px; }
.doorway p { font-size: 15px; opacity: .88; max-width: 34ch; }
.doorway .go {
  margin-top: 22px; display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
}
.doorway .go svg { transition: transform .5s var(--ease); }
.doorway:hover .go svg { transform: translateX(6px); }

/* ============ CARDS ============ */
.card {
  background: rgba(255,255,255,.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(217,140,143,.25); border-radius: 28px; padding: 30px 28px 32px;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), background .4s var(--ease);
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(217,140,143,.45); background: rgba(255,255,255,.72); }
.card .num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 42px; line-height: 1; color: var(--coral); opacity: .9; }
.card .tag { display: inline-block; font-size: 10px; letter-spacing: .26em; text-transform: uppercase; font-weight: 500; color: var(--terracotta); margin-bottom: 8px; }
.card h5 { font-family: 'Cormorant Garamond', serif; font-size: 26px; line-height: 1.15; margin: 14px 0 0; color: var(--ink); }
.card p { margin: 10px 0 0; font-size: 14.5px; line-height: 1.55; opacity: .75; }
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ============ SPLIT ROW (image + text) ============ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split.flip { direction: rtl; } .split.flip > * { direction: ltr; }
@media (max-width: 860px) { .split, .split.flip { grid-template-columns: 1fr; } }

/* ============ PULL QUOTE ============ */
.dirquote {
  border-left: 2px solid var(--coral); padding: 18px 28px;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(22px, 3vw, 36px); line-height: 1.3; color: var(--wine);
}
.dirquote .who {
  display: block; font-family: 'Inter', sans-serif; font-style: normal; font-size: 11px;
  letter-spacing: .32em; text-transform: uppercase; color: var(--terracotta); opacity: .8; margin-top: 16px;
}

/* ============ SWATCH ============ */
.swatch { aspect-ratio: 3/4; border-radius: 18px; box-shadow: 0 1px 0 rgba(0,0,0,.04), inset 0 0 0 1px rgba(255,255,255,.5); transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
.swatch:hover { transform: translateY(-10px) rotate(-2deg); box-shadow: 0 22px 40px -8px rgba(217,140,143,.45); }

/* ============ VIDEO PLAYER ============ */
.player { position: relative; border-radius: 44px; overflow: hidden; background: #1a0a14;
  box-shadow: 0 50px 100px -30px rgba(92,26,54,.45), 0 12px 30px -8px rgba(217,140,143,.35), inset 0 0 0 1px rgba(255,255,255,.5);
  transition: transform .8s var(--ease), box-shadow .8s var(--ease); }
.player:hover { transform: translateY(-4px); box-shadow: 0 60px 120px -30px rgba(92,26,54,.55), 0 16px 40px -8px rgba(217,140,143,.45); }
.player video { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.player .center-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; transition: opacity .5s var(--ease); }
.player.playing .center-play { opacity: 0; }
.player .center-play .btn2 { width: 96px; height: 96px; border-radius: 999px; background: rgba(248,229,226,.92); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 20px 50px -10px rgba(92,26,54,.5); pointer-events: auto; cursor: pointer;
  border: none; transition: transform .4s var(--ease); }
.player .center-play .btn2:hover { transform: scale(1.08); }
.player .center-play svg { color: var(--wine); }
.player .controls { position: absolute; left: 16px; right: 16px; bottom: 16px; display: flex; align-items: center; gap: 14px; padding: 12px 18px;
  background: rgba(248,229,226,.85); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.4); border-radius: 999px; color: var(--wine);
  opacity: 0; transform: translateY(8px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.player:hover .controls, .player.paused .controls { opacity: 1; transform: none; }
.player .ctrl-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 999px; color: var(--wine);
  cursor: pointer; transition: background .3s var(--ease); background: transparent; border: none; padding: 0; }
.player .ctrl-btn:hover { background: rgba(92,26,54,.1); }
.player .progress { flex: 1; height: 4px; background: rgba(92,26,54,.18); border-radius: 999px; cursor: pointer; position: relative; overflow: hidden; }
.player .progress .fill { position: absolute; left: 0; top: 0; bottom: 0; background: var(--wine); width: 0%; }
.player .time { font-size: 11px; font-weight: 500; letter-spacing: .12em; color: var(--wine); font-variant-numeric: tabular-nums; min-width: 82px; text-align: right; }
.hidden { display: none !important; }

/* ============ FORMS ============ */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; text-align: left; }
.field label { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; font-weight: 500; color: var(--terracotta); }
.field input, .field textarea, .field select {
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--ink);
  background: rgba(255,255,255,.6); border: 1px solid rgba(217,140,143,.4); border-radius: 16px;
  padding: 15px 18px; outline: none; transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(226,109,90,.14); }

/* ============ AVOID LIST ============ */
.avoid { list-style: none; padding: 0; margin: 0; }
.avoid li { position: relative; padding-left: 32px; opacity: .5; text-decoration: line-through; text-decoration-color: rgba(201,113,79,.45); }
.avoid li::before { content: ""; position: absolute; left: 0; top: 50%; width: 22px; height: 1px; background: var(--terracotta); opacity: .55; }

/* ============ CTA BAND ============ */
.cta-band { position: relative; border-radius: 44px; overflow: hidden; padding: clamp(56px, 9vw, 110px) 32px; text-align: center; color: var(--cloud-white); isolation: isolate; }
.cta-band .bg { position: absolute; inset: 0; z-index: -2; }
.cta-band .bg img, .cta-band .bg video { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgba(63,15,35,.62), rgba(92,26,54,.55)); }
.cta-band h2 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(34px, 6vw, 76px); line-height: 1.05; margin: 0; }
.cta-band p { max-width: 520px; margin: 22px auto 0; opacity: .9; }

/* ============ FOOTER ============ */
.footer { padding: clamp(60px, 8vw, 100px) 0 48px; }
.footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 820px) { .footer .cols { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer .cols { grid-template-columns: 1fr; } }
.footer .brand-mark { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 40px; color: var(--wine); line-height: 1; }
.footer .brand-mark small { display: block; font-family: 'Inter', sans-serif; font-style: normal; font-size: 9px; letter-spacing: .3em; opacity: .6; margin-top: 6px; text-transform: uppercase; }
.footer h6 { font-size: 11px; letter-spacing: .28em; text-transform: uppercase; color: var(--terracotta); margin: 0 0 16px; font-weight: 600; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a { opacity: .72; transition: opacity .3s var(--ease); font-size: 14px; }
.footer a:hover { opacity: 1; color: var(--coral); }
.footer .base { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(217,140,143,.3); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 12px; opacity: .6; }

/* ============ HOST PORTRAITS ============ */
.host-portrait {
  position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4/5;
  /* gradient fallback when photo not yet dropped in */
  background: linear-gradient(150deg, var(--blush) 0%, var(--rose-warm) 45%, var(--terracotta) 100%);
  box-shadow: 0 40px 80px -30px rgba(217,140,143,.55), inset 0 0 0 1px rgba(255,255,255,.5);
  transition: transform .8s var(--ease), box-shadow .8s var(--ease);
}
.host-portrait:hover { transform: translateY(-6px); box-shadow: 0 50px 90px -20px rgba(217,140,143,.7); }
.host-portrait img { width: 100%; height: 100%; object-fit: cover; }
.host-portrait .fallback-name {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--cloud-white);
  font-size: clamp(22px, 3vw, 34px); text-align: center; padding: 20px; opacity: .9;
}
.host-portrait img + .fallback-name { display: none; }
.host-portrait.tall { aspect-ratio: 3/4; }

/* small circular avatar (for inline host mentions) */
.host-avatar {
  width: 64px; height: 64px; border-radius: 999px; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(150deg, var(--blush), var(--terracotta));
  box-shadow: 0 8px 20px -6px rgba(217,140,143,.6), inset 0 0 0 1px rgba(255,255,255,.6);
}
.host-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* ============ HERO INTRO — NCW MONOGRAM ============ */
.hero-intro {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px; overflow: hidden;
}
.monogram { font-family: 'Cormorant Garamond', serif; color: var(--wine); line-height: 1; }
.monogram .mark { font-size: clamp(84px, 15vw, 190px); font-weight: 500; letter-spacing: -.01em; display: block; }
.monogram .sub {
  font-size: clamp(13px, 1.6vw, 22px); font-weight: 400; letter-spacing: .3em;
  text-transform: uppercase; margin-top: 12px; color: var(--wine); opacity: .82;
}
.hero-intro .intro-labels { margin-top: 14px; }
.hero-intro .intro-labels .label { color: var(--wine); }
.hero-intro .scroll-cue { color: var(--wine); opacity: .5; }

/* ============ APPLY / BRING YOUR TESTIMONY ============ */
.apply-band { position: relative; border-radius: 44px; overflow: hidden; isolation: isolate; padding: clamp(40px, 6vw, 80px); }
.apply-band .bg { position: absolute; inset: 0; z-index: -2; }
.apply-band .bg img, .apply-band .bg video { width: 100%; height: 100%; object-fit: cover; }
.apply-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(63,15,35,.78), rgba(92,26,54,.62)); }
.apply-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
@media (max-width: 900px) { .apply-grid { grid-template-columns: 1fr; } }
.apply-copy { color: var(--cloud-white); }
.apply-copy h2 { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(38px, 6vw, 72px); line-height: 1.02; margin: 14px 0 0; }
.apply-copy p.lead { margin-top: 22px; opacity: .9; font-size: 17px; max-width: 44ch; }
.apply-benefits { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-direction: column; gap: 14px; }
.apply-benefits li { display: flex; gap: 14px; align-items: flex-start; opacity: .92; font-size: 15.5px; }
.apply-benefits li svg { flex-shrink: 0; margin-top: 3px; color: var(--blush); }
.apply-form {
  background: rgba(248, 233, 230, .96); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.5); border-radius: 30px; padding: clamp(28px, 3vw, 40px);
  box-shadow: 0 40px 90px -30px rgba(63,15,35,.6);
}
.apply-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .apply-form .row { grid-template-columns: 1fr; } }
.apply-form .field { margin-bottom: 16px; }
.apply-form .foot-note { margin-top: 14px; text-align: center; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta); opacity: .8; }

/* ============ UTILITIES ============ */
.mt-s { margin-top: 16px; } .mt-m { margin-top: 28px; } .mt-l { margin-top: 48px; }
.center { text-align: center; }
.aspect-video { aspect-ratio: 16/9; } .aspect-wide { aspect-ratio: 16/10; }
.stack-32 > * + * { margin-top: 32px; }
