@layer reset, tokens, base, layout, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, ul { margin: 0; }
  ul { padding: 0; list-style: none; }
  img, svg { display: block; max-width: 100%; height: auto; }
  a { color: inherit; text-decoration: none; }
  button { border: 0; font: inherit; color: inherit; cursor: pointer; }
  :focus-visible { outline: 2px solid #34f5d6; outline-offset: 4px; }
}

@layer tokens {
  :root {
    --background: #050913;
    --background-soft: #08111f;
    --foreground: #f8fafc;
    --muted: #94a3b8;
    --muted-foreground: #cbd5e1;
    --card: rgba(15, 23, 42, .74);
    --card-solid: #0f172a;
    --popover: #0b1220;
    --border: rgba(148, 163, 184, .18);
    --border-strong: rgba(52, 245, 214, .38);
    --primary: #34f5d6;
    --primary-foreground: #031018;
    --secondary: #f8c756;
    --secondary-foreground: #211600;
    --blue: #60a5fa;
    --green: #5ee9a8;
    --radius: 8px;
    --shadow: 0 24px 80px rgba(0, 0, 0, .38);
    --wrap: min(1160px, calc(100% - 40px));
    --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  }
}

@layer base {
  body {
    min-height: 100svh;
    color: var(--foreground);
    font-family: var(--font);
    background:
      linear-gradient(120deg, rgba(52, 245, 214, .08), transparent 34%),
      linear-gradient(240deg, rgba(96, 165, 250, .1), transparent 38%),
      var(--background);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(148, 163, 184, .055) 1px, transparent 1px),
      linear-gradient(90deg, rgba(148, 163, 184, .04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 78%);
  }

  body::after {
    content: "";
    position: fixed;
    inset: -20%;
    z-index: -2;
    pointer-events: none;
    background:
      linear-gradient(115deg, transparent 16%, rgba(52, 245, 214, .08) 38%, transparent 62%),
      linear-gradient(245deg, transparent 18%, rgba(94, 233, 168, .07) 44%, transparent 68%);
    background-size: 160% 160%;
    opacity: .72;
    animation: backgroundBreath 12s ease-in-out infinite;
  }

  @keyframes backgroundBreath {
    0%, 100% {
      opacity: .44;
      transform: translate3d(-2%, -1%, 0) scale(1);
      background-position: 0% 45%;
    }
    50% {
      opacity: .86;
      transform: translate3d(2%, 1%, 0) scale(1.03);
      background-position: 100% 55%;
    }
  }

  h1, h2, h3 { line-height: 1.02; letter-spacing: 0; text-wrap: balance; }
  h1 { max-width: 13ch; font-size: 5.2rem; }
  h2 { max-width: 14ch; font-size: 3.5rem; }
  h3 { font-size: 1.18rem; }
  p { color: var(--muted); line-height: 1.65; }
  strong { color: var(--foreground); }
  section { padding: 5.5rem 0; }
  section[id] { scroll-margin-top: 88px; }
  .wrap { width: var(--wrap); margin-inline: auto; }
  .lead { max-width: 61ch; color: var(--muted-foreground); font-size: 1.16rem; }
}

@layer layout {
  .app-shell { min-height: 100svh; }

  .topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border);
    background: rgba(5, 9, 19, .72);
    backdrop-filter: blur(18px) saturate(1.1);
  }

  .nav {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    gap: .72rem;
    min-width: 0;
  }
  .brand-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,.32));
  }
  .brand-copy {
    display: grid;
    gap: .08rem;
    min-width: 0;
  }
  .brand-copy strong {
    color: var(--foreground);
    font-size: 1.04rem;
    font-weight: 950;
    line-height: 1;
  }
  .brand-copy small {
    color: var(--primary);
    font-size: .78rem;
    font-weight: 900;
    line-height: 1.1;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: .2rem;
    padding: .18rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, .68);
  }

  .nav-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .46rem .7rem;
    border-radius: 6px;
    color: var(--muted);
    font-size: .9rem;
    font-weight: 750;
  }

  .nav-links a:hover,
  .nav-links a[aria-current] {
    color: var(--foreground);
    background: rgba(148, 163, 184, .12);
  }

  .nav-cta {
    color: var(--primary-foreground) !important;
    background: var(--primary) !important;
  }

  .menu-toggle {
    display: none;
    align-items: center;
    gap: .62rem;
    min-height: 42px;
    padding: .55rem .78rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, .68);
    color: var(--foreground);
    font-weight: 850;
  }

  .menu-lines {
    position: relative;
    width: 18px;
    height: 12px;
  }

  .menu-lines::before,
  .menu-lines::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .18s ease, top .18s ease;
  }

  .menu-lines::before { top: 1px; }
  .menu-lines::after { top: 9px; }

  .menu-toggle[aria-expanded="true"] .menu-lines::before {
    top: 5px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines::after {
    top: 5px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    border-top: 1px solid var(--border);
    background: rgba(5, 9, 19, .94);
    backdrop-filter: blur(18px);
  }

  .mobile-menu[hidden] { display: none; }

  .mobile-menu-inner {
    display: grid;
    gap: .5rem;
    padding-block: .75rem;
  }

  .mobile-menu a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: .78rem .85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, .64);
    color: var(--foreground);
    font-weight: 850;
  }

  .mobile-menu a:hover {
    border-color: var(--border-strong);
  }

  .hero {
    position: relative;
    padding: 4.5rem 0 3.2rem;
    border-bottom: 1px solid var(--border);
  }

  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .98fr) minmax(360px, .72fr);
    gap: 1.25rem;
    align-items: stretch;
  }

  .hero-copy,
  .event-panel,
  .organizer-card,
  .signal-card,
  .bento-card,
  .route-item,
  .check-card,
  .rule-card,
  .price-card,
  .included-card,
  .faq-card,
  .final-card,
  .final-note {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)), var(--card);
    box-shadow: 0 1px 0 rgba(255,255,255,.03) inset;
  }

  .hero-copy {
    position: relative;
    min-height: 690px;
    display: grid;
    align-content: end;
    gap: 1.1rem;
    padding: 1.3rem;
    overflow: hidden;
    background:
      linear-gradient(90deg, rgba(5,9,19,.94), rgba(5,9,19,.72), rgba(5,9,19,.38)),
      url("../kanyonfest-cover.jpg") center / cover no-repeat;
  }

  .hero-copy::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      linear-gradient(105deg, transparent 0%, transparent 36%, rgba(255,255,255,.18) 47%, rgba(52,245,214,.2) 51%, transparent 62%, transparent 100%);
    transform: translateX(-72%);
    animation: heroShine 7.5s ease-in-out infinite;
    mix-blend-mode: screen;
  }

  .hero-copy::after {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: 0;
    pointer-events: none;
    border-radius: calc(var(--radius) - 1px);
    background:
      linear-gradient(135deg, rgba(52,245,214,.16), transparent 26%),
      linear-gradient(315deg, rgba(248,199,86,.14), transparent 28%);
    opacity: .62;
  }

  .hero-copy > * {
    position: relative;
    z-index: 1;
  }

  @keyframes heroShine {
    0%, 58% { transform: translateX(-78%); opacity: 0; }
    68% { opacity: .82; }
    88%, 100% { transform: translateX(78%); opacity: 0; }
  }

  .hero-text-stack {
    display: grid;
    gap: .75rem;
    max-width: 68ch;
  }

  .hero-text-stack p:not(.lead) {
    color: var(--muted-foreground);
  }

  .organizer-card {
    display: grid;
    gap: .75rem;
    margin-top: 1rem;
    padding: 1rem;
    background:
      linear-gradient(90deg, rgba(52,245,214,.12), rgba(96,165,250,.06)),
      var(--card);
  }

  .organizer-card p {
    max-width: 86ch;
    color: var(--muted-foreground);
    font-size: 1.04rem;
  }

  .signal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
  }

  .section {
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(148,163,184,.025), transparent), transparent;
  }

  .section-head {
    display: grid;
    grid-template-columns: minmax(0, .54fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.25rem;
  }

  .section-head .kicker { grid-column: 1 / -1; }
  .section-head p { max-width: 60ch; justify-self: end; }
  .section-head.compact { display: grid; grid-template-columns: 1fr; margin-bottom: 0; }
  .section-head.compact p { justify-self: start; }

  .split {
    display: grid;
    grid-template-columns: minmax(0, .58fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
  }
}

@layer components {
  .kicker {
    width: auto;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .48rem;
    color: var(--primary);
    font-size: .78rem;
    font-weight: 850;
    line-height: 1.3;
  }

  .kicker::before {
    content: "";
    width: .5rem;
    height: .5rem;
    flex: 0 0 auto;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 24px currentColor;
  }

  .hero-actions,
  .final-actions {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: .2rem;
  }

  .btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .78rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, .72);
    color: var(--foreground);
    font-weight: 800;
    box-shadow: 0 1px 0 rgba(255,255,255,.04) inset;
    transition: transform .16s ease, border-color .16s ease, background .16s ease;
  }

  .btn:hover {
    transform: translateY(-1px);
    border-color: var(--border-strong);
    background: rgba(30, 41, 59, .82);
  }

  .btn.primary {
    color: var(--primary-foreground);
    border-color: transparent;
    background: var(--primary);
  }

  .btn.secondary {
    color: var(--secondary-foreground);
    border-color: transparent;
    background: var(--secondary);
  }

  .btn.ghost { background: rgba(15, 23, 42, .52); }

  .event-panel {
    display: grid;
    grid-template-rows: 1fr auto;
    overflow: hidden;
  }

  .event-image {
    min-height: 430px;
    display: grid;
    align-content: end;
    padding: 1rem;
    background:
      linear-gradient(to top, rgba(5,9,19,.9), rgba(5,9,19,.14)),
      url("../kanyonfest-poster.jpg") center / cover no-repeat;
  }

  .status-pill,
  .card-index {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: .35rem .6rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(5, 9, 19, .72);
    color: var(--muted-foreground);
    font-size: .78rem;
    font-weight: 800;
  }

  .event-summary {
    display: grid;
    gap: .6rem;
    padding: 1rem;
    background: rgba(5, 9, 19, .68);
  }

  .panel-line {
    color: var(--muted-foreground);
    font-weight: 800;
  }

  .summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 44px;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--border);
  }
  .summary-row:last-child { border-bottom: 0; padding-bottom: 0; }
  .summary-row span { color: var(--muted); font-size: .88rem; }
  .summary-row strong { text-align: right; }

  .summary-note {
    color: var(--secondary);
    font-size: .88rem;
    font-weight: 850;
  }

  .signal-card {
    min-height: 152px;
    display: grid;
    gap: .7rem;
    align-content: start;
    padding: 1rem;
  }
  .signal-card span {
    color: var(--primary);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: .86rem;
    font-weight: 800;
  }
  .signal-card h2 { font-size: 1.25rem; }
  .signal-card p { font-size: .95rem; }

  .card-quote,
  .route-note {
    color: var(--muted-foreground);
    font-weight: 850;
  }

  .bento-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .bento-card {
    min-height: 320px;
    display: grid;
    align-content: space-between;
    gap: 1rem;
    padding: 1rem;
  }

  .bento-large {
    background:
      linear-gradient(to top, rgba(5,9,19,.94), rgba(5,9,19,.38)),
      url("../kanyonfest-cover.jpg") center / cover no-repeat;
  }

  .bento-card:nth-child(2) {
    background:
      linear-gradient(to top, rgba(5,9,19,.95), rgba(5,9,19,.46)),
      url("../kanyonfest-mangal.jpg") center / cover no-repeat;
  }

  .bento-card:nth-child(3) {
    background:
      linear-gradient(to top, rgba(5,9,19,.96), rgba(5,9,19,.52)),
      url("../kanyonfest-serinlik.jpg") center / cover no-repeat;
  }

  .bento-card:nth-child(4) {
    background:
      linear-gradient(to top, rgba(5,9,19,.96), rgba(5,9,19,.5)),
      url("../kanyonfest-izsiz-donus.jpg") center / cover no-repeat;
  }

  .bento-card h3 { font-size: 1.34rem; }
  .bento-card p { max-width: 42ch; }
  .card-index { border-radius: var(--radius); color: var(--primary); }

  .route-stack { display: grid; gap: .75rem; }
  .route-item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  .route-item > span {
    width: fit-content;
    height: fit-content;
    padding: .34rem .5rem;
    border: 1px solid rgba(52,245,214,.24);
    border-radius: var(--radius);
    color: var(--primary);
    background: rgba(52,245,214,.08);
    font-size: .82rem;
    font-weight: 850;
  }

  .checklist-grid,
  .faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .check-card,
  .faq-card {
    min-height: 210px;
    padding: 1rem;
  }

  .check-card p {
    margin-top: .72rem;
    font-size: .95rem;
  }

  .check-card ul {
    display: grid;
    gap: .7rem;
    margin-top: 1rem;
  }

  .check-card li,
  .included-list span {
    position: relative;
    padding-left: 1.15rem;
    color: var(--muted);
    line-height: 1.55;
  }

  .check-card li::before,
  .included-list span::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: .42rem;
    height: .42rem;
    border-radius: 999px;
    background: var(--green);
  }

  .price-grid {
    display: grid;
    grid-template-columns: minmax(0, .52fr) minmax(0, 1fr);
    gap: 1rem;
  }

  .rule-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .rule-card {
    min-height: 230px;
    display: grid;
    gap: .8rem;
    align-content: start;
    padding: 1rem;
  }

  .rule-card span {
    color: var(--primary);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: .86rem;
    font-weight: 850;
  }

  .rule-card p {
    font-size: .95rem;
  }

  .rule-wide {
    grid-column: span 2;
    background:
      linear-gradient(135deg, rgba(52,245,214,.12), transparent 48%),
      linear-gradient(225deg, rgba(248,199,86,.12), transparent 48%),
      var(--card);
  }

  .payment-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .46fr);
    gap: 1rem;
    align-items: start;
  }

  .price-card,
  .included-card,
  .payment-card,
  .payment-note-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018)), var(--card);
    padding: 1rem;
  }

  .payment-card {
    display: grid;
    gap: 1rem;
  }

  .payment-intro {
    display: grid;
    gap: .65rem;
  }

  .payment-card > p,
  .payment-note-card p { max-width: 64ch; }

  .payment-details[hidden] {
    display: none !important;
  }

  .payment-details:not([hidden]) {
    display: grid;
    gap: .7rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }

  .payment-row {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    min-height: 42px;
    padding-bottom: .7rem;
    border-bottom: 1px solid var(--border);
  }

  .payment-row span {
    color: var(--muted);
    font-size: .88rem;
  }

  .payment-row strong {
    min-width: 0;
    overflow-wrap: anywhere;
    text-align: right;
  }

  .iban-row strong {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    letter-spacing: 0;
  }

  .payment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
  }

  .fine-print {
    color: var(--muted);
    font-size: .88rem;
  }

  .payment-note-card ul {
    display: grid;
    gap: .72rem;
    margin-top: 1rem;
  }

  .payment-note-card li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--muted);
    line-height: 1.55;
  }

  .payment-note-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: .42rem;
    height: .42rem;
    border-radius: 999px;
    background: var(--primary);
  }

  .price-card strong {
    display: block;
    margin: .6rem 0 .8rem;
    color: var(--secondary);
    font-size: 4rem;
    line-height: .96;
  }

  .included-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .8rem 1rem;
    margin-top: 1rem;
  }

  .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-card { min-height: 220px; }
  .faq-card p { margin-top: .7rem; font-size: .95rem; }
  .faq-card h3 { font-size: calc(0.75rem + 10px) !important; }

  .final-section { padding-bottom: 4.2rem; }
  .payment-section { border-bottom: 0; }
  .final-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: end;
    padding: 1.25rem;
    background:
      linear-gradient(135deg, rgba(52,245,214,.13), transparent 42%),
      linear-gradient(225deg, rgba(96,165,250,.14), transparent 42%),
      var(--card);
  }
  .final-card p { max-width: 62ch; margin-top: .85rem; }

  .final-copy {
    min-width: 0;
  }

  .ready-message {
    grid-column: 1 / -1;
    display: grid;
    gap: .6rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(5, 9, 19, .52);
  }

  .ready-message p {
    max-width: 84ch;
    margin-top: 0;
    color: var(--muted-foreground);
  }

  .final-note {
    display: grid;
    gap: .85rem;
    margin-top: 1rem;
    padding: 1.25rem;
    background:
      linear-gradient(135deg, rgba(94,233,168,.12), transparent 44%),
      linear-gradient(225deg, rgba(96,165,250,.12), transparent 44%),
      var(--card);
  }

  .final-note h2 {
    max-width: 20ch;
  }

  .final-note p {
    max-width: 82ch;
    color: var(--muted-foreground);
  }

  .mobile-dock {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 80;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
  }

  .mobile-dock .btn {
    width: 100%;
    min-height: 50px;
    box-shadow: var(--shadow);
  }

  .footer {
    padding: 1.3rem 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
    background:
      linear-gradient(90deg, rgba(52,245,214,.07), transparent 38%),
      #030710;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
  }

  .footer-brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    min-width: 0;
  }

  .footer-brand img {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
  }

  .footer-brand span {
    display: grid;
    gap: .05rem;
    min-width: 0;
  }

  .footer-brand strong {
    color: var(--foreground);
    font-size: .92rem;
    line-height: 1;
  }

  .footer-brand small {
    color: var(--muted);
    font-size: .78rem;
    font-weight: 750;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .25rem;
    padding: .2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(15, 23, 42, .46);
  }

  .footer-links a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: .44rem .62rem;
    border-radius: 6px;
    color: var(--muted-foreground);
    font-size: .82rem;
    font-weight: 800;
  }

  .footer-links a:hover {
    color: var(--foreground);
    background: rgba(148, 163, 184, .12);
  }

  .footer-credit {
    justify-self: end;
    color: var(--muted-foreground);
    font-size: .82rem;
    font-weight: 750;
    line-height: 1.45;
    text-align: right;
  }
}

@layer utilities {
  @media (max-width: 1040px) {
    h1 { font-size: 4.4rem; }
    h2 { font-size: 3rem; }
    .hero-grid,
    .split,
    .price-grid,
    .payment-grid,
    .final-card { grid-template-columns: 1fr; }
    .event-panel { grid-template-columns: minmax(0, .9fr) minmax(280px, .62fr); grid-template-rows: none; }
    .event-image { min-height: 320px; }
    .bento-grid,
    .faq-grid,
    .rule-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .rule-wide { grid-column: span 2; }
    .checklist-grid { grid-template-columns: 1fr; }
    .final-actions { justify-content: flex-start; }
  }

  @media (max-width: 720px) {
    :root { --wrap: min(430px, calc(100% - 32px)); }
    section { padding: 3.4rem 0; }
    h1 { font-size: 3rem; }
    h2 { font-size: 2.24rem; }
    h3 { font-size: 1.1rem; }
    .lead { font-size: 1.04rem; }
    .nav { min-height: 66px; }
    .brand-copy { display: none; }
    .brand-mark { width: 46px; height: 46px; }
    .nav-links { display: none; }
    .menu-toggle { display: inline-flex; }
    .hero { padding: 2rem 0 2.4rem; }
    .hero-copy { min-height: auto; padding: 1rem; }
    .hero-actions,
    .final-actions { display: grid; grid-template-columns: 1fr; }
    .btn { width: 100%; }
    .event-panel { display: none; }
    .signal-grid,
    .section-head,
    .bento-grid,
    .price-grid,
    .payment-grid,
    .included-list,
    .faq-grid,
    .rule-grid { grid-template-columns: 1fr; }
    .section-head p { justify-self: start; }
    .bento-large { grid-column: span 1; }
    .bento-card { min-height: 300px; }
    .organizer-card { margin-top: .75rem; }
    .route-item { grid-template-columns: 1fr; }
    .rule-wide { grid-column: span 1; }
    .payment-row { grid-template-columns: 1fr; gap: .25rem; }
    .payment-row strong { text-align: left; }
    .payment-actions { display: grid; grid-template-columns: 1fr; }
    .price-card strong { font-size: 3.15rem; }
    .final-section { padding-bottom: 3.4rem; }
    .mobile-dock { display: none; }
    .footer-grid {
      grid-template-columns: 1fr;
      justify-items: center;
      text-align: center;
    }
    .footer-credit { justify-self: center; text-align: center; }
  }

  @media (max-width: 370px) {
    h1 { font-size: 2.58rem; }
    h2 { font-size: 2rem; }
    .btn { min-height: 46px; padding-inline: .82rem; font-size: .92rem; }
    .mobile-dock .btn { font-size: .86rem; }
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: .001ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
    }
  }
}
