/* ============================================================
   CIPHER ATL — Design System
   64 Third Street NW, Atlanta, GA 30308
   Shared DNA with Riddim. Different expression.
   ============================================================ */

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

/* ── Tokens ──────────────────────────────────────────────── */
:root {
    /* Color */
    --orange:        #D4861A;
    --orange-light:  rgba(212, 134, 26, 0.8);
    --orange-glow:   rgba(212, 134, 26, 0.35);
    --black:         #0A0A0A;
    --dark:          #111111;
    --carbon:        #1A1A1A;
    --graphite:      #2A2A2A;
    --ash:           #888888;
    --ivory:         #F0EDE8;
    --white:         #FFFFFF;

    /* Type */
    --font:          'Georgia', serif;
    --t-hero:        clamp(48px, 9vw, 120px);
    --t-display:     clamp(32px, 5vw, 72px);
    --t-sub:         clamp(20px, 2.5vw, 32px);
    --t-body:        18px;
    --t-small:       15px;
    --t-label:       12px;

    /* Spacing (4px base) */
    --s1: 4px;  --s2: 8px;   --s3: 12px;  --s4: 16px;
    --s6: 24px; --s8: 32px;  --s12: 48px; --s16: 64px;
    --s24: 96px; --s32: 128px;

    /* Motion */
    --ease:     cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --fast:     150ms;
    --base:     300ms;
    --slow:     600ms;
    --reveal:   800ms;

    /* Layout */
    --nav-h:    72px;
    --max-w:    1100px;

    /* Safe areas */
    --sat: env(safe-area-inset-top, 0px);
    --sab: env(safe-area-inset-bottom, 0px);
    --sal: env(safe-area-inset-left, 0px);
    --sar: env(safe-area-inset-right, 0px);
    --vh: 1vh;
}

/* ── Base ────────────────────────────────────────────────── */
html {
    font-size: 16px;
    /* scroll-behavior handled by JS only — CSS smooth scroll conflicts with Astro View Transitions */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* overflow-x: hidden removed — setting it here AND on body creates two nested scroll containers,
       which breaks desktop wheel/trackpad scroll. body's overflow-x: hidden is sufficient. */
}

body {
    font-family: var(--font);
    font-size: var(--t-body);
    line-height: 1.6;
    color: var(--ivory);
    background: var(--black);
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    -webkit-tap-highlight-color: transparent;
}

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

img {
    display: block;
    max-width: 100%;
}

/* ── Film Grain (shared DNA with Riddim) ─────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23grain)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.038;
    pointer-events: none;
    z-index: 9000;
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--graphite); border-radius: 2px; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 100;
    transform: translateY(-100%);
    transition: background var(--base) var(--ease),
                border-color var(--base) var(--ease),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid transparent;
    padding-top: var(--sat);
}

.nav.nav-visible {
    transform: translateY(0);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--graphite);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--s6);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s6);
}

.nav-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    transition: opacity var(--base) var(--ease);
}

.nav-logo:hover { opacity: 0.7; }

.nav-mark {
    height: 30px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--s6);
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    font-size: var(--t-small);
    letter-spacing: 0.08em;
    color: var(--ash);
    transition: color var(--base) var(--ease);
    position: relative;
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform var(--base) var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-audio {
    background: none;
    border: 1px solid var(--graphite);
    color: var(--ash);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--base) var(--ease);
    flex-shrink: 0;
}

.nav-audio:hover,
.nav-audio.playing {
    border-color: var(--orange);
    color: var(--orange);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--s2);
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.nav-burger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--ash);
    transition: all var(--base) var(--ease);
}

.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ── Splash ───────────────────────────────────────────────── */
.splash {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 1.2s var(--ease-out);
}

.splash.hidden {
    opacity: 0;
    pointer-events: none;
}

.splash-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.5;
}

@media (max-width: 600px) {
    .splash-img {
        object-position: 62% center;
    }
}

.splash-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--s6);
}

.splash-wordmark {
    width: clamp(180px, 48vw, 340px);
    height: auto;
    display: block;
    margin-bottom: var(--s4);
}

.splash-address {
    font-size: var(--t-label);
    letter-spacing: 0.4em;
    color: var(--ivory);
    text-transform: lowercase;
    text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.splash-enter {
    position: absolute;
    bottom: max(var(--s12), calc(var(--sab) + var(--s8)));
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--t-label);
    letter-spacing: 0.4em;
    color: var(--ash);
    animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 0.9; }
}

/* ── Main Site ───────────────────────────────────────────── */
.site {
    opacity: 0;
    transition: opacity var(--slow) var(--ease-out);
    pointer-events: none;
}

.site.active {
    opacity: 1;
    pointer-events: all;
}

/* ── Page Header ─────────────────────────────────────────── */
.page-header {
    padding: calc(var(--nav-h) + var(--s16)) var(--s6) var(--s12);
    border-bottom: 1px solid var(--graphite);
    position: relative;
    overflow: hidden;
}

.page-header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.page-eyebrow {
    font-size: var(--t-label);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: var(--s4);
    display: block;
}

.page-title {
    font-size: var(--t-display);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.01em;
}

.page-desc {
    font-size: var(--t-body);
    color: var(--ash);
    margin-top: var(--s6);
    max-width: 560px;
    line-height: 1.7;
}

.page-watermark {
    position: absolute;
    right: -0.05em;
    bottom: -0.15em;
    font-size: clamp(80px, 18vw, 200px);
    font-weight: 400;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 134, 26, 0.08);
    letter-spacing: -0.02em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* ── Section ─────────────────────────────────────────────── */
.section {
    padding: var(--s24) var(--s6);
}

.section-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.section-label {
    font-size: var(--t-label);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: var(--s4);
}

.section-title {
    font-size: var(--t-sub);
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--s8);
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--orange) 0%, transparent 60%);
    margin: var(--s12) 0;
    opacity: 0.4;
}

/* ── Landing (Home) ──────────────────────────────────────── */
.landing {
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--s16) var(--s6) var(--s16);
    position: relative;
}

.landing-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(212,134,26,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.landing-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.landing-name {
    font-size: var(--t-hero);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1;
    margin-bottom: var(--s4);
}

.landing-address {
    font-size: var(--t-label);
    letter-spacing: 0.4em;
    color: var(--ash);
}

.landing-nav {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1px;
    background: var(--graphite);
    border: 1px solid var(--graphite);
    margin-top: var(--s16);
}

.landing-nav-item {
    background: var(--black);
    padding: var(--s6) var(--s6);
    transition: background var(--base) var(--ease);
    display: flex;
    flex-direction: column;
    gap: var(--s2);
    min-height: 80px;
    justify-content: flex-end;
}

.landing-nav-item:hover {
    background: var(--carbon);
}

.landing-nav-item span {
    font-size: var(--t-label);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
}

.landing-nav-item p {
    font-size: var(--t-small);
    color: var(--ash);
    line-height: 1.4;
}

/* ── Calendar ────────────────────────────────────────────── */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1px;
    background: var(--graphite);
    border: 1px solid var(--graphite);
}

.calendar-day {
    background: var(--black);
    padding: var(--s6);
    transition: background var(--base) var(--ease);
}

.calendar-day:hover {
    background: var(--carbon);
}

.calendar-day.dark {
    background: var(--dark);
    opacity: 0.6;
}

.day-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: var(--s4);
    padding-bottom: var(--s4);
    border-bottom: 1px solid var(--graphite);
}

.day-name {
    font-size: var(--t-label);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
}

.day-cover {
    font-size: var(--t-label);
    letter-spacing: 0.1em;
    color: var(--ash);
}

.day-event {
    font-size: var(--t-body);
    color: var(--white);
    font-weight: 400;
    margin-bottom: var(--s2);
    line-height: 1.3;
}

.day-time {
    font-size: var(--t-small);
    color: var(--ash);
    margin-bottom: var(--s3);
}

.day-desc {
    font-size: var(--t-small);
    color: var(--ash);
    line-height: 1.6;
    font-style: italic;
}

.day-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    border: 1px solid rgba(212,134,26,0.3);
    padding: 2px var(--s2);
    margin-top: var(--s3);
    border-radius: 2px;
}

/* ── Menu ────────────────────────────────────────────────── */
.menu-section {
    margin-bottom: var(--s16);
}

.menu-section-title {
    font-size: var(--t-label);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: var(--s8);
    padding-bottom: var(--s3);
    border-bottom: 1px solid rgba(212,134,26,0.3);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--s4);
}

.menu-item {
    padding: var(--s6);
    border: 1px solid var(--graphite);
    transition: border-color var(--base) var(--ease),
                background var(--base) var(--ease);
}

.menu-item:hover {
    border-color: rgba(212,134,26,0.4);
    background: var(--carbon);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--s4);
    margin-bottom: var(--s2);
}

.menu-item-name {
    font-size: var(--t-body);
    color: var(--white);
    font-weight: 400;
    line-height: 1.3;
}

.menu-item-price {
    font-size: var(--t-small);
    color: var(--orange);
    flex-shrink: 0;
}

.menu-item-desc {
    font-size: var(--t-small);
    color: var(--ash);
    line-height: 1.6;
    font-style: italic;
}

.menu-item-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ash);
    margin-top: var(--s2);
}

.menu-note {
    font-size: var(--t-small);
    color: var(--ash);
    font-style: italic;
    margin-top: var(--s3);
}

/* Shisha specific */
.shisha-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--s4);
}

.shisha-item {
    padding: var(--s6);
    border: 1px solid var(--graphite);
    transition: all var(--base) var(--ease);
}

.shisha-item:hover {
    border-color: rgba(212,134,26,0.4);
    background: var(--carbon);
}

.shisha-name {
    font-size: var(--t-body);
    color: var(--white);
    margin-bottom: var(--s2);
}

.shisha-notes {
    font-size: var(--t-small);
    color: var(--ash);
    font-style: italic;
    margin-bottom: var(--s3);
    line-height: 1.6;
}

.shisha-tags {
    display: flex;
    gap: var(--s2);
    flex-wrap: wrap;
}

.shisha-tag {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--ash);
    border: 1px solid var(--graphite);
    padding: 2px var(--s2);
    border-radius: 2px;
}

.shisha-price {
    font-size: var(--t-small);
    color: var(--orange);
    margin-top: var(--s3);
}

/* ── History / Timeline ──────────────────────────────────── */
.timeline {
    position: relative;
    padding-left: var(--s12);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--orange) 0%, transparent 100%);
    opacity: 0.4;
}

.timeline-entry {
    position: relative;
    padding-bottom: var(--s12);
}

.timeline-entry::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--s12));
    top: 8px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    transform: translateX(-3px);
}

.timeline-era {
    font-size: var(--t-label);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: var(--s2);
}

.timeline-venue {
    font-size: var(--t-sub);
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--s4);
}

.timeline-body {
    font-size: var(--t-small);
    color: var(--ash);
    line-height: 1.8;
    max-width: 600px;
}

.timeline-names {
    margin-top: var(--s4);
    font-size: var(--t-small);
    color: var(--ivory);
    font-style: italic;
    line-height: 1.8;
}

/* ── Gallery ─────────────────────────────────────────────── */
.gallery {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.gallery-track {
    display: flex;
    transition: transform var(--slow) var(--ease-out);
}

.gallery-slide {
    min-width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    background-color: var(--carbon);
    position: relative;
    display: flex;
    align-items: flex-end;
}

.gallery-slide-content {
    padding: var(--s8) var(--s8);
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    width: 100%;
}

.gallery-slide-content h3 {
    font-size: var(--t-body);
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--s1);
}

.gallery-slide-content p {
    font-size: var(--t-small);
    color: var(--ash);
    font-style: italic;
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10,10,10,0.7);
    border: 1px solid var(--graphite);
    color: var(--ivory);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all var(--base) var(--ease);
    backdrop-filter: blur(8px);
}

.gallery-nav-btn:hover {
    background: rgba(10,10,10,0.9);
    border-color: var(--orange);
}

.gallery-nav-btn.prev { left: var(--s4); }
.gallery-nav-btn.next { right: var(--s4); }

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: var(--s2);
    padding: var(--s4);
    background: var(--dark);
}

.gallery-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--graphite);
    border: none;
    cursor: pointer;
    transition: background var(--base) var(--ease),
                transform var(--base) var(--ease);
}

.gallery-dot.active {
    background: var(--orange);
    transform: scale(1.4);
}

/* ── Form ────────────────────────────────────────────────── */
.form-group {
    margin-bottom: var(--s6);
}

.form-label {
    display: block;
    font-size: var(--t-label);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ash);
    margin-bottom: var(--s2);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: var(--carbon);
    border: 1px solid var(--graphite);
    color: var(--ivory);
    font-family: var(--font);
    font-size: var(--t-small);
    padding: var(--s4) var(--s4);
    transition: border-color var(--base) var(--ease),
                box-shadow var(--base) var(--ease);
    border-radius: 0;
    -webkit-appearance: none;
    min-height: 48px;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--ash); opacity: 0.5; }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(212,134,26,0.5);
    box-shadow: 0 0 0 3px rgba(212,134,26,0.08);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%23888'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--s4) center;
    padding-right: var(--s12);
}

.form-select option {
    background: var(--carbon);
    color: var(--ivory);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--s2);
    font-family: var(--font);
    font-size: var(--t-label);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    padding: var(--s4) var(--s8);
    min-height: 48px;
    transition: all var(--base) var(--ease);
    border-radius: 0;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--orange-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--orange-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--orange);
    border: 1px solid rgba(212,134,26,0.5);
}

.btn-ghost:hover {
    border-color: var(--orange);
    background: rgba(212,134,26,0.06);
}

/* ── Info Card ───────────────────────────────────────────── */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--s4);
    margin-top: var(--s8);
}

.info-card {
    padding: var(--s6);
    border: 1px solid var(--graphite);
}

.info-card-label {
    font-size: var(--t-label);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: var(--s3);
}

.info-card-content {
    font-size: var(--t-small);
    color: var(--ash);
    line-height: 1.8;
}

.info-card-content strong {
    color: var(--ivory);
    font-weight: 400;
}

/* ── Hours ───────────────────────────────────────────────── */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--t-small);
}

.hours-table tr {
    border-bottom: 1px solid var(--graphite);
}

.hours-table td {
    padding: var(--s3) 0;
    color: var(--ash);
}

.hours-table td:first-child {
    color: var(--ivory);
    width: 40%;
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.hours-table td.closed {
    color: var(--graphite);
}

.hours-table td.event {
    color: var(--orange);
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
    padding: var(--s16) var(--s6) calc(var(--s12) + var(--sab));
    border-top: 1px solid var(--graphite);
    background: var(--dark);
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--s12);
}

.footer-brand-name {
    font-size: var(--t-label);
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--white);
    display: block;
    margin-bottom: var(--s2);
}

.footer-brand-tag {
    font-size: var(--t-small);
    color: var(--ash);
    font-style: italic;
    line-height: 1.6;
}

.footer-col-label {
    font-size: var(--t-label);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: var(--s4);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--s2);
}

.footer-col li a,
.footer-col li {
    font-size: var(--t-small);
    color: var(--ash);
    transition: color var(--base) var(--ease);
    line-height: 1.8;
}

.footer-col li a:hover { color: var(--ivory); }

.footer-bottom {
    max-width: var(--max-w);
    margin: var(--s12) auto 0;
    padding-top: var(--s6);
    border-top: 1px solid var(--graphite);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--graphite);
}

/* ── Hero Section (index) ─────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero/hero.jpg');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.4);
    transition: filter 1s var(--ease-out);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    padding: var(--s16) var(--s6) var(--s24);
}

.hero-wordmark {
    width: clamp(200px, 52vw, 380px);
    height: auto;
    display: block;
    margin-bottom: var(--s4);
}

.hero-address {
    font-size: var(--t-label);
    letter-spacing: 0.35em;
    color: var(--ash);
}

.hero-tag {
    font-size: var(--t-label);
    letter-spacing: 0.25em;
    color: var(--ash);
    margin-top: var(--s2);
    font-style: italic;
}

.hero-scroll-hint {
    position: absolute;
    bottom: var(--s8);
    right: var(--s6);
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--ash);
    opacity: 0.4;
    writing-mode: vertical-rl;
    animation: breathe 3s ease-in-out infinite;
}

/* ── Index Sections ──────────────────────────────────────── */
.index-section {
    padding: var(--s24) var(--s6);
}

.index-section-title {
    font-size: var(--t-sub);
    font-weight: 400;
    color: var(--white);
    margin-top: var(--s3);
    line-height: 1.2;
}

.index-split {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--s16);
    align-items: start;
}

.index-split-label {
    position: sticky;
    top: calc(var(--nav-h) + var(--s8));
}

.index-body {
    font-size: var(--t-body);
    color: var(--ash);
    line-height: 1.8;
    max-width: 580px;
}

.index-cocktail-list {
    margin-top: var(--s6);
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #1A1A1A;
}

.index-cocktail-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--s4);
    padding: var(--s3) 0;
    border-bottom: 1px solid #1A1A1A;
}

.index-cocktail-name {
    font-size: var(--t-small);
    color: var(--ivory);
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
}

.index-cocktail-desc {
    font-size: 11px;
    color: var(--ash);
    letter-spacing: 0.04em;
    text-align: right;
    opacity: 0.7;
}

.index-link {
    font-size: var(--t-label);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: var(--s2);
    transition: color var(--base) var(--ease),
                gap var(--base) var(--ease);
}

.index-link:hover {
    color: var(--ivory);
    gap: var(--s4);
}

/* ── Section Divider ─────────────────────────────────────── */
.section-divider {
    width: 100%;
    height: 1px;
    background: var(--graphite);
    opacity: 0.5;
}

/* ── Bottom Tabs (mobile) ────────────────────────────────── */
.bottom-tabs {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(56px + var(--sab));
    padding-bottom: var(--sab);
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--graphite);
    z-index: 90;
    align-items: stretch;
    justify-content: space-around;
}

.bottom-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
    min-width: 0;
    padding: var(--s2) var(--s1);
    color: var(--ash);
    transition: color var(--base) var(--ease);
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}

.bottom-tab.active {
    color: var(--orange);
}

.bottom-tab-icon {
    font-size: 18px;
    line-height: 1;
    display: block;
}

.bottom-tab-label {
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: lowercase;
    white-space: nowrap;
}

/* ── Reveal animation ────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--reveal) var(--ease-out),
                transform var(--reveal) var(--ease-out);
}

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

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10,10,10,0.97);
        backdrop-filter: blur(20px);
        padding: var(--s12) var(--s6);
        gap: var(--s6);
        align-items: flex-start;
        z-index: 99;
        overflow-y: auto;
        padding-bottom: max(var(--s12), calc(var(--sab) + var(--s8)));
    }

    .nav-links.open a {
        font-size: var(--t-body);
        min-height: 52px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--s8);
    }

    .landing-nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header {
        padding: calc(var(--nav-h) + var(--s16)) var(--s6) var(--s8);
    }

    .section {
        padding: var(--s16) var(--s6);
    }

    /* Show bottom tab bar on mobile */
    .bottom-tabs {
        display: flex;
    }

    /* Push footer above bottom tabs */
    footer {
        padding-bottom: calc(var(--s12) + 56px + var(--sab));
    }

    /* Collapse split layout to single column */
    .index-split {
        grid-template-columns: 1fr;
        gap: var(--s8);
    }

    .index-split-label {
        position: static;
    }

    .index-section {
        padding: var(--s16) var(--s6);
    }

    .hero-inner {
        padding-bottom: calc(80px + var(--sab));
    }
}

@media (max-width: 480px) {
    .landing-nav {
        grid-template-columns: 1fr;
    }

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

    .info-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--s2);
        text-align: center;
    }
}

/* ── iOS specifics ───────────────────────────────────────── */
@supports (-webkit-touch-callout: none) {
    .splash, .nav {
        padding-top: max(12px, var(--sat));
    }
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    left: 0;
}
