@font-face {
    font-family: 'EdwardianScript';
    src: url('fonts/edwardianscriptitc.ttf') format('truetype');
}

:root {
    --cream: #f5f0e8;
    --warm-white: #faf8f4;
    --terracotta: #b85c38;
    --terracotta-dark: #8f3e1f;
    --olive: #6b7c4a;
    --gold: #c9a84c;
    --gold-light: #e8d49a;
    --charcoal: #2a2520;
    --mid: #6b5e52;
    --light-border: rgba(201, 168, 76, 0.25);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 4rem;
    transition: background 0.4s, padding 0.4s;
}

nav.scrolled {
    background: rgba(42, 37, 32, 0.96);
    backdrop-filter: blur(12px);
    padding: 0.9rem 4rem;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gold-light);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.3s;
}

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

.nav-cta {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: var(--terracotta);
    color: #fff !important;
    padding: 0.55rem 1.4rem;
    border-radius: 0;
    transition: background 0.3s !important;
}

.nav-cta:hover {
    background: var(--terracotta-dark) !important;
}

/* ── HAMBURGER MENU ── */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gold-light);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ── MOBILE MENU ── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(42, 37, 32, 0.98);
    backdrop-filter: blur(12px);
    z-index: 99;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

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

.mobile-menu a {
    padding: 1rem 1.2rem;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: color 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu a:hover {
    color: var(--gold-light);
}

.mobile-menu .nav-cta {
    display: block;
    background: var(--terracotta);
    color: #fff;
    text-align: center;
    margin-top: 0.5rem;
    border: none;
    cursor: pointer;
    padding: 0.9rem 1.2rem;
}

.mobile-menu .nav-cta:hover {
    background: var(--terracotta-dark);
}

/* ── HERO ── */
#hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/carousel/668498889_944495018336770_3941264230577801803_n.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(30, 20, 10, 0.72) 0%, rgba(42, 30, 15, 0.5) 60%, rgba(100, 60, 20, 0.25) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    animation: heroIn 1.2s ease both;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.2rem;
    animation: heroIn 1.2s 0.2s ease both;
}

.hero-title {
    font-family: 'EdwardianScript', cursive;
    font-size: clamp(3.6rem, 8vw, 8rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: 0.02em;
    margin-bottom: 1.4rem;
    animation: heroIn 1.2s 0.35s ease both;
}

.hero-title em {
    font-family: 'EdwardianScript', cursive;
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.78);
    max-width: 480px;
    margin: 0 auto 2.4rem;
    animation: heroIn 1.2s 0.5s ease both;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroIn 1.2s 0.65s ease both;
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--terracotta);
    color: #fff;
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.scroll-hint {
    position: absolute;
    bottom: 2.4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: heroIn 1.2s 0.9s ease both;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    animation: lineGrow 2s 1.5s ease infinite;
}

@keyframes lineGrow {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(1.3);
        opacity: 1;
    }
}

/* ── SECTIONS COMMON ── */
section {
    padding: 5.5rem 2rem;
}

.section-label {
    font-size: 0.68rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.7rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 300;
    line-height: 1.15;
}

.divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 1.4rem 0;
}

.divider.centered {
    margin: 1.4rem auto;
}

/* ── ABOUT ── */
#about {
    background: var(--cream);
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
}

.about-accent {
    position: absolute;
    bottom: -1.4rem;
    right: -1.4rem;
    width: 70%;
    height: 70%;
    border: 1px solid var(--gold);
    z-index: -1;
}

.about-text p {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--mid);
    margin-bottom: 1.2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.4rem;
    border-top: 1px solid var(--light-border);
    padding-top: 2rem;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 300;
    color: var(--terracotta);
}

.stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
}

/* ── FEATURES STRIP ── */
#features {
    background: var(--charcoal);
    padding: 3rem 2rem;
}

.features-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.feature-item {
    text-align: center;
    padding: 2rem 1.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
}

.feature-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    line-height: 1.6;
}

/* ── MENU ── */
#menu {
    background: var(--warm-white);
}

.menu-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 2.8rem 0 3.2rem;
    border-bottom: 1px solid var(--light-border);
}

.tab-btn {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--mid);
    position: relative;
    transition: color 0.3s;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.tab-btn.active {
    color: var(--terracotta);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-btn:hover {
    color: var(--terracotta);
}

.menu-panel {
    display: none;
}

.menu-panel.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 4rem;
    text-align: left;
}

.menu-item {
    padding: 1.4rem 0;
    border-bottom: 1px solid var(--light-border);
}

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

.menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
}

.menu-item-price {
    font-size: 0.85rem;
    color: var(--terracotta);
    white-space: nowrap;
    font-weight: 500;
}

.menu-item-desc {
    font-size: 0.82rem;
    color: var(--mid);
    font-weight: 300;
    line-height: 1.6;
}

.menu-note {
    margin-top: 2.4rem;
    font-size: 0.8rem;
    color: var(--mid);
    font-style: italic;
}

/* ── GALLERY ── */
#gallery {
    background: var(--cream);
    padding: 5rem 0;
}

.gallery-header {
    text-align: center;
    padding: 0 2rem 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 260px 260px;
    gap: 6px;
    max-width: 100%;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

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

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

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(42, 37, 32, 0);
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .overlay {
    background: rgba(42, 37, 32, 0.3);
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: var(--charcoal);
}

.testimonials-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-inner .section-title {
    color: var(--cream);
}

.testimonials-inner .section-label {
    color: var(--gold);
}

.testimonials-inner .divider {
    background: var(--gold);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testi-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    text-align: left;
}

.testi-stars {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.testi-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.4rem;
}

.testi-author {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.testi-source {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ── INFO / CTA ── */
#info {
    background: var(--cream);
}

.info-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

.info-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.info-block p,
.info-block li {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--mid);
    list-style: none;
}

.info-block a {
    color: var(--terracotta);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

/* ── RESERVATION BANNER ── */
#reserve {
    position: relative;
    padding: 7rem 2rem;
    text-align: center;
    overflow: hidden;
}

.reserve-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=80') center/cover no-repeat;
}

.reserve-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20, 12, 5, 0.82), rgba(30, 18, 8, 0.88));
}

.reserve-content {
    position: relative;
}

.reserve-content .section-label {
    color: var(--gold-light);
}

.reserve-content .section-title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    max-width: 600px;
    margin: 0 auto;
}

.reserve-content .divider {
    background: var(--gold);
}

.reserve-content p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    max-width: 480px;
    margin: 1rem auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

/* ── FOOTER ── */
footer {
    background: #1a1410;
    padding: 3rem 2rem 2rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--gold-light);
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-links a {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
    text-wrap: nowrap;
}

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

.footer-copy {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.2);
}

/* ── ANIMATIONS ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── MOBILE ── */
@media (max-width: 860px) {
    nav {
        padding: 1rem 1.5rem;
    }

    nav.scrolled {
        padding: 0.8rem 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-accent {
        display: none;
    }

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

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

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

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

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

    .info-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    section {
        padding: 3.5rem 1.5rem;
    }

    nav {
        padding: 0.9rem 1rem;
    }

    nav.scrolled {
        padding: 0.8rem 1rem;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: clamp(4rem, 8vw, 8rem);
    }

    .hero-sub {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    }

    .menu-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        border-bottom: none;
    }

    .tab-btn {
        padding: 0.7rem 1rem;
        font-size: 0.65rem;
    }

    .features-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 200px;
        gap: 4px;
    }

    .gallery-item:first-child {
        grid-column: span 1;
        grid-row: span 1;
    }

    .info-block {
        text-align: center;
    }

    .info-block .divider {
        margin: 1rem auto;
    }

    .testi-card {
        padding: 1.5rem;
    }

    .reserve-content .section-title {
        font-size: clamp(1.4rem, 3vw, 2rem);
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }
}