/* ============================================================
   PLAYHARBORNYL.FORUM — Bold Magazine & Storytelling
   World Cup 2026 Group-Stage Preview Hub
   ============================================================ */

/* ---------- ROOT VARIABLES ---------- */
:root {
  --ink: #111111;
  --ivory: #FAF9F6;
  --orange: #EA580C;
  --red: #B91C1C;
  --slate: #475569;
  --slate-light: #94a3b8;
  --paper: #ffffff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Arial, sans-serif;
  --maxw: 1200px;
  --radius: 2px;
  --shadow: 0 12px 40px rgba(17, 17, 17, 0.12);
  --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
address { font-style: normal; }

/* ---------- LAYOUT SYSTEM ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
section { padding: 110px 0; }

.section-kicker {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  position: relative;
  padding-left: 44px;
}
.section-kicker::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 32px; height: 2px;
  background: var(--orange);
}
.section-kicker--light { color: var(--orange); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-title--light { color: var(--ivory); }

.section-sub {
  font-size: 1.1rem;
  color: var(--slate);
  max-width: 640px;
  margin-bottom: 56px;
}
.section-sub--light { color: var(--slate-light); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(185, 28, 28, 0.3);
}
.btn-ghost {
  border-color: var(--ivory);
  color: var(--ivory);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--ivory);
  color: var(--ink);
  transform: translateY(-3px);
}
.btn-small { padding: 10px 22px; font-size: 0.75rem; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--ink);
  border-bottom: 4px solid var(--orange);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
}
.brand-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.brand-text em { font-style: normal; color: var(--orange); }
.main-nav { display: flex; gap: 30px; }
.main-nav a {
  color: var(--ivory);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.main-nav a:hover { color: var(--orange); border-bottom-color: var(--orange); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  background: var(--ivory);
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  background: var(--ink);
  color: var(--ivory);
  padding: 130px 0 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "2026";
  position: absolute;
  right: -40px;
  top: 30px;
  font-family: var(--serif);
  font-size: clamp(10rem, 24vw, 22rem);
  font-weight: 700;
  color: rgba(234, 88, 12, 0.09);
  line-height: 1;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px 90px;
  position: relative;
  z-index: 2;
}
.hero-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 30px;
  max-width: 16ch;
}
.hero-title span { color: var(--orange); }
.hero-lede {
  font-size: 1.18rem;
  color: var(--slate-light);
  max-width: 620px;
  margin-bottom: 44px;
}
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-meta { display: flex; gap: 56px; flex-wrap: wrap; }
.hero-meta-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--orange);
  line-height: 1;
}
.hero-meta-item span {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-light);
}
.hero-rule {
  background: var(--orange);
  color: var(--ink);
  display: flex;
  justify-content: center;
  gap: 26px;
  padding: 14px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  flex-wrap: wrap;
}

/* ---------- ABOUT ---------- */
.about { background: var(--ivory); }
.split-right p { font-size: 1.12rem; color: var(--slate); margin-bottom: 22px; }
.split-right p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 3.4rem;
  float: left;
  line-height: 0.85;
  padding-right: 12px;
  color: var(--orange);
  font-weight: 700;
}

/* ---------- MATCH INDEX CARDS ---------- */
.match-index { background: var(--paper); border-top: 1px solid #e7e4dc; }
.index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.index-card {
  position: relative;
  background: var(--ivory);
  border: 1px solid #e3e0d8;
  border-left: 6px solid var(--ink);
  padding: 32px 32px 28px;
  display: block;
  transition: var(--transition);
}
.index-card:hover {
  border-left-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.index-num {
  position: absolute;
  top: 22px; right: 28px;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(17, 17, 17, 0.1);
  line-height: 1;
  transition: var(--transition);
}
.index-card:hover .index-num { color: rgba(234, 88, 12, 0.3); }
.index-group {
  display: inline-block;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 16px;
}
.index-card h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.index-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--slate);
  padding: 8px 0;
  border-top: 1px dashed #d8d4ca;
}
.index-row span:first-child { font-weight: 700; color: var(--ink); }
.index-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ---------- TITLE RACE ---------- */
.title-race { background: var(--ink); }
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fav-card {
  background: rgba(250, 249, 246, 0.04);
  border: 1px solid rgba(250, 249, 246, 0.12);
  padding: 34px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.fav-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.fav-card:hover::before { transform: scaleX(1); }
.fav-card:hover { background: rgba(250, 249, 246, 0.08); transform: translateY(-5px); }
.fav-rank {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
}
.fav-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--ivory);
  margin: 8px 0 4px;
}
.fav-group {
  font-size: 0.82rem;
  color: var(--slate-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.fav-stats {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(250, 249, 246, 0.15);
  padding-top: 18px;
}
.fav-stats span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
}
.fav-stats strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ivory);
  letter-spacing: 0;
  text-transform: none;
}

/* ---------- EXPANDED PREVIEWS ---------- */
.previews { background: var(--ivory); }
.preview {
  background: var(--paper);
  border: 1px solid #e3e0d8;
  margin-bottom: 56px;
  box-shadow: 0 4px 18px rgba(17, 17, 17, 0.05);
}
.preview:nth-child(even) { margin-left: 6%; }
.preview:nth-child(odd) { margin-right: 6%; }
.preview-head {
  background: var(--ink);
  color: var(--ivory);
  padding: 28px 40px;
  display: flex;
  align-items: baseline;
  gap: 28px;
  flex-wrap: wrap;
}
.preview-id {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  white-space: nowrap;
}
.preview-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.preview-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 40px;
  border-bottom: 1px solid #ece9e1;
}
.compare-team h4 {
  font-family: var(--serif);
  font-size: 1.45rem;
  margin-bottom: 14px;
  border-bottom: 3px solid var(--orange);
  display: inline-block;
  padding-bottom: 4px;
}
.compare-team ul li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--slate);
  padding: 6px 0;
  border-bottom: 1px dashed #ddd9cf;
}
.compare-team ul li strong { color: var(--ink); font-size: 1rem; }
.compare-vs {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
  background: var(--ivory);
  border: 2px solid var(--red);
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}
.bar {
  margin-top: 16px;
  height: 8px;
  background: #e8e5dc;
  overflow: hidden;
}
.bar span {
  display: block;
  height: 100%;
  background: var(--orange);
}
.bar-alt span { background: var(--slate); }
.preview-text {
  padding: 34px 40px 40px;
  font-size: 1.08rem;
  color: var(--slate);
  max-width: 75ch;
}

/* ---------- GROUP RACE ---------- */
.group-race { background: var(--ink); }
.group-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.group-tile {
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 24px;
  align-items: center;
  background: rgba(250, 249, 246, 0.04);
  border: 1px solid rgba(250, 249, 246, 0.12);
  padding: 24px 28px;
  transition: var(--transition);
}
.group-tile:hover {
  border-color: var(--orange);
  transform: translateX(6px);
}
.group-letter {
  grid-row: 1 / 3;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--orange);
  text-align: center;
  border-right: 1px solid rgba(250, 249, 246, 0.15);
  padding-right: 20px;
}
.group-tile p { color: var(--ivory); font-size: 1.02rem; }
.group-tile p strong { color: var(--orange); }
.group-tile em {
  font-style: italic;
  color: var(--slate-light);
  font-size: 0.88rem;
  font-family: var(--serif);
}

/* ---------- HOST NATION CARDS ---------- */
.hosts { background: var(--paper); }
.host-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}
.host-card {
  background: var(--ivory);
  border: 1px solid #e3e0d8;
  border-top: 6px solid var(--slate);
  padding: 36px 30px;
  transition: var(--transition);
}
.host-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-top-color: var(--orange);
}
.host-card--feature { border-top-color: var(--red); }
.host-card h3 {
  font-family: var(--serif);
  font-size: 2.1rem;
  margin-bottom: 4px;
}
.host-group {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 24px;
}
.host-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.host-stats div {
  background: var(--paper);
  border: 1px solid #e3e0d8;
  padding: 12px 8px;
  text-align: center;
}
.host-stats dt {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 4px;
}
.host-stats dd {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.host-card > p:last-child { font-size: 0.96rem; color: var(--slate); }

/* ---------- METHOD ---------- */
.method { background: var(--ivory); border-top: 1px solid #e7e4dc; }
.method-list { display: grid; gap: 36px; }
.method-item {
  border-left: 4px solid var(--orange);
  padding-left: 26px;
}
.method-item h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.method-item p { color: var(--slate); font-size: 1.02rem; }

/* ---------- FAQ ---------- */
.faq { background: var(--paper); border-top: 1px solid #e7e4dc; }
.faq-list { max-width: 800px; margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid #e3e0d8;
  padding: 6px 0;
}
.faq-item summary {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  padding: 20px 44px 20px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--orange);
  font-family: var(--sans);
  transition: var(--transition);
}
.faq-item[open] summary::after { content: "–"; color: var(--red); }
.faq-item summary:hover { color: var(--orange); }
.faq-item p { padding: 0 0 26px; color: var(--slate); font-size: 1.05rem; max-width: 70ch; }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--red);
  padding: 90px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  color: var(--ivory);
  line-height: 1.1;
}
.cta-band .btn-primary { background: var(--ink); }
.cta-band .btn-primary:hover { background: var(--ivory); color: var(--ink); }

/* ---------- CONTACT ---------- */
.contact { background: var(--ivory); }
.contact-note { color: var(--slate); margin-bottom: 28px; max-width: 40ch; }
.contact-address {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.9;
  border-left: 4px solid var(--orange);
  padding-left: 22px;
}
.contact-address a { color: var(--red); font-weight: 700; }
.contact-form {
  background: var(--paper);
  border: 1px solid #e3e0d8;
  padding: 40px;
  display: grid;
  gap: 8px;
}
.contact-form label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 12px;
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 14px 16px;
  border: 1px solid #d8d4ca;
  background: var(--ivory);
  color: var(--ink);
  transition: var(--transition);
  width: 100%;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}
.contact-form .btn { margin-top: 20px; justify-self: start; }
.form-success { color: var(--orange); font-weight: 700; margin-top: 12px; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--ink);
  color: var(--slate-light);
  padding-top: 80px;
  border-top: 6px solid var(--orange);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
}
.brand-mark--footer { margin-bottom: 18px; }
.footer-brand h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--ivory);
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.95rem; max-width: 42ch; }
.footer-col h4 {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.95rem;
  padding: 5px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--orange); padding-left: 6px; }
.footer-col address { font-size: 0.95rem; line-height: 1.9; }
.footer-bar {
  border-top: 1px solid rgba(250, 249, 246, 0.12);
  padding: 24px 32px;
  text-align: center;
  font-size: 0.85rem;
}

/* ---------- LEGAL PAGES ---------- */
.legal-page { padding: 90px 0 110px; background: var(--ivory); }
.legal-container { max-width: 820px; }
.legal-updated {
  font-style: italic;
  font-family: var(--serif);
  color: var(--red);
  margin-bottom: 48px;
  font-size: 1.05rem;
}
.legal-page h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin: 40px 0 12px;
}
.legal-page p { color: var(--slate); margin-bottom: 14px; font-size: 1.03rem; }
.legal-page p a { color: var(--red); font-weight: 700; }
.legal-address {
  border-left: 4px solid var(--orange);
  padding-left: 20px;
  color: var(--ink) !important;
  line-height: 1.9;
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--ink);
  color: var(--ivory);
  border: 1px solid rgba(250, 249, 246, 0.2);
  border-left: 6px solid var(--orange);
  padding: 26px 28px;
  z-index: 500;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  animation: bannerUp 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes bannerUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p { font-size: 0.92rem; margin-bottom: 18px; }
.cookie-banner a { color: var(--orange); font-weight: 700; text-decoration: underline; }
.cookie-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---------- 1200px ---------- */
@media (max-width: 1200px) {
  .favorites-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .preview:nth-child(even),
  .preview:nth-child(odd) { margin-left: 0; margin-right: 0; }
}

/* ---------- 768px ---------- */
@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container, .header-inner, .hero-inner { padding-left: 20px; padding-right: 20px; }

  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 24px;
    border-bottom: 4px solid var(--orange);
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid rgba(250, 249, 246, 0.1); }

  .split { grid-template-columns: 1fr; gap: 36px; }
  .index-grid { grid-template-columns: 1fr; }
  .group-grid { grid-template-columns: 1fr; }
  .host-grid { grid-template-columns: 1fr; }

  .preview-compare {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }
  .compare-vs { justify-self: center; }
  .preview-head { padding: 22px 24px; gap: 10px; }
  .preview-text { padding: 26px 24px 32px; }

  .cta-inner { flex-direction: column; text-align: center; }
  .contact-form { padding: 28px 22px; }
  .hero-meta { gap: 32px; }
}

/* ---------- 480px ---------- */
@media (max-width: 480px) {
  .favorites-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero { padding-top: 80px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
  .btn { width: 100%; text-align: center; }
  .btn-small { width: auto; }
  .host-stats { grid-template-columns: 1fr; }
  .group-tile { grid-template-columns: 1fr; text-align: center; }
  .group-letter { grid-row: auto; border-right: none; padding-right: 0; border-bottom: 1px solid rgba(250,249,246,0.15); padding-bottom: 8px; margin-bottom: 8px; }
  .index-card { padding: 26px 20px; }
  .index-row { flex-direction: column; gap: 2px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
  .hero-rule { gap: 14px; font-size: 0.68rem; }
}