/* ============================================
   NiceFlick — Editorial Private Cinema
   Light, warm, magazine + film-strip layout
   ============================================ */

:root {
  --bg: #FFF6F0;
  --bg-deep: #FFE8DA;
  --ink: #1A120E;
  --ink-soft: #5C4A42;
  --cream: #FFFBF7;
  --coral: #FF5A3C;
  --orange: #FF7A45;
  --peach: #FFB088;
  --magenta: #E84A6F;
  --teal: #1FB8A8;
  --border: #1A120E;
  --shadow: 6px 6px 0 #1A120E;
  --shadow-soft: 0 28px 60px rgba(26, 18, 14, 0.18);
  --radius: 28px;
  --radius-sm: 16px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Public Sans", system-ui, sans-serif;
  --rail: 52px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* ---------- Film rails ---------- */
.film-rail {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  width: var(--rail);
  z-index: 40;
  background:
    repeating-linear-gradient(
      180deg,
      #1A120E 0 10px,
      transparent 10px 22px
    ),
    linear-gradient(180deg, #FF8A4C, #FF4E2E);
  background-blend-mode: normal;
  border-color: var(--border);
}

.film-rail::before {
  content: "";
  position: absolute;
  inset: 0 10px;
  background: linear-gradient(180deg, #FF9A5C, #FF5A38);
  border-left: 3px solid var(--border);
  border-right: 3px solid var(--border);
}

.film-rail--left {
  left: 0;
  border-right: 3px solid var(--border);
}

.film-rail--right {
  right: 0;
  border-left: 3px solid var(--border);
}

@media (min-width: 1100px) {
  .film-rail {
    display: block;
  }

  body {
    padding-left: var(--rail);
    padding-right: var(--rail);
  }
}

/* ---------- Grain ---------- */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 20px;
  transition: padding 0.25s var(--ease), background 0.25s var(--ease);
}

.site-header.is-stuck {
  padding: 10px 16px;
}

.site-header.is-stuck .nav {
  background: rgba(255, 251, 247, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px 10px 12px;
  background: var(--cream);
  border: 3px solid var(--border);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--border);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 2.5px solid var(--border);
  object-fit: cover;
}

.nav-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: var(--bg-deep);
  outline: none;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-burger {
  width: 44px;
  height: 44px;
  border: 2.5px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--cream);
}

.nav-burger span {
  display: block;
  width: 18px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-burger.is-open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (min-width: 880px) {
  .nav-links {
    display: flex;
  }

  .nav-burger {
    display: none;
  }
}

/* Mobile drawer */
@media (max-width: 879px) {
  .nav-links {
    display: flex;
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    padding: 12px;
    background: var(--cream);
    border: 3px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    z-index: 49;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px 16px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.btn-ticket {
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  color: #fff;
  border: 2.5px solid var(--border);
  box-shadow: 3px 3px 0 var(--border);
  font-size: 0.88rem;
}

.btn-ticket:hover {
  box-shadow: 4px 5px 0 var(--border);
}

.btn-ticket i {
  font-size: 0.9rem;
}

.btn-store {
  padding: 14px 22px;
  background: var(--ink);
  color: #fff;
  border: 3px solid var(--border);
  box-shadow: 4px 4px 0 var(--coral);
  font-size: 0.95rem;
}

.btn-store:hover {
  background: var(--coral);
  box-shadow: 5px 6px 0 var(--ink);
}

.btn-store--ghost {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--border);
}

.btn-store--ghost:hover {
  background: var(--bg-deep);
  box-shadow: 5px 6px 0 var(--border);
}

.btn-store i {
  font-size: 1.05rem;
}

.btn-unseal {
  width: 100%;
  margin-top: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #FF6B4A, #FF3D6E);
  color: #fff;
  border: 3px solid var(--border);
  box-shadow: 4px 4px 0 var(--border);
  border-radius: 999px;
  font-weight: 700;
}

.btn-unseal:hover {
  box-shadow: 5px 6px 0 var(--border);
}

.btn-unseal i {
  font-size: 1rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: calc(var(--header-h) + 48px) 24px 80px;
  background:
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(255, 122, 69, 0.35), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(232, 74, 111, 0.22), transparent 55%),
    linear-gradient(165deg, #FFEDE3 0%, #FFF6F0 45%, #FFD8C4 100%);
  overflow: hidden;
}

.hero-bokeh {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bokeh {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
  animation: floatBokeh 10s ease-in-out infinite;
}

.bokeh-1 {
  width: 180px;
  height: 180px;
  top: 12%;
  right: 8%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 70%);
}

.bokeh-2 {
  width: 120px;
  height: 120px;
  bottom: 22%;
  left: 12%;
  background: radial-gradient(circle, rgba(255, 176, 136, 0.8), transparent 70%);
  animation-delay: -3s;
}

.bokeh-3 {
  width: 90px;
  height: 90px;
  top: 40%;
  left: 40%;
  background: radial-gradient(circle, rgba(255, 90, 60, 0.35), transparent 70%);
  animation-delay: -6s;
}

@keyframes floatBokeh {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 14px;
  color: var(--ink);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 5.6rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}

.hero-title em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(120deg, var(--coral), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem);
  color: var(--ink-soft);
  margin: 0 auto 28px;
  max-width: 36ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  z-index: 2;
}

.hero-scroll i {
  font-size: 0.9rem;
  animation: bounceY 1.6s ease-in-out infinite;
}

@keyframes bounceY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (min-width: 960px) {
  .hero {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 186px;
    padding: calc(var(--header-h) + 40px) 48px 64px;
  }

  .hero-copy {
    max-width: 460px;
    text-align: left;
    flex: 0 1 auto;
  }

  .hero-sub {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-cta {
    justify-content: flex-start;
  }

  .hero-stage {
    margin-left: 0;
  }

  .phone--tilt {
    width: min(290px, 27vw);
    transform: rotate(5deg) translateY(4px);
  }
}

/* ---------- Phone frames (preserve aspect 473:1024) ---------- */
.phone {
  position: relative;
  width: min(260px, 68vw);
  aspect-ratio: 473 / 1024;
  border-radius: 36px;
  border: 3.5px solid var(--border);
  overflow: hidden;
  background: #2a1a14;
  box-shadow: var(--shadow-soft), var(--shadow);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.phone--tilt {
  transform: rotate(6deg) translateY(8px);
}

.phone--tilt-opp {
  transform: rotate(-5deg);
}

.phone--sm {
  width: min(220px, 58vw);
  border-radius: 30px;
}

.phone--gallery {
  width: 200px;
  border-radius: 28px;
  box-shadow: var(--shadow-soft), 4px 4px 0 var(--border);
}

@media (min-width: 960px) {
  .phone--sm {
    width: min(240px, 22vw);
  }

  .phone--gallery {
    width: 220px;
  }
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 3px solid var(--border);
  border-bottom: 3px solid var(--border);
  background: linear-gradient(90deg, var(--orange), var(--magenta));
  overflow: hidden;
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.marquee-star {
  color: var(--teal);
  filter: drop-shadow(0 0 0 #1A120E);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Program / Features ---------- */
.program {
  padding: 88px 24px 40px;
  max-width: 1120px;
  margin: 0 auto;
}

.program-head {
  margin-bottom: 48px;
  max-width: 640px;
}

.program-lead {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 48ch;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.section-title em {
  font-style: italic;
  color: var(--magenta);
}

.screening {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 36px 0;
  border-top: 3px solid var(--border);
  align-items: center;
}

.screening-meta {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.screening-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--peach);
  -webkit-text-stroke: 2px var(--border);
  paint-order: stroke fill;
}

.screening-time {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.screening-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.screening-body h3 em {
  font-style: italic;
  color: var(--coral);
}

.screening-body p {
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 16px;
}

.screening-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.screening-tags li {
  padding: 8px 14px;
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 2px 2px 0 var(--border);
}

.screening-visual {
  display: flex;
  justify-content: center;
}

@media (min-width: 900px) {
  .screening {
    grid-template-columns: 100px 1.1fr 0.9fr;
    gap: 32px;
    padding: 48px 0;
  }

  .screening--right {
    grid-template-columns: 100px 0.9fr 1.1fr;
  }

  .screening--right .screening-visual {
    order: 2;
  }

  .screening--right .screening-body {
    order: 3;
  }

  .screening--right .screening-meta {
    order: 1;
  }
}

/* Mood chips */
.mood-wheel {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 12px;
}

.mood-chip {
  padding: 10px 16px;
  border: 2.5px solid var(--border);
  border-radius: 999px;
  background: var(--cream);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink-soft);
  box-shadow: 2px 2px 0 transparent;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.mood-chip:hover {
  transform: translateY(-2px);
  box-shadow: 2px 2px 0 var(--border);
}

.mood-chip.is-active {
  background: linear-gradient(135deg, var(--orange), var(--magenta));
  color: #fff;
  box-shadow: 3px 3px 0 var(--border);
}

.mood-status {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.mood-status strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-style: italic;
}

/* Blind seal card */
.seal-card {
  margin-top: 8px;
  padding: 22px;
  background: linear-gradient(160deg, #2A1848 0%, #4A2060 55%, #6B2A4A 100%);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: #F8EDE4;
  position: relative;
  overflow: hidden;
}

.seal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(1.5px 1.5px at 20% 30%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 70% 20%, #fff, transparent),
    radial-gradient(1px 1px at 40% 70%, #fff, transparent),
    radial-gradient(1.5px 1.5px at 85% 60%, #fff, transparent),
    radial-gradient(1px 1px at 15% 80%, #fff, transparent);
  opacity: 0.55;
  pointer-events: none;
}

.seal-wax {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #C94A4A, #7A1A1A);
  border: 3px solid #3A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 0 #3A0A0A;
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease);
}

.seal-wax i {
  font-size: 1.35rem;
  color: #F8EDE4;
}

.seal-card.is-open .seal-wax {
  transform: scale(0.85) rotate(18deg);
  opacity: 0.55;
}

.seal-clue {
  position: relative;
  z-index: 1;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
  opacity: 0.9;
  border-top: 1px dashed rgba(248, 237, 228, 0.35);
  padding-top: 14px;
}

.seal-card .btn-unseal {
  position: relative;
  z-index: 1;
}

/* ---------- Gallery ---------- */
.gallery {
  padding: 64px 0 80px;
  background:
    linear-gradient(180deg, transparent, rgba(255, 122, 69, 0.08)),
    var(--bg);
}

.gallery-head {
  max-width: 1120px;
  margin: 0 auto 28px;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.gallery-hint {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.gallery-strip {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 20px max(24px, calc((100vw - 1120px) / 2 + 24px)) 36px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.gallery-strip:active {
  cursor: grabbing;
}

.gallery-strip::-webkit-scrollbar {
  height: 8px;
}

.gallery-strip::-webkit-scrollbar-thumb {
  background: var(--coral);
  border-radius: 999px;
  border: 2px solid var(--border);
}

.gallery-card {
  flex: 0 0 auto;
  scroll-snap-align: center;
  text-align: center;
}

.gallery-card:nth-child(even) .phone--gallery {
  transform: rotate(3deg);
}

.gallery-card:nth-child(odd) .phone--gallery {
  transform: rotate(-2.5deg);
}

.gallery-card figcaption {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

/* ---------- Box office / Download ---------- */
.boxoffice {
  padding: 40px 24px 100px;
  max-width: 960px;
  margin: 0 auto;
}

.ticket {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--cream);
  border: 3.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ticket-stub {
  padding: 28px 24px;
  background: linear-gradient(160deg, var(--orange), var(--magenta));
  color: #fff;
  text-align: center;
  border-bottom: 3px dashed rgba(26, 18, 14, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ticket-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  border: 3px solid var(--border);
  object-fit: cover;
  background: var(--cream);
}

.ticket-admit {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.ticket-code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.ticket-body {
  padding: 36px 28px;
}

.ticket-copy {
  color: var(--ink-soft);
  margin: 14px 0 24px;
  max-width: 48ch;
}

.ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 720px) {
  .ticket {
    grid-template-columns: 200px 1fr;
  }

  .ticket-stub {
    border-bottom: none;
    border-right: 3px dashed rgba(26, 18, 14, 0.35);
    justify-content: center;
  }

  .ticket-body {
    padding: 40px 40px;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 3px solid var(--border);
  background: #1A120E;
  color: #F8EDE4;
  padding: 48px 24px 36px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 2.5px solid #F8EDE4;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-links a {
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  opacity: 1;
  color: var(--peach);
  outline: none;
}

.footer-copy {
  font-size: 0.82rem;
  opacity: 0.55;
}

/* ---------- Modal ---------- */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 14, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 36px 28px 28px;
  background: var(--cream);
  border: 3.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 2.5px solid var(--border);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--bg);
}

.modal-close i {
  font-size: 1.1rem;
}

.modal-seal {
  font-size: 1.6rem;
  color: var(--teal);
  margin-bottom: 8px;
}

.modal-panel h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 10px;
}

.modal-panel p {
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.modal-panel .btn-store {
  width: 100%;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track,
  .bokeh,
  .hero-scroll i {
    animation: none !important;
  }

  .btn:hover,
  .mood-chip:hover {
    transform: none;
  }
}
