/* ─────────────────────────────────────────────────────────────
   Gabe & Matty — shared site styles
   Palette: ivory, steel blue, dusty blue, antique gold, ink
   No sage. No green.
───────────────────────────────────────────────────────────── */

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

:root {
  /* Surfaces */
  --ivory:        #F8F4ED;
  --ivory-warm:   #FBF7F0;
  --paper:        #F0E9DC;

  /* Blues */
  --steel-blue:   #4A6680;
  --dusty-blue:   #6B8AAB;
  --light-blue:   #B8C8D8;
  --whisper-blue: #DEE7F0;
  --deep-blue:    #2D3F52;

  /* Gold */
  --gold:         #B8954C;
  --gold-soft:    #D4BE8E;
  --gold-deep:    #8C6B2D;

  /* Ink */
  --ink:          #1F2933;
  --charcoal:     #3A4452;
  --soft-gray:    #6E7785;
  --hairline:     rgba(31, 41, 51, 0.08);

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;

  --max-w:        1100px;
  --rad:          2px;
}

html { overflow-x: hidden; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory-warm);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* paper texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url('/assets/paper_texture.png');
  background-size: cover;
  background-position: center;
  opacity: 0.14;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 1;
}

nav, main, footer { position: relative; z-index: 2; }

::selection { background: var(--gold-soft); color: var(--ink); }

a { color: inherit; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(248, 244, 237, 0.72);
  border-bottom: 1px solid transparent;
  transition: padding 0.4s cubic-bezier(.2,.7,.2,1), background 0.4s ease, border-color 0.4s ease;
}
nav.scrolled {
  padding: 0.7rem 2.5rem;
  background: rgba(248, 244, 237, 0.96);
  border-bottom-color: rgba(184, 149, 76, 0.16);
}

.nav-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--steel-blue);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-links { display: flex; gap: 2.25rem; }

.nav-links a {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.62rem 1.2rem;
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ink);
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--steel-blue); border-color: var(--steel-blue); }

/* ─── FLOATING CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.4rem;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 18px 50px -18px rgba(31, 41, 51, 0.55);
  opacity: 0;
  transform: translateY(24px) scale(0.94);
  pointer-events: none;
  transition: all 0.45s cubic-bezier(.2,.7,.2,1), background 0.3s ease;
  will-change: transform, opacity;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-cta:hover {
  background: var(--steel-blue);
  transform: translateY(-3px) scale(1.02);
}
.floating-cta .fc-arrow { transition: transform 0.3s ease; }
.floating-cta:hover .fc-arrow { transform: translateX(4px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-landscape {
  position: absolute;
  inset: -10% -5% -10% -5%;
  background-image: url('/assets/hero_photo.jpg?v=2');
  background-size: cover;
  background-position: center 45%;
  filter: brightness(1.05) saturate(0.92) contrast(0.98);
  z-index: -2;
  will-change: transform;
}
.hero-landscape::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248,244,237,0.6) 0%, rgba(248,244,237,0.32) 38%, rgba(248,244,237,0.62) 74%, var(--ivory-warm) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url('/assets/paper_texture.png');
  background-size: cover;
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 920px;
  padding: 2rem;
  position: relative;
  z-index: 2;
}
/* soft ivory scrim behind the text so it reads cleanly over the photo */
.hero-content::before {
  content: '';
  position: absolute;
  inset: -6% -10%;
  background: radial-gradient(ellipse at center,
    rgba(248, 244, 237, 0.78) 0%,
    rgba(248, 244, 237, 0.55) 40%,
    rgba(248, 244, 237, 0.18) 68%,
    transparent 82%);
  z-index: -1;
  pointer-events: none;
}

.hero-monogram {
  width: clamp(160px, 18vw, 240px);
  height: auto;
  margin: 0 auto 1.25rem;
  opacity: 0;
  transform: scale(0.92);
  will-change: transform, opacity;
}

.hero-prelude {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--steel-blue);
  margin-bottom: 1.5rem;
  opacity: 0;
}

.hero-names {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.5rem, 11vw, 9rem);
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.005em;
  text-shadow: 0 1px 14px rgba(248, 244, 237, 0.7), 0 1px 2px rgba(248, 244, 237, 0.85);
}
.hero-names .first, .hero-names .second {
  display: block;
  opacity: 0;
  will-change: transform, opacity;
}
.hero-names .amp {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 0.4em;
  color: var(--gold);
  margin: 0.1em 0;
  opacity: 0;
}

.hero-meta {
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  opacity: 0;
}
.hero-meta .meta-line { width: 40px; height: 1px; background: var(--gold); }
.hero-meta .meta-text {
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(248, 244, 237, 0.85);
}

.hero-venue {
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--deep-blue);
  opacity: 0;
  text-shadow: 0 1px 10px rgba(248, 244, 237, 0.9);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.75rem;
  padding: 1.05rem 2.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ink);
  opacity: 0;
  transition: all 0.4s ease;
}
.hero-cta .arrow { transition: transform 0.3s ease; display: inline-block; }
.hero-cta:hover { background: var(--steel-blue); border-color: var(--steel-blue); }
.hero-cta:hover .arrow { transform: translateX(5px); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--steel-blue);
  opacity: 0;
  z-index: 2;
}
.scroll-hint span {
  display: block;
  width: 1px;
  height: 32px;
  background: var(--gold-soft);
  margin: 0.85rem auto 0;
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%     { opacity: 1; transform: scaleY(1); }
}

/* ─── SECTIONS / TYPE ─── */
section {
  padding: clamp(5rem, 9vw, 8rem) 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  text-align: center;
}
.eyebrow.gold { color: var(--gold-soft); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 2.25rem;
  line-height: 1.1;
  text-align: center;
  letter-spacing: -0.005em;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.section-title .accent {
  font-style: italic;
  color: var(--steel-blue);
}
.section-title .accent-gold {
  font-style: italic;
  color: var(--gold);
}

/* baseline reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  will-change: transform, opacity, filter;
}

/* ─── COUNTDOWN ─── */
.countdown-section {
  padding: 5rem 2rem 6rem;
  text-align: center;
}
.countdown {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: clamp(0.6rem, 2vw, 2rem);
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}
.countdown-number {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.countdown-text {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.65rem;
}
.countdown-dot {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold-soft);
  align-self: flex-start;
  margin-top: 0.35em;
}

/* ─── STORY ─── */
.story-section { text-align: center; }
.story-body {
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--charcoal);
}
.story-body p { margin-bottom: 1.25rem; }
.story-body p:last-child { margin-bottom: 0; }

.story-feature {
  margin: 0 auto;
  max-width: 480px;
  aspect-ratio: 4/5;
  background-image: url('/assets/photos/1.png');
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 30px 80px -30px rgba(15, 23, 35, 0.45);
}
.story-feature::after {
  content: 'February 13 — by the river';
  position: absolute;
  bottom: -2.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--soft-gray);
  font-size: 0.92rem;
  white-space: nowrap;
}

/* ─── SCHEDULE TIMELINE ─── */
.schedule-section { text-align: center; }

.timeline {
  position: relative;
  max-width: 620px;
  margin: 3rem auto 0;
  padding-left: 2.5rem;
  text-align: left;
}
.t-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.7rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold-soft) 8%, var(--gold-soft) 92%, transparent 100%);
  transform-origin: top;
}
.t-item {
  position: relative;
  padding: 0.5rem 0 1.85rem 1.5rem;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.t-item::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: -2.05rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ivory-warm);
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 4px var(--ivory-warm);
}
.t-time {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  padding-top: 0.35rem;
}
.t-desc { display: flex; flex-direction: column; gap: 0.25rem; }
.t-desc strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}
.t-desc span {
  font-size: 0.92rem;
  color: var(--soft-gray);
  line-height: 1.5;
}

/* ─── ISTANBUL SECTION ─── */
.trip-section {
  max-width: none;
  padding: 0;
  margin: 4rem 0 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--deep-blue);
  color: var(--ivory);
}
.trip-bg {
  position: absolute;
  inset: -10%;
  background-image: url('/assets/istanbul_watercolor.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.78) saturate(0.95);
  z-index: -2;
  will-change: transform;
}
.trip-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(45, 63, 82, 0.65) 0%,
      rgba(45, 63, 82, 0.45) 40%,
      rgba(45, 63, 82, 0.7) 100%);
  z-index: -1;
}
.trip-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.trip-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--ivory);
  margin-bottom: 1.75rem;
  letter-spacing: -0.005em;
}
.trip-title .accent-gold {
  font-style: italic;
  color: var(--gold-soft);
}
.trip-body {
  max-width: 580px;
  margin: 0 auto 1.5rem;
  font-size: 1.06rem;
  line-height: 1.75;
  color: rgba(248, 244, 237, 0.86);
}
.trip-body:last-of-type { margin-bottom: 2.5rem; }

.trip-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 2.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--ivory);
  color: var(--ink);
  border: 1px solid var(--ivory);
  transition: all 0.3s ease;
}
.trip-cta .arrow { transition: transform 0.3s ease; display: inline-block; }
.trip-cta:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.trip-cta:hover .arrow { transform: translateX(5px); }

.trip-marquee {
  overflow: hidden;
  position: relative;
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(248, 244, 237, 0.12);
  background: rgba(31, 41, 51, 0.25);
}
.marquee-track {
  display: inline-flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: rgba(248, 244, 237, 0.55);
}
.marquee-track span:nth-child(odd) { color: var(--gold-soft); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── REGISTRY (home teaser) ─── */
.registry-home-section { text-align: center; }
.registry-home-body {
  margin-top: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.registry-home-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 2.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid var(--ink);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.registry-home-cta .arrow { transition: transform 0.3s ease; display: inline-block; }
.registry-home-cta:hover { background: var(--steel-blue); border-color: var(--steel-blue); }
.registry-home-cta:hover .arrow { transform: translateX(5px); }

.registry-bubble {
  position: relative;
  max-width: 430px;
  text-align: left;
  background: rgba(255, 252, 246, 0.92);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 1.5rem 1.7rem;
  box-shadow: 0 22px 55px -30px rgba(74, 102, 128, 0.45);
}
.registry-bubble::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: rgba(255, 252, 246, 0.92);
  border-left: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.registry-bubble p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0;
}
@media (max-width: 760px) {
  .registry-bubble { max-width: 100%; }
  .registry-bubble::before {
    left: 50%;
    top: -8px;
    transform: translateX(-50%) rotate(45deg);
    border-left: 1px solid var(--hairline);
    border-top: 1px solid var(--hairline);
    border-bottom: none;
  }
}

/* ─── DETAILS GRID ─── */
.details-section { text-align: center; }
.d-stack { margin-top: 0.85rem; }
.final-mail {
  color: var(--gold-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  white-space: nowrap;
}
.final-mail:hover { color: var(--ink); border-bottom-color: var(--ink); }

.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
  text-align: left;
}
@media (min-width: 700px) { .details-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1020px){ .details-grid { grid-template-columns: 1fr 1fr 1fr; } }

.detail-card {
  padding: 2rem 1.85rem;
  background: rgba(255, 252, 246, 0.7);
  border: 1px solid var(--hairline);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}
.detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -22px rgba(74, 102, 128, 0.25);
  border-color: rgba(184, 149, 76, 0.35);
}
.detail-card.accent {
  background: linear-gradient(135deg, rgba(74, 102, 128, 0.96), rgba(45, 63, 82, 0.98));
  color: var(--ivory);
  border: none;
}
.detail-card.accent h3 { color: var(--ivory); }
.detail-card.accent p { color: rgba(248, 244, 237, 0.85); }

.d-label {
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.d-label.gold { color: var(--gold-soft); }

.detail-card h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}
.detail-card p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--charcoal);
}
.d-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--steel-blue);
  text-decoration: none;
  border-bottom: 1px dotted var(--steel-blue);
}
.detail-card ul.hotels {
  list-style: none;
  margin-top: 0.5rem;
}
.detail-card ul.hotels li {
  font-size: 0.9rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--hairline);
  color: var(--charcoal);
}
.detail-card ul.hotels li:last-child { border-bottom: none; }
.detail-card ul.hotels li strong { color: var(--ink); font-weight: 500; }

/* ─── FINAL CTA ─── */
.final-cta-section {
  max-width: none;
  padding: 7rem 2rem 8rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(184, 149, 76, 0.12) 0%, transparent 60%),
    var(--ivory-warm);
  border-top: 1px solid var(--hairline);
}
.final-inner { max-width: 640px; margin: 0 auto; }
.final-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.final-title .accent-gold { font-style: italic; color: var(--gold); }
.final-body {
  font-size: 1.05rem;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
}
.final-button {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.15rem 2.5rem;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: all 0.35s ease;
}
.final-button:hover {
  background: var(--steel-blue);
  border-color: var(--steel-blue);
  transform: translateY(-2px);
}
.final-button .arrow { display: inline-block; transition: transform 0.3s ease; }
.final-button:hover .arrow { transform: translateX(5px); }

/* ─── REGISTRY secondary buttons (paired beside each RSVP) ─── */
.reg-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--steel-blue);
  color: var(--ivory);
  border: 1px solid var(--steel-blue);
  transition: all 0.3s ease;
}
.reg-btn:hover { background: var(--deep-blue); color: var(--ivory); border-color: var(--deep-blue); }

.reg-hero  { padding: 1.05rem 2.2rem; font-size: 0.7rem;  letter-spacing: 0.4em;  opacity: 0; }
.reg-final { padding: 1.15rem 2.5rem; font-size: 0.7rem;  letter-spacing: 0.4em; }
.reg-nav   { padding: 0.62rem 1.2rem; font-size: 0.66rem; letter-spacing: 0.34em; }

/* paired-button rows */
.hero-ctas {
  margin-top: 2.75rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-ctas .hero-cta { margin-top: 0; }
.final-ctas {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.nav-actions { display: flex; align-items: center; gap: 0.6rem; }

/* floating registry pill (sits above the RSVP pill) */
.floating-reg {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.4rem;
  background: var(--steel-blue);
  color: var(--ivory);
  border: 1px solid var(--steel-blue);
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 18px 50px -18px rgba(74, 102, 128, 0.5);
  opacity: 0;
  transform: translateY(24px) scale(0.94);
  pointer-events: none;
  transition: all 0.45s cubic-bezier(.2,.7,.2,1), background 0.3s ease, color 0.3s ease;
}
.floating-reg.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-reg:hover {
  background: var(--deep-blue);
  color: var(--ivory);
  transform: translateY(-3px) scale(1.02);
}

/* RSVP stays in the dark family so Registry owns the blue emphasis */
.nav-cta:hover,
.hero-cta:hover,
.final-button:hover,
.floating-cta:hover { background: var(--charcoal); border-color: var(--charcoal); }

/* ─── FOOTER ─── */
footer {
  padding: 5rem 2rem 4rem;
  text-align: center;
  background: var(--ivory-warm);
  border-top: 1px solid var(--hairline);
}
.footer-monogram { width: 60px; height: auto; margin: 0 auto 1.25rem; opacity: 0.85; }
.footer-names {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--steel-blue);
  margin-bottom: 0.45rem;
}
.footer-date {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-meta {
  font-size: 0.75rem;
  color: var(--soft-gray);
  font-style: italic;
  font-family: var(--font-display);
}

/* ─────────────────────────────────────────────────────────────
   FORM STYLES (used on /rsvp)
───────────────────────────────────────────────────────────── */
.page-shell {
  min-height: 100vh;
  padding-top: 6rem;
}

.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem 6rem;
}

.form-progress {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.fp-step {
  width: 36px;
  height: 4px;
  background: var(--hairline);
  border-radius: 999px;
  transition: background 0.35s ease;
}
.fp-step.active { background: var(--gold); }
.fp-step.done   { background: var(--steel-blue); }

.form-step { display: none; }
.form-step.active { display: block; animation: stepIn 0.55s cubic-bezier(.2,.7,.2,1); }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(20px) scale(0.99); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.form-step h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 0.9rem;
  letter-spacing: -0.005em;
}
.form-step h2 .accent { font-style: italic; color: var(--steel-blue); }
.form-step .step-sub {
  font-size: 1rem;
  color: var(--soft-gray);
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.field { margin-bottom: 1.5rem; }
.field label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}
.field .hint {
  display: block;
  font-size: 0.78rem;
  color: var(--soft-gray);
  margin-top: 0.35rem;
  font-style: italic;
  font-family: var(--font-display);
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(74, 102, 128, 0.22);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  border-radius: var(--rad);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--steel-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74, 102, 128, 0.12);
}
.field textarea { min-height: 110px; resize: vertical; }

.field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) { .field-row.two { grid-template-columns: 1fr 1fr; } }

.choice-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.choice-tile {
  display: block;
  padding: 1.1rem 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(74, 102, 128, 0.22);
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.92rem;
  color: var(--charcoal);
}
.choice-tile input { display: none; }
.choice-tile:hover { border-color: var(--steel-blue); }
.choice-tile.selected {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
  transform: translateY(-1px);
}
.choice-tile small {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: inherit;
  opacity: 0.7;
}

.guest-block {
  padding: 1.5rem;
  border: 1px solid var(--hairline);
  margin-bottom: 1rem;
  background: rgba(255, 252, 246, 0.6);
  position: relative;
}
.guest-block .gb-label {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.button-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
}
.btn {
  padding: 1rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.btn.primary { background: var(--ink); color: var(--ivory); }
.btn.primary:hover { background: var(--steel-blue); transform: translateY(-2px); }
.btn.ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--hairline);
}
.btn.ghost:hover { border-color: var(--steel-blue); color: var(--steel-blue); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.success-screen { text-align: center; padding: 3rem 1.5rem; }
.success-screen .ss-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--steel-blue);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.success-screen h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.3rem;
  color: var(--ink);
  margin-bottom: 1rem;
}
.success-screen p {
  font-size: 1.05rem;
  color: var(--charcoal);
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* ─────────────────────────────────────────────────────────────
   REGISTRY PAGE
───────────────────────────────────────────────────────────── */
.registry-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  padding: 6rem 2rem 3rem;
  background: var(--deep-blue);
  color: var(--ivory);
}
.registry-hero .reg-bg {
  position: absolute;
  inset: -10%;
  background-image: url('/assets/istanbul_watercolor.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.7) saturate(0.95);
  z-index: -2;
}
.registry-hero .reg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(45,63,82,0.7) 0%, rgba(45,63,82,0.55) 50%, rgba(45,63,82,0.85) 100%);
  z-index: -1;
}
.reg-hero-inner {
  max-width: 720px;
}
.reg-hero-inner .eyebrow { color: var(--gold-soft); }
.reg-hero-inner h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  margin: 1rem 0 1.5rem;
  color: var(--ivory);
}
.reg-hero-inner h1 em { font-style: italic; color: var(--gold-soft); }
.reg-hero-inner p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(248, 244, 237, 0.86);
}

.registry-options {
  max-width: 980px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .registry-options { grid-template-columns: 1.4fr 1fr; }
}

.reg-card {
  padding: 2.5rem 2rem;
  background: rgba(255, 252, 246, 0.7);
  border: 1px solid var(--hairline);
  position: relative;
}
.reg-card.feature {
  background: linear-gradient(135deg, var(--ink), var(--deep-blue));
  color: var(--ivory);
  border: none;
}
.reg-card .r-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.reg-card.feature .r-label { color: var(--gold-soft); }
.reg-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.reg-card.feature h3 { color: var(--ivory); }
.reg-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--charcoal);
}
.reg-card.feature p { color: rgba(248, 244, 237, 0.88); }

.fund-details {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ivory);
  display: grid;
  gap: 0.5rem;
}
.fund-details .fd-row {
  display: flex;
  gap: 0.85rem;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0;
}
.fund-details .fd-row:last-child { border-bottom: none; }
.fund-details .fd-row .k {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-soft);
  min-width: 90px;
}
.fund-details .fd-row .v {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ivory);
  text-align: right;
  word-break: break-word;
}
.copy-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid var(--gold-soft);
  color: var(--gold-soft);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-body);
  margin-top: 1rem;
}
.copy-button:hover { background: var(--gold-soft); color: var(--ink); }
.copy-button.copied { background: var(--gold-soft); color: var(--ink); }

.reg-secondary-list {
  list-style: none;
  margin-top: 0.5rem;
}
.reg-secondary-list li {
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--hairline);
  font-size: 0.95rem;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.reg-secondary-list li:last-child { border-bottom: none; }

.fifty-fifty {
  max-width: 880px;
  margin: 0 auto 5rem;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px dashed rgba(184, 149, 76, 0.5);
  background: rgba(184, 149, 76, 0.06);
}
.fifty-fifty h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--ink);
  margin-bottom: 0.85rem;
}
.fifty-fifty p {
  font-size: 1rem;
  color: var(--charcoal);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────────
   DASHBOARD PAGE
───────────────────────────────────────────────────────────── */
.dash-shell {
  min-height: 100vh;
  background: var(--ivory-warm);
  padding: 6rem 1.5rem 5rem;
}
.dash-wrap { max-width: 1280px; margin: 0 auto; }
.dash-head { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.dash-head h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  line-height: 1.1;
}
.dash-head .dash-meta {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.kpi {
  padding: 1.5rem 1.5rem 1.4rem;
  background: #fff;
  border: 1px solid var(--hairline);
}
.kpi .label {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.kpi .value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.kpi .sub {
  font-size: 0.78rem;
  color: var(--soft-gray);
  margin-top: 0.5rem;
}
.kpi.accent {
  background: var(--ink);
  color: var(--ivory);
}
.kpi.accent .label { color: var(--gold-soft); }
.kpi.accent .value { color: var(--ivory); }
.kpi.accent .sub { color: rgba(248,244,237,0.7); }

.dash-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .dash-grid { grid-template-columns: 2fr 1fr; }
}

.dash-card {
  background: #fff;
  border: 1px solid var(--hairline);
  padding: 1.75rem;
}
.dash-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.dash-card h3 .count {
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
}
.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.dash-table th, .dash-table td {
  text-align: left;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
}
.dash-table th {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.dash-table td .pill {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: var(--whisper-blue);
  color: var(--steel-blue);
}
.dash-table td .pill.no { background: rgba(31, 41, 51, 0.08); color: var(--soft-gray); }
.dash-table .muted { color: var(--soft-gray); font-style: italic; }

.dash-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dash-list li {
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--hairline);
  font-size: 0.92rem;
  color: var(--charcoal);
}
.dash-list li:last-child { border-bottom: none; }

.dash-toolbar {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}
.dash-toolbar button {
  padding: 0.62rem 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--ivory);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
  font-family: var(--font-body);
}
.dash-toolbar button:hover { background: var(--steel-blue); }
.dash-toolbar button.ghost { background: transparent; color: var(--charcoal); border: 1px solid var(--hairline); }
.dash-toolbar button.ghost:hover { border-color: var(--steel-blue); color: var(--steel-blue); }

.dash-empty {
  padding: 4rem 2rem;
  text-align: center;
  color: var(--soft-gray);
  font-style: italic;
  font-family: var(--font-display);
}

.dash-locked {
  max-width: 460px;
  margin: 12vh auto 0;
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border: 1px solid var(--hairline);
}
.dash-locked h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.85rem;
}
.dash-locked p { color: var(--soft-gray); margin-bottom: 1.5rem; }
.dash-locked input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--hairline);
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ─── RSVP MODAL ─── */
.rsvp-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(31, 41, 51, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.rsvp-modal.open { opacity: 1; pointer-events: auto; }
.rsvp-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--ivory-warm);
  border: 1px solid rgba(184, 149, 76, 0.3);
  border-radius: 6px;
  padding: 2.5rem 2.25rem 2.25rem;
  box-shadow: 0 40px 90px -30px rgba(31, 41, 51, 0.6);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}
.rsvp-modal.open .rsvp-card { transform: translateY(0) scale(1); }
.rsvp-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--soft-gray);
  cursor: pointer;
  padding: 0.2rem 0.4rem;
  transition: color 0.2s ease;
}
.rsvp-close:hover { color: var(--ink); }
.rsvp-card .rsvp-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.rsvp-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.85rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}
.rsvp-card .rsvp-lead {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--charcoal);
  margin-bottom: 1.4rem;
}
.rsvp-emailrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.85rem 1rem;
  background: rgba(74, 102, 128, 0.07);
  border: 1px solid var(--hairline);
  border-radius: 4px;
  margin-bottom: 1.4rem;
}
.rsvp-emailrow a {
  font-weight: 500;
  color: var(--steel-blue);
  text-decoration: none;
  word-break: break-all;
}
.rsvp-tmpl-label {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.rsvp-template {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--charcoal);
  white-space: pre-wrap;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
  max-height: 220px;
  overflow-y: auto;
}
.rsvp-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.rsvp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--ink);
  transition: all 0.25s ease;
}
.rsvp-btn.primary { background: var(--ink); color: var(--ivory); }
.rsvp-btn.primary:hover { background: var(--steel-blue); border-color: var(--steel-blue); }
.rsvp-btn.ghost { background: transparent; color: var(--charcoal); border-color: var(--hairline); }
.rsvp-btn.ghost:hover { border-color: var(--steel-blue); color: var(--steel-blue); }
.rsvp-btn.ghost.copied { border-color: var(--gold); color: var(--gold-deep); }

/* ─── RESPONSIVE NAV ─── */
@media (max-width: 760px) {
  nav { padding: 0.85rem 1.1rem; flex-wrap: wrap; gap: 0.5rem; }
  nav.scrolled { padding: 0.65rem 1.1rem; }
  .nav-links { gap: 1rem; flex-wrap: wrap; justify-content: center; width: 100%; order: 3; }
  .nav-links a { font-size: 0.6rem; }
  .nav-mark { font-size: 1.1rem; }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.6rem; }
  .nav-actions { gap: 0.4rem; }
  .reg-nav { padding: 0.5rem 1rem; font-size: 0.6rem; }
  .floating-cta { bottom: 1rem; right: 1rem; padding: 0.85rem 1.2rem; font-size: 0.62rem; }
  .floating-reg { bottom: 4.1rem; right: 1rem; padding: 0.85rem 1.2rem; font-size: 0.62rem; }
  .timeline { padding-left: 2rem; }
  .t-item { grid-template-columns: 90px 1fr; gap: 1rem; padding-left: 1rem; }
  .t-item::before { left: -1.65rem; }
  .button-row { flex-direction: column-reverse; }
  .button-row .btn { width: 100%; justify-content: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
