/* =============================================
   CAFE NOIR INDIRANAGAR — Premium Design System
   Célébrer la vie
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,700&family=Lato:wght@300;400;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&display=swap');

/* ── CSS Variables ── */
:root {
    --black: #080808;
    --dark: #111111;
    --dark2: #1a1a1a;
    --dark3: #242424;
    --gold: #c9a84c;
    --gold-light: #e8c96d;
    --gold-dim: #a07a2e;
    --cream: #f5f0e8;
    --cream2: #e8e0d0;
    --white: #ffffff;
    --text-muted: #888888;
    --text-light: #bbbbbb;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-elegant: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Lato', sans-serif;

    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
    --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ── Selection ── */
::selection {
    background: var(--gold);
    color: var(--black);
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

h4 {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

.serif {
    font-family: var(--font-serif);
}

.elegant {
    font-family: var(--font-elegant);
}

.gold {
    color: var(--gold);
}

/* ── Gold Divider ── */
.gold-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
}

.gold-divider.left {
    margin-left: 0;
}

/* ── Section Titles ── */
.section-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-serif);
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

.section-subtitle {
    color: var(--text-light);
    font-family: var(--font-elegant);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 300;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.btn-gold::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.btn-gold:hover::before {
    transform: scaleX(1);
}

.btn-gold span {
    position: relative;
    z-index: 1;
}

.btn-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 0.95rem 2.5rem;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition);
}

.btn-outline:hover {
    color: var(--black);
}

.btn-outline:hover::before {
    transform: scaleY(1);
}

.btn-outline span {
    position: relative;
    z-index: 1;
}

/* ── Navigation ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 5%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar.scrolled {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 5%;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav-logo .logo-main {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    line-height: 1;
}

.nav-logo .logo-sub {
    font-family: var(--font-elegant);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--cream2);
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream2);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-reserve {
    background: var(--gold);
    color: var(--black) !important;
    padding: 0.6rem 1.4rem;
    font-weight: 700 !important;
    transition: background var(--transition) !important;
}

.nav-reserve:hover {
    background: var(--gold-light) !important;
}

.nav-reserve::after {
    display: none !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-hamburger span {
    width: 25px;
    height: 1.5px;
    background: var(--cream);
    transition: var(--transition);
    display: block;
}

.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.nav-mobile {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--cream);
    transition: color var(--transition);
}

.nav-mobile a:hover {
    color: var(--gold);
}

.nav-mobile .mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 5%;
    font-size: 2rem;
    color: var(--cream);
    cursor: pointer;
    background: none;
    border: none;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&q=80');
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(8, 8, 8, 0.85) 0%,
            rgba(8, 8, 8, 0.5) 50%,
            rgba(8, 8, 8, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 5%;
    max-width: 900px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.3s forwards;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s 0.6s forwards;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-tagline {
    font-family: var(--font-elegant);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic;
    color: var(--cream2);
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.9s forwards;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 1.2s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s infinite;
}

/* ── Highlight Strip ── */
.highlights {
    background: var(--dark2);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 2rem 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem 1rem;
    border-right: 1px solid rgba(201, 168, 76, 0.15);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-num {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.highlight-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── Sections ── */
.section {
    padding: 8rem 5%;
}

.section-center {
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ── About Section ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap::before {
    content: '';
    position: absolute;
    inset: -20px -20px 20px 20px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    z-index: 0;
}

.about-image-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ── Signature Dishes ── */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.dish-card {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, 0.1);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.dish-card:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}

.dish-card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.dish-card:hover .dish-card-img {
    transform: scale(1.05);
}

.dish-img-wrap {
    overflow: hidden;
    position: relative;
}

.dish-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--black);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
}

.dish-info {
    padding: 1.8rem;
}

.dish-info h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.dish-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dish-price {
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
}

/* ── Quote Banner ── */
.quote-banner {
    background: var(--dark2);
    padding: 6rem 5%;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    overflow: hidden;
}

.quote-banner::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 5%;
    font-family: var(--font-serif);
    font-size: 20rem;
    color: rgba(201, 168, 76, 0.04);
    line-height: 1;
    pointer-events: none;
}

.quote-text {
    font-family: var(--font-elegant);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--cream);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.5;
}

.quote-attr {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ── Menu Preview ── */
.menu-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    overflow-x: auto;
}

.menu-tab {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 1rem 2rem;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
}

.menu-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.menu-tab:hover {
    color: var(--cream);
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(201, 168, 76, 0.1);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--dark);
    transition: background var(--transition);
}

.menu-item:hover {
    background: var(--dark2);
}

.menu-item-left {
    flex: 1;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--cream);
    margin-bottom: 0.25rem;
}

.menu-item-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.menu-item-price {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
}

.veg-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    margin-right: 0.3rem;
}

.non-veg-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #e53935;
    border-radius: 50%;
    margin-right: 0.3rem;
}

/* ── Gallery ── */
.gallery-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--black);
    background: var(--gold);
    border-color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    grid-auto-rows: 260px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    font-family: var(--font-elegant);
    font-size: 1rem;
    font-style: italic;
    color: var(--cream);
}

/* ── Lightbox ── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--cream);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

/* ── Reservation ── */
.reservation-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.res-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.res-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.res-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--gold);
}

.res-info-item h5 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.res-info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.res-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--cream);
    padding: 1rem 1.2rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ── Hours Table ── */
.hours-grid {
    display: grid;
    gap: 0;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
    font-size: 0.9rem;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row .day {
    color: var(--text-light);
}

.hours-row .time {
    color: var(--gold);
    font-family: var(--font-elegant);
}

.hours-row.today {
    background: rgba(201, 168, 76, 0.05);
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, 0.15);
    padding: 2rem 1.5rem;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.contact-card .icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card h5 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-card a {
    color: var(--text-light);
    transition: color var(--transition);
}

.contact-card a:hover {
    color: var(--gold);
}

.map-container {
    border: 1px solid rgba(201, 168, 76, 0.2);
    height: 400px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(1) contrast(1.1);
}

/* ── Footer ── */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    padding: 5rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .logo-main {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.footer-brand .logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.footer-col h5 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col ul a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col ul a:hover {
    color: var(--cream);
}

.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom span {
    color: var(--gold);
}

/* ── Page Hero ── */
.page-hero {
    height: 55vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.72);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold);
}

/* ── Animations ── */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ── Page About Specific ── */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 8rem;
}

.about-story-grid.reverse {
    direction: rtl;
}

.about-story-grid.reverse>* {
    direction: ltr;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.story-image .img-badge {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 120px;
    height: 120px;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.img-badge .num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.img-badge .label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dark2);
}

/* ── Timeline ── */
.timeline {
    position: relative;
    padding: 4rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.timeline-content {
    padding: 2rem;
    background: var(--dark2);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content:first-child {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content:last-child {
    order: 3;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.timeline-year {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.4;
    position: absolute;
}

.timeline-content h4 {
    font-family: var(--font-serif);
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ── Values ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(201, 168, 76, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.value-card:hover {
    background: var(--dark2);
    border-color: rgba(201, 168, 76, 0.3);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.value-card h4 {
    font-family: var(--font-serif);
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ── Toast ── */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--dark2);
    border: 1px solid var(--gold);
    color: var(--cream);
    padding: 1.2rem 2rem;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
    max-width: 360px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-title {
    font-family: var(--font-serif);
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.toast p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .about-grid,
    .reservation-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
    }

    .highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-item:nth-child(2) {
        border-right: none;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.wide {
        grid-column: span 1;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 40px 1fr;
    }

    .timeline-item .timeline-content:first-child,
    .timeline-empty {
        display: none;
    }
}

@media (max-width: 600px) {
    .highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .dishes-grid {
        grid-template-columns: 1fr;
    }

    .menu-panel.active {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }
}