/* ============================================
   LA PASSERELLE — Premium Showcase Website
   Oriol-en-Royans, Drôme
   ============================================ */

/* --- Custom Properties --- */
:root {
    --color-primary: #2a2a2a;
    --color-primary-light: #3d3d3d;
    --color-accent: #b5543a;
    --color-accent-hover: #9d4530;
    --color-accent-light: #d4795f;
    --color-gold: #c9a96e;
    --color-gold-light: #e2cc9e;
    --color-cream: #faf7f2;
    --color-cream-dark: #f0ebe3;
    --color-white: #ffffff;
    --color-text: #2d2d2d;
    --color-text-light: #6b6b6b;
    --color-text-lighter: #999;
    --color-border: #e8e2d8;
    --color-border-light: #f0ebe3;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Caveat', cursive;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    --nav-height: 72px;
    --container-max: 1200px;
    --container-narrow: 900px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

address {
    font-style: normal;
}

ul {
    list-style: none;
}

::selection {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* Focus visible */
:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

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

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

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

/* Logo typographique */
.nav-logo {
    flex-shrink: 0;
}

.nav-logo-text {
    font-family: var(--font-accent);
    font-size: 1.65rem;
    font-weight: 500;
    color: var(--color-white);
    letter-spacing: 0.01em;
    transition: color var(--transition-base), opacity var(--transition-base);
    white-space: nowrap;
}

.navbar.scrolled .nav-logo-text {
    color: var(--color-primary);
}

.nav-logo:hover .nav-logo-text {
    opacity: 0.75;
}

/* Menu premium avec séparateurs */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-separator {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.2);
    margin: 0 4px;
    transition: background var(--transition-base);
}

.navbar.scrolled .nav-separator {
    background: var(--color-border);
}

.nav-link {
    padding: 8px 14px;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color var(--transition-base);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-base);
}

.navbar.scrolled .nav-link {
    color: var(--color-text-light);
}

.nav-link:hover {
    color: var(--color-white);
}

.nav-link.active {
    color: var(--color-gold-light);
}

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

.navbar.scrolled .nav-link:hover {
    color: var(--color-primary);
}

.navbar.scrolled .nav-link.active {
    color: var(--color-accent);
}

.navbar.scrolled .nav-link.active::after {
    background: var(--color-accent);
}

/* CTA Réserver */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-cta:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.6);
}

.navbar.scrolled .nav-cta {
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.navbar.scrolled .nav-cta:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

/* Hamburger */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-white);
    border-radius: 2px;
    position: relative;
    transition: background var(--transition-fast);
}

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--color-text);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform var(--transition-base), width var(--transition-base);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; width: 16px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: translateY(7px) rotate(45deg);
    background: var(--color-text);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--color-text);
    width: 100%;
}

/* --- Hero Cinématique --- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Image de fond avec Ken Burns + parallax */
.hero-bg {
    --parallax-y: 0px;
    position: absolute;
    inset: -30px;
    z-index: 0;
    animation: kenBurns 25s ease-in-out infinite alternate;
    transform: translateY(var(--parallax-y));
    will-change: transform;
}

@keyframes kenBurns {
    0% {
        transform: translateY(var(--parallax-y)) scale(1);
    }
    100% {
        transform: translateY(var(--parallax-y)) scale(1.08) translate(-0.5%, -1%);
    }
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

/* Overlay cinématique multi-couches */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Gradient principal : sombre en haut (nav lisible) + centre dégagé + bas sombre */
    background:
        linear-gradient(
            180deg,
            rgba(15, 12, 10, 0.55) 0%,
            rgba(15, 12, 10, 0.25) 35%,
            rgba(15, 12, 10, 0.2) 50%,
            rgba(15, 12, 10, 0.5) 80%,
            rgba(15, 12, 10, 0.7) 100%
        );
}

/* Vignetage cinématique */
.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 75% 70% at 50% 45%,
        transparent 0%,
        rgba(10, 8, 6, 0.35) 100%
    );
}

/* Grain de film */
.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
    pointer-events: none;
    animation: grainShift 0.5s steps(1) infinite;
}

@keyframes grainShift {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-2px, 3px); }
    50% { transform: translate(3px, -1px); }
    75% { transform: translate(-1px, -2px); }
    100% { transform: translate(2px, 1px); }
}

/* Liseré doré décoratif en bas */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    z-index: 3;
    opacity: 0.6;
}

/* Contenu du hero */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 760px;
}

/* Animation d'entrée séquentielle (gérée par JS) */
.hero-content .hero-subtitle,
.hero-content .hero-title,
.hero-content .hero-tagline,
.hero-content .hero-actions {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-content .hero-title {
    transform: translateY(36px) scale(0.96);
    transition-duration: 1.1s;
}

.hero-content .hero-subtitle.hero-visible,
.hero-content .hero-title.hero-visible,
.hero-content .hero-tagline.hero-visible,
.hero-content .hero-actions.hero-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Sous-titre avec filets décoratifs */
.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 20px;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.5;
}

/* Titre manuscrit */
.hero-title {
    font-family: var(--font-accent);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 400;
    line-height: 1;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

/* Petit ornement sous le titre */
.hero-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--color-gold);
    margin: 16px auto 0;
    opacity: 0.6;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(181, 84, 58, 0.3);
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    box-shadow: 0 6px 24px rgba(181, 84, 58, 0.4);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.45);
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce-subtle 2.5s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-scroll-hint.hero-visible {
    opacity: 1;
    animation: bounce-subtle 2.5s ease-in-out 0.5s infinite;
}

.hero-scroll-hint:hover {
    color: rgba(255,255,255,0.8);
}

@keyframes bounce-subtle {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* --- Welcome Strip --- */
.welcome-strip {
    background: var(--color-primary);
    padding: 20px 0;
    overflow: hidden;
}

.welcome-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.welcome-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-cream);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.welcome-item svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-left {
    text-align: left;
}

.section-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 500;
    color: var(--color-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-header-left .section-divider {
    margin-left: 0;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- About --- */
.section-about {
    background: var(--color-white);
}

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

.about-text {
    padding-right: 20px;
}

.about-lead {
    font-size: 1.1875rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.about-text p {
    margin-bottom: 18px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.about-signature {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.signature-name {
    font-family: var(--font-accent);
    font-size: 1.75rem;
    color: var(--color-accent);
}

.signature-role {
    font-size: 0.8125rem;
    color: var(--color-text-lighter);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-images {
    position: relative;
    height: 520px;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img:hover img {
    transform: scale(1.03);
}

.about-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 75%;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 52%;
    height: 55%;
    border: 5px solid var(--color-white);
}

/* --- Features --- */
.section-features {
    background: var(--color-cream);
    padding: 80px 0;
}

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

.feature-card {
    background: var(--color-white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border: 1px solid var(--color-border-light);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(181,84,58,0.08), rgba(201,169,110,0.08));
    border-radius: 50%;
    color: var(--color-accent);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- Menu / Carte --- */
.section-menu {
    background: var(--color-white);
}

.menu-showcase {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 48px;
    align-items: start;
}

.menu-card-featured {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--color-border);
}

.menu-card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    z-index: 2;
}

.menu-card-img {
    height: 260px;
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.menu-card-content {
    padding: 32px 28px;
}

.menu-card-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.menu-price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 12px;
    line-height: 1;
}

.menu-price span {
    font-size: 1.25rem;
}

.menu-detail {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.menu-items li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.menu-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
    flex-shrink: 0;
}

.menu-note {
    font-size: 0.8125rem;
    color: var(--color-text-lighter);
    font-style: italic;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

/* Dishes */
.menu-dishes-title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 28px;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.dish-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--color-cream);
    border: 1px solid var(--color-border-light);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.dish-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.dish-img {
    height: 180px;
    overflow: hidden;
}

.dish-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dish-card:hover .dish-img img {
    transform: scale(1.06);
}

.dish-info {
    padding: 20px;
}

.dish-info h4 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-primary);
}

.dish-info p {
    font-size: 0.8125rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Menu Evening */
.menu-evening {
    margin-top: 48px;
    padding: 36px 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.evening-content h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--color-gold-light);
    margin-bottom: 8px;
}

.evening-content p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.evening-note {
    font-size: 0.8125rem !important;
    font-style: italic;
    opacity: 0.7;
    margin-top: 8px;
}

.menu-evening .btn-primary {
    flex-shrink: 0;
}

/* --- Gallery --- */
.section-gallery {
    background: var(--color-cream);
}

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

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 16px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: var(--color-white);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* --- Reviews --- */
.section-reviews {
    background: var(--color-white);
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    gap: 3px;
    color: var(--color-gold);
}

.star-partial {
    opacity: 0.5;
}

.reviews-score {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-primary);
}

.reviews-score span {
    font-size: 1rem;
    color: var(--color-text-lighter);
}

.reviews-count {
    font-size: 0.875rem;
    color: var(--color-text-lighter);
}

.reviews-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.reviews-track {
    display: flex;
    gap: 24px;
    overflow: hidden;
    scroll-snap-type: x mandatory;
}

.review-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    border: 1px solid var(--color-border-light);
    transition: opacity var(--transition-base);
}

.review-stars {
    display: flex;
    gap: 3px;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.review-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 24px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-primary);
}

.review-source {
    font-size: 0.8125rem;
    color: var(--color-text-lighter);
    padding-left: 12px;
    border-left: 1px solid var(--color-border);
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.reviews-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    color: var(--color-text-light);
    transition: all var(--transition-fast);
}

.reviews-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(181,84,58,0.04);
}

.reviews-dots {
    display: flex;
    gap: 8px;
}

.reviews-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.reviews-dots .dot.active {
    background: var(--color-accent);
    width: 24px;
    border-radius: 4px;
}

/* --- Hours --- */
.section-hours {
    background: var(--color-cream);
}

.hours-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hours-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 560px;
}

.hours-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hours-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 28px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.hours-day {
    font-weight: 500;
    color: var(--color-primary);
}

.hours-time {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    font-variant-numeric: tabular-nums;
}

.hours-row-highlight .hours-time {
    color: var(--color-accent);
    font-weight: 600;
}

.hours-notes {
    background: var(--color-white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid var(--color-border-light);
}

.hours-notes p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 6px;
}

.hours-notes p:last-child {
    margin-bottom: 0;
}

.hours-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-lighter);
    font-style: italic;
}

/* --- Contact --- */
.section-contact {
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    min-height: 480px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(181,84,58,0.08), rgba(201,169,110,0.08));
    border-radius: var(--radius-md);
    color: var(--color-accent);
    flex-shrink: 0;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact-card address,
.contact-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-link {
    color: var(--color-accent);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-link:hover {
    color: var(--color-accent-hover);
}

.contact-extras {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--color-text-light);
}

.extra-item svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

.contact-map iframe {
    display: block;
}

/* --- CTA --- */
.section-cta {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 30, 0.75);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- Footer --- */
.footer {
    background: var(--color-primary);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-text {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 16px;
    transition: opacity var(--transition-fast);
}

.footer-logo-text:hover {
    opacity: 0.75;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6);
    transition: all var(--transition-fast);
}

.social-link:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(201,169,110,0.08);
}

.footer-brand p {
    font-size: 0.875rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-gold-light);
}

.footer-contact address {
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-contact a {
    color: var(--color-gold-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 0.8125rem;
}

.footer-legal-link {
    color: rgba(255,255,255,0.4);
    transition: color var(--transition-fast);
}

.footer-legal-link:hover {
    color: var(--color-gold-light);
}

/* --- Legal Modal --- */
.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.legal-modal.active {
    opacity: 1;
    visibility: visible;
}

.legal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
}

.legal-content {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.legal-modal.active .legal-content {
    transform: translateY(0);
}

.legal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-text-light);
    border-radius: 50%;
    transition: background var(--transition-fast);
}

.legal-close:hover {
    background: var(--color-cream);
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--color-primary);
}

.legal-body h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 24px;
    margin-bottom: 8px;
}

.legal-body p {
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-white);
    z-index: 10;
    border-radius: 50%;
    transition: background var(--transition-fast);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    border-radius: 50%;
    transition: background var(--transition-fast);
    z-index: 10;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.15);
}

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    color: var(--color-accent);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition-base);
    z-index: 100;
    border: 1px solid var(--color-border);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* --- Animations --- */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animate-in {
    opacity: 1;
    transform: translate(0);
}

[data-animate="stagger"] > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

[data-animate="stagger"].animate-in > * {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="stagger"].animate-in > *:nth-child(1) { transition-delay: 0s; }
[data-animate="stagger"].animate-in > *:nth-child(2) { transition-delay: 0.1s; }
[data-animate="stagger"].animate-in > *:nth-child(3) { transition-delay: 0.2s; }
[data-animate="stagger"].animate-in > *:nth-child(4) { transition-delay: 0.3s; }
[data-animate="stagger"].animate-in > *:nth-child(5) { transition-delay: 0.4s; }
[data-animate="stagger"].animate-in > *:nth-child(6) { transition-delay: 0.5s; }
[data-animate="stagger"].animate-in > *:nth-child(7) { transition-delay: 0.6s; }

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

@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }

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

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

    .menu-card-featured {
        max-width: 420px;
        margin: 0 auto;
    }

    .hours-layout {
        gap: 48px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .section {
        padding: 72px 0;
    }

    /* Nav mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .nav-separator {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        background: var(--color-cream);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 36px 32px;
        gap: 0;
        transform: translateX(100%);
        transition: transform var(--transition-base);
        box-shadow: -12px 0 40px rgba(0,0,0,0.12);
        z-index: 999;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu li[role="none"] {
        display: block;
        width: 100%;
    }

    .nav-link {
        display: block;
        color: var(--color-text);
        font-size: 0.9375rem;
        font-weight: 400;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 16px 0;
        width: 100%;
        border-bottom: 1px solid var(--color-border-light);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--color-accent);
    }

    /* Hero mobile */
    .hero-title {
        font-size: clamp(2.75rem, 12vw, 4.5rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        padding: 14px 28px;
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .hero-scroll-hint {
        display: none;
    }

    /* Welcome */
    .welcome-items {
        gap: 20px;
    }

    .welcome-item {
        font-size: 0.75rem;
    }

    .welcome-item svg {
        width: 20px;
        height: 20px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        padding-right: 0;
    }

    .about-images {
        height: 360px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    /* Menu */
    .dishes-grid {
        grid-template-columns: 1fr;
    }

    .menu-evening {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery-item-wide {
        grid-column: span 2;
    }

    /* Reviews */
    .review-card {
        padding: 28px 24px;
    }

    .review-text {
        font-size: 1rem;
    }

    /* Hours */
    .hours-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hours-image {
        height: 300px;
        order: -1;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 300px;
    }

    /* CTA */
    .section-cta {
        padding: 80px 0;
    }

    .cta-actions {
        flex-direction: column;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    /* Legal */
    .legal-content {
        padding: 32px 24px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 56px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .welcome-items {
        flex-direction: column;
        gap: 12px;
    }

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

    .about-images {
        height: 280px;
    }

    .about-img-main {
        width: 75%;
        height: 70%;
    }

    .about-img-secondary {
        width: 55%;
        height: 50%;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }

    .contact-extras {
        grid-template-columns: 1fr;
    }
}

/* --- Print styles --- */
@media print {
    .navbar,
    .hero-scroll-hint,
    .back-to-top,
    .lightbox,
    .legal-modal,
    .reviews-nav,
    .contact-map,
    .section-cta {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 30px 0;
        break-inside: avoid;
    }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    [data-animate] {
        opacity: 1;
        transform: none;
    }

    [data-animate="stagger"] > * {
        opacity: 1;
        transform: none;
    }
}
