/* ============================================================
   HIP TRIVIA
   Palette taken from the logo: HIP in red/yellow/green, TRIVIA in blue.
============================================================ */
:root {
  --red:    #E31E24;
  --yellow: #F5C518;
  --green:  #2DA44E;
  --blue:   #1B5FBF;
  --blue-hover: #164e9c;

  --bg:        #ffffff;
  --bg-tint:   #f5f6f8;
  --bg-dark:   #0f1216;
  --bg-dark-2: #171b21;
  --text:      #14181d;
  --text-soft: #5a626d;
  --text-on-dark:      #f2f4f7;
  --text-on-dark-soft: #a8b1bd;
  --border:    #e3e6ea;
  --border-dark: #2a313a;

  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Lato', system-ui, sans-serif;

  --nav-h: 76px;
  --pad-v: clamp(4.5rem, 11vh, 8rem);
  --pad-h: clamp(1.25rem, 5vw, 4rem);
  --max: 1180px;
  --max-narrow: 720px;
  --radius: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img, picture, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; color: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--blue); color: #fff; padding: 12px 20px;
}
.skip-link:focus { left: 12px; top: 12px; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-head); font-weight: 800; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.3rem, 6vw, 4.25rem); }
h2 { font-size: clamp(1.85rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; letter-spacing: -0.01em; }
p + p { margin-top: 1rem; }

.lead { font-size: clamp(1.1rem, 1.7vw, 1.3rem); color: var(--text-soft); margin-top: 1.1rem; }
.section--dark .lead, .hero .lead { color: var(--text-on-dark-soft); }
.micro { font-size: 0.9rem; color: var(--text-soft); margin-top: 1rem; }

.eyebrow {
  font-family: var(--font-head); font-size: 11px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue);
  display: block; margin-bottom: 0.85rem;
}
.eyebrow--light { color: var(--yellow); }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-head); font-size: 0.85rem; font-weight: 800;
  letter-spacing: 0.02em; border: 2px solid transparent; border-radius: 999px;
  padding: 13px 28px; transition: background .18s var(--ease), color .18s var(--ease),
    border-color .18s var(--ease), transform .18s var(--ease);
  white-space: nowrap; background: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { font-size: 0.95rem; padding: 16px 34px; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: #c4161b; }
.btn-outline-light { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline { border-color: var(--blue); color: var(--blue); }
.btn-ghost { color: var(--blue); padding-left: 8px; padding-right: 8px; }
.btn-ghost:hover { color: var(--blue-hover); }
.btn-ghost-light { color: var(--text-on-dark); border-color: var(--border-dark); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.btn-row.center { justify-content: center; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-h); }
.wrap--narrow { max-width: var(--max-narrow); }
.section { padding-block: var(--pad-v); }
.section--flush { padding-block: 0; }
.section--tint { background: var(--bg-tint); }
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--statement { background: var(--bg-tint); }
.page-head { padding-top: calc(var(--nav-h) + clamp(2.5rem, 7vh, 4.5rem)); padding-bottom: clamp(2rem, 5vh, 3.5rem); }
.page-head--tall { padding-bottom: var(--pad-v); }
/* The page head already supplies breathing room, so the first section under it
   does not need a full pad on top. */
.page-head + .section { padding-top: clamp(1.25rem, 3.5vh, 2.5rem); }
.cta-block { margin-top: clamp(3rem, 7vh, 5rem); }
.cta-block h2 { margin-bottom: 1.25rem; }

/* ---------- Nav ---------- */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-nav.scrolled,
body:not(.page-home) .site-nav {
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo-img { height: 30px; width: auto; }
.nav-logo-light { display: none; }
.site-nav.scrolled .nav-logo-dark,
body:not(.page-home) .nav-logo-dark { display: none; }
.site-nav.scrolled .nav-logo-light,
body:not(.page-home) .nav-logo-light { display: block; }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links ul { display: flex; gap: 1.75rem; }
.nav-links a { font-family: var(--font-head); font-size: 0.82rem; font-weight: 700; color: #fff; letter-spacing: .02em; }
.site-nav.scrolled .nav-links a,
body:not(.page-home) .nav-links a { color: var(--text); }
.nav-links a[aria-current="page"] { color: var(--yellow); }
.site-nav.scrolled .nav-links a[aria-current="page"],
body:not(.page-home) .nav-links a[aria-current="page"] { color: var(--red); }
.nav-phone { display: none; }
.nav-close, .nav-hamburger, .nav-overlay { display: none; }

@media (max-width: 900px) {
  .nav-hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; background: none; border: 0; }
  .nav-hamburger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: background .2s; }
  .site-nav.scrolled .nav-hamburger span,
  body:not(.page-home) .nav-hamburger span { background: var(--text); }

  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(88vw, 380px);
    background: var(--bg-dark); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 1.5rem; padding: 2rem var(--pad-h);
    transform: translateX(100%); transition: transform .35s var(--ease); z-index: 120;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links ul { flex-direction: column; gap: 1.1rem; }
  .nav-links a { color: #fff; font-size: 1.15rem; }
  .site-nav.scrolled .nav-links a,
  body:not(.page-home) .nav-links a { color: #fff; }
  .nav-close { display: block; position: absolute; top: 1rem; right: 1.25rem;
    background: none; border: 0; color: #fff; font-size: 1.4rem; }
  .nav-phone { display: block; color: var(--text-on-dark-soft); }
  .nav-phone-label { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
  .nav-phone-number { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: #fff; }
  .nav-overlay { display: block; position: fixed; inset: 0; background: rgba(0,0,0,.5);
    opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 110; }
  .nav-overlay.is-active { opacity: 1; pointer-events: auto; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
}
.hero-scrim {
  position: absolute; inset: 0;
  /* The footage puts its subject on the LEFT, so the copy sits on the right and
     the scrim darkens the right side to carry it. */
  background:
    linear-gradient(to left, rgba(10,12,15,.92) 0%, rgba(10,12,15,.72) 42%, rgba(10,12,15,.20) 78%, rgba(10,12,15,.10) 100%),
    linear-gradient(to top, rgba(10,12,15,.70) 0%, rgba(10,12,15,0) 45%);
}
.hero-content { position: relative; z-index: 1; width: 100%; max-width: var(--max);
  margin-inline: auto; padding: calc(var(--nav-h) + 2rem) var(--pad-h) 5rem;
  display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.hero-content h1 { color: #fff; max-width: 15ch; }
.hero-sub { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: rgba(255,255,255,.86);
  max-width: 42ch; margin-top: 1.25rem; }
.hero-content .btn-row { justify-content: flex-end; }
.hero-video, .hero-media img { object-position: 30% 40%; }

@media (max-width: 860px) {
  /* Not enough width to keep the subject and the copy apart. Centre both. */
  .hero-content { align-items: center; text-align: center; }
  .hero-content .btn-row { justify-content: center; }
  .hero-content h1, .hero-sub { max-width: 100%; }
  .hero-scrim { background: linear-gradient(to top, rgba(10,12,15,.88) 0%, rgba(10,12,15,.55) 55%, rgba(10,12,15,.45) 100%); }
}

.scroll-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 1; }
.scroll-cue span { display: block; width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.5);
  border-radius: 14px; position: relative; }
.scroll-cue span::after { content: ""; position: absolute; top: 7px; left: 50%; margin-left: -2px;
  width: 4px; height: 7px; background: #fff; border-radius: 2px; animation: cue 1.9s infinite; }
@keyframes cue { 0% { opacity:0; transform: translateY(0);} 40%{opacity:1;} 80%{opacity:0; transform: translateY(12px);} 100%{opacity:0;} }
@media (prefers-reduced-motion: reduce) { .scroll-cue span::after { animation: none; } }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split-media img { border-radius: var(--radius); }

.problem-list { margin-top: 1.75rem; display: grid; gap: 0.75rem; }
.problem-list li { position: relative; padding-left: 1.9rem; color: var(--text-on-dark-soft); }
.problem-list li::before { content: "✕"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 700; }
.stakes { margin-top: 1.75rem; padding-left: 1.1rem; border-left: 3px solid var(--yellow);
  font-size: 1.15rem; color: #fff; font-weight: 400; }
.section--dark .btn-primary { margin-top: 2rem; }

/* ---------- Pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }
.pillar { background: var(--bg-tint); border-radius: var(--radius); padding: 2rem 1.6rem; }
.pillar-icon { font-size: 2rem; line-height: 1; margin-bottom: 1rem; }
.pillar h3 { margin-bottom: .6rem; }
.pillar p { font-size: .97rem; color: var(--text-soft); }
.pillar:nth-child(1) { border-top: 4px solid var(--red); }
.pillar:nth-child(2) { border-top: 4px solid var(--yellow); }
.pillar:nth-child(3) { border-top: 4px solid var(--green); }
.pillar:nth-child(4) { border-top: 4px solid var(--blue); }

/* ---------- Showcase ---------- */
.showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
@media (max-width: 860px) { .showcase { grid-template-columns: 1fr; } }
.showcase-item { position: relative; margin: 0; overflow: hidden; }
.showcase-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .7s var(--ease); }
.showcase-item:hover img { transform: scale(1.04); }
.showcase-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2.5rem 1.5rem 1.4rem;
  background: linear-gradient(to top, rgba(10,12,15,.9), transparent);
  color: #fff; font-size: .95rem; font-weight: 700; font-family: var(--font-head);
}

/* ---------- Trust ---------- */
.trust-points { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-block: 3.5rem 3rem; text-align: left; }
@media (max-width: 760px) { .trust-points { grid-template-columns: 1fr; } }
.trust-point h3 { color: var(--yellow); margin-bottom: .5rem; }
.trust-point p { color: var(--text-on-dark-soft); }

.logo-wall {
  /* Flex-wrap rather than grid so a partial final row centres instead of
     hanging left. Works for any number of logos. */
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1.75rem, 3.5vw, 3.25rem);
  margin-block: 3rem;
  padding: 2.5rem clamp(1rem, 3vw, 2.5rem);
  background: #fff; border-radius: var(--radius);
}
.logo-wall li { display: flex; align-items: center; justify-content: center; }
.logo-wall img { max-height: 40px; max-width: 160px; width: auto; object-fit: contain; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.quote-grid--all { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }
.quote-card { background: var(--bg-tint); border-radius: var(--radius); padding: 2rem 1.75rem;
  display: flex; flex-direction: column; }
.quote-card h2, .quote-card h3 { font-size: 1.1rem; margin-block: .4rem .9rem; color: var(--blue); }
.quote-card blockquote { flex: 1; }
.quote-card blockquote p { font-size: .97rem; color: var(--text-soft); }
.quote-card figcaption { margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border);
  font-size: .9rem; display: flex; flex-direction: column; }
.quote-card figcaption strong { font-family: var(--font-head); }
.quote-card figcaption span { color: var(--text-soft); }
.stars { color: var(--yellow); letter-spacing: 2px; font-size: .95rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-block: 3.5rem; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2.25rem 1.6rem; }
.step-num { display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; background: var(--blue); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; margin-bottom: 1.1rem; }
.step-card:nth-child(2) .step-num { background: var(--green); }
.step-card:nth-child(3) .step-num { background: var(--red); }
.step-card h3 { margin-bottom: .45rem; }
.step-card p { color: var(--text-soft); font-size: .97rem; }

.section--closing p { color: var(--text-on-dark-soft); }
.section--closing .btn { margin-top: 2rem; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0; margin-top: 1rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 0; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h2 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); }
.faq-marker { position: relative; flex: 0 0 20px; height: 20px; }
.faq-marker::before, .faq-marker::after { content: ""; position: absolute; background: var(--blue);
  transition: transform .25s var(--ease); }
.faq-marker::before { inset: 9px 0 9px 0; height: 2px; }
.faq-marker::after { inset: 0 9px 0 9px; width: 2px; }
.faq-item[open] .faq-marker::after { transform: scaleY(0); }
.faq-answer { padding-bottom: 1.75rem; color: var(--text-soft); }
.faq-answer .btn { margin-top: .5rem; }

/* ---------- Video facade ---------- */
.video-facade { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  aspect-ratio: 16/9; background: #000; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; }
.video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-play { position: absolute; inset: 0; margin: auto; width: 90px; height: 64px;
  background: none; border: 0; display: grid; place-items: center; }
.video-play svg { width: 90px; height: 64px; fill: var(--red); filter: drop-shadow(0 4px 14px rgba(0,0,0,.4));
  transition: transform .2s var(--ease); }
.video-facade:hover .video-play svg { transform: scale(1.08); }

.gameshow-logo { max-width: 460px; margin: 0 auto 2rem; }

/* ---------- Modals ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 1rem; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(8,10,13,.72); backdrop-filter: blur(3px); }
.modal-panel { position: relative; z-index: 1; background: #fff; border-radius: var(--radius);
  width: min(100%, 620px); max-height: 88vh; overflow-y: auto; padding: clamp(1.5rem, 4vw, 2.75rem); }
.modal--wide .modal-panel { width: min(100%, 720px); }
.modal-close { position: absolute; top: .9rem; right: 1rem; background: none; border: 0;
  font-size: 1.25rem; line-height: 1; color: var(--text-soft); }
.modal-panel h2 { margin-bottom: .9rem; }
.modal-panel > p { color: var(--text-soft); font-size: .97rem; }
body.modal-open { overflow: hidden; }

/* ---------- Forms ---------- */
.progress { height: 4px; background: var(--border); border-radius: 2px; margin-top: 1.75rem; overflow: hidden; }
.progress-fill { height: 100%; width: 25%; background: var(--green); transition: width .35s var(--ease); }
.progress-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--text-soft); margin-top: .5rem; font-family: var(--font-head); font-weight: 700; }

.step { border: 0; margin-top: 1.75rem; }
.step[hidden] { display: none; }
.step-legend { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; margin-bottom: 1rem; }
.field { display: block; margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.field-label, .field > span:first-child { display: block; font-size: .87rem; font-weight: 700;
  margin-bottom: .4rem; font-family: var(--font-head); }
.field-label b { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 8px; background: #fff; color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: none;
  box-shadow: 0 0 0 3px rgba(27,95,191,.15); }
.is-invalid { border-color: var(--red) !important; box-shadow: 0 0 0 3px rgba(227,30,36,.14) !important; }
.help { font-size: .85rem; color: var(--text-soft); margin: .35rem 0 .75rem; font-weight: 400; }
.radio-row { display: flex; gap: .75rem; }
.radio { display: inline-flex; align-items: center; gap: .45rem; padding: 10px 20px;
  border: 1px solid var(--border); border-radius: 999px; cursor: pointer; font-size: .92rem; }
.radio input { accent-color: var(--blue); }
.radio:has(input:checked) { border-color: var(--blue); background: rgba(27,95,191,.06); }
.step-actions { display: flex; gap: .75rem; justify-content: flex-end; margin-top: 1.5rem; }
.form-fallback { font-size: .85rem; color: var(--text-soft); margin-top: 1.5rem;
  padding-top: 1rem; border-top: 1px solid var(--border); }
.form-fallback a { color: var(--blue); text-decoration: underline; }

/* ---------- Inline quote form (booking page) ---------- */
.section--form { padding-top: 0; }
.form-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 3rem); box-shadow: 0 2px 24px rgba(20,24,29,.06);
}
.form-card > h2 { margin-bottom: .9rem; }
.form-card > p { color: var(--text-soft); font-size: .97rem; }
.quote-intro { color: var(--text-soft); font-size: .97rem; }
.quote-confirmation { padding: 1.5rem 0; }
.quote-confirmation h3 { color: var(--green); margin-bottom: .5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: var(--text-on-dark-soft); padding-top: var(--pad-v); }
.footer-inner { max-width: var(--max); margin-inline: auto; padding-inline: var(--pad-h);
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.4fr; gap: 2.5rem; }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-logo-img { width: 96px; }
.footer-phone { margin-top: 1rem; font-family: var(--font-head); font-weight: 800;
  font-size: 1.3rem; color: #fff; }
.footer-heading { font-family: var(--font-head); font-size: .78rem; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a:hover { color: #fff; }
.footer-greatfor { font-size: .93rem; }
.footer-contact p { font-size: .93rem; margin-bottom: 1.1rem; }
.footer-contact .btn { margin-right: .5rem; margin-bottom: .5rem; }
.footer-bottom { max-width: var(--max); margin: 3.5rem auto 0; padding: 1.5rem var(--pad-h);
  border-top: 1px solid var(--border-dark); display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: .5rem; font-size: .85rem; }

/* ---------- Legal / prose ---------- */
.prose h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: .75rem; }
.prose ul { list-style: disc; padding-left: 1.4rem; margin-block: 1rem; }
.prose li { margin-bottom: .4rem; }
.notice { background: #fff8e1; border: 1px solid var(--yellow); border-left: 5px solid var(--yellow);
  border-radius: 8px; padding: 1.25rem 1.5rem; margin-bottom: 2rem; font-size: .95rem; }
.notice strong { display: block; margin-bottom: .5rem; font-family: var(--font-head); }

.thanks-mark img { width: 160px; margin: 0 auto 1.5rem; }

/* ---------- Reveal on scroll ---------- */
.animate-in { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.animate-in.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .animate-in { opacity: 1; transform: none; transition: none; }
  .showcase-item img, .btn { transition: none; }
}
