﻿:root {
      --ink: #18345f;
      --muted: #5e6570;
      --paper: #fffdf8;
      --mist: #f8f3eb;
      --foam: #edf5fa;
      --sea: #9ab7cd;
      --sea-deep: #12366c;
      --coral: #c79644;
      --sun: #bd8735;
      --leaf: #9aa68a;
      --line: rgba(18, 54, 108, 0.18);
      --gold-line: rgba(189, 135, 53, 0.34);
      --shadow: 0 18px 42px rgba(18, 54, 108, 0.12);
      --radius: 8px;
      color-scheme: light;
      font-family: "Trebuchet MS", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
      --script-font: "Segoe Script", "Brush Script MT", "Comic Sans MS", cursive;
      font-size: 16px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background:
        radial-gradient(circle at top left, rgba(154, 183, 205, 0.28), transparent 26rem),
        radial-gradient(circle at bottom right, rgba(189, 135, 53, 0.13), transparent 30rem),
        var(--mist);
      color: var(--ink);
      line-height: 1.58;
      overflow-x: hidden;
    }

    body::before,
    body::after {
      content: "";
      position: fixed;
      z-index: -1;
      width: 220px;
      height: 220px;
      opacity: 0.18;
      pointer-events: none;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%2312366c' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M18 105C44 66 72 38 108 16'/%3E%3Cpath d='M34 84c-12 0-20-5-26-14 13-3 22 1 26 14Z'/%3E%3Cpath d='M50 66c-12 0-20-5-26-14 13-3 22 1 26 14Z'/%3E%3Cpath d='M68 49c-11 0-18-5-23-13 12-3 20 1 23 13Z'/%3E%3Cpath d='M82 34c-10 0-16-5-20-12 10-2 17 1 20 12Z'/%3E%3Cpath d='M41 77c0-12 5-20 14-26 3 13-1 22-14 26Z'/%3E%3Cpath d='M58 59c0-11 5-18 13-23 2 12-2 20-13 23Z'/%3E%3Cpath d='M75 43c0-10 5-17 12-21 2 11-1 18-12 21Z'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
    }

    body::before {
      top: 16px;
      left: -42px;
    }

    body::after {
      right: -42px;
      bottom: 16px;
      transform: rotate(180deg);
    }

    body::selection {
      background: rgba(244, 186, 80, 0.35);
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    a {
      color: inherit;
    }

    .scroll-progress {
      position: fixed;
      inset: 0 auto auto 0;
      z-index: 50;
      width: var(--scroll-progress, 0%);
      height: 4px;
      background: linear-gradient(90deg, var(--sea-deep), var(--sun), var(--sea-deep));
      pointer-events: none;
    }

    .language-switcher {
      position: fixed;
      top: 12px;
      right: 12px;
      z-index: 60;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 4px;
      padding: 4px;
      border: 1px solid rgba(18, 54, 108, 0.16);
      border-radius: var(--radius);
      background: rgba(255, 253, 248, 0.86);
      box-shadow: 0 10px 30px rgba(18, 54, 108, 0.14);
      backdrop-filter: blur(14px);
    }

    .language-switcher button {
      min-width: 42px;
      min-height: 36px;
      border: 0;
      border-radius: 6px;
      background: transparent;
      color: var(--sea-deep);
      cursor: pointer;
      font-size: 0.83rem;
      font-weight: 800;
      letter-spacing: 0;
      transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    }

    .language-switcher button:hover {
      background: rgba(189, 135, 53, 0.14);
    }

    .language-switcher button[aria-pressed="true"] {
      background: var(--sea-deep);
      color: #fff;
    }

    .hero {
      position: relative;
      min-height: 88svh;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      color: #fff;
      background-image:
        linear-gradient(180deg, rgba(255, 253, 248, 0.14) 0%, rgba(18, 54, 108, 0.12) 42%, rgba(18, 54, 108, 0.68) 100%),
        var(--hero-image);
      background-position: center;
      background-size: cover;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 30%;
      background: linear-gradient(180deg, rgba(248, 243, 235, 0), var(--mist));
      pointer-events: none;
    }

    .hero__content {
      position: relative;
      z-index: 1;
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
      padding: 118px 0 118px;
    }

    .eyebrow {
      margin: 0 0 10px;
      color: var(--sun);
      font-size: 0.79rem;
      font-weight: 900;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .hero .eyebrow {
      color: rgba(255, 255, 255, 0.84);
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
    }

    h1,
    h2,
    h3 {
      margin: 0;
      line-height: 1.08;
      letter-spacing: 0;
      color: var(--sea-deep);
    }

    h1 {
      max-width: 780px;
      font-family: var(--script-font);
      font-size: 3.1rem;
      font-weight: 500;
      text-shadow: 0 5px 30px rgba(0, 0, 0, 0.32);
      color: #fffdf8;
    }

    h2 {
      font-size: 1.9rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    h3 {
      font-size: 1.1rem;
    }

    p {
      margin: 0;
    }

    .hero__intro {
      max-width: 680px;
      margin-top: 18px;
      font-size: 1.08rem;
      color: rgba(255, 255, 255, 0.92);
      text-shadow: 0 3px 24px rgba(0, 0, 0, 0.32);
    }

    .hero__badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 42px;
      padding: 8px 12px;
      border: 1px solid rgba(255, 255, 255, 0.32);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, 0.16);
      color: #fff;
      backdrop-filter: blur(12px);
    }

    .hero-badge strong {
      font-size: 0.92rem;
      line-height: 1.2;
    }

    .hero-badge span {
      display: block;
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.77rem;
      line-height: 1.2;
    }

    .hero__scene {
      display: grid;
      gap: 24px;
      align-items: end;
      max-width: 1040px;
      margin-top: 18px;
    }

    .house-mascot {
      display: block;
      width: min(172px, 42vw);
      height: auto;
      filter: drop-shadow(0 10px 16px rgba(18, 54, 108, 0.12));
      transform-origin: 50% 90%;
    }

    .house-mascot--hero {
      animation: mascotHello 900ms 120ms cubic-bezier(.2, 1.35, .28, 1) both, mascotFloat 4.8s 1.2s ease-in-out infinite;
    }

    .house-mascot--tiny {
      width: 56px;
      filter: drop-shadow(0 7px 10px rgba(16, 46, 50, 0.15));
    }

    .mascot-holder {
      display: inline-grid;
      place-items: center;
      width: auto;
      height: auto;
      border-radius: 0;
      background: transparent;
      color: inherit;
    }

    .speech-pop,
    .popup-card {
      position: relative;
      border: 1.5px solid var(--gold-line);
      border-radius: 8px;
      background: rgba(255, 253, 248, 0.94);
      color: var(--ink);
      box-shadow: 0 20px 48px rgba(18, 54, 108, 0.14);
      backdrop-filter: blur(12px);
      transform-origin: 38px calc(100% - 20px);
      animation: dewPop 680ms 220ms cubic-bezier(.18, 1.28, .3, 1) both;
    }

    .speech-pop {
      display: grid;
      gap: 12px;
      max-width: 840px;
      padding: 24px;
    }

    .speech-pop__logo {
      justify-self: center;
      width: min(138px, 42vw);
      margin-bottom: 4px;
    }

    .speech-pop__logo .house-mascot {
      width: 100%;
      filter: none;
      animation: none;
    }

    .speech-pop::after {
      content: "";
      position: absolute;
      left: 34px;
      bottom: -14px;
      width: 26px;
      height: 26px;
      background: rgba(255, 253, 248, 0.94);
      border-right: 1.5px solid var(--gold-line);
      border-bottom: 1.5px solid var(--gold-line);
      transform: rotate(45deg);
    }

    .speech-pop p {
      color: #1e3158;
      font-size: 1rem;
      text-shadow: none;
    }

    .hero__house-label {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 8px;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.2);
      color: #fff;
      font-weight: 900;
      box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
      backdrop-filter: blur(10px);
    }

    @keyframes dewPop {
      0% {
        opacity: 0;
        transform: translateY(14px) scale(0.9);
      }
      58% {
        opacity: 1;
        transform: translateY(-3px) scale(1.018);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes mascotHello {
      0% {
        opacity: 0;
        transform: translateY(18px) rotate(-5deg) scale(0.92);
      }
      70% {
        opacity: 1;
        transform: translateY(-4px) rotate(2deg) scale(1.02);
      }
      100% {
        opacity: 1;
        transform: translateY(0) rotate(0) scale(1);
      }
    }

    @keyframes mascotFloat {
      0%, 100% {
        transform: translateY(0) rotate(0);
      }
      50% {
        transform: translateY(-6px) rotate(-1.5deg);
      }
    }

    .page-section {
      padding: 64px 0;
    }

    .rules-section {
      padding-top: 82px;
    }

    .photo-story {
      padding: 18px 0 56px;
      background: linear-gradient(180deg, rgba(248, 243, 235, 0.92), rgba(255, 253, 248, 0.92));
    }

    .photo-story__grid {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .brochure-photo {
      overflow: hidden;
      min-height: 150px;
      margin: 0;
      border: 6px solid #fffdf8;
      border-radius: 8px;
      background: #fffdf8;
      box-shadow: 0 16px 34px rgba(18, 54, 108, 0.12);
    }

    .brochure-photo--wide {
      grid-column: 1 / -1;
      min-height: 220px;
    }

    .brochure-photo img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: inherit;
      object-fit: cover;
    }

    .page-section:nth-of-type(even) {
      background: rgba(255, 253, 248, 0.88);
    }

    .page-section:nth-of-type(odd) {
      background: rgba(248, 243, 235, 0.9);
    }

    .section-inner {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
    }

    .section-heading {
      display: grid;
      gap: 16px;
      align-items: start;
      margin-bottom: 26px;
    }

    .section-heading__icon,
    .card-icon {
      display: inline-grid;
      place-items: center;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(18, 54, 108, 0.18);
      border-radius: 50%;
      background: #eef5fb;
      color: var(--sea-deep);
      flex: 0 0 auto;
    }

    .section-heading__icon svg,
    .card-icon svg,
    .inline-icon svg {
      width: 24px;
      height: 24px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .section-heading__icon.mascot-holder {
      width: 72px;
      height: 72px;
      background: transparent;
      box-shadow: none;
      transform: none;
    }

    .section-heading__icon.mascot-holder .house-mascot {
      width: 72px;
    }

    .section-title {
      display: grid;
      gap: 10px;
      max-width: 820px;
    }

    .section-title h2 {
      width: fit-content;
      max-width: 100%;
      justify-self: start;
    }

    .section-title h2::after {
      content: "";
      display: block;
      width: 142px;
      height: 18px;
      margin: 14px auto 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 24'%3E%3Cpath d='M5 12c10-10 20-10 30 0s20 10 30 0 20-10 30 0 20 10 30 0 20-10 30 0' fill='none' stroke='%23bd8735' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
    }

    .section-title p {
      color: var(--muted);
      font-size: 1.02rem;
    }

    .rule-grid,
    .info-grid,
    .access-grid,
    .restaurant-grid {
      display: grid;
      gap: 14px;
    }

    .rule-card,
    .info-card,
    .access-card,
    .restaurant-card,
    .soft-panel,
    .guide-accordion,
    .thanks-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255, 253, 248, 0.94);
      box-shadow: 0 12px 30px rgba(18, 54, 108, 0.08);
    }

    .rule-card,
    .info-card,
    .access-card,
    .restaurant-card {
      display: grid;
      gap: 12px;
      padding: 18px;
    }

    .rule-card {
      border-top: 4px solid var(--sea-deep);
    }

    .rule-card:nth-child(2n) {
      border-top-color: var(--sun);
    }

    .rule-card:nth-child(3n) {
      border-top-color: var(--sea);
    }

    .rule-card h3,
    .info-card h3,
    .access-card h3,
    .restaurant-card h3 {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .rule-card p,
    .info-card p,
    .access-card p,
    .restaurant-card p,
    .soft-panel p,
    .thanks-card p {
      color: var(--muted);
    }

    .icon-chip {
      display: inline-grid;
      place-items: center;
      width: 38px;
      height: 38px;
      border: 1px solid rgba(18, 54, 108, 0.2);
      border-radius: 50%;
      background: #eef5fb;
      color: var(--sea-deep);
      flex: 0 0 auto;
    }

    .icon-chip svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2.1;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .rule-card:nth-child(2n) .icon-chip,
    .access-card:nth-child(2n) .icon-chip,
    .restaurant-card:nth-child(2n) .icon-chip {
      background: #dff4f0;
      color: var(--sea-deep);
    }

    .rule-card:nth-child(3n) .icon-chip,
    .access-card:nth-child(3n) .icon-chip,
    .restaurant-card:nth-child(3n) .icon-chip {
      background: #ffe2dc;
      color: var(--sun);
    }

    .info-card strong,
    .hero-badge strong {
      color: inherit;
    }

    .info-value {
      color: var(--ink);
      font-size: 1.2rem;
      font-weight: 850;
      line-height: 1.2;
    }

    .contact-list {
      display: grid;
      gap: 8px;
      margin-top: 2px;
    }

    .contact-link {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      min-height: 44px;
      align-items: center;
      padding: 10px 12px;
      border: 1px solid rgba(189, 135, 53, 0.28);
      border-radius: var(--radius);
      background: rgba(255, 248, 237, 0.9);
      color: var(--sea-deep);
      font-weight: 800;
      text-decoration: none;
    }

    .feature-stack {
      display: grid;
      gap: 18px;
    }

    .soft-panel {
      padding: 20px;
    }

    .soft-panel--accent {
      border-left: 4px solid var(--sun);
    }

    .wifi-panel {
      display: grid;
      gap: 14px;
      padding: 20px;
      border: 1px solid rgba(18, 54, 108, 0.18);
      border-radius: var(--radius);
      background: linear-gradient(135deg, rgba(238, 245, 251, 0.95), rgba(255, 248, 237, 0.95));
    }

    .wifi-credentials {
      display: grid;
      gap: 10px;
    }

    .credential {
      display: grid;
      gap: 4px;
      padding: 14px;
      border: 1px solid rgba(18, 54, 108, 0.14);
      border-radius: var(--radius);
      background: rgba(255, 253, 248, 0.8);
    }

    .credential span {
      color: var(--muted);
      font-size: 0.78rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    .credential strong {
      overflow-wrap: anywhere;
      color: var(--ink);
      font-size: 1.08rem;
    }

    .copy-button {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      min-height: 46px;
      width: 100%;
      border: 0;
      border-radius: var(--radius);
      background: var(--sea-deep);
      color: #fff;
      cursor: pointer;
      font-weight: 850;
      transition: background 180ms ease, transform 180ms ease;
    }

    .copy-button:hover {
      background: #0d2a55;
      transform: translateY(-1px);
    }

    .copy-button svg {
      width: 19px;
      height: 19px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .step-list,
    .text-list {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .step-list li,
    .text-list li {
      position: relative;
      padding-left: 34px;
      color: var(--muted);
    }

    .step-list li::before {
      content: counter(step);
      counter-increment: step;
      position: absolute;
      left: 0;
      top: 0.1rem;
      display: grid;
      place-items: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--sea);
      color: #fff;
      font-size: 0.78rem;
      font-weight: 900;
    }

    .step-list {
      counter-reset: step;
    }

    .text-list li::before {
      content: "";
      position: absolute;
      left: 7px;
      top: 0.72rem;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--coral);
    }

    .access-card {
      border-bottom: 4px solid var(--sea);
    }

    .access-card:nth-child(2n) {
      border-bottom-color: var(--sun);
    }

    .access-card:nth-child(3n) {
      border-bottom-color: var(--coral);
    }

    .accordion-list {
      display: grid;
      gap: 12px;
    }

    .guide-accordion {
      overflow: hidden;
    }

    .guide-accordion summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: 62px;
      padding: 14px 16px;
      cursor: pointer;
      font-weight: 850;
      list-style: none;
    }

    .guide-accordion summary::-webkit-details-marker {
      display: none;
    }

    .summary-title {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .chevron {
      width: 18px;
      height: 18px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg);
      transition: transform 180ms ease;
      color: var(--sea-deep);
      flex: 0 0 auto;
    }

    .guide-accordion[open] .chevron {
      transform: rotate(225deg);
    }

    .accordion-body {
      display: grid;
      gap: 14px;
      padding: 0 18px 18px;
      color: var(--muted);
    }

    .media-strip {
      display: grid;
      gap: 12px;
      grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
      margin-top: 4px;
    }

    .media-card {
      overflow: hidden;
      border: 5px solid #fffdf8;
      border-radius: 8px;
      background: #fffdf8;
      box-shadow: 0 14px 28px rgba(18, 54, 108, 0.1);
      cursor: zoom-in;
    }

    .media-card img {
      display: block;
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      background: #eef5fb;
    }

    .media-card figcaption {
      padding: 9px 10px 10px;
      color: var(--muted);
      font-size: 0.86rem;
      font-weight: 700;
      line-height: 1.35;
    }

    .image-lightbox {
      position: fixed;
      inset: 0;
      z-index: 90;
      display: none;
      place-items: center;
      padding: 22px;
      background: rgba(12, 29, 58, 0.82);
      backdrop-filter: blur(8px);
    }

    .image-lightbox.is-open {
      display: grid;
    }

    .image-lightbox__figure {
      max-width: min(94vw, 980px);
      max-height: 92vh;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .image-lightbox__figure img {
      display: block;
      max-width: 100%;
      max-height: 82vh;
      object-fit: contain;
      border: 8px solid #fffdf8;
      border-radius: 8px;
      background: #fffdf8;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    }

    .image-lightbox__figure figcaption {
      color: #fffdf8;
      text-align: center;
      font-weight: 800;
    }

    .restaurant-card {
      border-left: 5px solid var(--sun);
    }

    .restaurant-card:nth-child(2n) {
      border-left-color: var(--sea);
    }

    .restaurant-card:nth-child(3n) {
      border-left-color: var(--sun);
    }

    .thanks-section {
      background: linear-gradient(135deg, rgba(238, 245, 251, 0.84), rgba(255, 248, 237, 0.92));
    }

    .thanks-card {
      display: grid;
      gap: 16px;
      padding: 24px;
      border-color: var(--gold-line);
      background: rgba(255, 253, 248, 0.94);
      animation: dewPop 700ms 120ms cubic-bezier(.18, 1.28, .3, 1) both;
      text-align: center;
    }

    .thanks-card__icon {
      display: grid;
      place-items: center;
      width: 96px;
      height: 96px;
      border-radius: 50%;
      background: #fff8ed;
      box-shadow: 0 12px 28px rgba(18, 54, 108, 0.08);
      justify-self: center;
    }

    .thanks-card__icon svg {
      width: 70px;
      height: 70px;
      stroke: var(--sun);
      fill: none;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .signature {
      color: var(--sea-deep);
      font-family: var(--script-font);
      font-size: 1.8rem;
      font-weight: 500;
    }

    .thanks-card__photo {
      width: min(190px, 60vw);
      aspect-ratio: 1;
      object-fit: cover;
      border: 6px solid #fffdf8;
      border-radius: 50%;
      box-shadow: 0 16px 32px rgba(18, 54, 108, 0.14);
      justify-self: center;
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 600ms ease, transform 600ms ease;
    }

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fallback {
      width: min(760px, calc(100% - 32px));
      margin: 40px auto;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }

    @media (min-width: 700px) {
      h1 {
        font-size: 3.7rem;
      }

      h2 {
        font-size: 2.35rem;
      }

      .hero {
        min-height: 78vh;
      }

      .hero__scene {
        grid-template-columns: minmax(0, 1fr);
        align-items: center;
        justify-items: start;
      }

      .photo-story__grid {
        grid-template-columns: 1.2fr 0.9fr 0.9fr;
      }

      .brochure-photo--wide {
        grid-column: auto;
        grid-row: span 2;
      }

      .section-heading {
        grid-template-columns: 56px 1fr;
      }

      .rule-grid,
      .info-grid,
      .access-grid,
      .restaurant-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .feature-stack {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .wifi-panel {
        grid-template-columns: 1fr auto;
        align-items: end;
      }

      .wifi-credentials {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .copy-button {
        width: auto;
        min-width: 190px;
        padding-inline: 20px;
      }

    }

    @media (min-width: 1040px) {
      .rule-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .info-grid,
      .access-grid,
      .restaurant-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 420px) {
      .language-switcher {
        top: 8px;
        right: 8px;
      }

      .language-switcher button {
        min-width: 36px;
        min-height: 34px;
        font-size: 0.78rem;
      }

      .hero__content,
      .section-inner {
        width: min(100% - 24px, 1120px);
      }

      h1 {
        font-size: 2.28rem;
      }

      h2 {
        font-size: 1.72rem;
      }

      .hero__badges {
        display: grid;
      }

      .speech-pop {
        padding: 16px;
      }

      .media-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

    }

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

      *,
      *::before,
      *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
      }
    }

