/* ==========================================================================
   KEMPT & SAFT — Premium Burger Landing Page
   Dark Cinematic Editorial Style · Allgäuer Handwerk
   ========================================================================== */

/* ---------- 1. Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:root {
    /* Brand Colors — Dark Cinematic Burger Palette */
    --ink:           #0a0807;   /* deepest black-brown */
    --ink-2:         #14100d;   /* slightly lifted */
    --ink-3:         #1f1814;   /* card surface */
    --ink-4:         #2a221c;   /* hover surface */

    --cream:         #f6efe3;   /* warm off-white */
    --cream-soft:    #ebe1cf;
    --cream-mute:    rgba(246, 239, 227, 0.7);
    --cream-dim:     rgba(246, 239, 227, 0.5);
    --cream-faint:   rgba(246, 239, 227, 0.12);

    --amber:         #d4a056;   /* signature warm gold */
    --amber-bright:  #e8b969;
    --amber-deep:    #a67838;
    --ember:         #c44a2b;   /* accent red-orange */

    /* Functional */
    --line:          rgba(246, 239, 227, 0.1);
    --line-strong:   rgba(246, 239, 227, 0.2);

    /* Typo */
    --font-display:  'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing scale */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 9rem;

    /* Radii */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 32px;

    /* Easing */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Layout */
    --max-w: 1280px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

body {
    font-family: var(--font-body);
    background: var(--ink);
    color: var(--cream);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    font-feature-settings: "ss01", "cv11";
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--amber); color: var(--ink); }

/* ---------- 2. Layout helpers ---------- */
.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

/* Section base */
section {
    position: relative;
    padding: var(--space-3xl) 0;
}

@media (max-width: 768px) {
    section { padding: var(--space-2xl) 0; }
}

/* ---------- 3. Typography ---------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--amber);
    margin-bottom: 1.5rem;
}

.eyebrow-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(212, 160, 86, 0.15);
}

.section-headline,
.hero-headline,
.final-headline {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--cream);
    font-variation-settings: "opsz" 96, "SOFT" 100;
}

.hero-headline {
    font-size: clamp(2.75rem, 7vw, 6rem);
    margin-bottom: 1.5rem;
}

.section-headline {
    font-size: clamp(2rem, 4.5vw, 3.75rem);
    margin-bottom: 1.5rem;
}

.final-headline {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
}

.hero-headline em,
.section-headline em,
.final-headline em {
    font-style: italic;
    color: var(--amber);
    font-weight: 500;
}

.hero-headline .accent { color: var(--cream-soft); }

.section-lead {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: var(--cream-mute);
    max-width: 56ch;
    margin-bottom: 2.5rem;
    line-height: 1.55;
}

.section-head { margin-bottom: 4rem; }
.section-head-center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.section-head-center .section-lead { margin-left: auto; margin-right: auto; }

/* ---------- 4. Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn i { font-size: 0.85em; transition: transform 0.4s var(--ease-out); }

.btn-primary {
    background: var(--amber);
    color: var(--ink);
    box-shadow: 0 8px 24px -8px rgba(212, 160, 86, 0.55), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
    background: var(--amber-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px -8px rgba(212, 160, 86, 0.7), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-primary:hover i { transform: translateX(4px); }

.btn-ghost {
    background: transparent;
    color: var(--cream);
    border-color: var(--line-strong);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    border-color: var(--cream);
    background: rgba(246, 239, 227, 0.06);
    transform: translateY(-2px);
}

.btn-ghost:hover i { transform: translateX(2px); }

.btn-lg { padding: 1.1rem 1.9rem; font-size: 1rem; }
.btn-sm { padding: 0.65rem 1.15rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--amber);
    font-weight: 500;
    font-size: 0.95rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(212, 160, 86, 0.3);
    transition: all 0.3s var(--ease-out);
}
.btn-link:hover { color: var(--amber-bright); border-color: var(--amber-bright); gap: 0.85rem; }
.btn-link i { font-size: 0.8em; transition: transform 0.3s var(--ease-out); }

/* ---------- 5. Loadingscreen ---------- */
.loader {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out), visibility 0.8s var(--ease-out);
}

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

.loader-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: loaderFade 0.8s var(--ease-out) 0.1s forwards;
}

.loader-mark {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 600;
    color: var(--cream);
    letter-spacing: -0.04em;
    line-height: 1;
}

.loader-mark .amp {
    color: var(--amber);
    font-style: italic;
    font-weight: 500;
    padding: 0 0.05em;
}

.loader-line {
    width: 0;
    height: 1px;
    background: var(--amber);
    animation: loaderLine 1.2s var(--ease-out) 0.6s forwards;
}

.loader-claim {
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cream-mute);
    opacity: 0;
    animation: loaderFade 0.8s var(--ease-out) 0.9s forwards;
}

.loader-progress {
    width: 180px;
    height: 1px;
    background: var(--cream-faint);
    overflow: hidden;
    border-radius: 1px;
}

.loader-progress-bar {
    display: block;
    width: 0;
    height: 100%;
    background: var(--amber);
    animation: loaderProgress 1.8s var(--ease-in-out) 0.4s forwards;
}

@keyframes loaderFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes loaderLine {
    to { width: 80px; }
}
@keyframes loaderProgress {
    to { width: 100%; }
}

/* ---------- 6. Header / Nav ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease-out);
}

.site-header.is-scrolled {
    background: rgba(10, 8, 7, 0.75);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid var(--line);
    padding: 0.85rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--cream);
}

.brand-mark {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
    color: var(--cream);
}
.brand-mark .amp {
    color: var(--amber);
    font-style: italic;
    font-weight: 500;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.brand-name {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream);
}
.brand-sub {
    font-size: 0.65rem;
    color: var(--cream-mute);
    letter-spacing: 0.1em;
    margin-top: 2px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2.25rem;
    list-style: none;
}

.main-nav a {
    font-size: 0.9rem;
    color: var(--cream-mute);
    transition: color 0.3s var(--ease-out);
    position: relative;
    padding: 4px 0;
    font-weight: 400;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--amber);
    transition: all 0.3s var(--ease-out);
    transform: translateX(-50%);
}

.main-nav a:hover {
    color: var(--cream);
}
.main-nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 110;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
    border-radius: 2px;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--ink);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--cream);
    font-weight: 500;
}
.mobile-menu a.btn { font-family: var(--font-body); font-size: 1rem; }

@media (max-width: 900px) {
    .main-nav, .nav-cta { display: none; }
    .nav-toggle { display: flex; }
}

/* ---------- 7. HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    transform: scale(1.05);
    animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
    to { transform: scale(1); }
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(10, 8, 7, 0.95) 0%, rgba(10, 8, 7, 0.75) 35%, rgba(10, 8, 7, 0.2) 65%, rgba(10, 8, 7, 0.5) 100%),
        linear-gradient(to bottom, rgba(10, 8, 7, 0.5) 0%, transparent 30%, transparent 70%, rgba(10, 8, 7, 0.9) 100%);
    z-index: 1;
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0.08;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-text {
    max-width: 720px;
}

.hero-sub {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: var(--cream-mute);
    max-width: 56ch;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2.5rem;
    list-style: none;
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.hero-trust li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--cream-mute);
}
.hero-trust i {
    color: var(--amber);
    font-size: 0.95rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--cream-mute);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--amber) 50%, transparent);
    background-size: 100% 200%;
    animation: scrollLine 2.4s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { background-position: 0% 100%; }
    100% { background-position: 0% -100%; }
}

@media (max-width: 768px) {
    .hero-scroll { display: none; }
    .hero-trust { gap: 1rem 1.5rem; font-size: 0.78rem; }
    .hero-trust li { flex: 1 1 calc(50% - 1rem); min-width: 0; }
}

/* ---------- 8. Marquee ---------- */
.marquee-section {
    padding: 1.5rem 0;
    background: var(--ink-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    animation: marquee 38s linear infinite;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    font-style: italic;
    color: var(--cream-soft);
}

.marquee-track .dot {
    color: var(--amber);
    font-size: 0.6em;
    font-style: normal;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ---------- 9. STORY ---------- */
.story-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

@media (max-width: 900px) {
    .story-grid { grid-template-columns: 1fr; }
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-number small {
    font-size: 0.5em;
    color: var(--cream-mute);
    margin-left: 0.1em;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--cream-mute);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1.4;
}

.story-img-wrap {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}

.story-img-wrap img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    transition: transform 1.4s var(--ease-out);
}
.story-img-wrap:hover img { transform: scale(1.04); }

.story-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--ink);
    color: var(--cream);
    padding: 1rem 1.25rem;
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    box-shadow: 0 12px 30px -10px rgba(0,0,0,0.7);
    border: 1px solid var(--line);
}
.story-badge i { color: var(--amber); font-size: 1.4rem; }
.story-badge span { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream-mute); line-height: 1.3; }
.story-badge strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--cream); font-weight: 600; }

/* ---------- 10. MENU ---------- */
.menu { background: var(--ink-2); }

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    padding: 0.4rem;
    background: var(--ink);
    border-radius: 999px;
    border: 1px solid var(--line);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.menu-tab {
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--cream-mute);
    transition: all 0.35s var(--ease-out);
    letter-spacing: 0.02em;
}
.menu-tab:hover { color: var(--cream); }
.menu-tab.active {
    background: var(--amber);
    color: var(--ink);
    font-weight: 500;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: var(--ink-3);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all 0.5s var(--ease-out);
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 160, 86, 0.35);
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(212, 160, 86, 0.15);
}

.menu-card-feature {
    grid-row: span 1;
    border-color: rgba(212, 160, 86, 0.25);
}

.menu-img-wrap {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--ink-4);
}

.menu-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}
.menu-card:hover .menu-img-wrap img { transform: scale(1.07); }

.menu-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(10, 8, 7, 0.85);
    backdrop-filter: blur(8px);
    color: var(--cream);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    border: 1px solid var(--line);
}
.menu-tag.tag-hot { background: rgba(196, 74, 43, 0.92); border-color: transparent; color: #fff; }
.menu-tag.tag-spicy { background: rgba(212, 160, 86, 0.95); color: var(--ink); border-color: transparent; }

.menu-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.menu-head h3 {
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.menu-price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--amber);
    white-space: nowrap;
    font-feature-settings: "tnum";
}

.menu-body p {
    color: var(--cream-mute);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    flex: 1;
}

.menu-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.menu-meta li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--cream-dim);
    letter-spacing: 0.04em;
}
.menu-meta i { color: var(--amber); font-size: 0.85rem; }

.menu-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--cream-mute);
    font-size: 0.9rem;
}
.menu-note strong { color: var(--cream); font-weight: 500; }

/* Hidden menu cards (filtered) */
.menu-card.is-hidden {
    display: none;
}

/* ---------- 11. QUALITY ---------- */
.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

@media (max-width: 900px) {
    .quality-grid { grid-template-columns: 1fr; }
}

.quality-visual {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
    aspect-ratio: 4/3;
}
.quality-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease-out);
}
.quality-visual:hover img { transform: scale(1.04); }

.quality-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.quality-list li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}
.quality-list li:last-child { border-bottom: none; padding-bottom: 0; }

.quality-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 160, 86, 0.1);
    border: 1px solid rgba(212, 160, 86, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    font-size: 1.15rem;
    transition: all 0.4s var(--ease-out);
}

.quality-list li:hover .quality-icon {
    background: var(--amber);
    color: var(--ink);
    transform: rotate(-5deg) scale(1.05);
}

.quality-list h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}
.quality-list p {
    color: var(--cream-mute);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ---------- 12. TESTIMONIALS ---------- */
.testimonials { background: var(--ink-2); }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.testimonial {
    background: var(--ink-3);
    padding: 2rem;
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    transition: all 0.5s var(--ease-out);
}

.testimonial:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 160, 86, 0.3);
    background: var(--ink-4);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    color: var(--amber);
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

.testimonial blockquote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.45;
    color: var(--cream);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.005em;
    font-style: italic;
    font-variation-settings: "opsz" 24;
}

.testimonial figcaption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}
.testimonial figcaption strong {
    font-weight: 500;
    color: var(--cream);
    font-size: 0.9rem;
}
.testimonial figcaption span {
    font-size: 0.78rem;
    color: var(--cream-dim);
    letter-spacing: 0.04em;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2.5rem;
    background: var(--ink-3);
    border-radius: var(--r-lg);
    border: 1px solid var(--line);
    flex-wrap: wrap;
}

.meta-item { text-align: center; }
.meta-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 500;
    color: var(--amber);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.meta-number small {
    font-size: 0.45em;
    color: var(--cream-mute);
}
.meta-label {
    font-size: 0.85rem;
    color: var(--cream-mute);
    letter-spacing: 0.05em;
}
.meta-divider {
    width: 1px;
    height: 60px;
    background: var(--line);
}

@media (max-width: 600px) {
    .meta-divider { display: none; }
    .testimonial-meta { gap: 2rem; flex-direction: column; }
}

/* ---------- 13. VISIT / RESERVE ---------- */
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: start;
}

@media (max-width: 900px) {
    .visit-grid { grid-template-columns: 1fr; }
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0 2.5rem;
}

.visit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--line);
}
.visit-item:last-child { border-bottom: none; padding-bottom: 0; }

.visit-item i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 160, 86, 0.1);
    border: 1px solid rgba(212, 160, 86, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    font-size: 1rem;
}

.visit-item strong {
    display: block;
    font-weight: 500;
    color: var(--cream);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.4rem;
}
.visit-item span,
.visit-item a {
    color: var(--cream-mute);
    font-size: 0.95rem;
    line-height: 1.55;
}
.visit-item a:hover { color: var(--amber); }

.visit-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Reserve Card */
.reserve-card {
    background: var(--ink-3);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: clamp(1.75rem, 3vw, 2.5rem);
    position: sticky;
    top: 100px;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6);
}

.reserve-head {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}
.reserve-icon {
    display: inline-flex;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--amber);
    color: var(--ink);
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 12px 30px -8px rgba(212, 160, 86, 0.45);
}
.reserve-head h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}
.reserve-head p {
    font-size: 0.9rem;
    color: var(--cream-mute);
}

.reserve-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.form-row-2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 500px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-row label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-row label > span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--cream-mute);
    font-weight: 500;
}
.form-row label > span em { color: var(--cream-dim); font-style: normal; text-transform: none; letter-spacing: 0.02em; font-weight: 400; }

.form-row input,
.form-row select,
.form-row textarea {
    background: var(--ink-2);
    border: 1px solid var(--line);
    padding: 0.85rem 1rem;
    border-radius: var(--r-sm);
    color: var(--cream);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-out);
    width: 100%;
    font-family: var(--font-body);
}

.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--cream-dim); }

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--amber);
    background: var(--ink);
    box-shadow: 0 0 0 3px rgba(212, 160, 86, 0.12);
}

.form-row select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23d4a056' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-row textarea {
    resize: vertical;
    min-height: 70px;
    line-height: 1.5;
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--cream-dim);
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.form-note i { color: var(--amber); }

.reserve-success {
    text-align: center;
    padding: 2rem 1rem;
}
.success-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(212, 160, 86, 0.15);
    color: var(--amber);
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    animation: successPop 0.6s var(--ease-out);
}
@keyframes successPop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.reserve-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.reserve-success p { color: var(--cream-mute); font-size: 0.95rem; }

/* ---------- 14. FAQ ---------- */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--ink-3);
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
}

.faq-item[open] {
    border-color: rgba(212, 160, 86, 0.25);
    background: var(--ink-4);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.4rem 1.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: -0.005em;
    transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--amber); }

.faq-item summary i {
    flex-shrink: 0;
    color: var(--amber);
    font-size: 0.9rem;
    transition: transform 0.4s var(--ease-out);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 160, 86, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.faq-item[open] summary i { transform: rotate(45deg); }

.faq-body {
    padding: 0 1.6rem 1.5rem;
    color: var(--cream-mute);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---------- 15. FINAL CTA ---------- */
.final-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
    padding: 8rem 0;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.final-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}
.final-cta-bg .hero-vignette {
    background: linear-gradient(to bottom, rgba(10, 8, 7, 0.85), rgba(10, 8, 7, 0.7), rgba(10, 8, 7, 0.95));
}

.final-cta-content {
    position: relative;
    max-width: 760px;
    text-align: center;
}

.final-cta-content p {
    color: var(--cream-mute);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.final-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* ---------- 16. FOOTER ---------- */
.site-footer {
    background: var(--ink);
    border-top: 1px solid var(--line);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

@media (max-width: 800px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .brand { margin-bottom: 1.5rem; }
.footer-claim {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--cream-mute);
    line-height: 1.4;
    max-width: 26ch;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--amber);
    margin-bottom: 1.25rem;
}

.footer-col p,
.footer-col a {
    color: var(--cream-mute);
    font-size: 0.92rem;
    line-height: 1.85;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }

.socials {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ink-3);
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--cream-mute);
    transition: all 0.3s var(--ease-out);
}
.socials a:hover {
    background: var(--amber);
    color: var(--ink);
    border-color: var(--amber);
    transform: translateY(-2px);
}

.footer-tiny { font-size: 0.8rem; color: var(--cream-dim); }

.footer-bottom {
    border-top: 1px solid var(--line);
    padding: 1.75rem 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: var(--cream-dim);
}
.footer-bottom ul {
    display: flex;
    gap: 1.75rem;
    list-style: none;
}
.footer-bottom a {
    font-size: 0.82rem;
    color: var(--cream-dim);
}
.footer-bottom a:hover { color: var(--cream); }

/* ---------- 17. Floating CTA (Mobile) ---------- */
.floating-cta {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    background: var(--amber);
    color: var(--ink);
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.9rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 12px 30px -8px rgba(212, 160, 86, 0.6);
    z-index: 50;
    transition: all 0.3s var(--ease-out);
    transform: translateY(100px);
}

.floating-cta.is-visible {
    transform: translateY(0);
}

.floating-cta:hover {
    background: var(--amber-bright);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .floating-cta { display: inline-flex; }
}

/* ---------- 18. Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .hero-img { animation: none !important; }
    .marquee-track { animation: none !important; }
    .scroll-line { animation: none !important; }
}

/* ---------- 19. Responsive tweaks ---------- */
@media (max-width: 768px) {
    .hero { padding: 7rem 0 4rem; min-height: 90vh; }
    .hero-vignette {
        background:
            linear-gradient(to bottom, rgba(10, 8, 7, 0.6) 0%, rgba(10, 8, 7, 0.5) 40%, rgba(10, 8, 7, 0.85) 80%, rgba(10, 8, 7, 0.98) 100%);
    }
    .hero-img { object-position: 70% center; }

    .section-head { margin-bottom: 3rem; }

    .story-stats { gap: 1rem; }
    .stat { text-align: left; }

    .reserve-card { position: relative; top: 0; }

    .story-img-wrap img { min-height: 360px; }

    .menu-grid { gap: 1.25rem; }
    .menu-body { padding: 1.4rem; }
}

@media (max-width: 480px) {
    .hero-ctas .btn { flex: 1; min-width: 140px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }
    .footer-bottom ul { justify-content: center; }
}
