:root {
  --bg: #F4EED7;
  --bg-deep: #EFE7C8;
  --surface: #FFFFFF;
  --surface-warm: #FBF6E3;
  --primary: #0E1D3E;
  --accent: #C4963A;
  --accent-soft: #D9B36A;
  --accent-deep: #A67B24;
  --text: #0E1D3E;
  --muted: rgba(14, 29, 62, 0.58);
  --line: rgba(14, 29, 62, 0.12);
  --line-gold: rgba(196, 150, 58, 0.28);
  --dark: #0B162F;
  --f-serif: 'Cormorant Garamond', serif;
  --f-sans: 'Outfit', sans-serif;
  --ink: #0E1D3E;
  --body: rgba(14, 29, 62, 0.82);
  --faint: rgba(14, 29, 62, 0.4);
  --shadow-soft: 0 1px 2px rgba(14, 29, 62, 0.04), 0 8px 24px rgba(14, 29, 62, 0.06);
  --shadow-gold: 0 12px 40px rgba(196, 150, 58, 0.22);
  --shadow-lux: 0 20px 60px rgba(14, 29, 62, 0.08), 0 2px 4px rgba(14, 29, 62, 0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(196, 150, 58, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(196, 150, 58, 0.06), transparent 60%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--f-sans);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: opacity 0.25s ease, color 0.25s ease;
}

a:hover {
  opacity: 0.75;
}

em {
  font-style: italic;
  color: var(--accent);
}

::selection {
  background: rgba(196, 150, 58, 0.25);
  color: var(--ink);
}

/* INVÉ BAR */
.inve-bar {
  background: var(--dark);
  padding: 0.7rem 1.5rem;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  border-bottom: 1px solid rgba(196, 150, 58, 0.2);
}

.inve-bar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.44em;
}

/* NAVIGATION */
nav.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.75rem;
  background: rgba(244, 238, 215, 0.82);
  backdrop-filter: blur(28px) saturate(1.2);
  -webkit-backdrop-filter: blur(28px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  margin-top: 40px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.nav-burger {
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0;
}

.nav-burger:hover {
  border-color: var(--accent);
  background: rgba(196, 150, 58, 0.06);
  transform: scale(1.03);
}

.nav-burger span {
  width: 16px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-brand {
  font-family: var(--f-serif);
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  letter-spacing: 0.005em;
}

.nav-brand em {
  font-style: italic;
  font-size: 1.3rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 2.5rem;
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-solid {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(196, 150, 58, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-solid::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: left 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-solid:hover::after {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--line-gold);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* DRAWER */
.drawer {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: min(85vw, 420px);
  background: var(--surface-warm);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-gold);
  overflow-y: auto;
  box-shadow: 24px 0 60px rgba(14, 29, 62, 0.1);
}

.drawer.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 1.85rem 1.85rem 1.5rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-brand {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.005em;
}

.drawer-brand em {
  font-style: italic;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.drawer-close:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

.drawer-nav {
  flex: 1;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
}

.drawer-link {
  padding: 1.2rem 1.85rem;
  font-family: var(--f-sans);
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.drawer-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s ease;
}

.drawer-link:hover {
  color: var(--accent);
  background: rgba(196, 150, 58, 0.05);
  padding-left: 2.3rem;
}

.drawer-link:hover::before {
  width: 16px;
  left: 1.55rem;
}

.drawer-link[aria-current="page"] {
  color: var(--accent);
  pointer-events: none;
  background: rgba(196, 150, 58, 0.07);
  font-weight: 700;
}

.drawer-link[aria-current="page"]::before {
  width: 16px;
  left: 1.55rem;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 22, 47, 0);
  opacity: 0;
  z-index: 150;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  backdrop-filter: blur(0px);
}

.drawer-backdrop.open {
  background: rgba(11, 22, 47, 0.55);
  backdrop-filter: blur(6px);
  opacity: 1;
  pointer-events: auto;
}

/* MAIN CONTENT */
main {
  padding-top: calc(80px + 1rem);
}

.section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 4vw, 2.75rem);
  max-width: 1280px;
  margin: 0 auto;
}

/* SECTION LABEL */
.slabel {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 0.66rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.slabel::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

/* HERO */
.hero {
  padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 4vw, 2.75rem) clamp(5rem, 10vw, 9rem);
  background:
    linear-gradient(180deg, transparent 0%, rgba(196, 150, 58, 0.05) 40%, rgba(196, 150, 58, 0.1) 100%);
  border-bottom: 1px solid var(--line-gold);
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 1px;
  background: var(--accent);
}

.hero-eyebrow {
  font-family: var(--f-sans);
  font-size: clamp(0.66rem, 1.1vw, 0.78rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 1.9rem;
  position: relative;
  padding-left: 2.75rem;
}

.hero-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--f-serif);
  font-size: clamp(2.9rem, 7.8vw, 6rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.0;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--f-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 1.1rem;
  max-width: 640px;
  line-height: 1.45;
  opacity: 0.9;
}

.hero-tagline {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1.85rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

.hero-lede {
  font-family: var(--f-serif);
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--body);
  max-width: 560px;
  margin-bottom: 3.25rem;
  line-height: 1.65;
}

/* FACTS GRID */
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 640px;
  margin-bottom: 3.25rem;
  gap: 0;
  padding: 1.9rem 0;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}

.fact {
  padding: 0.5rem 1.85rem 0.5rem 0;
  border-right: 1px solid var(--line);
}

.fact:nth-child(2) {
  padding-left: 1.85rem;
  border-right: none;
}

.fact:nth-child(3) {
  padding-top: 1.6rem;
  margin-top: 1.35rem;
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
  border-right: none;
  padding-right: 0;
}

.fact-lbl {
  font-family: var(--f-sans);
  font-size: 0.64rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.fact-val {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(1.95rem, 3.5vw, 2.7rem);
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.015em;
}

.fact-val b {
  color: var(--accent);
  font-weight: 500;
  font-style: italic;
}

/* WHAT AWAITS */
.what-awaits {
  background: var(--surface);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  position: relative;
}

.stitle {
  font-family: var(--f-serif);
  font-size: clamp(2.4rem, 5.6vw, 4.1rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.08;
  margin-bottom: 1.4rem;
  letter-spacing: -0.015em;
  max-width: 900px;
}

.stitle em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.sub {
  font-family: var(--f-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  color: var(--body);
  max-width: 620px;
  line-height: 1.7;
  font-style: italic;
}

/* COUNTDOWN */
.countdown-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line-gold);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: clamp(1rem, 2vw, 2.5rem);
  margin-top: 2.75rem;
  max-width: 900px;
  padding: 2.75rem 0;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}

.cd-unit {
  text-align: center;
  position: relative;
}

.cd-unit:not(:last-child)::after {
  content: '';
  position: absolute;
  right: calc(-1 * clamp(0.5rem, 1vw, 1.25rem));
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--line);
}

.cd-val {
  font-family: var(--f-serif);
  font-size: clamp(3.1rem, 7.2vw, 5.4rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}

.cd-lbl {
  font-size: 0.66rem;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.85rem;
  font-weight: 600;
}

/* STORY PAGE */
.story-section {
  background: var(--surface);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.25rem, 5vw, 5.25rem);
  margin-top: 3.25rem;
  align-items: start;
}

.pull-quote {
  font-family: var(--f-serif);
  font-size: clamp(1.55rem, 2.9vw, 2.15rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.38;
  padding-left: 2.15rem;
  border-left: 2px solid var(--accent);
  position: relative;
}

.pull-quote::before {
  content: '"';
  position: absolute;
  left: -0.3rem;
  top: -2.75rem;
  font-size: 6.5rem;
  color: var(--accent);
  opacity: 0.15;
  font-family: var(--f-serif);
  line-height: 1;
}

.pull-quote em {
  color: var(--accent);
}

.story-body p {
  font-family: var(--f-serif);
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--body);
}

@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}

/* DETAILS PAGE */
.venue-section,
.attire-section,
.banking-section {
  background: var(--surface);
  border-bottom: 1px solid var(--line-gold);
}

.venue-section:first-of-type {
  border-top: 1px solid var(--line-gold);
}

.venue-address {
  font-family: var(--f-serif);
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  color: var(--ink);
  margin: 1.1rem 0 1.3rem;
  line-height: 1.5;
  max-width: 640px;
  letter-spacing: 0.005em;
}

.venue-directions {
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
}

.venue-directions a {
  text-decoration: none;
  border-bottom: 1px solid var(--line-gold);
  padding-bottom: 3px;
}

.attire-text {
  font-family: var(--f-serif);
  font-size: clamp(1.15rem, 1.85vw, 1.35rem);
  color: var(--body);
  margin-top: 1.1rem;
  line-height: 1.75;
  max-width: 720px;
}

.banking-block {
  margin-top: 1.75rem;
  padding: clamp(2rem, 3.5vw, 2.75rem);
  background: var(--surface-warm);
  border: 1px solid var(--line-gold);
  border-left: 3px solid var(--accent);
  max-width: 720px;
  border-radius: 2px;
  box-shadow: var(--shadow-lux);
}

.banking-details {
  font-family: var(--f-serif);
  font-size: clamp(1.1rem, 1.75vw, 1.25rem);
  color: var(--ink);
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

.banking-note {
  font-size: 0.95rem;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.banking-note strong {
  color: var(--accent);
  font-weight: 700;
}

.banking-gift {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
  font-family: var(--f-serif);
  line-height: 1.7;
}

/* SCHEDULE PAGE */
.schedule-section {
  background: var(--surface);
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}

.schedule-empty {
  margin-top: 2.75rem;
  padding: 3.25rem 2rem;
  background: var(--surface-warm);
  border: 1px solid var(--line-gold);
  text-align: center;
  border-radius: 2px;
  max-width: 640px;
}

.schedule-empty p {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.75;
}

/* FOOTER */
footer {
  padding: 4.5rem clamp(1.5rem, 4vw, 2.75rem) 3.25rem;
  text-align: center;
  background: var(--dark);
  background-image: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(196, 150, 58, 0.1), transparent 70%);
  color: #fff;
  border-top: 1px solid rgba(196, 150, 58, 0.2);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 1px;
  background: var(--accent);
}

.f-brand {
  font-family: var(--f-serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.9rem;
  letter-spacing: 0.005em;
}

.f-brand em {
  color: var(--accent);
  font-style: italic;
}

.f-facts {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  margin-bottom: 2.25rem;
}

.f-inve {
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 200px;
  margin: 0 auto;
}

.f-inve a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.44em;
}

/* BELL BUTTON */
.bell-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  margin-left: 0.6rem;
  flex-shrink: 0;
  padding: 0;
}

.bell-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(196, 150, 58, 0.06);
  transform: scale(1.03);
}

.bell-btn[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 2px 10px rgba(196, 150, 58, 0.3);
}

.bell-btn[data-state="muted"] {
  opacity: 0.4;
}

.bell-btn[data-state="blocked"] {
  opacity: 0.3;
  cursor: not-allowed;
}

/* PUSH BANNER & TOAST */
.push-banner {
  position: fixed;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 9999;
  width: min(380px, calc(100vw - 2.8rem));
  padding: 1.65rem 1.7rem;
  background: var(--surface);
  border: 1px solid var(--line-gold);
  border-left: 3px solid var(--accent);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  transition: all 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  font-family: var(--f-sans);
  box-shadow: var(--shadow-lux);
  border-radius: 2px;
}

.push-banner.push-banner-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.push-banner-title {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.6rem;
  letter-spacing: 0.005em;
}

.push-banner-body {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.push-banner-actions {
  display: flex;
  gap: 0.6rem;
}

.push-btn {
  padding: 0.75rem 1.15rem;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--f-sans);
  cursor: pointer;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--primary);
  transition: all 0.35s ease;
}

.push-btn-solid {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  border-color: var(--accent);
}

.push-btn-solid:hover {
  filter: brightness(1.08);
  box-shadow: 0 4px 14px rgba(196, 150, 58, 0.25);
}

.push-btn-outline {
  color: var(--muted);
}

.push-btn-outline:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.bell-toast {
  position: fixed;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  z-index: 10000;
  background: var(--primary);
  color: var(--surface);
  padding: 0.85rem 1.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--f-sans);
  opacity: 0;
  transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  border: 1px solid rgba(196, 150, 58, 0.3);
  box-shadow: 0 10px 30px rgba(14, 29, 62, 0.25);
}

.bell-toast.bell-toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav.nav {
    padding: 0.85rem 1.15rem;
  }

  .nav-right {
    gap: 0.5rem;
  }

  .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.66rem;
    letter-spacing: 0.28em;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .fact {
    padding: 1.05rem 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: none;
  }

  .fact:nth-child(2) {
    padding-left: 0;
  }

  .fact:nth-child(3) {
    padding-top: 1.05rem;
    margin-top: 0;
    border-top: none;
    grid-column: auto;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }

  .cd-unit:not(:last-child)::after {
    display: none;
  }

  .pull-quote {
    padding-left: 1.25rem;
    font-size: 1.45rem;
  }
}

@media (max-width: 520px) {
  nav.nav {
    margin-top: 35px;
  }

  main {
    padding-top: calc(75px + 1rem);
  }

  .nav-brand {
    font-size: 1.3rem;
  }

  .btn {
    padding: 0.85rem 1.15rem;
    font-size: 0.6rem;
  }

  .push-banner {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    width: auto;
  }

  .bell-btn {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}