:root {
    color-scheme: dark;
    --bg: #101311;
    --bg-2: #171c18;
    --surface: rgba(255, 255, 255, 0.075);
    --surface-strong: rgba(255, 255, 255, 0.12);
    --text: #f5f7ef;
    --muted: rgba(245, 247, 239, 0.72);
    --soft: rgba(245, 247, 239, 0.52);
    --line: rgba(255, 255, 255, 0.14);
    --gold: #e6c56c;
    --restaurant: #3a3d3b;
    --restaurant-light: #6f7470;
    --restaurant-deep: #1d201f;
    --green: #82d66f;
    --green-soft: #b7e89b;
    --green-deep: #28573a;
    --green-forest: #143821;
    --red: #f87171;
    --shadow: rgba(0, 0, 0, 0.35);
    --radius-lg: 34px;
    --radius-md: 24px;
    --radius-sm: 16px;
    --max-width: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 10%, rgba(130, 214, 111, 0.18), transparent 30rem),
        radial-gradient(circle at 86% 4%, rgba(111, 116, 112, 0.20), transparent 28rem),
        linear-gradient(145deg, #0b0f0c 0%, #151a16 42%, #101311 100%);
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

body::selection {
    background: rgba(242, 198, 109, 0.36);
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    max-width: 100%;
}

.ambient {
    position: fixed;
    width: 42vw;
    height: 42vw;
    border-radius: 999px;
    filter: blur(80px);
    opacity: 0.24;
    pointer-events: none;
    z-index: -3;
    animation: floatAmbient 16s ease-in-out infinite alternate;
}

.ambient-one {
    left: -16vw;
    top: 8vh;
    background: var(--green);
}

.ambient-two {
    right: -15vw;
    bottom: 0;
    background: var(--restaurant-light);
    animation-delay: -5s;
}

.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    opacity: 0.26;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(var(--max-width), calc(100% - 32px));
    margin: 16px auto 0;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(17, 20, 15, 0.68);
    backdrop-filter: blur(22px) saturate(1.4);
    box-shadow: 0 18px 60px var(--shadow);
    transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.site-header.scrolled {
    background: rgba(17, 20, 15, 0.9);
    border-color: rgba(255, 255, 255, 0.18);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    font-weight: 900;
    letter-spacing: -0.08em;
    color: #15120b;
    background: linear-gradient(135deg, var(--gold), var(--green));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 12px 30px rgba(142,214,111,0.18);
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    line-height: 1.05;
    font-size: 0.98rem;
}

.brand small {
    margin-top: 3px;
    color: var(--soft);
    font-size: 0.72rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.08);
    transform: translateY(-1px);
}

.nav-links .nav-cta {
    color: #15120b;
    background: linear-gradient(135deg, var(--gold), var(--green));
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--text);
    transition: transform .2s ease, opacity .2s ease;
}

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

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    align-items: center;
    min-height: calc(100vh - 88px);
    padding: 72px 0 44px;
    gap: 56px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    max-width: 100%;
    margin-bottom: 14px;
    padding: 8px 12px;
    border: 1px solid rgba(242, 198, 109, 0.28);
    border-radius: 999px;
    color: var(--gold);
    background: rgba(242, 198, 109, 0.08);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eyebrow.green {
    color: var(--green);
    border-color: rgba(142, 214, 111, 0.26);
    background: rgba(142, 214, 111, 0.08);
}

.eyebrow.warm {
    color: #d8ddd7;
    border-color: rgba(158, 166, 160, 0.34);
    background: rgba(111, 116, 112, 0.16);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(142, 214, 111, 0.5);
    animation: pulse 1.8s infinite;
}

h1,
h2,
h3,
p {
    margin: 0;
}

.hero h1,
.legal-hero h1 {
    font-size: clamp(3.3rem, 8vw, 7.4rem);
    line-height: 0.9;
    letter-spacing: -0.075em;
    text-wrap: balance;
}

.hero p,
.legal-hero p,
.section-heading p,
.cta-panel p,
.story-panel p {
    color: var(--muted);
    font-size: clamp(1.03rem, 2vw, 1.2rem);
    line-height: 1.75;
}

.hero p {
    margin-top: 26px;
    max-width: 670px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    font-weight: 900;
    transform-style: preserve-3d;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button.primary {
    color: #101510;
    background: linear-gradient(135deg, var(--green-soft), var(--green));
    box-shadow: 0 20px 48px rgba(130, 214, 111, 0.20);
}

.button.ghost {
    color: var(--text);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
}

.store-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.store-strip.compact {
    justify-content: flex-end;
    margin-top: 0;
}

.store-badge {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 188px;
    padding: 12px 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.055));
    box-shadow: 0 16px 42px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.14);
    backdrop-filter: blur(18px);
}

.store-badge::before {
    content: "";
    position: absolute;
    inset: -80px -80px auto auto;
    z-index: -1;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    opacity: .22;
    filter: blur(16px);
    animation: storeGlow 5s ease-in-out infinite alternate;
}

.store-badge.ios::before { background: var(--gold); }
.store-badge.android::before { background: var(--green); animation-delay: -1.4s; }

.store-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 16px;
    color: #101510;
    background: linear-gradient(135deg, var(--green-soft), var(--green));
    font-size: 1.35rem;
    font-weight: 1000;
    line-height: 1;
}

.store-badge small,
.store-badge strong {
    display: block;
    line-height: 1.05;
}

.store-badge small {
    color: var(--soft);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.store-badge strong {
    margin-top: 4px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 1000;
}

.cta-actions {
    display: grid;
    justify-items: end;
    gap: 16px;
}

.legal-store-strip {
    margin-top: 28px;
}

.download-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 34px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.045));
    box-shadow: 0 24px 70px rgba(0,0,0,0.26), inset 0 1px 0 rgba(255,255,255,0.13);
    backdrop-filter: blur(22px) saturate(1.15);
}

.download-panel h2 {
    margin-bottom: 16px;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
    text-wrap: balance;
}

.download-panel p {
    color: var(--muted);
    font-size: clamp(1.03rem, 2vw, 1.2rem);
    line-height: 1.75;
}

.stacked-store-badges {
    display: grid;
    justify-items: stretch;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.trust-row span {
    padding: 9px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--soft);
    background: rgba(255,255,255,0.045);
    font-size: 0.84rem;
    font-weight: 800;
}

.hero-stage {
    position: relative;
    min-height: 620px;
    perspective: 1200px;
}

.phone-card {
    position: absolute;
    inset: 40px 42px auto auto;
    width: min(365px, 82vw);
    min-height: 560px;
    padding: 18px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 42px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06)),
        rgba(17, 20, 15, 0.84);
    backdrop-filter: blur(28px) saturate(1.3);
    box-shadow: 0 35px 80px rgba(0,0,0,0.42), inset 0 1px 0 rgba(255,255,255,0.24);
    transform: rotateX(8deg) rotateY(-12deg) rotateZ(3deg);
    animation: phoneFloat 7s ease-in-out infinite;
}

.phone-topbar {
    width: 108px;
    height: 11px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
}

.phone-hero {
    min-height: 158px;
    padding: 20px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 74% 22%, rgba(183,232,155,0.34), transparent 38%),
        linear-gradient(135deg, rgba(31, 72, 45, 0.94), rgba(42, 88, 58, 0.86));
}

.phone-hero span,
.phone-hero strong {
    display: block;
}

.phone-hero span {
    color: rgba(255,255,255,0.76);
    font-size: 0.82rem;
    font-weight: 800;
}

.phone-hero strong {
    margin-top: 8px;
    max-width: 230px;
    font-size: 1.8rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.app-pill,
.app-grid span,
.phone-total {
    border: 1px solid rgba(255,255,255,0.13);
    background: rgba(255,255,255,0.08);
}

.app-pill {
    margin-top: 14px;
    padding: 15px 16px;
    border-radius: 22px;
    font-weight: 900;
}

.app-pill.green {
    color: var(--green);
}

.app-pill.orange {
    color: #d8ddd7;
    background: linear-gradient(180deg, rgba(111,116,112,0.24), rgba(255,255,255,0.06));
    border-color: rgba(158,166,160,0.22);
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.app-grid span {
    display: grid;
    place-items: center;
    min-height: 76px;
    border-radius: 24px;
    color: var(--muted);
    font-weight: 900;
}

.phone-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding: 18px;
    border-radius: 26px;
}

.phone-total small {
    color: var(--soft);
    font-weight: 800;
}

.phone-total strong {
    font-size: 1.4rem;
    color: var(--green);
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    animation: rotate 24s linear infinite;
}

.orbit-one {
    inset: 16px 0 40px 36px;
}

.orbit-two {
    inset: 80px 54px 90px 0;
    animation-direction: reverse;
}

.floating-badge {
    position: absolute;
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 24px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
    font-weight: 1000;
    animation: floatBadge 5.4s ease-in-out infinite;
}

.badge-one {
    left: 12px;
    top: 132px;
    color: var(--green);
}

.badge-two {
    right: 0;
    bottom: 134px;
    animation-delay: -1.2s;
}

.badge-three {
    left: 82px;
    bottom: 74px;
    animation-delay: -2.6s;
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: -22px;
    margin-bottom: 92px;
}

.metrics article,
.service-card,
.dish-card,
.activity-card,
.timeline-item,
.about-card,
.story-panel,
.cta-panel,
.legal-content,
.legal-hero {
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.045));
    box-shadow: 0 24px 70px rgba(0,0,0,0.26), inset 0 1px 0 rgba(255,255,255,0.13);
    backdrop-filter: blur(22px) saturate(1.15);
}

.metrics article {
    padding: 20px;
    border-radius: 26px;
}

.metrics strong {
    display: block;
    font-size: 2.15rem;
    line-height: 1;
    letter-spacing: -0.05em;
    color: var(--gold);
}

.metrics span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 800;
    font-size: 0.88rem;
}

.split-section,
.restaurant-showcase,
.adventure-showcase,
.app-flow,
.legal-main .section-shell {
    margin-bottom: 112px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2,
.cta-panel h2,
.story-panel h2 {
    margin-bottom: 16px;
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
    text-wrap: balance;
}

.service-grid,
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card,
.about-card {
    position: relative;
    min-height: 390px;
    padding: 26px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: transform .32s ease, border-color .32s ease, background .32s ease;
}

.service-card:hover,
.about-card:hover,
.activity-card:hover,
.dish-card:hover,
.timeline-item:hover {
    transform: translateY(-8px);
    border-color: rgba(130,214,111,0.34);
}

.service-card::before,
.about-card::before {
    content: "";
    position: absolute;
    inset: auto -80px -100px auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    filter: blur(10px);
    opacity: .22;
}

.restaurant-card::before {
    background: var(--restaurant-light);
}

.adventure-card::before {
    background: var(--green);
}

.booking-card::before {
    background: var(--gold);
}

.restaurant-card,
.dish-card {
    background:
        radial-gradient(circle at 86% 10%, rgba(111,116,112,0.20), transparent 22rem),
        linear-gradient(180deg, rgba(255,255,255,0.092), rgba(32,35,34,0.54));
}

.restaurant-card .service-icon,
.dish-card span {
    color: #d8ddd7;
}

.adventure-card,
.activity-card {
    background:
        radial-gradient(circle at 86% 8%, rgba(130,214,111,0.18), transparent 22rem),
        linear-gradient(180deg, rgba(255,255,255,0.096), rgba(23,54,34,0.38));
}

.service-icon,
.about-card span {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 24px;
    background: rgba(255,255,255,0.08);
    font-size: 1.75rem;
}

.service-card h3,
.activity-card h3,
.dish-card h3,
.timeline-item h3,
.about-card h2 {
    margin-bottom: 10px;
    font-size: 1.45rem;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.service-card p,
.service-card li,
.activity-card p,
.dish-card p,
.timeline-item p,
.about-card p,
.legal-content p,
.legal-content li {
    color: var(--muted);
    line-height: 1.7;
}

.service-card ul,
.legal-content ul {
    margin: 18px 0 0;
    padding-left: 18px;
}

.service-card li + li,
.legal-content li + li {
    margin-top: 8px;
}

.menu-showcase {
    display: grid;
    grid-template-columns: 1.1fr .9fr .9fr;
    gap: 18px;
}

.dish-card {
    display: grid;
    grid-template-rows: 240px auto;
    gap: 22px;
    min-height: 450px;
    padding: 18px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform .32s ease, border-color .32s ease;
}

.dish-card:first-child {
    grid-row: span 2;
    grid-template-rows: 440px auto;
}

.dish-media {
    border-radius: 28px;
    background-size: 180% 180%;
    animation: gradientMove 9s ease-in-out infinite alternate;
}

.dish-media.fire {
    background:
        radial-gradient(circle at 30% 24%, rgba(230,197,108,0.74), transparent 16%),
        radial-gradient(circle at 76% 16%, rgba(216,221,215,0.30), transparent 24%),
        linear-gradient(145deg, #151817, #3a3d3b, #202423);
}

.dish-media.soup {
    background:
        radial-gradient(circle at 52% 50%, rgba(230,197,108,0.62), transparent 22%),
        linear-gradient(145deg, #181b1a, #4b504c, #222625);
}

.dish-media.drink {
    background:
        radial-gradient(circle at 44% 34%, rgba(130,214,111,0.58), transparent 22%),
        linear-gradient(145deg, #161a18, #3e4540, #203026);
}

.dish-card span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.activity-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.activity-card {
    position: relative;
    min-height: 265px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.096), rgba(255,255,255,0.045));
    transition: transform .32s ease, border-color .32s ease;
}

.activity-card::after {
    content: "";
    position: absolute;
    inset: auto -90px -100px auto;
    width: 210px;
    height: 210px;
    border-radius: 999px;
    background: var(--accent);
    filter: blur(20px);
    opacity: .22;
}

.activity-card span {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 22px;
    background: color-mix(in srgb, var(--accent), transparent 82%);
    border: 1px solid color-mix(in srgb, var(--accent), transparent 66%);
    font-size: 1.65rem;
}

.activity-card strong {
    display: block;
    margin-top: 18px;
    color: var(--accent);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.timeline-item {
    padding: 24px;
    min-height: 230px;
    border-radius: var(--radius-md);
    transition: transform .32s ease, border-color .32s ease;
}

.timeline-item span {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    border-radius: 16px;
    color: #101510;
    background: linear-gradient(135deg, var(--green-soft), var(--green));
    font-weight: 1000;
}

.cta-panel,
.story-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    padding: 34px;
    border-radius: var(--radius-lg);
}

.cta-panel {
    margin-bottom: 80px;
}

.story-panel {
    grid-template-columns: minmax(0, 1fr) 360px;
}

.stacked-cards {
    position: relative;
    min-height: 300px;
}

.stacked-cards div {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 250px;
    height: 76px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 24px;
    background: rgba(255,255,255,0.09);
    box-shadow: 0 24px 52px rgba(0,0,0,0.22);
    font-weight: 1000;
    transform: translate(-50%, -50%) rotate(var(--rotate)) translateY(var(--offset));
    animation: stackPulse 5s ease-in-out infinite alternate;
}

.stacked-cards div:nth-child(1) { --rotate: -12deg; --offset: -96px; color: var(--gold); }
.stacked-cards div:nth-child(2) { --rotate: -6deg; --offset: -48px; color: #d8ddd7; animation-delay: -.4s; }
.stacked-cards div:nth-child(3) { --rotate: 0deg; --offset: 0px; color: var(--green); animation-delay: -.8s; }
.stacked-cards div:nth-child(4) { --rotate: 6deg; --offset: 48px; animation-delay: -1.2s; }
.stacked-cards div:nth-child(5) { --rotate: 12deg; --offset: 96px; animation-delay: -1.6s; }

.legal-main {
    padding-top: 58px;
}

.legal-hero {
    padding: 42px;
    border-radius: var(--radius-lg);
}

.legal-hero h1 {
    font-size: clamp(2.8rem, 7vw, 6.4rem);
}

.legal-hero p {
    max-width: 820px;
    margin-top: 20px;
}

.legal-content {
    padding: 36px;
    border-radius: var(--radius-lg);
}

.legal-content article + article {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.legal-content h2 {
    margin-bottom: 12px;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.legal-content a {
    color: var(--gold);
    font-weight: 900;
}

.about-grid {
    grid-template-columns: repeat(4, 1fr);
}

.about-card {
    min-height: 300px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    width: min(var(--max-width), calc(100% - 32px));
    margin: 0 auto 28px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: rgba(255,255,255,0.055);
    backdrop-filter: blur(18px);
}

.site-footer p {
    margin-top: 12px;
    max-width: 430px;
    color: var(--soft);
    line-height: 1.6;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.site-footer nav a {
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 800;
    transition: background .2s ease, color .2s ease;
}

.site-footer nav a:hover {
    color: var(--text);
    background: rgba(255,255,255,0.08);
}

.footer-brand .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
}


/* Brand theme refinement: restaurant = premium dark gray, adventure = nature green. */
#restaurante .section-heading h2,
.restaurant-card h3,
.dish-card h3 {
    color: #f4f6f1;
}

#restaurante .dish-card,
.restaurant-card {
    border-color: rgba(158,166,160,0.18);
    box-shadow: 0 24px 70px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.11);
}

#experiencias .activity-card,
.adventure-card {
    border-color: rgba(130,214,111,0.18);
    background:
        radial-gradient(circle at 88% 6%, color-mix(in srgb, var(--accent, var(--green)), transparent 76%), transparent 20rem),
        linear-gradient(180deg, rgba(255,255,255,0.092), rgba(20,56,33,0.36));
}

#experiencias .section-heading h2,
.adventure-card h3 {
    color: #efffee;
}

.nav-links .nav-cta,
.brand-mark {
    background: linear-gradient(135deg, var(--green-soft), var(--green));
}

.metrics article:first-child strong,
#restaurante .dish-card span {
    color: #d8ddd7;
}

.metrics article:nth-child(2) strong,
#experiencias .activity-card strong {
    color: var(--green);
}

.reveal {
    opacity: 0;
    transform: translateY(24px) scale(.985);
    transition: opacity .85s cubic-bezier(.2,.8,.2,1), transform .85s cubic-bezier(.2,.8,.2,1);
}

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

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@keyframes floatAmbient {
    to { transform: translate3d(8vw, 5vh, 0) scale(1.12); }
}

@keyframes pulse {
    70% { box-shadow: 0 0 0 10px rgba(142, 214, 111, 0); }
    100% { box-shadow: 0 0 0 0 rgba(142, 214, 111, 0); }
}

@keyframes phoneFloat {
    0%, 100% { transform: rotateX(8deg) rotateY(-12deg) rotateZ(3deg) translateY(0); }
    50% { transform: rotateX(10deg) rotateY(-8deg) rotateZ(1deg) translateY(-18px); }
}

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

@keyframes floatBadge {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-16px) rotate(5deg); }
}

@keyframes gradientMove {
    to { background-position: 100% 100%; }
}

@keyframes stackPulse {
    to { filter: brightness(1.16); }
}

@keyframes storeGlow {
    to { transform: translate3d(-18px, 18px, 0) scale(1.14); opacity: .34; }
}

@media (max-width: 980px) {
    .hero,
    .cta-panel,
    .story-panel,
    .download-panel {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 54px;
    }

    .hero-stage {
        min-height: 560px;
    }

    .phone-card {
        inset: 20px auto auto 50%;
        transform: translateX(-50%) rotateX(6deg) rotateY(-8deg) rotateZ(2deg);
    }

    .metrics,
    .service-grid,
    .activity-track,
    .timeline,
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-actions,
    .store-strip.compact,
    .stacked-store-badges {
        justify-content: flex-start;
        justify-items: start;
    }

    .menu-showcase {
        grid-template-columns: 1fr;
    }

    .dish-card:first-child {
        grid-row: auto;
        grid-template-rows: 260px auto;
    }

    .stacked-cards {
        min-height: 360px;
    }
}

@media (max-width: 760px) {
    .site-header {
        align-items: center;
        border-radius: 24px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 88px;
        display: grid;
        gap: 8px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 26px;
        background: rgba(17,20,15,0.96);
        backdrop-filter: blur(24px);
        transform: translateY(-10px) scale(.98);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease, transform .2s ease;
    }

    body.nav-open .nav-links {
        transform: translateY(0) scale(1);
        opacity: 1;
        pointer-events: auto;
    }

    body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .hero h1,
    .legal-hero h1 {
        letter-spacing: -0.06em;
    }

    .metrics,
    .service-grid,
    .activity-track,
    .timeline,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .about-card {
        min-height: auto;
    }

    .hero-stage {
        min-height: 500px;
    }

    .phone-card {
        width: min(340px, 88vw);
        min-height: 520px;
    }

    .floating-badge {
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }

    .site-footer {
        flex-direction: column;
    }

    .site-footer nav {
        justify-content: flex-start;
    }

    .legal-hero,
    .legal-content,
    .cta-panel,
    .story-panel,
    .download-panel {
        padding: 24px;
    }

    .store-badge {
        width: 100%;
    }

    .eyebrow {
        width: fit-content;
        white-space: normal;
    }
}

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

    
/* Brand theme refinement: restaurant = premium dark gray, adventure = nature green. */
#restaurante .section-heading h2,
.restaurant-card h3,
.dish-card h3 {
    color: #f4f6f1;
}

#restaurante .dish-card,
.restaurant-card {
    border-color: rgba(158,166,160,0.18);
    box-shadow: 0 24px 70px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.11);
}

#experiencias .activity-card,
.adventure-card {
    border-color: rgba(130,214,111,0.18);
    background:
        radial-gradient(circle at 88% 6%, color-mix(in srgb, var(--accent, var(--green)), transparent 76%), transparent 20rem),
        linear-gradient(180deg, rgba(255,255,255,0.092), rgba(20,56,33,0.36));
}

#experiencias .section-heading h2,
.adventure-card h3 {
    color: #efffee;
}

.nav-links .nav-cta,
.brand-mark {
    background: linear-gradient(135deg, var(--green-soft), var(--green));
}

.metrics article:first-child strong,
#restaurante .dish-card span {
    color: #d8ddd7;
}

.metrics article:nth-child(2) strong,
#experiencias .activity-card strong {
    color: var(--green);
}

.reveal {
        opacity: 1;
        transform: none;
    }
}
