:root {
    --primary-color: #e1ac39;
    --secondary-color: #784e0b;
    --gradient-primary: #f7cb60;
    --gradient-central: #bf891f;
    --gradient-secondary: #9e6a14;
    --background-color: #ffffff;
    --font-family: "Cormorant", serif;
    --font-family-rtl: "Almarai", serif;

    --cream-50: #fffdf7;
    --cream-100: #fff8e6;
    --cream-200: #fff0c1;
    --cream-300: #fbe3a1;
    --gold-400: #e1ac39;
    --gold-500: #bf891f;
    --gold-600: #9e6a14;
    --brown-950: #241404;
    --brown-900: #321d06;
    --brown-800: #4a2c08;
    --brown-700: #6b430c;
    --brown-600: #784e0b;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
[dir="rtl"] body {
    font-family: var(--font-family-rtl);
}
body {
    font-family: var(--font-family);
    color: var(--brown-950);
    background: var(--cream-100);
    overscroll-behavior: none;
    touch-action: pan-y;
}

body::-webkit-scrollbar {
    display: none;
}

.landing {
    position: fixed;
    inset: 0;
    overflow: hidden;
    background: var(--cream-100);
}

/* =========================
    SCREEN 1 — HERO
========================= */

.top {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: max(18px, env(safe-area-inset-top)) 18px max(22px, env(safe-area-inset-bottom));
    color: #ffffff;
    background:
        radial-gradient(circle at 50% 19%, rgba(255, 255, 255, 0.34), transparent 24%),
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.19), transparent 26%),
        radial-gradient(circle at 86% 74%, rgba(255, 239, 190, 0.32), transparent 31%),
        linear-gradient(145deg, #f7cb60 0%, #bf891f 43%, #784e0b 100%);
    isolation: isolate;
    transition:
        opacity 0.78s cubic-bezier(.2,.8,.2,1),
        transform 0.78s cubic-bezier(.2,.8,.2,1),
        filter 0.78s cubic-bezier(.2,.8,.2,1);
}

.top::after {
    content: "";
    position: absolute;
    width: 46px;
    height: 46px;
    left: 50%;
    top: 50%;
    border-radius: 999px;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 36%, rgba(255, 248, 225, 0.96) 45%, rgba(255, 238, 190, 0.94) 100%);
    box-shadow:
        0 0 0 24px rgba(255,255,255,0.16),
        0 0 0 56px rgba(255,255,255,0.08),
        0 0 90px rgba(255,255,255,0.34);
    pointer-events: none;
    z-index: 9;
    transition:
        transform 0.88s cubic-bezier(.16,1,.3,1),
        opacity 0.42s ease;
}

.landing.is-entered .top {
    opacity: 0;
    transform: scale(1.055);
    filter: blur(12px);
    pointer-events: none;
}

.landing.is-entered .top::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(42);
}

.sun-ring {
    position: absolute;
    width: min(82vw, 390px);
    height: min(82vw, 390px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    z-index: -3;
    opacity: 0.74;
    box-shadow:
        0 0 0 22px rgba(255,255,255,0.06),
        0 0 0 54px rgba(255,255,255,0.035),
        inset 0 0 90px rgba(255,255,255,0.10);
}

.sun-ring::before,
.sun-ring::after {
    content: "";
    position: absolute;
    inset: 14%;
    border-radius: 999px;
    border: 1px dashed rgba(255,255,255,0.28);
    animation: ringRotate 24s linear infinite;
}

.sun-ring::after {
    inset: -13%;
    border-style: solid;
    border-color: rgba(255,255,255,0.13);
    animation-duration: 32s;
    animation-direction: reverse;
}

@keyframes ringRotate {
    to { transform: rotate(360deg); }
}

.gold-dots {
    position: absolute;
    inset: 0;
    z-index: -4;
    opacity: 0.25;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.72) 1px, transparent 1.6px);
    background-size: 26px 26px;
    mask-image: radial-gradient(circle at center, #000 0 48%, transparent 76%);
}

.golden-glow {
    position: absolute;
    inset: auto -20% -12% -20%;
    height: 34%;
    z-index: -2;
    opacity: 0.72;
    background:
        radial-gradient(150px 70px at 12% 36%, rgba(255,255,255,0.36), transparent 70%),
        radial-gradient(210px 82px at 52% 34%, rgba(255,236,178,0.34), transparent 72%),
        radial-gradient(230px 92px at 86% 42%, rgba(255,255,255,0.22), transparent 74%),
        linear-gradient(180deg, transparent 0%, rgba(255, 239, 190, 0.16) 64%, rgba(120, 78, 11, 0.10) 100%);
    filter: blur(0.2px);
}

.bubble-field {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.70);
    background: rgba(255, 248, 225, 0.20);
    box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.42);
    animation: bubbleFloat 7s ease-in-out infinite;
}

.bubble:nth-child(1) { width: 38px; height: 38px; left: 9%; top: 20%; }
.bubble:nth-child(2) { width: 19px; height: 19px; right: 16%; top: 16%; animation-delay: -1.4s; }
.bubble:nth-child(3) { width: 54px; height: 54px; right: 9%; bottom: 22%; animation-delay: -3s; }
.bubble:nth-child(4) { width: 27px; height: 27px; left: 18%; bottom: 18%; animation-delay: -4.4s; }
.bubble:nth-child(5) { width: 15px; height: 15px; left: 48%; top: 13%; animation-delay: -5.1s; }
.bubble:nth-child(6) { width: 72px; height: 72px; left: 72%; top: 39%; opacity: .3; animation-delay: -2.7s; }

@keyframes bubbleFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.48;
    }
    50% {
        transform: translate3d(0, -20px, 0) scale(1.07);
        opacity: 0.94;
    }
}

.lang-switch {
    position: absolute;
    top: max(18px, env(safe-area-inset-top));
    right: 18px;
    z-index: 12;
    display: flex;
    align-items: center;
    padding: 4px;
    gap: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255,255,255,0.30);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 34px rgba(45, 27, 5, 0.10);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.landing.is-entered .lang-switch {
    opacity: 0;
    transform: translateY(-16px);
    pointer-events: none;
}

.lang-switch button {
    border: 0;
    border-radius: 999px;
    padding: 8px 11px;
    min-width: 42px;
    font: 800 12px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: rgba(255,255,255,0.86);
    background: transparent;
    cursor: pointer;
}

.lang-switch button.active {
    background: #ffffff;
    color: var(--brown-700);
    box-shadow: 0 8px 20px rgba(45, 27, 5, 0.16);
}

.hero-center {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
    transition:
        opacity 0.48s ease,
        transform 0.72s cubic-bezier(.2,.8,.2,1),
        filter 0.72s cubic-bezier(.2,.8,.2,1);
}

.landing.is-entered .hero-center {
    opacity: 0;
    transform: translateY(-38px) scale(0.94);
    filter: blur(9px);
}

.logo-box {
    width: clamp(108px, 29vw, 144px);
    height: clamp(108px, 29vw, 144px);
    margin: 0 auto 28px;
    border-radius: 40px;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 30% 20%, #ffffff, #fff8e6 58%, #f9dea0 100%);
    color: var(--primary-color);
    border: 1px solid rgba(255,255,255,0.86);
    box-shadow:
        0 28px 60px rgba(50, 29, 6, 0.30),
        0 0 0 10px rgba(255,255,255,0.08),
        inset 0 0 0 1px rgba(255,255,255,0.82);
    font-size: clamp(52px, 13vw, 72px);
    line-height: 1;
    font-weight: 700;
    overflow: hidden;
}

.logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.eyebrow {
    width: fit-content;
    margin: 0 auto 15px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255,255,255,0.93);
    font: 700 14px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.hero-center h1 {
    margin: 0 auto;
    width: 100%;
    max-width: 14em;
    font-size: clamp(43px, 11vw, 66px);
    line-height: 0.88;
    letter-spacing: 0;
    font-weight: 700;
    color: #ffffff;
    text-wrap: balance;
    text-shadow: 0 20px 46px rgba(49, 29, 4, 0.23);
}

.hero-center p {
    max-width: 360px;
    margin: 18px auto 0;
    font-size: clamp(18px, 4.7vw, 22px);
    line-height: 1.30;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    text-wrap: balance;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: max(26px, env(safe-area-inset-bottom));
    z-index: 10;
    transform: translateX(-50%);
    display: grid;
    justify-items: center;
    gap: 9px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    cursor: pointer;
    border: 0;
    background: transparent;
    font-family: inherit;
}

.landing.is-entered .scroll-cue {
    opacity: 0;
    transform: translateX(-50%) translateY(22px);
    pointer-events: none;
}

.scroll-cue span:first-child {
    font: 800 11px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.80);
}

.arrow-down {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255,255,255,0.34);
    backdrop-filter: blur(10px);
    animation: arrowBounce 1.5s ease-in-out infinite;
    box-shadow: 0 18px 34px rgba(45, 27, 5, 0.16);
}

.arrow-down i {
    font-size: 19px;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* =========================
    SCREEN 2 — CONTENT
========================= */

.content {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(24px, env(safe-area-inset-top)) 16px max(24px, env(safe-area-inset-bottom));
    background:
        radial-gradient(circle at 20% 8%, rgba(255, 255, 255, 0.94), transparent 28%),
        radial-gradient(circle at 84% 16%, rgba(255, 228, 154, 0.34), transparent 32%),
        radial-gradient(circle at 12% 88%, rgba(225, 172, 57, 0.26), transparent 34%),
        linear-gradient(160deg, #fffdf7 0%, #fff4d1 45%, #fff8e6 100%);
    overflow: hidden;
}

.content::before {
    content: "";
    position: absolute;
    width: 115vmax;
    height: 115vmax;
    left: 50%;
    top: 0;
    border-radius: 999px;
    transform: translate(-50%, -72%);
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.96) 0 42%, rgba(225,172,57,0.22) 43% 44%, transparent 45%),
        repeating-radial-gradient(circle, rgba(120,78,11,0.10) 0 1px, transparent 1px 32px);
    pointer-events: none;
    opacity: 0.86;
}

.content::after {
    content: "";
    position: absolute;
    inset: auto -18% -10% -18%;
    height: 38%;
    background:
        radial-gradient(150px 60px at 12% 38%, rgba(255,255,255,0.78), transparent 70%),
        radial-gradient(220px 78px at 50% 34%, rgba(255, 236, 178, 0.52), transparent 72%),
        radial-gradient(230px 90px at 88% 42%, rgba(225,172,57,0.20), transparent 74%),
        linear-gradient(180deg, transparent, rgba(255, 240, 193, 0.46));
    pointer-events: none;
    opacity: 0.76;
}

.content-orbit {
    position: absolute;
    width: min(92vw, 440px);
    height: min(92vw, 440px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 999px;
    border: 1px solid rgba(225, 172, 57, 0.18);
    opacity: 0.74;
    pointer-events: none;
}

.content-orbit::before,
.content-orbit::after {
    content: "";
    position: absolute;
    inset: 10%;
    border-radius: inherit;
    border: 1px dashed rgba(120, 78, 11, 0.16);
}

.content-orbit::after {
    inset: -14%;
    border-style: solid;
    border-color: rgba(225, 172, 57, 0.14);
}

.content-shell {
    width: min(100%, 588px);
    max-height: calc(100svh - 26px);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(68px) scale(0.96);
    filter: blur(12px);
    transition:
        opacity 0.72s cubic-bezier(.2,.8,.2,1),
        transform 0.72s cubic-bezier(.2,.8,.2,1),
        filter 0.72s cubic-bezier(.2,.8,.2,1);
    transition-delay: 0.16s;
}

.landing.is-entered .content-shell {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.selector-card {
    position: relative;
    overflow: hidden;
    border-radius: 36px;
    padding: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 250, 237, 0.94));
    border: 1px solid rgba(225, 172, 57, 0.32);
    box-shadow:
        0 30px 80px rgba(61, 38, 6, 0.19),
        inset 0 0 0 1px rgba(255,255,255,0.62);
    backdrop-filter: blur(18px);
}

.selector-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(225,172,57,0.66), rgba(120,78,11,0.20));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.selector-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    right: -82px;
    top: -78px;
    background: radial-gradient(circle, rgba(225,172,57,0.18), transparent 68%);
    pointer-events: none;
}

.selector-head {
    text-align: center;
    padding: 8px 10px 18px;
    position: relative;
    z-index: 2;
}

.table-pill {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 12px;
    padding: 9px 13px;
    border-radius: 999px;
    background: #fff5d7;
    border: 1px solid rgba(225, 172, 57, 0.30);
    color: var(--secondary-color);
    font: 900 11px/1.2 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.selector-head h2 {
    font-size: clamp(32px, 8vw, 44px);
    line-height: 0.92;
    letter-spacing: 0;
    font-weight: 700;
    color: var(--brown-950);
    text-wrap: balance;
}

.selector-head p {
    margin: 12px auto 0;
    max-width: 345px;
    color: #7a5619;
    font-size: 17px;
    line-height: 1.28;
    font-weight: 600;
}

.venues {
    display: grid;
    gap: 13px;
    position: relative;
    z-index: 2;
}

.venue-card {
    position: relative;
    --venue-icon-size: 84px;
    --venue-action-size: 43px;
    min-height: 128px;
    overflow: hidden;
    display: grid;
    grid-template-columns: var(--venue-icon-size) minmax(0, 1fr) var(--venue-action-size);
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    border-radius: 28px;
    padding: 14px;
    background: linear-gradient(145deg, #ffffff, #fff8e7);
    border: 1px solid rgba(225, 172, 57, 0.34);
    /*box-shadow: 0 12px 26px rgba(120, 78, 11, 0.09);*/
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    will-change: transform;
}

.venue-card:active {
    transform: scale(0.975);
}

.venue-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    opacity: 0;
    background: linear-gradient(135deg, rgba(225,172,57,0.0), rgba(225,172,57,0.20), rgba(120,78,11,0.10));
    transition: opacity 0.22s ease;
}

.venue-card::after {
    content: "";
    position: absolute;
    width: 96px;
    height: 96px;
    border-radius: 999px;
    right: -48px;
    bottom: -48px;
    background: rgba(225, 172, 57, 0.10);
}

.venue-card:hover::before,
.venue-card:focus-visible::before {
    opacity: 1;
}

.venue-card:focus-visible {
    outline: 3px solid rgba(225, 172, 57, 0.38);
    outline-offset: 3px;
}

.venue-card.featured {
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 235, 180, 0.38), transparent 38%),
        linear-gradient(145deg, #ffffff, #fff0c1);
}

.visual {
    position: relative;
    z-index: 1;
    width: var(--venue-icon-size);
    height: var(--venue-icon-size);
    border-radius: 28px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,244,207,0.92));
    /*border: 1px solid rgba(225, 172, 57, 0.42);*/
    /*box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.74),
        0 14px 24px rgba(120, 78, 11, 0.12);*/
}

.visual i {
    color: var(--secondary-color);
    font-size: 34px;
    line-height: 1;
}

.venue-content {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 7px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(120, 78, 11, 0.08);
    color: var(--brown-700);
    font: 800 10px/1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(225,172,57,0.16);
}

.venue-content h3 {
    font-size: 27px;
    line-height: 0.92;
    font-weight: 700;
    color: var(--brown-950);
    letter-spacing: 0;
}

.venue-content p {
    margin-top: 8px;
    color: #745018;
    font-size: 15px;
    line-height: 1.22;
    font-weight: 600;
}

.go {
    position: relative;
    z-index: 1;
    width: var(--venue-action-size);
    height: var(--venue-action-size);
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #e8b94a, #b47e1b, #9e6a14);
    box-shadow: 0 12px 24px rgba(120, 78, 11, 0.22);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 900;
    margin: auto;
}

footer {
    padding: 16px 8px 2px;
    text-align: center;
    color: rgba(120, 78, 11, 0.66);
    font: 700 12px/1.5 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    position: relative;
    z-index: 2;
}

.powered a{
    margin-top: 7px;
    color: rgba(120, 78, 11, 0.45);
    font-size: 11px;
    text-decoration: none;
}
.powered a span{
    color: #805dca;
}

/* =========================
    RTL
========================= */

[dir="rtl"] .lang-switch {
    right: auto;
    left: 18px;
}
[dir="rtl"] .eyebrow {
    margin: 0 auto 28px;
}
[dir="rtl"] .hero-center h1{
    font-size: clamp(43px, 11vw, 60px);
}
[dir="rtl"] .venue-card .visual {
    grid-column: 3;
}

[dir="rtl"] .venue-card .go {
    grid-column: 1;
    transform: rotateY(180deg);
}
[dir="rtl"] .venue-card {
    grid-template-columns: var(--venue-action-size) minmax(0, 1fr) var(--venue-icon-size);
}
[dir="rtl"] .venues .venue-card::after{
    left: -48px;
    right: auto;
}

[dir="rtl"] .visual {
    grid-column: 3;
}

[dir="rtl"] .venue-content {
    grid-column: 2;
    grid-row: 1;
    text-align: right;
}

[dir="rtl"] .go {
    grid-column: 1;
    grid-row: 1;
    transform: rotateY(180deg);
}

[dir="rtl"] .selector-head {
    text-align: center;
}

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

@media (max-width: 480px) {
    .top {
        padding-left: clamp(12px, 4vw, 18px);
        padding-right: clamp(12px, 4vw, 18px);
    }

    .lang-switch {
        right: 12px;
        padding: 3px;
        gap: 3px;
    }

    [dir="rtl"] .lang-switch {
        left: 12px;
    }

    .lang-switch button {
        min-width: 36px;
        padding: 7px 9px;
        font-size: 11px;
    }

    .logo-box {
        width: clamp(84px, 27vw, 120px);
        height: clamp(84px, 27vw, 120px);
        margin-bottom: clamp(16px, 5vh, 23px);
        border-radius: clamp(26px, 8vw, 34px);
    }

    .eyebrow {
        margin-bottom: 11px;
        padding: 7px 10px;
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    [dir="rtl"] .eyebrow {
        margin-bottom: 15px;
    }

    .hero-center h1,
    [dir="rtl"] .hero-center h1 {
        max-width: 11.5em;
        font-size: clamp(34px, 10.2vw, 48px);
        line-height: 0.97;
    }

    .hero-center p {
        max-width: 320px;
        margin-top: 13px;
        font-size: clamp(15px, 4.2vw, 18px);
        line-height: 1.28;
    }

    .arrow-down {
        width: 42px;
        height: 42px;
    }

    .arrow-down i {
        font-size: 16px;
    }

    .content {
        align-items: center;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-left: clamp(9px, 3.2vw, 14px);
        padding-right: clamp(9px, 3.2vw, 14px);
    }

    .content-shell {
        max-height: calc(100svh - 22px);
    }

    .selector-card {
        max-height: calc(100svh - 22px);
        overflow-y: auto;
        scrollbar-width: none;
        padding: clamp(10px, 3vw, 15px);
        border-radius: 26px;
    }

    .selector-card::-webkit-scrollbar {
        display: none;
    }

    .selector-head {
        padding: 5px 7px 14px;
    }

    .table-pill {
        margin-bottom: 10px;
        padding: 7px 10px;
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .selector-head h2 {
        font-size: 1.9rem;
        line-height: 1;
    }

    .selector-head p {
        max-width: 320px;
        margin-top: 9px;
        font-size: clamp(13px, 3.7vw, 16px);
        line-height: 1.3;
    }

    .venues {
        gap: 10px;
    }

    .venue-card {
        --venue-icon-size: clamp(58px, 18vw, 74px);
        --venue-action-size: clamp(34px, 10vw, 40px);
        min-height: 0;
        gap: clamp(8px, 2.6vw, 11px);
        padding: clamp(10px, 3vw, 13px);
        border-radius: 22px;
    }

    .visual {
        border-radius: clamp(18px, 5.5vw, 24px);
    }

    .visual i {
        font-size: clamp(22px, 7vw, 30px);
    }

    .badge {
        margin-bottom: 5px;
        padding: 5px 7px;
        font-size: 9px;
        letter-spacing: 0.05em;
    }

    .venue-content h3 {
        font-size: clamp(21px, 6.3vw, 27px);
        line-height: 1;
    }

    .venue-content p {
        margin-top: 6px;
        font-size: clamp(12.5px, 3.55vw, 15px);
        line-height: 1.23;
    }

    .go {
        font-size: clamp(13px, 4vw, 16px);
    }

    footer {
        padding: 11px 6px 0;
        font-size: 11px;
        line-height: 1.35;
    }
}

@media (max-width: 360px) {
    .logo-box {
        width: 82px;
        height: 82px;
        margin-bottom: 14px;
        border-radius: 24px;
    }

    .hero-center h1,
    [dir="rtl"] .hero-center h1 {
        font-size: 32px;
    }

    .hero-center p {
        max-width: 285px;
        font-size: 14px;
    }

    .selector-card {
        padding: 9px;
        border-radius: 22px;
    }

    .selector-head {
        padding: 4px 4px 10px;
    }

    .selector-head h2 {
        font-size: 1.7rem;
    }

    .selector-head p {
        font-size: 12.5px;
    }

    .venues {
        gap: 8px;
    }

    .venue-card {
        --venue-icon-size: 54px;
        --venue-action-size: 32px;
        gap: 8px;
        padding: 9px;
        border-radius: 20px;
    }

    .visual i {
        font-size: 21px;
    }

    .badge {
        padding: 4px 6px;
        font-size: 8.5px;
    }

    .badge::before {
        width: 5px;
        height: 5px;
        box-shadow: 0 0 0 3px rgba(225,172,57,0.16);
    }

    .venue-content h3 {
        font-size: 20px;
    }

    .venue-content p {
        font-size: 12px;
    }

    footer {
        padding-top: 8px;
    }
}

@media (max-height: 720px) {
    .top {
        padding-top: max(12px, env(safe-area-inset-top));
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }

    .logo-box {
        width: clamp(78px, 16vh, 116px);
        height: clamp(78px, 16vh, 116px);
        margin-bottom: clamp(12px, 3.2vh, 20px);
    }

    .eyebrow {
        margin-bottom: 10px;
    }

    .hero-center h1,
    [dir="rtl"] .hero-center h1 {
        font-size: clamp(32px, 8vh, 48px);
        line-height: 0.98;
    }

    .hero-center p {
        margin-top: 11px;
        font-size: clamp(14px, 3.3vh, 18px);
    }

    .scroll-cue {
        bottom: max(16px, env(safe-area-inset-bottom));
    }

    .arrow-down {
        width: 40px;
        height: 40px;
    }

    .content {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: max(10px, env(safe-area-inset-top));
        padding-bottom: max(10px, env(safe-area-inset-bottom));
    }

    .content-shell {
        max-height: calc(100svh - 20px);
    }

    .selector-card {
        max-height: calc(100svh - 20px);
        overflow-y: auto;
        scrollbar-width: none;
        padding: 10px;
        border-radius: 24px;
    }

    .selector-card::-webkit-scrollbar {
        display: none;
    }

    .selector-head {
        padding: 4px 6px 9px;
    }

    .table-pill {
        margin-bottom: 7px;
        padding: 6px 9px;
        font-size: 9.5px;
    }

    .selector-head h2 {
        font-size: 1.7rem;
        line-height: 1;
    }

    .selector-head p {
        margin-top: 6px;
        font-size: clamp(12px, 2.5vh, 15px);
        line-height: 1.25;
    }

    .venues {
        gap: 8px;
    }

    .venue-card {
        --venue-icon-size: clamp(52px, 10vh, 68px);
        --venue-action-size: clamp(32px, 6.2vh, 38px);
        min-height: 0;
        gap: 8px;
        padding: 9px;
        border-radius: 20px;
    }

    .visual {
        border-radius: 18px;
    }

    .visual i {
        font-size: clamp(20px, 4.5vh, 27px);
    }

    .badge {
        margin-bottom: 4px;
        padding: 4px 6px;
        font-size: 8.5px;
    }

    .venue-content h3 {
        font-size: clamp(19px, 4.2vh, 22px);
        line-height: 1;
    }

    .venue-content p {
        margin-top: 5px;
        font-size: clamp(11.5px, 2.25vh, 13px);
        line-height: 1.2;
    }

    .go {
        font-size: 13px;
    }

    footer {
        padding: 8px 6px 0;
        font-size: 10.5px;
    }
}

@media (max-height: 590px) {
    .selector-head p {
        max-width: 300px;
    }

    .venue-content p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .powered a {
        font-size: 10px;
    }
}

@media (max-width: 340px), (max-height: 540px) {

    .venue-content p {
        -webkit-line-clamp: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .landing.is-entered .top {
        opacity: 0;
        transform: none;
        filter: none;
    }

    .landing.is-entered .content-shell {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .top::after {
        display: none;
    }
}
