/* =============================================================
   Trafford Events — style.css
   One stylesheet, no build step. The world: the club noticeboard
   and the fixture card. Warm paper, ink, Trafford orange, ruled
   rows, ticket-stub calls to action.
   ============================================================= */

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

:root {
  --orange:       #F07A2E;   /* Trafford orange on paper and ink */
  --orange-bright:#FF9A4D;   /* orange on the dark hero */
  --orange-deep:  #B8541A;   /* hover, text on paper (4.6:1 on white) */
  --orange-tint:  #FFF0E4;
  --ink:          #16120F;
  --ink-2:        #2C2622;
  --muted:        #665E56;
  --paper:        #FAF6F0;
  --paper-2:      #F2ECE3;
  --white:        #FFFFFF;
  --line:         #E4DCD1;
  --line-strong:  #CFC4B6;
  --nav-h:        64px;
  --display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
html, body { overflow-x: hidden; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; height: auto; }
svg { display: block; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 10px; z-index: 300;
  background: var(--white); color: var(--ink); border: 1px solid var(--line);
  border-radius: 8px; padding: 10px 16px; font-size: 14px; font-weight: 600;
}
.skip-link:focus { left: 12px; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ── Type ── */
h1, h2, h3, .display { font-family: var(--display); font-weight: 800; letter-spacing: -0.025em; line-height: 1.02; text-wrap: balance; }
h2 { font-size: clamp(30px, 4.2vw, 46px); }
h3 { font-size: clamp(20px, 2.3vw, 25px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.15; }
.lead { font-size: clamp(16px, 1.6vw, 18.5px); line-height: 1.7; color: var(--ink-2); max-width: 62ch; }
p + p { margin-top: 14px; }
.accent { color: var(--orange); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 24px; border-radius: 10px;
  font-family: var(--body); font-weight: 600; font-size: 15px; line-height: 1;
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .2s, border-color .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--orange); color: var(--ink); box-shadow: 0 6px 18px -6px rgba(184,84,26,.55); }
.btn-primary:hover { background: var(--orange-bright); box-shadow: 0 12px 24px -8px rgba(184,84,26,.6); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--ink-2); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-paper { background: var(--white); color: var(--ink); border-color: var(--line-strong); }
.btn-paper:hover { border-color: var(--ink); }
.btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.text-link { color: var(--orange-deep); font-weight: 600; text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
.text-link:hover { color: var(--ink); }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(22,18,15,.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: var(--white);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -0.02em; display: inline-flex; align-items: baseline; gap: 6px; }
.brand em { font-style: normal; color: var(--orange-bright); }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,.82); transition: color .15s; padding: 6px 0; }
.nav-links a:hover { color: var(--white); }
.nav-links a[aria-current="page"] { color: var(--orange-bright); font-weight: 600; }
.nav-mobile-only { display: none; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { padding: 10px 18px; font-size: 14px; border-radius: 8px; }
.nav-actions .btn-outline { border-color: rgba(255,255,255,.28); }
.nav-toggle { display: none; background: none; border: 0; color: var(--white); width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

/* ── Ticket stubs (the hero CTAs) ── */
.tickets { display: flex; flex-wrap: wrap; gap: 16px; }
.ticket {
  --notch: 11px;
  position: relative; display: grid; grid-template-columns: 96px 1fr; align-items: stretch;
  min-width: 300px; background: var(--paper); color: var(--ink);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 18px 40px -14px rgba(0,0,0,.6);
  -webkit-mask:
    radial-gradient(circle at 96px 0, transparent var(--notch), #000 calc(var(--notch) + .5px)),
    radial-gradient(circle at 96px 100%, transparent var(--notch), #000 calc(var(--notch) + .5px));
  -webkit-mask-composite: source-in;
  mask:
    radial-gradient(circle at 96px 0, transparent var(--notch), #000 calc(var(--notch) + .5px)),
    radial-gradient(circle at 96px 100%, transparent var(--notch), #000 calc(var(--notch) + .5px));
  mask-composite: intersect;
  transition: transform .5s var(--ease-out);
}
.ticket:hover { transform: translateY(-3px) rotate(-.4deg); }
.ticket-stub {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  padding: 16px 8px; background: var(--orange); color: var(--ink);
  border-right: 2px dashed rgba(22,18,15,.45);
  font-family: var(--display); font-weight: 800; letter-spacing: -0.03em; line-height: .95;
}
.ticket-stub strong { font-size: 30px; }
.ticket-stub small { font-family: var(--body); font-weight: 600; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; }
.ticket--paid .ticket-stub { background: var(--ink); color: var(--orange-bright); border-right-color: rgba(255,255,255,.35); }
.ticket-body { padding: 16px 44px 16px 20px; display: flex; flex-direction: column; justify-content: center; gap: 3px; }
.ticket-body strong { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.015em; line-height: 1.1; }
.ticket-body span { font-size: 13.5px; color: var(--muted); }
.ticket-body svg { position: absolute; right: 16px; top: 50%; width: 18px; height: 18px; margin-top: -9px; stroke: var(--ink); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; opacity: .55; transition: opacity .2s, transform .35s var(--ease-out); }
.ticket:hover .ticket-body svg { opacity: 1; transform: translateX(3px); }

/* ── Home hero ── */
.hero {
  position: relative; min-height: 78vh; min-height: 78svh;
  display: flex; align-items: flex-start;
  color: var(--white); overflow: hidden; isolation: isolate;
  padding: calc(var(--nav-h) + 96px) 0 72px;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(22,18,15,.55) 0%, rgba(22,18,15,.15) 35%, rgba(22,18,15,.78) 100%),
    linear-gradient(90deg, rgba(22,18,15,.72) 0%, rgba(22,18,15,.25) 60%, rgba(22,18,15,0) 100%);
}
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; width: 100%; display: flex; flex-direction: column; min-height: calc(78vh - var(--nav-h) - 168px); min-height: calc(78svh - var(--nav-h) - 168px); }
.hero h1 { font-size: clamp(38px, 5.2vw, 66px); max-width: none; }
.hero h1 em { font-style: normal; color: var(--orange-bright); }
.hero .lead { color: rgba(255,255,255,.86); margin-top: 32px; max-width: 46ch; }
.hero-foot { margin-top: auto; padding-top: 56px; display: flex; justify-content: space-between; align-items: flex-end; gap: 24px 40px; flex-wrap: wrap; }
.hero-foot .tickets { justify-content: flex-start; }
.hero-foot .hero-scroll { padding-bottom: 14px; }
.hero-scroll { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500; }
.hero-scroll svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; animation: nudge 2.4s var(--ease-out) 1s 3; }
@keyframes nudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }
.photo-note { font-size: 11.5px; color: rgba(255,255,255,.5); }

/* entrance: one authored moment, hero only */
.hero h1, .hero .lead, .hero-foot { animation: rise .9s var(--ease-out) both; }
.hero .lead { animation-delay: .1s; }
.hero-foot { animation-delay: .2s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ── Sections ── */
.section { padding: 104px 0; }
.section-white { background: var(--white); }
.section-tight { padding: 72px 0; }
.section-head { max-width: 62ch; margin-bottom: 44px; }
.section-head p { margin-top: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* ── Why (image grid + copy) ── */
.why { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.photo-grid figure { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--paper-2); box-shadow: 0 14px 30px -18px rgba(22,18,15,.45); }
.photo-grid figure:nth-child(2) { transform: translateY(28px); }
.photo-grid figure:nth-child(3) { transform: translateY(-10px); }
.photo-grid figure:nth-child(4) { transform: translateY(18px); }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.photo-grid figure:hover img { transform: scale(1.04); }
.photo-grid figcaption {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(22,18,15,.82); color: var(--white);
  font-size: 12px; font-weight: 600; letter-spacing: .01em;
  padding: 6px 10px; border-radius: 6px; backdrop-filter: blur(4px);
}
.why-copy h2 { margin-bottom: 20px; }
.why-copy h3 { margin: 36px 0 12px; }
.why-copy p { color: var(--ink-2); line-height: 1.75; }

/* ── Events embed (Net Hub gateway) ── */
.events-embed { background: var(--white); width: 100%; }
.events-embed iframe { display: block; width: 100%; height: 1650px; border: 0; }
.events-note { margin-top: 18px; color: var(--ink-2); }
#events { padding: 56px 0 72px; }
#events .section-head { margin-bottom: 24px; }

/* ── Page hero (about, organisers, contact) ── */
.page-hero {
  position: relative; background: var(--ink); color: var(--white); overflow: hidden; isolation: isolate;
  padding: calc(var(--nav-h) + 88px) 0 80px;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(60% 70% at 85% 0%, rgba(240,122,46,.28), transparent 70%);
}
.page-hero h1 { font-size: clamp(34px, 4.8vw, 60px); max-width: none; }
.page-hero h1 br { display: none; }
@media (min-width: 900px) { .page-hero h1 br { display: inline; } }
.page-hero h1 em { font-style: normal; color: var(--orange-bright); }
.page-hero .lead { color: rgba(255,255,255,.8); margin-top: 22px; }
.page-hero .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.page-hero .tickets { margin-top: 36px; }
.page-hero--photo { padding-bottom: 96px; }
.page-hero--photo .hero-bg { opacity: .55; }
.page-hero--photo::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(22,18,15,.85), rgba(22,18,15,.35)); }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: end; }
.hero-rule {
  font-family: var(--display); font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  border-top: 1px solid rgba(255,255,255,.18); padding-top: 18px;
}
.hero-rule .big { font-size: clamp(64px, 9vw, 120px); color: var(--orange-bright); display: block; }
.hero-rule .small { font-size: 15px; font-family: var(--body); font-weight: 500; letter-spacing: 0; color: rgba(255,255,255,.7); display: block; margin-top: 8px; }

/* ── Trust bar ── */
.trust {
  background: var(--white); border-bottom: 1px solid var(--line);
  padding: 18px 28px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 26px;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
}
.trust span { display: inline-flex; align-items: center; gap: 9px; }
.trust svg { width: 18px; height: 18px; stroke: var(--orange-deep); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Plan ── */
.plan {
  max-width: 980px; margin: 0 auto; background: var(--white); border: 2px solid var(--ink); border-radius: 18px;
  display: grid; grid-template-columns: 1fr 1.15fr; position: relative;
  box-shadow: 0 30px 60px -34px rgba(22,18,15,.5);
}
.plan-badge {
  position: absolute; top: -16px; left: 36px;
  background: var(--orange); color: var(--ink); font-family: var(--display); font-weight: 800; font-size: 14px; letter-spacing: -0.01em;
  padding: 7px 14px; border-radius: 8px; transform: rotate(-1.5deg);
}
.plan-lead { padding: 52px 40px 40px; border-right: 2px dashed var(--line-strong); display: flex; flex-direction: column; }
.plan-amount { font-family: var(--display); font-weight: 800; font-size: clamp(64px, 8vw, 96px); letter-spacing: -0.045em; line-height: .9; }
.plan-amount span { font-family: var(--body); font-weight: 500; font-size: 16px; letter-spacing: 0; color: var(--muted); margin-left: 6px; }
.plan-lead .lead { margin-top: 18px; }
.plan-lead .btn { margin-top: 28px; width: 100%; padding: 17px 24px; font-size: 16px; }
.plan-lead .note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.plan-features { padding: 52px 40px 40px; }
.plan-features h3 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; font-family: var(--body); font-weight: 700; color: var(--orange-deep); margin-bottom: 18px; }
.checklist { list-style: none; }
.checklist li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; line-height: 1.45; }
.checklist li:last-child { border-bottom: 0; }
.checklist svg { width: 22px; height: 22px; stroke: var(--orange-deep); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; margin-top: 1px; }
.plan-more { text-align: center; margin-top: 36px; }

/* ── Regular payments ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.split h2 { margin-bottom: 20px; }
.split p { color: var(--ink-2); line-height: 1.75; }
.ledger { border: 1.5px solid var(--ink); border-radius: 14px; background: var(--white); overflow: hidden; }
.ledger-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; background: var(--ink); color: var(--white); font-family: var(--display); font-weight: 700; font-size: 15px; }
.ledger-head span { font-family: var(--body); font-weight: 500; font-size: 12px; color: rgba(255,255,255,.6); }
.ledger-row { display: grid; grid-template-columns: 40px 1fr auto; gap: 14px; align-items: center; padding: 16px 20px; border-top: 1px solid var(--line); }
.ledger-row:first-of-type { border-top: 0; }
.ledger-row svg { width: 24px; height: 24px; stroke: var(--orange-deep); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ledger-row strong { display: block; font-size: 15px; font-weight: 600; }
.ledger-row small { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; }
.ledger-row .tag { font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 9px; border-radius: 6px; background: var(--orange-tint); color: var(--orange-deep); white-space: nowrap; }
.ledger-foot { padding: 12px 20px; font-size: 12px; color: var(--muted); border-top: 1px dashed var(--line-strong); }

/* ── Testimonial ── */
.quote-card {
  max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: 96px 1fr; gap: 32px; align-items: start;
  background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 44px 44px 40px;
  box-shadow: 0 24px 48px -30px rgba(22,18,15,.4);
}
.quote-card img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--orange); }
.quote-card blockquote { font-family: var(--display); font-weight: 600; font-size: clamp(20px, 2.4vw, 27px); letter-spacing: -0.015em; line-height: 1.3; }
.quote-card blockquote::before { content: '\201C'; color: var(--orange); margin-right: 2px; }
.quote-card blockquote::after { content: '\201D'; color: var(--orange); margin-left: 2px; }
.quote-card figcaption { margin-top: 20px; font-size: 14.5px; color: var(--muted); }
.quote-card figcaption strong { color: var(--ink); font-weight: 700; }
.quote-more { text-align: center; color: var(--muted); font-size: 14px; margin-top: 22px; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-grid h2 { margin-bottom: 20px; }
.about-grid p { color: var(--ink-2); line-height: 1.75; }
.collage { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 120px; gap: 12px; }
.collage figure { border-radius: 12px; overflow: hidden; background: var(--paper-2); box-shadow: 0 14px 30px -18px rgba(22,18,15,.45); }
.collage img { width: 100%; height: 100%; object-fit: cover; }
.collage figure:nth-child(1) { grid-column: 1 / 4; grid-row: 1 / 3; }
.collage figure:nth-child(2) { grid-column: 4 / 7; grid-row: 1 / 2; }
.collage figure:nth-child(3) { grid-column: 4 / 7; grid-row: 2 / 3; }
.collage figure:nth-child(4) { grid-column: 1 / 3; grid-row: 3 / 4; }
.collage figure:nth-child(5) { grid-column: 3 / 7; grid-row: 3 / 4; }
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.audience article { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 34px 32px 30px; display: flex; flex-direction: column; gap: 12px; }
.audience h3 { font-size: 24px; }
.audience p { color: var(--ink-2); flex: 1; }
.audience .btn { align-self: flex-start; }

/* ── Contact ── */
.contact-list { display: grid; gap: 14px; margin-top: 28px; max-width: 520px; }
.contact-list a, .contact-list span { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--white); border: 1px solid var(--line); border-radius: 12px; font-weight: 500; }
.contact-list a:hover { border-color: var(--ink); }
.contact-list svg { width: 22px; height: 22px; stroke: var(--orange-deep); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ── Footer ── */
.footer { background: var(--ink); color: rgba(255,255,255,.66); position: relative; }
.footer-photo { position: relative; height: 420px; overflow: hidden; }
.footer-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 68%; }
.footer-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,18,15,.05) 0%, rgba(22,18,15,.15) 60%, rgba(22,18,15,.6) 85%, var(--ink) 100%); }
.footer-photo .photo-note { position: absolute; right: 16px; top: 12px; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding: 12px 0 56px; }
.footer .brand { font-size: 24px; color: var(--white); }
.footer-brand p { margin-top: 16px; max-width: 46ch; line-height: 1.7; font-size: 14.5px; }
.footer h3 { font-family: var(--body); font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { font-size: 14.5px; color: rgba(255,255,255,.72); transition: color .15s; }
.footer ul a:hover { color: var(--orange-bright); }
.footer address { font-style: normal; display: grid; gap: 12px; }
.footer address a, .footer address span { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: rgba(255,255,255,.72); line-height: 1.5; }
.footer address a:hover { color: var(--orange-bright); }
.footer address svg { width: 18px; height: 18px; stroke: var(--orange-bright); fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0 30px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; font-size: 13px; }
.footer-bottom img { height: 40px; width: auto; opacity: .85; }
.footer-bottom a:hover img { opacity: 1; }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .why, .split, .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .hero-rule { max-width: 420px; }
  .plan { grid-template-columns: 1fr; }
  .plan-lead { border-right: 0; border-bottom: 2px dashed var(--line-strong); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--ink); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 0 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-links li a { display: block; padding: 14px 28px; font-size: 16px; }
  .nav.is-open .nav-links { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn-outline { display: none; }
  .nav-mobile-only { display: block; border-top: 1px solid rgba(255,255,255,.1); margin-top: 6px; padding-top: 6px; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .hero { padding-bottom: 56px; }
  .hero-inner { padding: 0 20px; }
  .hero h1 { font-size: clamp(36px, 10vw, 48px); }
  .hero h1 br { display: none; }
  .hero-foot { flex-direction: column; align-items: stretch; }
  .hero-foot .hero-scroll { padding-bottom: 0; }
  .tickets { flex-direction: column; }
  .ticket { min-width: 0; width: 100%; }
  .photo-grid figure:nth-child(n) { transform: none; }
  #events { padding: 40px 0 56px; }
  .plan-lead, .plan-features { padding: 44px 24px 30px; }
  .plan-badge { left: 20px; }
  .quote-card { grid-template-columns: 1fr; padding: 32px 26px; gap: 18px; }
  .quote-card img { width: 72px; height: 72px; }
  .audience { grid-template-columns: 1fr; }
  .collage { grid-auto-rows: 90px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-photo { height: 260px; }
  .trust { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 20px; }
  .trust span { align-items: flex-start; }
  .trust svg { flex-shrink: 0; margin-top: 2px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
