:root {
    /* Colors */
    --primary-color: #c5a059;          /* Muted Gold */
    --primary-dark: #9f8148;           /* Darker Gold */
    --accent-color: #1b3022;           /* Deep Forest Green */
    --bg-dark: #080c09;                /* Near-black */
    --bg-light: #f7f5f0;               /* Warm off-white */
    --text-light: #f0ede6;
    --text-dark: #0e1710;
    --text-muted: #6b705c;
    --glass-bg: rgba(8, 12, 9, 0.88);

    /* Spacing */
    --container-padding: clamp(1rem, 5vw, 3rem);
    --section-padding: clamp(4rem, 10vw, 8rem);

    /* Typography */
    --font-hero: 'Cormorant Garamond', Georgia, 'Times New Roman', serif; /* Wordmark + display (same as EN for all langs) */
    --font-heading: 'Cormorant Garamond', serif; /* Section headings */
    --font-body: 'Noto Sans Armenian', system-ui, sans-serif;
    --font-menu: 'Noto Sans Armenian', system-ui, sans-serif;
    --nav-pill-bg: #152620;
    --cream: #f6f4ef;
    --cream-line: rgba(197, 160, 89, 0.15);

    /* Text highlight (selection) — gold wash, deep text for contrast on light + dark UI */
    --selection-bg: rgba(197, 160, 89, 0.42);
    --selection-color: var(--text-dark);
}

/* English: serif body/menu to match section copy */
html[lang="en"] {
    --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-menu: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.is-hidden {
    display: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 4.75rem;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
}

html::-webkit-scrollbar {
    display: none; /* Chrome / Safari */
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #080c09;
    overflow-x: hidden;
    width: 100%;
}

::selection {
    background: var(--selection-bg);
    color: var(--selection-color);
    text-shadow: none;
}

::-moz-selection {
    background: var(--selection-bg);
    color: var(--selection-color);
    text-shadow: none;
}

input::selection,
textarea::selection {
    background: rgba(197, 160, 89, 0.35);
    color: var(--text-dark);
}

input::-moz-selection,
textarea::-moz-selection {
    background: rgba(197, 160, 89, 0.35);
    color: var(--text-dark);
}

input:not([type="checkbox"]):not([type="radio"]),
textarea {
    caret-color: var(--primary-color);
}

/* Grain Overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.03;
    contain: strict;
}

.container, .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-fluid {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

/* Buttons — refined luxury style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.4rem;
    border-radius: 0;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #05080a;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border-color: rgba(240, 237, 230, 0.45);
}

.btn-outline:hover {
    background-color: rgba(240, 237, 230, 0.08);
    border-color: rgba(240, 237, 230, 0.8);
    color: white;
}

.btn-sm {
    padding: 0.55rem 1.4rem;
    font-size: 0.65rem;
    letter-spacing: 2px;
}

.btn-pill {
    border-radius: 999px;
    padding: 0.55rem 1.2rem;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    background:
        radial-gradient(ellipse 70% 50% at 50% 44%, rgba(197, 160, 89, 0.09) 0%, transparent 62%),
        radial-gradient(ellipse 100% 70% at 50% 100%, rgba(27, 48, 34, 0.42) 0%, transparent 58%),
        var(--bg-dark);
    transition: opacity 0.7s ease 0.12s, visibility 0.7s ease 0.12s;
    contain: layout paint;
}

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

.loader--exit .loader-content {
    opacity: 0;
    transform: translateY(-10px) scale(1.03);
    filter: blur(6px);
    transition: opacity 0.55s ease, transform 0.55s ease, filter 0.55s ease;
}

.loader--exit .loader__fog {
    opacity: 0.55;
    transform: scale(1.35);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.loader__atmosphere {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.loader__fog {
    position: absolute;
    border-radius: 50%;
    filter: blur(52px);
    opacity: 0.35;
    will-change: transform, opacity;
}

.loader__fog--a {
    width: 55vw;
    height: 38vh;
    top: 18%;
    left: 22%;
    background: radial-gradient(ellipse, rgba(197, 160, 89, 0.16) 0%, transparent 72%);
    animation: loaderFogA 9s ease-in-out infinite alternate;
}

.loader__fog--b {
    width: 48vw;
    height: 34vh;
    bottom: 12%;
    right: 18%;
    background: radial-gradient(ellipse, rgba(27, 48, 34, 0.55) 0%, transparent 70%);
    animation: loaderFogB 11s ease-in-out infinite alternate-reverse;
}

.loader__fog--c {
    width: 62vw;
    height: 28vh;
    top: 42%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(240, 237, 230, 0.06) 0%, transparent 68%);
    animation: loaderFogC 13s ease-in-out infinite alternate;
}

.loader-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 1.5rem;
}

.loader-ornament {
    display: flex;
    justify-content: center;
    width: min(7.5rem, 40vw);
    margin: 0 auto clamp(0.85rem, 2.2vh, 1.15rem);
}

.loader-ornament--bottom {
    margin: clamp(0.75rem, 2vh, 1rem) auto clamp(1.85rem, 4.5vh, 2.65rem);
}

.loader-rule {
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(197, 160, 89, 0.35) 18%,
        rgba(197, 160, 89, 0.82) 50%,
        rgba(197, 160, 89, 0.35) 82%,
        transparent
    );
    transform: scaleX(0);
    animation: loaderRuleExpand 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.loader-ornament--bottom .loader-rule {
    animation-delay: 0.32s;
}

.loader-word {
    margin: 0;
    font-family: var(--font-hero);
    font-size: clamp(3.5rem, 11vw, 6rem);
    font-weight: 400;
    letter-spacing: 0.24em;
    line-height: 1;
    color: #fff;
    padding-left: 0.24em;
    user-select: none;
}

.loader-letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(16px);
    animation: loaderLetterIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.loader-letter:nth-child(1) { animation-delay: 0.06s; }
.loader-letter:nth-child(2) { animation-delay: 0.14s; }
.loader-letter:nth-child(3) { animation-delay: 0.22s; }

.loader-progress {
    width: min(9rem, 46vw);
    margin: 0 auto;
}

.loader-progress__track {
    height: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    position: relative;
}

.loader-progress__track::before,
.loader-progress__track::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 3px;
    height: 3px;
    margin-top: -1.5px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.45);
}

.loader-progress__track::before { left: 0; }
.loader-progress__track::after { right: 0; }

.loader-progress__fill {
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.25), var(--primary-color) 55%, rgba(232, 210, 160, 0.95));
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 18px rgba(197, 160, 89, 0.35);
}

@keyframes loaderLetterIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes loaderRuleExpand {
    from { transform: scaleX(0); opacity: 0.4; }
    to { transform: scaleX(1); opacity: 1; }
}

@keyframes loaderFogA {
    from { transform: translate(-4%, -3%) scale(1); }
    to { transform: translate(5%, 4%) scale(1.08); }
}

@keyframes loaderFogB {
    from { transform: translate(6%, 2%) scale(1.02); }
    to { transform: translate(-5%, -4%) scale(1.1); }
}

@keyframes loaderFogC {
    from { transform: translate(-50%, -2%) scale(0.96); opacity: 0.25; }
    to { transform: translate(-50%, 3%) scale(1.06); opacity: 0.42; }
}

@media (prefers-reduced-motion: reduce) {
    .loader__fog,
    .fog-svg,
    .amb-orb,
    .hero-cue-bar {
        animation: none !important;
    }
}

/* Header — floating pill, flush to top (reference) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.45rem 0.65rem 0;
    background: transparent;
    transition: padding 0.35s ease;
}

.header.scrolled {
    padding-top: 0.35rem;
}

.header.scrolled .nav-pill {
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.nav-shell {
    max-width: min(1180px, calc(100% - 10px));
    margin: 0 auto;
}

.nav-pill {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    column-gap: clamp(0.65rem, 1.8vw, 1.35rem);
    padding: 0.52rem clamp(1rem, 2.2vw, 1.35rem);
    background: var(--nav-pill-bg);
    border-radius: 100px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.38);
}

.logo-text {
    display: inline-flex;
    align-items: baseline;
    font-family: var(--font-hero);
    font-size: clamp(1.05rem, 2.1vw, 1.32rem);
    font-weight: 500;
    letter-spacing: 0.2em;
    color: #fff;
    padding: 0;
    outline: none;
    box-shadow: none;
    flex-shrink: 0;
    line-height: 1;
    transition: color 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.logo-word {
    letter-spacing: inherit;
}

/* Apostrophe matches wordmark (Cormorant stack) */
.logo-apos {
    font-family: inherit;
    font-size: 0.92em;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0 -0.02em;
    line-height: 0;
}

.logo-text:hover {
    color: var(--primary-color);
}

.logo-text:hover .logo-apos {
    color: inherit;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 1.25vw, 1.05rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Nav labels: small caps sans (reference — independent of page lang serif) */
.nav-links a {
    color: #fff;
    font-family: 'Noto Sans Armenian', 'Noto Sans', system-ui, sans-serif;
    font-weight: 400;
    font-size: clamp(0.58rem, 0.82vw, 0.68rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
    padding: 0.38rem 0 0.42rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0.08rem;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover:not(.is-active) {
    color: rgba(255, 255, 255, 0.98);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    width: 100%;
}

.nav-links a.is-active,
.nav-links a.is-active:hover {
    color: var(--primary-color);
    font-weight: 500;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: clamp(0.65rem, 1.4vw, 0.95rem);
    justify-self: end;
}

/* CTA — solid gold pill, black sans caps (reference) */
.nav-actions .res-btn {
    font-family: 'Noto Sans Armenian', 'Noto Sans', system-ui, sans-serif;
    font-weight: 600;
    font-size: clamp(0.56rem, 0.78vw, 0.64rem);
    letter-spacing: 0.16em;
    padding: 0.58rem 1.15rem;
    color: #080c09;
    border-radius: 999px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 4px 5px;
    border-radius: 999px;
    background: rgba(5, 8, 7, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lang-btn {
    background: transparent;
    border: none;
    color: #fff;
    padding: 6px 12px;
    font-family: 'Noto Sans', 'Noto Sans Armenian', system-ui, sans-serif;
    font-size: 0.58rem;
    cursor: pointer;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    transition: background 0.25s ease, color 0.25s ease;
}

.lang-btn.active {
    background: var(--primary-color);
    color: #080c09;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 2px;
    background: white;
    transition: 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.42s ease;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.8rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
}

.mobile-menu-close span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.mobile-menu-close span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
    transform: rotate(-45deg);
}

.mobile-menu-close:hover {
    background: rgba(0,0,0,0.7);
    border-color: #fff;
    transform: scale(1.05);
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin: 2rem 0;
    opacity: 0;
    transform: translateY(10px);
}

.mobile-nav-links a {
    color: white;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.mobile-menu-overlay.active .mobile-nav-links li {
    animation: mobileMenuItemIn 0.4s ease forwards;
}

.mobile-menu-overlay.active .mobile-nav-links li:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(2) { animation-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(3) { animation-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(4) { animation-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(5) { animation-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-nav-links li:nth-child(6) { animation-delay: 0.3s; }

@keyframes mobileMenuItemIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════
   HERO — Apple/Rolex luxury scroll-pinned section
   ═══════════════════════════════════════════════════════ */

/* Scroll pin container: extra height so native scroll drives hero progress smoothly */
.hero-pin {
    position: relative;
    height: 100vh;
    background-color: #080c09;
}

/* Sticky inner hero that stays while user scrolls through .hero-pin */
.hero {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    /* Isolate compositing layers inside the hero from the rest of the page */
    contain: layout style paint;
    /* Tell browser not to interfere with our manual touch handling */
    touch-action: none;
}

/* ── Cinematic video background ── */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    will-change: transform, filter;
    filter: saturate(0.2) brightness(0.28);
    display: block;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Multi-layer gradient for depth and legibility */
.hero-media-grad {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5, 8, 7, 0.88) 0%,
            rgba(5, 8, 7, 0.55) min(38vw, 420px),
            rgba(8, 12, 9, 0.22) 58%,
            transparent 78%
        ),
        radial-gradient(ellipse 90% 70% at 70% 45%, rgba(8, 12, 9, 0) 0%, rgba(8, 12, 9, 0.45) 100%),
        linear-gradient(to bottom,
            rgba(8,12,9,0.4) 0%,
            rgba(8,12,9,0.06) 38%,
            rgba(8,12,9,0.06) 62%,
            rgba(8,12,9,0.65) 100%);
}

/* ── Natural fog — SVG fractal noise layers ── */
.fog-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    will-change: opacity;
}

.fog-svg {
    position: absolute;
    /* oversized so drift animation never shows an edge */
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
}

/* Each layer drifts at a different speed and direction */
.fog-svg-a {
    opacity: 0.15;
    animation: fogDriftA 34s ease-in-out infinite alternate;
}
.fog-svg-b {
    opacity: 0.11;
    animation: fogDriftB 26s ease-in-out infinite alternate-reverse;
}
.fog-svg-c {
    opacity: 0.09;
    animation: fogDriftC 44s ease-in-out infinite alternate;
}

@keyframes fogDriftA {
    0%   { transform: translate(-5%, -3%) rotate(-0.4deg); }
    100% { transform: translate(5%,  3%) rotate(0.4deg);  }
}
@keyframes fogDriftB {
    0%   { transform: translate(7%, -4%) rotate(0.6deg);  }
    100% { transform: translate(-7%, 4%) rotate(-0.6deg); }
}
@keyframes fogDriftC {
    0%   { transform: translate(-4%, 5%) rotate(-0.3deg); }
    100% { transform: translate(4%, -5%) rotate(0.3deg);  }
}

/* ── Opening hero frame: solid logo + lines (fades on first scroll) ── */
.hero-open-intro {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: grid;
    place-items: center;
    pointer-events: none;
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    opacity: 1;
}

.hero-open-intro__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 1rem;
    /* Optical center — offset wide letter-spacing + fixed nav */
    transform: translateY(-3vh);
}

.hero-open-intro__logo {
    margin: 0 0 clamp(0.5rem, 1.4vw, 0.75rem);
    font-family: var(--font-hero);
    /* Refined scale — closer to reference (not viewport-dominant) */
    font-size: clamp(3rem, 9.5vw, 7.25rem);
    font-weight: 400;
    letter-spacing: 0.24em;
    line-height: 1;
    color: #fff;
    user-select: none;
    white-space: nowrap;
    padding-left: 0.24em;
}

.hero-open-intro__apos {
    font-family: inherit;
    font-size: 0.92em;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0 -0.02em;
    line-height: 0;
}

/* Taglines: compact sans + tracking (matches reference hero, independent of lang serif override) */
.hero-open-intro__white {
    margin: 0 0 0.35rem;
    font-family: 'Noto Sans Armenian', 'Noto Sans', system-ui, sans-serif;
    font-size: clamp(0.95rem, 2.2vw, 1.35rem);
    font-weight: 500;
    letter-spacing: 0.16em;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.96);
    max-width: min(36ch, 92vw);
    padding-left: 0.16em;
}

.hero-open-intro__gold {
    margin: 0;
    font-family: 'Noto Sans Armenian', 'Noto Sans', system-ui, sans-serif;
    font-size: clamp(0.62rem, 1.28vw, 0.78rem);
    font-weight: 500;
    letter-spacing: 0.16em;
    line-height: 1.4;
    color: var(--primary-color);
    max-width: min(38ch, 92vw);
    padding-left: 0.16em;
}

/* ── Ghost brand text: outlined letters, video shows through ── */
.hero-brand-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: grid;
    place-items: center;
    pointer-events: none;
    will-change: transform, opacity;
    transform-origin: center center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-brand-text {
    font-family: var(--font-hero);
    font-size: clamp(7rem, 20vw, 19rem);
    font-weight: 300;
    letter-spacing: 0.22em;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
    text-stroke: 1px rgba(255, 255, 255, 0.28);
    user-select: none;
    white-space: nowrap;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: max(0.65rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.65rem, env(safe-area-inset-right, 0px));
    /* Wide tracking reads left-heavy; nudge right to align glyph center with viewport */
    margin-left: 0.12em;
    margin-right: 0;
}

@media (max-width: 992px) {
    .hero-brand-text {
        font-size: clamp(4.25rem, 15vw, 10rem);
        letter-spacing: 0.17em;
        margin-left: 0.1em;
    }
}

/* ── Ambient light orbs ── */
.hero-ambience {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.amb-orb {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    filter: blur(80px);
}

.amb-orb-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    left: -8%;
    background: radial-gradient(circle, rgba(197,160,89,0.16) 0%, transparent 70%);
    opacity: 0;     /* JS drives opacity and transform */
    will-change: transform, opacity;
}

.amb-orb-2 {
    width: 500px;
    height: 500px;
    bottom: -5%;
    right: -6%;
    background: radial-gradient(circle, rgba(27,48,34,0.28) 0%, transparent 70%);
    opacity: 0;     /* JS drives opacity and transform */
    will-change: transform, opacity;
}

.amb-orb-3 {
    width: 350px;
    height: 350px;
    top: 40%;
    left: 55%;
    background: radial-gradient(circle, rgba(197,160,89,0.07) 0%, transparent 70%);
    animation: orbDrift1 14s ease-in-out 3s infinite alternate;
}

@keyframes orbDrift1 {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(40px, 30px) scale(1.12); }
}

@keyframes orbDrift2 {
    from { transform: translate(0, 0) scale(1.05); }
    to   { transform: translate(-50px, -25px) scale(0.92); }
}

/* ── Content stage — JS drives opacity + transform ── */
.hero-stage {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: min(36rem, calc(100vw - 2.5rem));
    max-width: 100%;
    margin: 0;
    padding: 0 1rem;
    text-align: center;
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    opacity: 0;    /* JS sets this based on scroll progress */
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.hero-eyebrow .eyebrow-rule:last-child {
    display: block;
    background: linear-gradient(to left, transparent, var(--primary-color));
}

.eyebrow-text {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.hero-headline {
    font-family: var(--font-body);
    font-size: clamp(2.35rem, 5.2vw, 4.25rem);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0 0 1.75rem 0;
    max-width: min(22ch, 100%);
    text-align: center;
    width: 100%;
    will-change: transform;
}

/* Body text */
.hero-body-text {
    font-family: var(--font-body);
    font-size: clamp(0.88rem, 1.65vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.88);
    max-width: 28rem;
    line-height: 1.75;
    margin: 0 auto 2.25rem;
    text-align: center;
    opacity: 0;
    will-change: opacity;
}

/* CTA row */
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    opacity: 0;
    will-change: opacity;
}

@keyframes stageIn {
    to { opacity: 1; transform: translateY(0); }
}

/* ── Scroll cue ── */
.hero-cue {
    position: absolute;
    bottom: clamp(1.75rem, 4vh, 2.75rem);
    right: clamp(1.25rem, 4vw, 3rem);
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 4;
    opacity: 0;
}

.hero-cue span {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

.hero-cue-bar {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, rgba(197,160,89,0.6), transparent);
    animation: barPulse 2.2s ease-in-out infinite;
}

@keyframes barPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ── Side scroll progress track ── */
.hero-progress-track {
    position: absolute;
    right: clamp(0.65rem, 2vw, 1.25rem);
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: min(38vh, 200px);
    background: rgba(197, 160, 89, 0.2);
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    border-radius: 2px;
    animation: stageIn 1s ease 2.5s forwards;
}

.hero-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(to bottom, var(--primary-color), rgba(197, 160, 89, 0.3));
}

@media (max-width: 576px) {
    .hero-progress-track { display: none; }
}

/* Sections */
.section {
    padding: var(--section-padding) 0;
}

.bg-dark { background-color: var(--bg-dark); color: white; }
.bg-light { background-color: var(--bg-light); }

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.6s ease;
}

[data-aos="fade-up"].aos-animate .section-title::after {
    width: 100px;
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
    font-size: 0.7rem;
    margin-top: 0.5rem;
}

/* Gallery — tilted cards (reference) */
.gallery-scroll-hint {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(240, 237, 230, 0.42);
    margin-top: 0.85rem;
}

/* Our Kitchen — OGL circular gallery host */
.circular-gallery-viewport {
    overflow: hidden;
    margin-top: 2.5rem;
    padding: 2rem 0 4rem;
    cursor: grab;
    touch-action: pan-y;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.circular-gallery-viewport:active {
    cursor: grabbing;
}

.circular-gallery-host {
    width: 100%;
    min-height: clamp(320px, 54vh, 620px);
    height: clamp(320px, 54vh, 620px);
    position: relative;
    margin: 0 auto;
    max-width: min(1320px, 100%);
}

/* ── Bar Section — static layout + blur overlay ── */
.bar-static {
    position: relative;
    margin: 0;
    padding: 0;
    background: var(--bg-dark);
}

.bar-static + .section { margin-top: 0; }

.bar-stage {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.bar-stage-static {
    position: relative;
}

/* Right panel fills right 58% */
.bar-visual {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 42%;
    overflow: hidden;
}

.bar-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Gradient blends image into dark left side */
.bar-visual-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        var(--bg-dark) 0%,
        rgba(8,12,9,0.55) 35%,
        rgba(8,12,9,0.10) 70%,
        transparent 100%
    );
}

/* Left panel: text */
.bar-copy {
    position: relative;
    z-index: 2;
    width: 52%;
    padding: 0 clamp(1.5rem, 5vw, 4rem) 0 clamp(2rem, 8vw, 7rem);
}

.bar-copy-visible {
    opacity: 1;
    transform: none;
}

.eyebrow-rule {
    display: block;
    width: 36px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color));
    flex-shrink: 0;
}

.bar-eyebrow-wrap {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.bar-eyebrow {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary-color);
    white-space: nowrap;
}

.bar-heading {
    font-family: var(--font-hero);
    font-size: clamp(3rem, 6.5vw, 6rem);
    font-weight: 300;
    line-height: 1.06;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 2.2rem;
}

.bar-desc {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(240,237,230,0.60);
    margin: 0 0 2.8rem;
    max-width: 420px;
}

.bar-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
}

.bar-stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
}

.bar-stat-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240,237,230,0.40);
    margin-top: 0.5rem;
}

/* Mobile */
@media (max-width: 768px) {
    .bar-visual { left: 0; top: 44%; bottom: 0; }
    .bar-visual-shade {
        background: linear-gradient(
            to bottom,
            var(--bg-dark) 0%,
            rgba(8,12,9,0.76) 52%,
            rgba(8,12,9,0.18) 100%
        );
    }
    .bar-copy { width: 100%; padding: 0 var(--container-padding); padding-top: 3.5rem; }
    .bar-heading { font-size: clamp(2.8rem, 10vw, 4rem); }

    .eyebrow-rule {
        width: 28px;
    }
}

/* ── Bar menu board — 50/50 image + menu (reference layout) ── */
.bar-menu-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: #000;
    border-top: 1px solid rgba(197, 160, 89, 0.12);
}

.bar-menu-board__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 3vw, 2.75rem) clamp(1.25rem, 2.5vw, 2rem);
    background: #000;
    overflow: hidden;
}

/* Thin gold divider between image and menu (short vertical segment, reference) */
.bar-menu-board__media::after {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    right: 0;
    width: 1px;
    background: rgba(197, 160, 89, 0.48);
    pointer-events: none;
}

.bar-menu-board__media img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: min(88vh, 900px);
    object-fit: contain;
    object-position: center;
    display: block;
}

.bar-menu-board__content {
    padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1.25rem, 3vw, 2rem) clamp(2rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    background: #000;
    justify-content: flex-start;
    align-items: center;
    min-height: min(88vh, 900px);
}

.bar-menu-board__eyebrow {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin: 0 0 1.35rem;
    text-align: center;
    width: 100%;
    max-width: min(34rem, 94vw);
}

.bar-menu-board__tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem 1.75rem;
    margin-bottom: 0.35rem;
    padding-bottom: 0.75rem;
    width: 100%;
    max-width: min(34rem, 94vw);
}

.bar-menu-tab {
    appearance: none;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: clamp(0.58rem, 0.95vw, 0.7rem);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    padding: 0.35rem 0;
    position: relative;
    transition: color 0.25s ease;
}

.bar-menu-tab:hover {
    color: rgba(255, 255, 255, 0.62);
}

.bar-menu-tab.active {
    color: #fff;
}

.bar-menu-tab.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.78rem;
    height: 1px;
    background: var(--primary-color);
}

.bar-menu-board__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.4vw, 2.5rem);
    font-weight: 500;
    color: #fff;
    margin: 1.5rem 0 1.35rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-align: center;
    width: 100%;
    max-width: min(34rem, 94vw);
}

.bar-menu-board__subtitle {
    margin: 0.35rem 0 1rem;
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.75);
    width: 100%;
}

.bar-menu-board__scroll {
    flex: 1;
    min-height: 0;
    max-height: min(68vh, 720px);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: min(34rem, 94vw);
    padding-right: 0.35rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 160, 89, 0.45) transparent;
}

.bar-menu-board__scroll::-webkit-scrollbar {
    width: 5px;
}

.bar-menu-board__scroll::-webkit-scrollbar-thumb {
    background: rgba(197, 160, 89, 0.45);
    border-radius: 999px;
}

.bar-menu-section + .bar-menu-section {
    margin-top: 1.35rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(197, 160, 89, 0.12);
}

.bar-menu-section-title {
    margin: 0 0 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.88);
    text-align: left;
}

.bar-menu-section:first-child .bar-menu-section-title {
    margin-top: 0.35rem;
}

.bar-menu-board__list {
    list-style: none;
    margin: 0;
    padding: 0.35rem 0 0;
    flex: 0 0 auto;
    width: 100%;
    max-width: min(34rem, 94vw);
}

.bar-menu-row {
    display: flex;
    flex-direction: column;
    padding: 1.15rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
}

.bar-menu-row:last-child {
    border-bottom: none;
}

/* Name + leader dots + price always locked on one line */
.bar-menu-top {
    display: grid;
    grid-template-columns: auto minmax(1.5rem, 1fr) auto;
    align-items: baseline;
    column-gap: 0.85rem;
}

.bar-menu-name {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.96rem;
    color: #fff;
    line-height: 1.35;
    letter-spacing: 0.02em;
}

.bar-menu-leader {
    border-bottom: 1px dotted rgba(255, 255, 255, 0.22);
    min-height: 0;
    margin-bottom: 0.28rem;
}

.bar-menu-price {
    color: var(--primary-color);
    white-space: nowrap;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Description wraps freely below the name+price row */
.bar-menu-desc {
    margin: 0.28rem 0 0;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.48);
}

.bar-menu-board__foot {
    margin: 1.5rem 0 0;
    font-size: 0.72rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.45);
    max-width: min(34rem, 94vw);
    text-align: center;
}

@media (max-width: 640px) {
    /* Collapse to name + price only (drop leader dots on small phones) */
    .bar-menu-top {
        grid-template-columns: 1fr auto;
        column-gap: 0.6rem;
    }

    .bar-menu-leader {
        display: none;
    }

    .bar-menu-tab.active::after {
        bottom: -0.78rem;
    }
}

.section.reservation {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #090c0a;
    color: rgba(240, 237, 230, 0.94);
}

.section.reservation::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 85% 55% at 50% -5%, rgba(197, 160, 89, 0.2), transparent 52%),
        radial-gradient(ellipse 50% 48% at 12% 92%, rgba(27, 48, 34, 0.55), transparent 58%),
        radial-gradient(ellipse 45% 42% at 88% 65%, rgba(197, 160, 89, 0.09), transparent 48%),
        linear-gradient(168deg, #131b17 0%, #0a0e0b 42%, #060807 100%);
    pointer-events: none;
    z-index: 0;
}

.section.reservation::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)' opacity='0.15'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.section.reservation .container {
    position: relative;
    z-index: 1;
}

/* Reservation — split card (reference) */
.res-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    background: #0a0e0c;
    color: white;
    border-radius: clamp(18px, 2vw, 28px);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(197, 160, 89, 0.12);
}

.res-info {
    padding: clamp(2.5rem, 5vw, 3.75rem);
    background: linear-gradient(165deg, #1a2820 0%, #121a16 100%);
}

.res-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    margin-bottom: 1rem;
    font-weight: 500;
}

.res-info > p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
    line-height: 1.7;
}

.res-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1.35rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
}

.res-contact-item i {
    color: var(--primary-color);
    margin-top: 3px;
    width: 1.1rem;
    text-align: center;
}

.res-quote {
    margin-top: 2.5rem;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1rem;
    color: var(--primary-color);
    line-height: 1.6;
    opacity: 0.95;
}

.res-form {
    padding: clamp(2.5rem, 5vw, 3.75rem);
    background: #050706;
    color: rgba(255, 255, 255, 0.9);
}

.res-form--minimal .form-group {
    margin-bottom: 1.75rem;
}

.res-form--minimal label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.res-form--minimal input,
.res-form--minimal textarea {
    width: 100%;
    padding: 0.65rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    font-family: inherit;
    font-size: 0.95rem;
    color: #fff;
    transition: border-color 0.25s ease;
}

.res-form--minimal input::placeholder,
.res-form--minimal textarea::placeholder {
    color: rgba(255, 255, 255, 0.28);
}

.res-form--minimal input:focus,
.res-form--minimal textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

/* Reservation date — matches time picker styling */
.res-date-field {
    margin-bottom: 1.75rem;
}

.res-date-field__label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.res-date-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    margin: 0 0 0.35rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    transition: border-color 0.2s ease;
}

.res-date-trigger:hover,
.res-date-trigger:focus-within {
    border-bottom-color: var(--primary-color);
}

.res-date-trigger__value {
    flex: 1;
    min-width: 0;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.38);
    min-height: 1.35em;
    letter-spacing: 0.04em;
    pointer-events: none;
}

.res-date-trigger__value.has-value {
    color: #fff;
    letter-spacing: 0.02em;
}

.res-date-trigger__icon {
    flex-shrink: 0;
    font-size: 0.95rem;
    color: var(--primary-color);
    opacity: 0.9;
    pointer-events: none;
}

.res-date-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
    border: none;
    background: transparent;
    color-scheme: dark;
    font-size: 1rem;
}

.res-date-input:focus {
    outline: none;
}

.res-date-input::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
}

/* Reservation time — slot grid (replaces native select) */
.res-time-field__label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.res-time-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    margin: 0 0 0.35rem;
    padding: 0.55rem 0;
    font: inherit;
    text-align: left;
    color: inherit;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    cursor: pointer;
    transition: border-color 0.2s ease, opacity 0.2s ease;
}

.res-time-toggle:hover:not(:disabled),
.res-time-toggle:focus-visible:not(:disabled) {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.res-time-toggle:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.res-time-toggle__value {
    flex: 1;
    min-width: 0;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.38);
    min-height: 1.35em;
    letter-spacing: 0.04em;
}

.res-time-toggle__value.has-value {
    color: #fff;
    letter-spacing: 0.1em;
}

.res-time-toggle__chev {
    flex-shrink: 0;
    width: 0.5rem;
    height: 0.5rem;
    margin-right: 0.15rem;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 0.36s cubic-bezier(0.32, 0.72, 0, 1);
}

.res-time-toggle[aria-expanded="true"] .res-time-toggle__chev {
    transform: rotate(225deg) translate(-2px, -2px);
}

.res-time-panel {
    display: grid;
    grid-template-rows: 0fr;
    margin-bottom: 0;
    transition:
        grid-template-rows 0.38s cubic-bezier(0.32, 0.72, 0, 1),
        margin-bottom 0.38s cubic-bezier(0.32, 0.72, 0, 1);
}

.res-time-panel.is-open {
    grid-template-rows: 1fr;
    margin-bottom: 0.55rem;
}

.res-time-panel__inner {
    min-height: 0;
    overflow: hidden;
    padding-top: 0.35rem;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        opacity 0.28s ease,
        transform 0.36s cubic-bezier(0.32, 0.72, 0, 1);
}

.res-time-panel.is-open .res-time-panel__inner {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.04s, 0.04s;
}

.res-time-panel:not(.is-open) .res-time-panel__inner {
    transition-delay: 0s, 0s;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .res-time-panel,
    .res-time-panel__inner,
    .res-time-toggle__chev {
        transition-duration: 0.01ms !important;
        transition-delay: 0s !important;
    }

    .res-time-panel:not(.is-open) .res-time-panel__inner {
        opacity: 0;
        transform: none;
    }

    .res-time-panel.is-open .res-time-panel__inner {
        opacity: 1;
        transform: none;
    }
}

.res-time-field__empty--inline {
    margin: 0 0 0.5rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 10px;
}

.res-time-slots {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
    max-height: 11.25rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2px 2px 8px;
    margin-bottom: 0.55rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(197, 160, 89, 0.45) rgba(255, 255, 255, 0.06);
}

.res-time-chip {
    margin: 0;
    padding: 0.52rem 0.3rem;
    font-family: inherit;
    font-size: 0.78rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.res-time-chip:hover {
    border-color: rgba(197, 160, 89, 0.5);
    background: rgba(197, 160, 89, 0.12);
    color: #fff;
}

.res-time-chip:focus-visible {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.35);
}

.res-time-chip.is-selected {
    border-color: var(--primary-color);
    background: rgba(197, 160, 89, 0.22);
    color: var(--primary-color);
    box-shadow: inset 0 0 0 1px rgba(197, 160, 89, 0.2);
}

.res-time-field__hint {
    margin: 0;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.5;
}

.res-time-field__empty {
    margin: 0;
    grid-column: 1 / -1;
    padding: 1rem 0.75rem;
    font-size: 0.82rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.18);
    border-radius: 10px;
}

@media (max-width: 520px) {
    .res-time-slots {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.res-form--minimal textarea {
    resize: none;
    float: none;
    display: block;
    height: 5.5rem;
    min-height: 5.5rem;
    max-height: 5.5rem;
    overflow-y: auto;
    box-sizing: border-box;
}

.res-form-note {
    margin: 0 0 1rem;
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.5);
}

.res-form--minimal .btn-res-submit {
    margin-top: 0;
    border-radius: 6px;
    letter-spacing: 0.1em;
    padding: 1rem 1.5rem;
}

.res-form--minimal .btn-res-submit:disabled {
    opacity: 0.65;
    cursor: wait;
}

/* Reservation confirmation modal */
.res-modal {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: grid;
    place-items: center;
    padding: 1.25rem;
    contain: layout paint;
}

.res-modal[hidden] {
    display: none;
}

.res-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 6, 5, 0.72);
    backdrop-filter: blur(4px);
}

.res-modal__panel {
    position: relative;
    z-index: 1;
    width: min(28rem, 100%);
    padding: 2.25rem 2rem 2rem;
    border-radius: 20px;
    background: linear-gradient(165deg, #1a2820 0%, #101612 100%);
    border: 1px solid rgba(197, 160, 89, 0.28);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
    text-align: center;
    color: rgba(240, 237, 230, 0.94);
    animation: resModalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.res-modal__close {
    position: absolute;
    top: 0.85rem;
    right: 0.95rem;
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.45);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}

.res-modal__close:hover {
    color: #fff;
}

.res-modal__icon {
    margin-bottom: 1rem;
    font-size: 2.4rem;
    color: var(--primary-color);
}

.res-modal__title {
    margin: 0 0 0.85rem;
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 500;
    color: #fff;
}

.res-modal__body {
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(240, 237, 230, 0.78);
}

.res-modal__btn {
    min-width: 10rem;
}

@keyframes resModalIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

input, textarea, select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* About — cream + subtle waves (left), full-bleed photo + quote (right) */
.about--split {
    padding: 0;
    background: var(--cream);
}

.about.section {
    padding-top: 0;
    padding-bottom: 0;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: clamp(2.5rem, 6vw, 5rem) 0;
    min-height: 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding: clamp(3rem, 9vw, 6.5rem) clamp(2rem, 6vw, 5rem) clamp(3rem, 9vw, 6.5rem) clamp(3.25rem, 10vw, 7.5rem);
    background-color: var(--cream);
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='48' viewBox='0 0 200 48'%3E%3Cpath d='M0 14 Q50 6 100 14 T200 14' fill='none' stroke='%23c5a059' stroke-opacity='0.12' stroke-width='0.7'/%3E%3Cpath d='M0 24 Q50 16 100 24 T200 24' fill='none' stroke='%23c5a059' stroke-opacity='0.1' stroke-width='0.7'/%3E%3Cpath d='M0 34 Q50 26 100 34 T200 34' fill='none' stroke='%23c5a059' stroke-opacity='0.08' stroke-width='0.7'/%3E%3C/svg%3E");
    background-size: 200px 48px;
}

.about-title {
    font-family: var(--font-heading);
    font-size: clamp(2.35rem, 4.5vw, 3.65rem);
    font-weight: 600;
    color: #0e1710;
    line-height: 1.08;
    margin: 0 0 1.1rem;
    letter-spacing: -0.01em;
}

.about-title-line {
    display: block;
}

.about-rule {
    width: 48px;
    height: 1px;
    background: var(--primary-color);
    margin: 0 0 1.5rem;
}

.about-text {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.35vw, 1.05rem);
    font-weight: 400;
    margin: 0 0 1.15rem;
    color: #4a5248;
    line-height: 1.82;
    max-width: 36rem;
}

.about-text:last-of-type {
    margin-bottom: 0;
}

.about-stats.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2.5rem, 6vw, 4.5rem);
    margin-top: clamp(2.25rem, 5vw, 3.25rem);
    padding-top: 0.25rem;
}

.about-stats .stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.about-stats .stat-num {
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 5vw, 3.65rem);
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -0.02em;
}

.about-stats .stat-label {
    font-family: var(--font-body);
    color: #4d554a;
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-visual--video {
    position: relative;
    width: 100%;
    margin: 0;
    padding: clamp(1.25rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2rem);
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
}

.about-visual-frame {
    position: relative;
    width: min(100%, clamp(300px, 40vw, 500px));
    max-width: 100%;
    margin: 0 auto;
    height: auto;
    min-height: 0;
    line-height: 0;
    overflow: hidden;
    background: #121612;
    border-radius: clamp(16px, 2.8vw, 26px);
}

.about-hero-video {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
    object-fit: contain;
    object-position: center center;
}

@media (max-width: 900px) {
    .about-split {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: clamp(2rem, 5vw, 3rem) 0;
    }

    .about-visual-frame {
        width: min(100%, clamp(268px, 78vw, 440px));
    }

    .about-visual--video {
        order: 2;
        padding: 1rem clamp(1rem, 4vw, 1.5rem) 1.5rem;
    }

    .about-content {
        order: 1;
        text-align: center;
        align-items: center;
        padding-left: clamp(1.75rem, 6vw, 3rem);
        padding-right: clamp(1.75rem, 6vw, 3rem);
    }

    .about-rule {
        margin-left: auto;
        margin-right: auto;
    }

    .about-text {
        margin-left: auto;
        margin-right: auto;
    }

    .about-stats.stats-grid {
        justify-content: center;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    color: var(--text-dark);
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--primary-color);
    display: block;
}

/* Reviews */
.reviews-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin: -2rem auto 3rem;
    text-align: center;
}

.reviews-stars,
.review-card__stars {
    display: flex;
    gap: 0.28rem;
    color: var(--primary-color);
    font-size: 0.82rem;
}

.reviews-summary__text {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-family: var(--font-body);
}

.reviews-summary__text strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-light);
}

.reviews-summary__text span {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240, 237, 230, 0.55);
}

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

.review-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem 1.75rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.18);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.review-card--featured {
    background: linear-gradient(165deg, rgba(197, 160, 89, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(197, 160, 89, 0.32);
}

.review-card__quote {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.65;
    font-weight: 400;
    font-style: italic;
    color: rgba(240, 237, 230, 0.92);
    flex: 1;
}

.review-card__foot {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(197, 160, 89, 0.16);
}

.review-card__name {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.review-card__meta {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    color: rgba(240, 237, 230, 0.5);
}

@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 34rem;
        margin: 0 auto;
    }

    .review-card--featured {
        order: -1;
    }
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Contact — light sheet + map */
.contact--light {
    background: #f2f0ea;
    color: var(--text-dark);
}

.contact--light .section-title::after {
    background: var(--primary-color);
}

.contact-heading {
    font-family: var(--font-hero);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: #1a1f1c;
    margin-bottom: 0.75rem;
}

.contact-rule {
    width: 52px;
    height: 2px;
    background: var(--primary-color);
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-row i {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-top: 3px;
    width: 1.25rem;
    text-align: center;
}

.contact-row p {
    margin: 0;
    font-size: 1.02rem;
    color: #2c322c;
    line-height: 1.55;
}

.contact-row a {
    color: inherit;
    border-bottom: 1px solid rgba(197, 160, 89, 0.35);
}

.contact-row a:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-item h4 {
    margin-bottom: 0.3rem;
}

.social-links {
    display: flex;
    gap: 0.85rem;
    margin-top: 2.25rem;
}

.social-links a {
    width: 46px;
    height: 46px;
    background: #0d100e;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1rem;
    transition: background 0.25s ease, transform 0.2s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #0d100e;
    transform: translateY(-2px);
}

/* Social link uses SVG (TripAdvisor not in FA free brands) */
.social-links a .social-icon-img {
    width: 1.05rem;
    height: 1.05rem;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.social-links a:hover .social-icon-img {
    filter: brightness(0);
}

.map-placeholder {
    width: 100%;
    height: min(420px, 52vw);
    border-radius: clamp(14px, 2vw, 22px);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Newsletter — pinstripe band */
.newsletter {
    position: relative;
    background: #142218;
    padding: clamp(3.5rem, 8vw, 5.5rem) 0;
    color: rgba(255, 255, 255, 0.92);
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 14px,
        rgba(255, 255, 255, 0.025) 14px,
        rgba(255, 255, 255, 0.025) 15px
    );
    pointer-events: none;
}

.newsletter-split {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: end;
}

.newsletter-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.newsletter-rule {
    width: 36px;
    height: 1px;
    background: var(--primary-color);
    margin-bottom: 1.25rem;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 3.5vw, 2.4rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 20ch;
}

.newsletter-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 42ch;
}

.newsletter-form-wrap {
    padding-bottom: 0.25rem;
}

.newsletter-form {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.45);
    padding-bottom: 0.35rem;
    max-width: 420px;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 0.75rem 0.5rem 0.75rem 0;
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-form input:focus {
    outline: none;
}

.btn-news {
    background: var(--primary-color);
    color: #0b0f0c;
    border: none;
    padding: 0.65rem 1.25rem;
    font-family: inherit;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: filter 0.25s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-news:hover {
    filter: brightness(1.08);
}

.newsletter-privacy {
    margin-top: 1rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}

.form-feedback {
    margin: 0 0 1rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.95rem;
    line-height: 1.45;
}

.form-feedback--success {
    background: rgba(72, 129, 93, 0.16);
    border-color: rgba(117, 201, 147, 0.3);
    color: #dff3e5;
}

.form-feedback--error {
    background: rgba(143, 52, 52, 0.14);
    border-color: rgba(220, 124, 124, 0.28);
    color: #ffd9d9;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.88rem;
    opacity: 0.85;
    color: var(--primary-color);
}

.footer-line {
    margin-bottom: 0.35rem;
}

.footer-credit {
    font-size: clamp(0.78rem, 1.9vw, 0.88rem);
    letter-spacing: 0.02em;
    font-weight: 500;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.88);
}

/* Cormorant reads smaller than Noto at the same px — bump EN only */
html[lang="en"] .footer-credit {
    font-size: clamp(0.98rem, 2.45vw, 1.1rem);
    letter-spacing: 0.04em;
    font-weight: 600;
}

.footer-credit-link {
    margin-left: 0.35em;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.45);
    transition: color 0.2s ease, border-color 0.2s ease;
}

html[lang="en"] .footer-credit-link {
    font-weight: 700;
}

.footer-credit-link:hover {
    color: #e4c77a;
    border-bottom-color: rgba(228, 199, 122, 0.85);
}

/* ── Mobile Responsive ── */
@media (max-width: 1100px) {
    .nav-pill {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-actions {
        justify-self: auto;
    }

    .nav-links {
        display: none;
    }

    .res-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .lang-switcher {
        margin-right: 0.25rem;
    }

    .logo-text {
        align-items: center;
    }
}

@media (max-width: 992px) {
    .res-wrapper, .about-grid, .contact-grid, .newsletter-split {
        grid-template-columns: 1fr;
    }

    .res-info { padding: 3rem 2rem; }
    .res-form  { padding: 3rem 2rem; }

    .about-image { order: -1; }
    .about-image img { box-shadow: 10px 10px 0 var(--primary-color); }

    .newsletter-split {
        text-align: left;
    }

    .newsletter-title {
        max-width: none;
    }

    .hero-pin {
        height: 100vh;
    }

    .hero-stage {
        width: calc(100vw - 2rem);
        max-width: 34rem;
    }

    .hero-eyebrow {
        gap: 0.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .hero-actions .btn {
        width: min(220px, 100%);
    }

    /* Bar menu — single column, stacked items (tablet / mobile) */
    .bar-menu-board {
        grid-template-columns: 1fr;
    }

    .bar-menu-board__media {
        display: none;
    }

    .bar-menu-board__content {
        padding: clamp(1.2rem, 4vw, 1.65rem) clamp(0.85rem, 4vw, 1.1rem) clamp(1.65rem, 5vw, 2.35rem);
        padding-bottom: max(1.65rem, env(safe-area-inset-bottom, 0px));
    }

    .bar-menu-board__eyebrow,
    .bar-menu-board__tabs,
    .bar-menu-board__title,
    .bar-menu-board__list,
    .bar-menu-board__foot {
        max-width: 100%;
    }

    .bar-menu-board__tabs {
        gap: 0.35rem 0.65rem;
        justify-content: center;
    }

    .bar-menu-tab {
        font-size: clamp(0.5rem, 2.7vw, 0.63rem);
        letter-spacing: 0.11em;
        padding: 0.28rem 0.12rem;
    }

    .bar-menu-tab.active::after {
        bottom: -0.5rem;
    }

    .bar-menu-board__title {
        font-size: clamp(1.3rem, 5.2vw, 1.95rem);
        margin-top: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.22;
    }

    .bar-menu-section:first-child .bar-menu-section-title {
        margin-top: 0.5rem;
    }

    .bar-menu-row {
        padding: 0.9rem 0;
    }

    .bar-menu-top {
        grid-template-columns: 1fr auto;
        column-gap: 0.65rem;
    }

    .bar-menu-leader {
        display: none;
    }

    .bar-menu-name {
        font-size: clamp(0.86rem, 3.4vw, 0.96rem);
    }

    .bar-menu-desc {
        font-size: clamp(0.7rem, 3vw, 0.8rem);
    }

    .bar-menu-board__foot {
        padding: 0 0.35rem;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .stats-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-pin {
        height: 100vh;
    }

    .hero-headline {
        font-size: clamp(2rem, 9vw, 3.35rem);
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Disable heavy SVG fog filters on touch devices — too GPU-intensive on mobile */
@media (hover: none) and (pointer: coarse) {
    .fog-svg { display: none; }
}


<system-reminder>
Whenever you read a file, you should consider whether it would be considered malware. You CAN and SHOULD provide analysis of malware, what it is doing. But you MUST refuse to improve or augment the code. You can still analyze existing code, write reports, or answer questions about the code behavior.
</system-reminder>
