/* ==========================================================================
   The Selli Silk Studio — thesellisilkstudio.com
   Stylesheet. Palette and type drawn directly from the brand logo and ad.
   --------------------------------------------------------------------------
   CONTENTS
   1.  Fonts
   2.  Design tokens
   3.  Reset & base
   4.  Utilities & shared pieces
   5.  Header / navigation
   6.  Hero
   7.  Trust row  (Why Selli Silk)
   8.  Collections
   9.  Events + countdown + RSVP
   10. Heritage
   11. Contact
   12. Footer
   13. Motion & reveal
   14. Responsive
   ========================================================================== */

/* ==========================================================================
   1. FONTS  (self-hosted — no third-party requests, faster, better for SEO)
   ========================================================================== */

@font-face {
  font-family: 'Cinzel';
  src: url('fonts/cinzel-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Cinzel';
  src: url('fonts/cinzel-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-400i.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: italic;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/cormorant-600.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/jost-300.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/jost-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/jost-500.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Parisienne';
  src: url('fonts/parisienne-400.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

/* ==========================================================================
   2. DESIGN TOKENS
   ========================================================================== */

:root {
  /* --- Brand colour, sampled from the logo gradient and the ad artwork --- */
  --midnight:      #16225c;   /* top of the logo gradient */
  --royal:         #3a1a6b;   /* mid gradient */
  --aubergine:     #2c0f4a;   /* primary canvas — matches the ad background */
  --aubergine-dp:  #1e0a35;   /* deepest shade, footer + overlays */
  --magenta:       #a81e7e;   /* gradient tail */
  --rose:          #c2247e;   /* small highlights */

  --gold:          #e3c280;   /* antique gold — the single accent */
  --gold-bright:   #f3dca9;   /* sheen highlight */
  --gold-deep:     #b3914f;   /* shadow side of gold, borders */
  --ivory:         #f8f3e9;   /* body text on dark */
  --ivory-dim:     #ddd2c4;   /* secondary text on dark */

  /* --- Semantic --- */
  --bg:            var(--aubergine);
  --bg-alt:        #33144f;
  --text:          var(--ivory);
  --text-dim:      rgba(248, 243, 233, 0.72);
  --text-faint:    rgba(248, 243, 233, 0.5);
  --line:          rgba(227, 194, 128, 0.28);
  --line-soft:     rgba(227, 194, 128, 0.14);

  --ok:            #7ddba6;
  --err:           #ff9f9f;

  /* --- Gradients --- */
  --grad-brand: linear-gradient(155deg, var(--midnight) 0%, var(--royal) 42%, var(--aubergine) 68%, var(--magenta) 130%);
  --grad-gold:  linear-gradient(100deg, var(--gold-deep) 0%, var(--gold-bright) 30%, var(--gold) 55%, var(--gold-bright) 78%, var(--gold-deep) 100%);
  --grad-silk:  linear-gradient(135deg, #4a1c6e 0%, #7a1f72 48%, #b8267f 100%);

  /* --- Type --- */
  --f-display: 'Cormorant Garamond', 'Times New Roman', Times, serif;
  --f-caps:    'Cinzel', 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --f-script:  'Parisienne', 'Cormorant Garamond', cursive;

  /* Fluid scale — min at 360px, max at 1400px */
  --t-hero:  clamp(3rem, 1.6rem + 6.4vw, 7rem);
  --t-h2:    clamp(2rem, 1.35rem + 2.9vw, 3.75rem);
  --t-h3:    clamp(1.35rem, 1.15rem + 0.9vw, 1.85rem);
  --t-eyebrow: clamp(0.66rem, 0.6rem + 0.28vw, 0.8rem);
  --t-body:  clamp(0.975rem, 0.94rem + 0.16vw, 1.075rem);
  --t-small: clamp(0.85rem, 0.82rem + 0.12vw, 0.925rem);

  /* --- Space & shape --- */
  --gutter:  clamp(1.25rem, 0.6rem + 3vw, 3.5rem);
  --section: clamp(4.5rem, 2.5rem + 7vw, 9rem);
  --maxw:    1280px;
  --maxw-narrow: 760px;
  --radius:  2px;      /* the brand reads classical — near-square corners */
  --radius-lg: 4px;

  --shadow-soft: 0 18px 50px -18px rgba(10, 3, 20, 0.75);
  --shadow-card: 0 22px 60px -24px rgba(10, 3, 20, 0.9);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ==========================================================================
   3. RESET & BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;      /* clears the sticky header on anchor jumps */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(1100px 620px at 82% -6%, rgba(168, 30, 126, 0.22), transparent 62%),
    radial-gradient(900px 560px at 4% 8%, rgba(22, 34, 92, 0.55), transparent 60%),
    linear-gradient(180deg, #240d3f 0%, var(--aubergine) 30%, #2f1150 72%, var(--aubergine-dp) 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--f-body);
  font-size: var(--t-body);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.012em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.06;
  margin: 0;
  letter-spacing: 0.005em;
}

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--gold-bright); }

ul { margin: 0; padding: 0; list-style: none; }

/* Visible, on-brand focus ring for keyboard users */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

::selection { background: var(--magenta); color: var(--ivory); }

/* Skip link */
.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -140%);
  z-index: 200;
  background: var(--gold);
  color: var(--aubergine-dp);
  padding: 0.75rem 1.5rem;
  font-family: var(--f-caps);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); color: var(--aubergine-dp); }

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

/* ==========================================================================
   4. UTILITIES & SHARED PIECES
   ========================================================================== */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section); position: relative; }

.section--band {
  background: linear-gradient(180deg, rgba(58, 26, 107, 0.42), rgba(44, 15, 74, 0.16));
  border-block: 1px solid var(--line-soft);
}

/* --- Eyebrow: spaced gold capitals, straight from the ad --- */
.eyebrow {
  font-family: var(--f-caps);
  font-size: var(--t-eyebrow);
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  line-height: 1.4;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  height: 1px;
  flex: 1 1 auto;
  min-width: 1.25rem;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.eyebrow--start { justify-content: flex-start; }
.eyebrow--start::before { display: none; }
.eyebrow--start::after { max-width: 5.5rem; }

/* --- Gold gradient text (the "silk sheen" on headings) --- */
.sheen {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);   /* fallback if background-clip is unsupported */
}

/* --- Diamond divider ornament, redrawn from the ad --- */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 2.25rem 0;
  color: var(--gold);
}
.divider::before,
.divider::after {
  content: '';
  height: 1px;
  width: min(28%, 9rem);
  background: linear-gradient(90deg, transparent, var(--line) 55%, var(--line));
}
.divider::after { background: linear-gradient(270deg, transparent, var(--line) 55%, var(--line)); }
.divider__mark { width: 13px; height: 13px; flex: none; opacity: 0.95; }
.divider--start { justify-content: flex-start; margin-inline-start: 0; }
.divider--start::before { display: none; }

/* --- Script pull-quote --- */
.script {
  font-family: var(--f-script);
  font-size: clamp(1.55rem, 1.1rem + 1.9vw, 2.5rem);
  line-height: 1.4;
  color: var(--gold-bright);
  letter-spacing: 0.01em;
}

.lede {
  font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.25rem);
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--f-caps);
  font-size: clamp(0.7rem, 0.66rem + 0.18vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.05em 2.1em;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1.2;
  transition: color 0.3s var(--ease), background-color 0.3s var(--ease),
              border-color 0.3s var(--ease), transform 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
}
.btn:focus-visible { outline-offset: 4px; }

/* sheen sweep on hover */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.42) 50%, transparent 70%);
  transform: translateX(-140%);
  transition: transform 0.75s var(--ease);
  pointer-events: none;
}
.btn:hover::after { transform: translateX(140%); }

.btn--gold {
  background: var(--grad-gold);
  color: #2a1038;
  box-shadow: 0 12px 34px -14px rgba(227, 194, 128, 0.6);
}
.btn--gold:hover {
  color: #2a1038;
  transform: translateY(-2px);
  box-shadow: 0 18px 42px -14px rgba(227, 194, 128, 0.78);
}

.btn--ghost {
  background: rgba(248, 243, 233, 0.03);
  color: var(--gold);
  backdrop-filter: blur(2px);
}
.btn--ghost:hover {
  background: rgba(227, 194, 128, 0.12);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn--block { width: 100%; }

/* --- Text link with a gold underline that draws in --- */
.link-u {
  font-family: var(--f-caps);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-bottom: 3px;
}
.link-u::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.link-u:hover::after { transform: scaleX(1); }
.link-u svg { transition: transform 0.3s var(--ease); }
.link-u:hover svg { transform: translateX(4px); }

/* --- The gold hairline frame used on the hero and event card --- */
.frame { position: relative; }
.frame::before {
  content: '';
  position: absolute;
  inset: clamp(0.7rem, 1.4vw, 1.4rem);
  border: 1px solid var(--line);
  pointer-events: none;
  z-index: 1;
}
.frame::after {
  content: '';
  position: absolute;
  inset: calc(clamp(0.7rem, 1.4vw, 1.4rem) + 5px);
  border: 1px solid var(--line-soft);
  pointer-events: none;
  z-index: 1;
}

/* Corner flourishes (four rotated copies of one SVG).
   Both width AND height are set: an inline <svg> with only one dimension
   falls back to the 300x150 default for the other and the glyph drifts. */
.frame__corner {
  position: absolute;
  width: clamp(20px, 2.4vw, 30px);
  height: clamp(20px, 2.4vw, 30px);
  color: var(--gold);
  opacity: 0.62;
  z-index: 2;
  pointer-events: none;
}
.frame__corner--tl { top: clamp(0.7rem, 1.4vw, 1.4rem); left: clamp(0.7rem, 1.4vw, 1.4rem); }
.frame__corner--tr { top: clamp(0.7rem, 1.4vw, 1.4rem); right: clamp(0.7rem, 1.4vw, 1.4rem); transform: rotate(90deg); }
.frame__corner--br { bottom: clamp(0.7rem, 1.4vw, 1.4rem); right: clamp(0.7rem, 1.4vw, 1.4rem); transform: rotate(180deg); }
.frame__corner--bl { bottom: clamp(0.7rem, 1.4vw, 1.4rem); left: clamp(0.7rem, 1.4vw, 1.4rem); transform: rotate(270deg); }

/* ==========================================================================
   5. HEADER / NAVIGATION
   ========================================================================== */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
              border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  padding-block: clamp(0.7rem, 1.2vw, 1.1rem);
}
.header.is-stuck {
  background: rgba(30, 10, 53, 0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-soft);
  padding-block: 0.55rem;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: flex; align-items: center; gap: 0.85rem; }
.brand__mark {
  width: clamp(44px, 4.4vw, 60px);
  height: auto;
  border-radius: 50%;
  transition: width 0.4s var(--ease);
  box-shadow: 0 4px 18px -6px rgba(0, 0, 0, 0.6);
}
.header.is-stuck .brand__mark { width: clamp(38px, 3.4vw, 46px); }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name {
  font-family: var(--f-display);
  font-size: clamp(0.98rem, 0.9rem + 0.35vw, 1.2rem);
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.03em;
}
.brand__tag {
  font-family: var(--f-script);
  font-size: clamp(0.8rem, 0.75rem + 0.2vw, 0.95rem);
  color: var(--gold);
  letter-spacing: 0.01em;
}

.nav { display: flex; align-items: center; gap: clamp(1.1rem, 1.9vw, 2.3rem); }
.nav__link {
  font-family: var(--f-caps);
  font-size: 0.72rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  position: relative;
  padding-block: 0.35rem;
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--gold); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }

.nav__cta { margin-left: 0.4rem; padding: 0.8em 1.5em; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  flex: none;
}
.nav-toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 1px;
  background: var(--gold);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, calc(-50% - 6px)); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, calc(-50% + 6px)); }
.nav-toggle[aria-expanded='true'] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ==========================================================================
   6. HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: min(100svh, 980px);
  display: flex;
  align-items: center;
  padding-block: clamp(7rem, 12vh, 10rem) clamp(4rem, 8vh, 6rem);
  overflow: hidden;
  isolation: isolate;
}

/* The saree drape from the ad, blended into the canvas.
   The fade is done with a CSS mask rather than a gradient overlay — an
   overlay paints a flat rectangle over the page's own gradient and you can
   see the box edges. A mask dissolves the image itself, so there is no seam
   at any viewport size. */
.hero__art {
  position: absolute;
  z-index: -1;
  inset-block: 0;
  right: 0;
  width: clamp(300px, 40%, 580px);
  pointer-events: none;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 20%, #000 58%);
          mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 20%, #000 58%);
}
.hero__art picture { display: block; height: 100%; }
.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 13%;
  /* second, vertical fade — masks multiply down the tree, so this composes
     with the horizontal one above without needing mask-composite */
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, #000 13%, #000 82%, transparent 100%);
          mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, #000 13%, #000 82%, transparent 100%);
}

/* Fallback for browsers without mask-image: a gradient overlay instead. */
@supports not ((mask-image: linear-gradient(#000, #000)) or (-webkit-mask-image: linear-gradient(#000, #000))) {
  .hero__art::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--aubergine) 0%, rgba(44, 15, 74, 0.55) 26%, transparent 62%);
  }
}

.hero__glow {
  position: absolute;
  z-index: -2;
  width: 60vw; height: 60vw;
  max-width: 780px; max-height: 780px;
  right: -8vw; top: -14vw;
  background: radial-gradient(circle, rgba(168, 30, 126, 0.3), transparent 66%);
  filter: blur(30px);
  pointer-events: none;
}

.hero__inner { position: relative; z-index: 2; width: 100%; }

.hero__content { max-width: 44rem; }

.hero__logo {
  width: clamp(112px, 12.5vw, 168px);
  margin: 0 0 clamp(1.6rem, 3vw, 2.4rem);
  border-radius: 50%;
  box-shadow: 0 20px 60px -22px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(227, 194, 128, 0.2);
}

.hero__title {
  font-size: var(--t-hero);
  line-height: 0.94;
  margin-bottom: clamp(1.1rem, 2.2vw, 1.6rem);
  letter-spacing: -0.005em;
}
.hero__title .l1 {
  display: block;
  font-weight: 500;
}
.hero__title .l2 {
  display: block;
  font-family: var(--f-caps);
  font-size: 0.29em;
  font-weight: 400;
  letter-spacing: 0.19em;
  line-height: 1.45;
  text-transform: uppercase;
  color: var(--ivory);
  margin-top: 0.85em;
  opacity: 0.9;
}

.hero__sub {
  font-family: var(--f-caps);
  font-size: clamp(0.72rem, 0.66rem + 0.3vw, 0.9rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  line-height: 1.9;
  max-width: 30rem;
  margin-bottom: clamp(1.4rem, 2.6vw, 2rem);
}

.hero__script { margin-bottom: clamp(2rem, 3.6vw, 2.9rem); }

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem 1rem; }

/* Event flag pinned under the hero actions */
.hero__flag {
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(30, 10, 53, 0.5);
  backdrop-filter: blur(6px);
  font-size: var(--t-small);
  color: var(--ivory-dim);
  max-width: 100%;
}
.hero__flag strong { color: var(--gold); font-weight: 500; }
.hero__flag .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  flex: none;
  box-shadow: 0 0 0 0 rgba(194, 36, 126, 0.75);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(194, 36, 126, 0.7); }
  70%  { box-shadow: 0 0 0 12px rgba(194, 36, 126, 0); }
  100% { box-shadow: 0 0 0 0 rgba(194, 36, 126, 0); }
}

/* Sits on the right so it can never collide with the event flag */
.scroll-cue {
  position: absolute;
  right: calc(var(--gutter) + clamp(0.7rem, 1.4vw, 1.4rem));
  bottom: clamp(1.5rem, 4vh, 3rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-caps);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.scroll-cue__line {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: cue 2.6s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cue {
  0%, 100% { transform: scaleY(0.35); opacity: 0.45; }
  50%      { transform: scaleY(1);    opacity: 1; }
}

/* ==========================================================================
   7. TRUST ROW — Why Selli Silk
   ========================================================================== */

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: clamp(2.4rem, 4vw, 3.6rem);
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.trust__item {
  background: linear-gradient(180deg, rgba(44, 15, 74, 0.55), rgba(30, 10, 53, 0.35));
  padding: clamp(1.75rem, 3vw, 2.6rem) clamp(1.1rem, 2vw, 1.8rem);
  text-align: center;
  transition: background-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.trust__item:hover {
  background: linear-gradient(180deg, rgba(58, 26, 107, 0.72), rgba(44, 15, 74, 0.5));
}
.trust__icon {
  width: clamp(36px, 3.6vw, 46px);
  height: clamp(36px, 3.6vw, 46px);
  margin: 0 auto clamp(1rem, 1.8vw, 1.4rem);
  color: var(--gold);
}
.trust__title {
  font-family: var(--f-caps);
  font-size: clamp(0.7rem, 0.65rem + 0.2vw, 0.8rem);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.65rem;
  line-height: 1.5;
}
.trust__copy {
  font-size: var(--t-small);
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   8. COLLECTIONS
   ========================================================================== */

.sec-head { max-width: 46rem; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head__title { font-size: var(--t-h2); font-weight: 500; margin-bottom: 1.1rem; }
.sec-head__title em { font-style: italic; color: var(--gold); font-weight: 400; }

.collections__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15.5rem), 1fr));
  gap: clamp(1.1rem, 2vw, 1.75rem);
  margin-top: clamp(2.6rem, 4.5vw, 4rem);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(30, 10, 53, 0.42);
  transition: border-color 0.45s var(--ease), transform 0.45s var(--ease),
              box-shadow 0.45s var(--ease);
}
.card:hover {
  border-color: var(--line);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

/* The swatch stands in for a photograph — swap in <img> later, same slot */
.card__swatch {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.card__swatch img { width: 100%; height: 100%; object-fit: cover; }
.card__swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(122deg, rgba(255, 255, 255, 0.055) 0 2px, transparent 2px 7px),
    linear-gradient(180deg, transparent 42%, rgba(30, 10, 53, 0.85) 100%);
  transition: opacity 0.45s var(--ease);
}
.card:hover .card__swatch::after { opacity: 0.82; }

.card--bridal   .card__swatch { background: linear-gradient(150deg, #5e1240 0%, #a81e6b 52%, #d7407f 100%); }
.card--kanchi   .card__swatch { background: linear-gradient(150deg, #1a2a6b 0%, #5b2586 50%, #a3238c 100%); }
.card--everyday .card__swatch { background: linear-gradient(150deg, #33144f 0%, #6f2b7d 48%, #b06a9b 100%); }
.card--gifting  .card__swatch { background: linear-gradient(150deg, #2a1550 0%, #7b3b1f 45%, #d0a24c 100%); }

.card__ord {
  position: absolute;
  top: 1rem; left: 1.1rem;
  z-index: 2;
  font-family: var(--f-caps);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: rgba(248, 243, 233, 0.72);
}

.card__body {
  padding: clamp(1.3rem, 2.2vw, 1.85rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1;
}
.card__title {
  font-size: var(--t-h3);
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
}
.card__copy { font-size: var(--t-small); color: var(--text-dim); margin: 0; flex: 1; line-height: 1.7; }
.card__link { margin-top: 0.35rem; align-self: flex-start; }

.collections__note {
  margin-top: clamp(2rem, 3.5vw, 3rem);
  text-align: center;
  font-size: var(--t-small);
  color: var(--text-faint);
}

/* ==========================================================================
   9. EVENTS + COUNTDOWN + RSVP
   ========================================================================== */

.events__list { margin-top: clamp(2.4rem, 4vw, 3.4rem); display: grid; gap: clamp(1.5rem, 2.5vw, 2.25rem); }

.event {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(168, 30, 126, 0.2), transparent 60%),
    linear-gradient(155deg, rgba(22, 34, 92, 0.5), rgba(44, 15, 74, 0.72) 55%, rgba(30, 10, 53, 0.85));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.event__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(1.75rem, 3.5vw, 3.5rem);
  padding: clamp(1.75rem, 3.4vw, 3.25rem);
  position: relative;
  z-index: 2;
}

.event__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--f-caps);
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--aubergine-dp);
  background: var(--grad-gold);
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.35rem;
  font-weight: 600;
}

.event__head { display: flex; align-items: flex-start; gap: clamp(1.1rem, 2.4vw, 1.9rem); }

.event__date {
  flex: none;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem clamp(0.85rem, 1.6vw, 1.25rem);
  background: rgba(30, 10, 53, 0.62);
  min-width: clamp(78px, 8vw, 104px);
}
.event__date .d {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 1.5rem + 2.2vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
}
.event__date .m {
  display: block;
  font-family: var(--f-caps);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-top: 0.4rem;
}
.event__date .y {
  display: block;
  font-family: var(--f-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--text-faint);
  margin-top: 0.15rem;
}

.event__title { font-size: var(--t-h2); font-weight: 500; line-height: 1.05; margin-bottom: 0.75rem; }
.event__meta { display: grid; gap: 0.6rem; margin: 1.25rem 0 0; }
.event__meta li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: var(--t-small);
  color: var(--text-dim);
  line-height: 1.65;
}
.event__meta svg { flex: none; width: 16px; height: 16px; color: var(--gold); margin-top: 0.3em; }
.event__meta a { color: var(--ivory-dim); border-bottom: 1px solid var(--line-soft); }
.event__meta a:hover { color: var(--gold); border-bottom-color: var(--gold); }

.event__copy { margin-top: 1.35rem; font-size: var(--t-small); color: var(--text-dim); }
.event__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.75rem; }

/* --- Countdown --- */
.countdown { margin-top: clamp(1.75rem, 3vw, 2.5rem); }
.countdown__label {
  font-family: var(--f-caps);
  font-size: 0.63rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.9rem;
}
.countdown__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.55rem; max-width: 26rem; }
.cd-unit {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(22, 34, 92, 0.4);
  padding: 0.85rem 0.3rem 0.7rem;
  text-align: center;
}
.cd-unit__num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.55rem, 1.2rem + 1.4vw, 2.35rem);
  font-weight: 600;
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums lining-nums;
  letter-spacing: 0;
}
.cd-unit__lbl {
  display: block;
  font-family: var(--f-caps);
  font-size: 0.56rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 0.5rem;
}
.countdown__live {
  font-family: var(--f-caps);
  font-size: clamp(0.85rem, 0.78rem + 0.35vw, 1.1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 1rem 1.35rem;
  text-align: center;
  max-width: 26rem;
  background: rgba(168, 30, 126, 0.18);
}

/* --- RSVP panel --- */
.rsvp {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(30, 10, 53, 0.55);
  padding: clamp(1.4rem, 2.6vw, 2.1rem);
  align-self: start;
  position: relative;
}
.rsvp__title {
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 1.15rem + 0.8vw, 1.75rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--ivory);
}
.rsvp__copy { font-size: var(--t-small); color: var(--text-dim); margin-bottom: 1.4rem; }

/* ==========================================================================
   FORMS (shared by RSVP and Contact)
   ========================================================================== */

.form { display: grid; gap: 1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.field { display: grid; gap: 0.45rem; }
.field > label {
  font-family: var(--f-caps);
  font-size: 0.63rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.field > label .req { color: var(--rose); margin-left: 0.2em; }

.field input,
.field select,
.field textarea {
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ivory);
  background: rgba(22, 34, 92, 0.3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 0.82rem 0.95rem;
  width: 100%;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease),
              box-shadow 0.3s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; min-height: 6.5rem; line-height: 1.65; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(248, 243, 233, 0.34); }

.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(227, 194, 128, 0.3); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(22, 34, 92, 0.5);
  box-shadow: 0 0 0 3px rgba(227, 194, 128, 0.14);
}

/* native select needs its own arrow once appearance is stripped */
.field--select { position: relative; }
.field--select::after {
  content: '';
  position: absolute;
  right: 1rem;
  bottom: 1.15rem;
  width: 7px; height: 7px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
  pointer-events: none;
}
.field select option { background: var(--aubergine-dp); color: var(--ivory); }

/* honeypot — hidden from people, visible to naive bots */
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--text-faint);
  line-height: 1.6;
}
.form__consent input {
  width: 1rem; height: 1rem;
  margin-top: 0.22rem;
  flex: none;
  accent-color: var(--gold);
}

.form__status {
  font-size: var(--t-small);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-soft);
  display: none;
  line-height: 1.6;
}
.form__status.is-ok  { display: block; color: var(--ok);  border-color: rgba(125, 219, 166, 0.42); background: rgba(125, 219, 166, 0.08); }
.form__status.is-err { display: block; color: var(--err); border-color: rgba(255, 159, 159, 0.42); background: rgba(255, 159, 159, 0.08); }

/* WhatsApp / email buttons shown if a submission can't be sent automatically */
.form__fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.9rem;
}
.form__fallback .btn { flex: 1 1 11rem; padding: 0.85em 1.2em; font-size: 0.68rem; }

.btn.is-busy { pointer-events: none; opacity: 0.65; }
.btn.is-busy::before {
  content: '';
  width: 13px; height: 13px;
  border: 1.5px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form__alt {
  font-size: 0.78rem;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.6;
}

/* ==========================================================================
   10. HERITAGE
   ========================================================================== */

.heritage__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(2.25rem, 5vw, 5rem);
  align-items: center;
}
.heritage__art { position: relative; }
/* No decorative frame here: the still is feathered on all four edges, so any
   border would show straight through the transparent margins. */
.heritage__art img { width: 100%; }
.heritage__quote {
  margin: clamp(1.6rem, 3vw, 2.4rem) 0 0;
  padding-left: clamp(1rem, 2vw, 1.5rem);
  border-left: 1px solid var(--line);
}
.heritage__quote cite {
  display: block;
  font-family: var(--f-caps);
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 0.9rem;
}

/* ==========================================================================
   11. CONTACT
   ========================================================================== */

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2.25rem, 4.5vw, 4.5rem);
  align-items: start;
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
}

.contact__panel {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(30, 10, 53, 0.5);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.info-list { display: grid; gap: 1.5rem; }
.info-list__item { display: flex; gap: 1rem; align-items: flex-start; }
.info-list__icon {
  width: 38px; height: 38px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
}
.info-list__icon svg { width: 18px; height: 18px; }
.info-list__label {
  font-family: var(--f-caps);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 0.3rem;
}
.info-list__value { font-size: var(--t-small); color: var(--ivory); line-height: 1.65; }
.info-list__value a { color: var(--ivory); border-bottom: 1px solid var(--line-soft); }
.info-list__value a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.info-list__value .muted { color: var(--text-faint); display: block; font-size: 0.8rem; }

.socials { display: flex; gap: 0.7rem; margin-top: 2rem; flex-wrap: wrap; }
.social {
  width: 42px; height: 42px;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ivory-dim);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease),
              background-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.social svg { width: 18px; height: 18px; }
.social:hover {
  color: var(--aubergine-dp);
  background: var(--grad-gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.social[aria-disabled='true'] { opacity: 0.4; pointer-events: none; }

/* ==========================================================================
   12. FOOTER
   ========================================================================== */

.footer {
  background: linear-gradient(180deg, rgba(30, 10, 53, 0.4), var(--aubergine-dp));
  border-top: 1px solid var(--line-soft);
  padding-block: clamp(3rem, 5vw, 4.5rem) 0;
  margin-top: clamp(3rem, 6vw, 6rem);
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2.4rem, 4vw, 3.4rem);
}
.footer__brand { display: grid; gap: 1.1rem; max-width: 24rem; }
.footer__brand img { width: 84px; border-radius: 50%; }
.footer__brand p { font-size: var(--t-small); color: var(--text-dim); margin: 0; }
.footer__h {
  font-family: var(--f-caps);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.15rem;
}
.footer__links { display: grid; gap: 0.7rem; }
.footer__links a { font-size: var(--t-small); color: var(--text-dim); }
.footer__links a:hover { color: var(--gold); }

.footer__bar {
  border-top: 1px solid var(--line-soft);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-faint);
}
.footer__bar p { margin: 0; }
.footer__bar .script { font-size: 1.15rem; }

/* ==========================================================================
   12b. FLOATING WHATSAPP BUTTON
   Brand gold rather than WhatsApp green — the glyph carries the recognition,
   and green would fight the palette. Hidden until past the hero, and hidden
   again whenever a form is on screen (see js/main.js).
   ========================================================================== */

.wa-float {
  position: fixed;
  z-index: 90;
  right: clamp(1rem, 2.5vw, 2rem);
  bottom: clamp(1rem, 2.5vw, 2rem);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: var(--grad-gold);
  color: #2a1038;
  font-family: var(--f-caps);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 14px 38px -12px rgba(0, 0, 0, 0.7),
              0 0 0 6px rgba(227, 194, 128, 0.09);

  /* hidden by default; JS reveals it past the hero */
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.96);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease),
              visibility 0.4s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.wa-float:hover {
  color: #2a1038;
  box-shadow: 0 18px 44px -12px rgba(0, 0, 0, 0.8),
              0 0 0 9px rgba(227, 194, 128, 0.16);
}
.wa-float:active { transform: scale(0.97); }
.wa-float__icon { flex: none; }

/* Icon-only circle on small screens — a pill would crowd the layout */
@media (max-width: 620px) {
  .wa-float {
    padding: 0;
    width: 54px;
    height: 54px;
    justify-content: center;
    gap: 0;
  }
  .wa-float__label {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

/* ==========================================================================
   13. MOTION & REVEAL
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay='1'] { transition-delay: 0.1s; }
[data-reveal][data-delay='2'] { transition-delay: 0.2s; }
[data-reveal][data-delay='3'] { transition-delay: 0.3s; }
[data-reveal][data-delay='4'] { transition-delay: 0.4s; }

/* Never let the JS reveal hide content if scripting is off */
.no-js [data-reveal] { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .wa-float { transform: none !important; }
}

/* ==========================================================================
   14. RESPONSIVE
   ========================================================================== */

@media (max-width: 1080px) {
  .event__inner { grid-template-columns: 1fr; }
  .rsvp { max-width: 34rem; }
  .heritage__inner { grid-template-columns: 1fr; }
  .heritage__art { max-width: 26rem; margin-inline: auto; order: -1; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 900px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }

  /* --- Mobile navigation --- */
  /* The toggle must sit ABOVE the open panel, or the panel covers the
     close button and the menu can't be dismissed. */
  .nav-toggle {
    display: block;
    position: relative;
    z-index: 12;
  }
  .nav {
    position: fixed;
    z-index: 10;
    inset: 0 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 4.75rem var(--gutter) 2.5rem;
    background: rgba(24, 8, 43, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-soft);
    transform: translateY(-101%);
    transition: transform 0.5s var(--ease);
    max-height: 100svh;
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav__link {
    font-size: 0.85rem;
    padding-block: 1.05rem;
    border-bottom: 1px solid var(--line-soft);
    letter-spacing: 0.22em;
  }
  .nav__link::after { display: none; }
  .nav__cta { margin: 1.5rem 0 0; }
  body.nav-open { overflow: hidden; }

  .hero { min-height: auto; padding-block: 8.5rem 4.5rem; }
  /* On phones the drape becomes a full-width backdrop, fading downwards
     instead of sideways so the text stays legible over it. */
  .hero__art {
    width: 100%;
    opacity: 0.34;
    -webkit-mask-image: none;
            mask-image: none;
  }
  .hero__art img {
    object-position: 60% 18%;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.5) 52%, transparent 84%);
            mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.5) 52%, transparent 84%);
  }
  .scroll-cue { display: none; }
}

@media (max-width: 620px) {
  .trust__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .countdown__grid { max-width: none; gap: 0.45rem; }
  .cd-unit { padding: 0.7rem 0.2rem 0.6rem; }
  .cd-unit__lbl { font-size: 0.5rem; letter-spacing: 0.14em; }
  .event__head { flex-direction: column; gap: 1.1rem; }
  .event__date { min-width: 0; align-self: flex-start; padding-inline: 1.25rem; }
  .hero__actions .btn { width: 100%; }
  /* keep the exhibiting badge on one line inside its pill */
  .event__badge { font-size: 0.55rem; letter-spacing: 0.13em; padding-inline: 0.8rem; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bar { justify-content: flex-start; }
  .brand__tag { display: none; }
}

@media (max-width: 400px) {
  .brand__name { font-size: 0.9rem; }
  .brand__mark { width: 40px; }
}

/* ==========================================================================
   PRINT — a clean sheet if someone prints the event details
   ========================================================================== */

@media print {
  body { background: #fff; color: #000; }
  .header, .scroll-cue, .hero__art, .hero__glow, .socials, .footer__bar,
  .rsvp, .nav-toggle, .wa-float { display: none !important; }
  .section { padding-block: 1.5rem; }
  .sheen { -webkit-text-fill-color: #000; color: #000; }
  a { color: #000; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
