/* ==========================================================================
   Emily & Simeon — Wedding Site
   Palette: #F0F1F2 ivory · #F0E3CE champagne · #CBA161 gold
            #B6C5D5 soft blue · #849CAF deep blue
   ========================================================================== */

:root {
  --ivory:       #F0F1F2;
  --champagne:   #F0E3CE;
  --gold:        #CBA161;
  --gold-soft:   #d9bc86;
  --blue-light:  #B6C5D5;
  --blue-dark:   #849CAF;
  --ink:         #2f3a47;
  --ink-soft:    #5a6876;

  --font-serif:  'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-script: 'Parisienne', 'Great Vibes', cursive;
  --font-sans:   'Montserrat', system-ui, -apple-system, sans-serif;

  --ease:        cubic-bezier(.22,.61,.36,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  letter-spacing: .015em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .38em;
  font-size: .72rem;
  color: var(--blue-dark);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.script {
  font-family: var(--font-script);
  color: var(--gold);
  font-weight: 400;
}

.section-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.25rem;
}

/* ---------- Ornament ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem auto 2.5rem;
  color: var(--gold);
}
.ornament::before,
.ornament::after {
  content: '';
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament svg { width: 26px; height: 26px; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
}

section.tight { padding: clamp(3rem, 6vw, 5rem) 0; }

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.nav.scrolled {
  background: rgba(240, 241, 242, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: .75rem 2rem;
  box-shadow: 0 1px 0 rgba(132,156,175,.15);
}
/* When the mobile menu is open, drop the backdrop-filter — it creates a
   containing block that would clip the fixed-positioned panel to the nav bar. */
.nav.open {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: transparent;
  box-shadow: none;
}
.nav__brand {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: .12em;
  color: var(--ink);
}
.nav__brand span { color: var(--gold); }

.nav__links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
}
.nav__links a {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: .4rem 0;
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content:'';
  position: absolute;
  left: 50%; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease), left .3s var(--ease);
}
.nav__links a:hover { color: var(--gold); }
.nav__links a:hover::after { width: 100%; left: 0; }

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 30px; height: 22px;
  position: relative;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.nav.open .nav__toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Close button — shown only inside the mobile panel */
.nav__close {
  display: none;
}
.nav__toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 2px; }
.nav__toggle span:nth-child(2) { top: 10px; }
.nav__toggle span:nth-child(3) { top: 18px; }
.nav.open .nav__toggle span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav.open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav__toggle span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 3rem;
  background:
    radial-gradient(ellipse at 15% 15%, rgba(240,227,206,.55), transparent 55%),
    radial-gradient(ellipse at 85% 85%, rgba(182,197,213,.65), transparent 55%),
    linear-gradient(180deg, #e9eef3 0%, #f4ede0 100%);
}

.hero__florals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
}
.hero__florals svg { position: absolute; }
.hero__florals .fl-tl { top: -40px; left: -40px; width: 340px; transform: rotate(-12deg); }
.hero__florals .fl-br { bottom: -60px; right: -60px; width: 380px; transform: rotate(168deg); }
.hero__florals .fl-tr { top: 20px; right: -20px; width: 220px; transform: rotate(60deg); opacity: .7; }
.hero__florals .fl-bl { bottom: 10px; left: -20px; width: 220px; transform: rotate(-120deg); opacity: .7; }

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  animation: heroFade 1.4s var(--ease) both;
}
.hero__eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: .55em;
  font-size: .78rem;
  color: var(--blue-dark);
  margin-bottom: 1.75rem;
  font-weight: 500;
}
.hero__and {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: clamp(3.5rem, 9vw, 6rem);
  display: block;
  line-height: 1;
  margin: .25rem 0;
}
.hero__name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.8rem, 8vw, 6rem);
  letter-spacing: .02em;
  line-height: 1.05;
  color: var(--ink);
  display: block;
}
.hero__meta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: .82rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero__meta .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .68rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  animation: bounce 2.4s infinite;
  z-index: 2;
}
.hero__scroll::after {
  content:'';
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: .6; }
  50%      { transform: translate(-50%, 8px); opacity: 1; }
}

/* ---------- Story ---------- */
.story {
  background: var(--ivory);
  text-align: center;
}
.story__text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--ink-soft);
  font-weight: 300;
}
.story__text p + p { margin-top: 1.25rem; }
.story__signature {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  margin-top: 2.5rem;
}

/* ---------- Countdown ---------- */
.countdown-wrap {
  background:
    linear-gradient(180deg, rgba(182,197,213,.18), rgba(240,227,206,.25)),
    var(--ivory);
  text-align: center;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  flex-wrap: wrap;
  margin-top: 1rem;
}
.countdown__cell {
  min-width: 120px;
  padding: 1.75rem 1rem;
  border: 1px solid rgba(203,161,97,.28);
  border-radius: 2px;
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(6px);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.countdown__cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(132,156,175,.35);
}
.countdown__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
}
.countdown__label {
  display: block;
  margin-top: .75rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .7rem;
  color: var(--blue-dark);
  font-weight: 500;
}

/* ---------- Details ---------- */
.details { background: var(--champagne); background-image: linear-gradient(180deg, rgba(240,227,206,.3) 0%, var(--champagne) 100%); }
.details__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.detail-card {
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(203,161,97,.25);
  padding: 2.5rem 1.75rem;
  text-align: center;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background .4s var(--ease);
  backdrop-filter: blur(4px);
}
.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(132,156,175,.4);
  background: rgba(255,255,255,.8);
}
.detail-card__icon {
  width: 48px; height: 48px;
  margin: 0 auto 1.5rem;
  color: var(--gold);
}
.detail-card h3 {
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  margin-bottom: .75rem;
}
.detail-card p {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.7;
}
.detail-card .accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  display: block;
  margin-top: .5rem;
  letter-spacing: .04em;
}

/* Map */
.map {
  width: 100%;
  aspect-ratio: 16 / 7;
  border: 1px solid rgba(203,161,97,.25);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(132,156,175,.4);
}
.map iframe { width: 100%; height: 100%; border: 0; filter: saturate(.85) contrast(.95); }

/* ---------- Dress Code ---------- */
.dress {
  background: linear-gradient(180deg, var(--ivory) 0%, #e9eef3 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dress__copy {
  max-width: 680px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.9;
  font-weight: 300;
}
.palette {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  transition: transform .5s var(--ease);
}
.swatch:hover { transform: translateY(-6px); }
.swatch__chip {
  width: 92px; height: 92px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 10px 30px -10px rgba(47,58,71,.25), 0 0 0 1px rgba(203,161,97,.2);
  transition: box-shadow .5s var(--ease);
}
.swatch:hover .swatch__chip {
  box-shadow: 0 20px 40px -10px rgba(47,58,71,.3), 0 0 0 1px rgba(203,161,97,.5);
}
.swatch__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .95rem;
  color: var(--ink-soft);
}
.swatch__hex {
  font-family: var(--font-sans);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--blue-dark);
  text-transform: uppercase;
}

/* ---------- Gallery teaser (homepage) ---------- */
.gallery-teaser { background: var(--ivory); text-align: center; }
.gallery-teaser__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.gallery-teaser__tile {
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(135deg, rgba(182,197,213,.6), rgba(240,227,206,.6));
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: transform .6s var(--ease);
}
.gallery-teaser__tile.tall { aspect-ratio: 3/5; }
.gallery-teaser__tile.wide { aspect-ratio: 4/3; }
.gallery-teaser__tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.gallery-teaser__tile:hover { transform: translateY(-4px); }
.gallery-teaser__tile:hover img { transform: scale(1.06); }
.gallery-teaser__tile::after {
  content:'';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(47,58,71,.2));
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.gallery-teaser__tile:hover::after { opacity: 1; }
.gallery-teaser__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  font-family: var(--font-script);
  font-size: 2rem;
}

/* ---------- RSVP ---------- */
.rsvp {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(240,227,206,.6), transparent 60%),
    linear-gradient(180deg, #e9eef3 0%, #dfe6ec 100%);
  text-align: center;
  position: relative;
}
.rsvp__deadline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  margin: 1rem 0 2rem;
}
.rsvp__deadline strong {
  color: var(--gold);
  font-weight: 500;
}
.rsvp__copy {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.9;
  font-weight: 300;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content:'';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease);
  z-index: -1;
}
.btn:hover {
  color: #fff;
  border-color: var(--gold);
}
.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn--solid {
  background: var(--gold);
  color: #fff;
}
.btn--solid::before { background: var(--ink); }
.btn--solid:hover { color: #fff; }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  text-align: center;
  padding: 4rem 1.5rem 2.5rem;
}
.footer__names {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--champagne);
  margin-bottom: 1rem;
}
.footer__names span { color: var(--gold); font-family: var(--font-script); font-style: normal; }
.footer__meta {
  font-size: .72rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 1.5rem;
}
.footer__ornament { color: var(--gold); margin: 1.5rem auto; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .18s; }
.reveal.delay-3 { transition-delay: .28s; }
.reveal.delay-4 { transition-delay: .38s; }

/* ===========================================================================
   GALLERY PAGE
   =========================================================================== */
.gallery-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 1.5rem 4rem;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(240,227,206,.55), transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(182,197,213,.6), transparent 55%),
    linear-gradient(180deg, #e9eef3, #f4ede0);
}
.gallery-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-style: italic;
  font-weight: 300;
}
.gallery-hero p {
  max-width: 620px;
  margin: 1.25rem auto 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.gallery {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--ivory);
}
.gallery__grid {
  column-count: 4;
  column-gap: 1rem;
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  background: linear-gradient(135deg, rgba(182,197,213,.4), rgba(240,227,206,.4));
}
.gallery__item.in { opacity: 1; transform: translateY(0); }
.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .8s var(--ease), filter .5s var(--ease);
}
.gallery__item::after {
  content:'';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(47,58,71,.35)),
    linear-gradient(0deg, rgba(203,161,97,.15), transparent 40%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item:hover::after { opacity: 1; }

.gallery__empty {
  text-align: center;
  padding: 4rem 1.5rem;
  color: var(--ink-soft);
}
.gallery__empty h3 {
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 1rem;
}
.gallery__empty code {
  background: var(--champagne);
  padding: .15rem .5rem;
  font-size: .9em;
  border-radius: 2px;
  color: var(--ink);
}

.gallery__cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(22,28,36,.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox__img {
  max-width: 90vw;
  max-height: 86vh;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.6);
  transform: scale(.96);
  transition: transform .5s var(--ease);
}
.lightbox.open .lightbox__img { transform: scale(1); }
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
  font-size: 1.1rem;
}
.lightbox__close:hover, .lightbox__nav:hover {
  background: rgba(255,255,255,.18);
  transform: scale(1.08);
}
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__nav--prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.08); }
.lightbox__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
}

/* ===========================================================================
   RESPONSIVE
   =========================================================================== */
@media (max-width: 900px) {
  .gallery__grid { column-count: 3; }
  .gallery-teaser__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-teaser__tile:nth-child(4) { display: none; }
}
@media (max-width: 720px) {
  .nav { padding: 1rem 1.25rem; }
  .nav.scrolled { padding: .65rem 1.25rem; }
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 85vw);
    flex-direction: column;
    background: var(--ivory);
    padding: 6rem 2.5rem 2.5rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: -20px 0 60px -20px rgba(47,58,71,.2);
  }
  .nav.open .nav__links { transform: translateX(0); }
  .nav__links a { font-size: .85rem; }

  /* Close button at top-right of the slide-out panel */
  .nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(203,161,97,.4);
    color: var(--ink);
    cursor: pointer;
    transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
    padding: 0;
  }
  .nav__close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: rotate(90deg);
  }
  .nav__close + li { margin-top: 1rem; }

  .hero { padding: 7rem 1.25rem 4rem; }
  .hero__meta { gap: .75rem; font-size: .7rem; letter-spacing: .28em; }
  .hero__meta .dot { display: none; }
  .hero__meta span { display: block; width: 100%; text-align: center; }

  .gallery__grid { column-count: 2; }
  .gallery-teaser__grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .gallery-teaser__tile:nth-child(n+3) { display: none; }

  .palette { gap: .75rem; }
  .swatch__chip { width: 68px; height: 68px; }

  .countdown__cell { min-width: 80px; padding: 1.25rem .75rem; }
  .countdown { gap: .75rem; }
}

@media (max-width: 420px) {
  .gallery__grid { column-count: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
