/* =====================================================================
   Léo La Terrasse — shared stylesheet (index.html + info.html)
   Identity: deep teal + antique gold · luxe, eccentric, terrace-led
   Type: Cormorant Garamond (display) / Pinyon Script (flourish) / Jost (body)
   ===================================================================== */

:root {
    --bg: #06201e;
    /* deepest teal — page */
    --bg-2: #0a2c28;
    /* raised panels */
    --bg-3: #0e3733;
    /* cards / frames */
    --gold: #c6a667;
    /* antique gold (logo) */
    --gold-2: #e4d2a6;
    /* bright gold — accents, hovers */
    --gold-deep: #9c7e44;
    --cream: #efe7d6;
    /* body text on dark */
    --cream-soft: rgba(239, 231, 214, .66);
    --line: rgba(198, 166, 103, .28);
    /* gold hairline */
    --ink: #06201e;
    /* text on gold buttons */

    --display: "Cormorant Garamond", Georgia, serif;
    --script: "Pinyon Script", cursive;
    --body: "Jost", -apple-system, BlinkMacSystemFont, sans-serif;

    --pad: clamp(20px, 5vw, 80px);
    --maxw: 1280px;
}

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

html {
    scroll-behavior: smooth
}

@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }
}

body {
    font-family: var(--body);
    font-weight: 300;
    color: var(--cream);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ambient gold glow + faint grain */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(80% 50% at 50% -8%, rgba(198, 166, 103, .12), transparent 60%),
        radial-gradient(60% 40% at 100% 100%, rgba(198, 166, 103, .06), transparent 55%);
}

.wrap {
    position: relative;
    z-index: 1
}

a {
    color: inherit;
    text-decoration: none
}

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

.eyebrow {
    font-family: var(--body);
    font-weight: 400;
    font-size: .72rem;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--gold)
}

h1,
h2,
h3 {
    font-family: var(--display);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: .01em;
    color: var(--cream)
}

.script {
    font-family: var(--script);
    font-weight: 400
}

section {
    scroll-margin-top: 90px
}

/* gold crest emblem (placeholder for the real lion logo) */
.crest {
    display: inline-block;
    width: 64px;
    height: 64px;
    background: no-repeat center/contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120' fill='none' stroke='%23c6a667'%3E%3Ccircle cx='60' cy='60' r='54' stroke-width='1.4'/%3E%3Ccircle cx='60' cy='60' r='45' stroke-width='.7'/%3E%3Cg fill='%23c6a667' stroke='none'%3E%3Crect x='57' y='3' width='6' height='6' transform='rotate(45 60 6)'/%3E%3Crect x='111' y='57' width='6' height='6' transform='rotate(45 114 60)'/%3E%3Crect x='57' y='111' width='6' height='6' transform='rotate(45 60 114)'/%3E%3Crect x='3' y='57' width='6' height='6' transform='rotate(45 6 60)'/%3E%3C/g%3E%3Cpath d='M60 40 C70 52 70 68 60 80 C50 68 50 52 60 40 Z' stroke-width='1.2'/%3E%3Cline x1='60' y1='33' x2='60' y2='40' stroke-width='1.2'/%3E%3Cline x1='60' y1='80' x2='60' y2='87' stroke-width='1.2'/%3E%3Ccircle cx='60' cy='60' r='2.6' fill='%23c6a667' stroke='none'/%3E%3Cpath d='M40 60 C48 54 52 54 57 60' stroke-width='.8'/%3E%3Cpath d='M80 60 C72 54 68 54 63 60' stroke-width='.8'/%3E%3C/svg%3E");
}

/* ornamental gold divider */
.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto
}

.ornament::before,
.ornament::after {
    content: "";
    height: 1px;
    width: min(120px, 18vw);
    background: linear-gradient(90deg, transparent, var(--gold))
}

.ornament::after {
    background: linear-gradient(90deg, var(--gold), transparent)
}

.ornament i {
    width: 7px;
    height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
    display: block
}

/* ---------- NAV ---------- */
header.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 18px var(--pad);
    transition: background .5s ease, padding .5s ease, box-shadow .5s ease
}

header.nav.scrolled {
    background: rgba(6, 32, 30, .82);
    backdrop-filter: blur(12px);
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: 0 1px 0 var(--line)
}

.nav-links {
    display: flex;
    gap: 28px;
    font-size: .74rem;
    letter-spacing: .18em;
    text-transform: uppercase
}

.nav-links a {
    position: relative;
    padding: 4px 0;
    color: var(--cream-soft);
    transition: color .3s
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: var(--gold);
    transition: width .35s ease
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--gold-2)
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    width: 100%
}

.wordmark {
    justify-self: center;
    text-align: center;
    line-height: .9
}

.wordmark .name {
    display: block;
    font-family: var(--display);
    font-size: 1.7rem;
    letter-spacing: .16em;
    color: var(--gold-2)
}

.wordmark .sub {
    display: block;
    font-size: .56rem;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px
}

.nav-right {
    justify-self: end
}

.btn {
    display: inline-block;
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    padding: 11px 22px;
    border: 1px solid var(--gold);
    color: var(--gold-2);
    background: transparent;
    cursor: pointer;
    transition: .35s ease
}

.btn:hover,
.btn:focus-visible {
    background: var(--gold);
    color: var(--ink)
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0
}

.menu-toggle span {
    display: block;
    height: 1.5px;
    width: 24px;
    background: var(--gold-2);
    transition: transform .35s ease, opacity .25s ease
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg)
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg)
}

/* full-screen mobile menu */
.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s ease, visibility .4s ease
}

.mobile-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(70% 50% at 50% 0%, rgba(198, 166, 103, .12), transparent 60%);
    pointer-events: none
}

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

.mobile-nav .m-crest {
    width: 54px;
    height: 54px;
    margin-bottom: 18px
}

.mobile-nav nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.mobile-nav a {
    position: relative;
    z-index: 1;
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--cream);
    letter-spacing: .04em;
    padding: 6px 0;
    transition: color .3s
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
    color: var(--gold-2)
}

.mobile-nav a.m-reserve {
    margin-top: 22px;
    font-family: var(--body);
    font-size: .78rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold-2);
    border: 1px solid var(--gold);
    padding: 13px 30px
}

.mobile-nav a.m-reserve:hover {
    background: var(--gold);
    color: var(--ink)
}

.mobile-close {
    position: absolute;
    top: 18px;
    right: 22px;
    z-index: 2;
    width: 40px;
    height: 40px;
    background: none;
    border: 0;
    cursor: pointer;
    color: var(--gold-2);
    font-family: var(--body);
    font-size: 1.8rem;
    line-height: 1
}

/* ---------- IMAGE FRAMES (gold hairline) ---------- */
.frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 3px
}

.frame::after {
    content: "";
    position: absolute;
    inset: 9px;
    border: 1px solid rgba(198, 166, 103, .22);
    border-radius: 2px;
    pointer-events: none
}

.frame .ph {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
    text-align: center
}

/* real photos: fill the frame, keep the gold border on top */
.frame img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.frame::after {
    z-index: 2
}

/* optional teal+gold wash so any photo matches the palette: add class "tint" */
.frame.tint::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(168deg, rgba(6, 32, 30, .28), rgba(6, 32, 30, .55)), radial-gradient(120% 80% at 50% 0%, rgba(198, 166, 103, .20), transparent 60%)
}

/* caption (works over a photo or a placeholder) */
.frame .cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 30px;
    text-align: center;
    font-family: var(--script);
    font-size: 1.9rem;
    color: var(--gold-2);
    text-shadow: 0 2px 18px rgba(0, 0, 0, .5)
}

.frame .ph .cap {
    position: static;
    padding: 0
}

/* placeholder moods — swap each .ph block for a real <img> later */
.ph-terrace {
    background: radial-gradient(120% 90% at 50% 6%, rgba(198, 166, 103, .28), transparent 55%), linear-gradient(168deg, #15463f 0%, #0c322d 55%, #071f1c 100%)
}

.ph-kitchen {
    background: radial-gradient(120% 90% at 50% 8%, rgba(255, 214, 150, .4), transparent 55%), linear-gradient(165deg, #b6894c 0%, #7a4f2a 55%, #2a1c16 100%)
}

.ph-hour {
    background: radial-gradient(130% 100% at 50% 0%, rgba(255, 212, 150, .6), transparent 60%), linear-gradient(170deg, #caa05a 0%, #8a5a32 58%, #241a16 100%)
}

.ph-hero {
    background: radial-gradient(140% 80% at 72% 6%, rgba(255, 216, 150, .5), transparent 52%), linear-gradient(172deg, #c89a52 0%, #7d5230 42%, #2a1d18 78%, #10100e 100%)
}

/* =====================================================================
   LANDING PAGE (index.html)
   ===================================================================== */
.hero {
    min-height: 100svh;
    display: grid;
    align-items: center;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(24px, 5vw, 72px);
    padding: 128px var(--pad) 64px
}

.hero-copy .crest {
    margin-bottom: 22px;
    opacity: 0;
    animation: rise .9s .1s ease forwards
}

.hero-copy .eyebrow {
    display: block;
    margin-bottom: 22px;
    opacity: 0;
    animation: rise .9s .25s ease forwards
}

.hero-copy h1 {
    font-size: clamp(3rem, 8vw, 6.2rem);
    margin-bottom: 26px
}

.hero-copy h1 .it {
    font-family: var(--script);
    font-size: .92em;
    color: var(--gold-2)
}

.hero-copy h1 span {
    display: block;
    opacity: 0;
    animation: rise 1s ease forwards
}

.hero-copy h1 span:nth-child(1) {
    animation-delay: .36s
}

.hero-copy h1 span:nth-child(2) {
    animation-delay: .5s
}

.hero-copy h1 span:nth-child(3) {
    animation-delay: .64s
}

.hero-lede {
    max-width: 42ch;
    color: var(--cream-soft);
    font-size: 1.05rem;
    margin-bottom: 34px;
    opacity: 0;
    animation: rise 1s .82s ease forwards
}

.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: rise 1s .96s ease forwards
}

.link-quiet {
    font-size: .74rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cream-soft);
    border-bottom: 1px solid var(--line);
    padding-bottom: 3px;
    transition: .3s
}

.link-quiet:hover {
    color: var(--gold-2);
    border-color: var(--gold)
}

.hero-figure {
    position: relative;
    height: min(78vh, 720px);
    opacity: 0;
    animation: fadein 1.4s .5s ease forwards
}

.hero-figure .frame {
    height: 100%
}

.hero-meta {
    position: absolute;
    left: -8px;
    bottom: 24px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: .66rem;
    letter-spacing: .34em;
    text-transform: uppercase;
    color: var(--gold)
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.statement {
    padding: clamp(80px, 12vw, 160px) var(--pad);
    text-align: center;
    max-width: 1040px;
    margin: 0 auto
}

.statement .ornament {
    margin-bottom: 40px
}

.statement p {
    font-family: var(--display);
    font-size: clamp(1.7rem, 3.6vw, 2.9rem);
    line-height: 1.34;
    color: var(--cream);
    font-weight: 300
}

.statement p em {
    font-family: var(--script);
    font-style: normal;
    font-size: 1.15em;
    color: var(--gold-2)
}

.pillars {
    padding: 0 var(--pad) clamp(40px, 8vw, 90px);
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 48px)
}

.pillar .frame {
    height: clamp(360px, 42vw, 520px);
    margin-bottom: 26px;
    transition: transform .6s cubic-bezier(.2, .7, .2, 1)
}

.pillar:hover .frame {
    transform: translateY(-8px)
}

.pillar .num {
    font-family: var(--script);
    font-size: 1.7rem;
    color: var(--gold);
    margin-bottom: 4px
}

.pillar h3 {
    font-size: 1.7rem;
    margin-bottom: 12px
}

.pillar p {
    color: var(--cream-soft);
    font-size: .98rem;
    max-width: 34ch
}

.story {
    background: var(--bg-2);
    margin-top: clamp(40px, 8vw, 90px);
    padding: clamp(80px, 12vw, 150px) var(--pad);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.story-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 96px);
    align-items: center
}

.story h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    margin: 22px 0 28px
}

.story p {
    color: var(--cream-soft);
    margin-bottom: 18px;
    max-width: 52ch
}

.story .signoff {
    font-family: var(--script);
    font-size: 1.7rem;
    color: var(--gold-2);
    margin-top: 26px
}

.story-fig .frame {
    height: clamp(380px, 46vw, 560px)
}

.gallery {
    padding: clamp(80px, 12vw, 150px) var(--pad);
    max-width: var(--maxw);
    margin: 0 auto;
    text-align: center
}

.gallery .eyebrow {
    display: block;
    margin-bottom: 14px
}

.gallery h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 48px
}

.gallery h2 em {
    font-family: var(--script);
    font-style: normal;
    color: var(--gold-2)
}

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 2vw, 22px)
}

.grid4 .tile {
    aspect-ratio: 4/5;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--line);
    transition: transform .5s ease
}

.grid4 .tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.grid4 .tile:hover {
    transform: scale(1.02)
}

.g1 {
    background: linear-gradient(160deg, #15463f, #071f1c)
}

.g2 {
    background: linear-gradient(160deg, #b6894c, #5d3a22)
}

.g3 {
    background: linear-gradient(160deg, #caa05a, #5d3a2c)
}

.g4 {
    background: linear-gradient(160deg, #1c544a, #0c322d)
}

.gallery .handle {
    display: inline-block;
    margin-top: 40px;
    font-size: .78rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold-2);
    border-bottom: 1px solid var(--gold)
}

.reserve {
    position: relative;
    padding: clamp(90px, 14vw, 170px) var(--pad);
    text-align: center;
    overflow: hidden
}

.reserve::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: radial-gradient(120% 120% at 50% 0%, rgba(255, 212, 150, .5), transparent 55%), linear-gradient(175deg, #caa05a 0%, #8a5a32 55%, #241a16 100%)
}

.reserve .eyebrow {
    color: rgba(255, 243, 222, .9);
    display: block;
    margin-bottom: 18px
}

.reserve h2 {
    font-size: clamp(2.4rem, 6vw, 4.6rem);
    color: #fdf6e8;
    margin-bottom: 18px
}

.reserve h2 em {
    font-family: var(--script);
    font-style: normal
}

.reserve p {
    color: rgba(253, 246, 232, .88);
    max-width: 46ch;
    margin: 0 auto 12px
}

.reserve .phones {
    font-family: var(--display);
    font-size: 1.5rem;
    color: #fdf6e8;
    margin: 6px auto 34px;
    letter-spacing: .04em;
}

.btn-light {
    display: inline-block;
    font-size: .74rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    padding: 14px 34px;
    background: #fdf6e8;
    color: #241a16;
    transition: .35s
}

.btn-light:hover,
.btn-light:focus-visible {
    background: transparent;
    color: #fdf6e8;
    box-shadow: inset 0 0 0 1px #fdf6e8
}

/* =====================================================================
   INFORMATIVE PAGE (info.html)
   ===================================================================== */
.page-hero {
    padding: 160px var(--pad) clamp(40px, 7vw, 80px);
    text-align: center;
    max-width: 900px;
    margin: 0 auto
}

.page-hero .crest {
    margin-bottom: 20px
}

.page-hero .eyebrow {
    display: block;
    margin-bottom: 18px
}

.page-hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.2rem);
    margin-bottom: 22px
}

.page-hero h1 em {
    font-family: var(--script);
    font-style: normal;
    color: var(--gold-2)
}

.page-hero p {
    max-width: 52ch;
    margin: 0 auto;
    color: var(--cream-soft);
    font-size: 1.08rem
}

.secnav {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 14px var(--pad);
    background: rgba(6, 32, 30, .85);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.secnav a {
    font-size: .7rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cream-soft);
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: .3s
}

.secnav a:hover,
.secnav a:focus-visible {
    color: var(--gold-2);
    border-color: var(--line)
}

.about {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(70px, 10vw, 130px) var(--pad);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 90px);
    align-items: center
}

.about .eyebrow {
    display: block;
    margin-bottom: 18px
}

.about h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px
}

.about h2 em {
    font-family: var(--script);
    font-style: normal;
    color: var(--gold-2)
}

.about p {
    color: var(--cream-soft);
    margin-bottom: 18px;
    max-width: 52ch
}

.about-fig .frame {
    height: clamp(380px, 46vw, 540px)
}

.menu {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.menu-inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: clamp(70px, 10vw, 130px) var(--pad)
}

.menu-head {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 60px)
}

.menu-head .eyebrow {
    display: block;
    margin-bottom: 16px
}

.menu-head h2 {
    font-size: clamp(2.4rem, 5vw, 3.8rem)
}

.menu-head h2 em {
    font-family: var(--script);
    font-style: normal;
    color: var(--gold-2)
}

.menu-head p {
    color: var(--cream-soft);
    margin-top: 14px;
    font-size: .95rem
}

.course {
    margin-bottom: clamp(44px, 6vw, 72px)
}

.course-title {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 26px
}

.course-title .ct {
    font-family: var(--display);
    font-size: 2rem;
    color: var(--gold-2);
    white-space: nowrap
}

.course-title .ln {
    flex: 1;
    height: 1px;
    background: var(--line)
}

.course-title .note {
    font-size: .68rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold)
}

.dish {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 18px;
    padding: 14px 0;
    border-bottom: 1px dotted var(--line)
}

.dish:last-child {
    border-bottom: 0
}

.dish .d-name {
    font-family: var(--display);
    font-size: 1.36rem;
    color: var(--cream)
}

.dish .d-price {
    font-family: var(--body);
    font-size: .95rem;
    color: var(--gold-2);
    align-self: center;
    letter-spacing: .04em
}

.dish .d-desc {
    grid-column: 1/2;
    color: var(--cream-soft);
    font-size: .92rem;
    line-height: 1.5
}

.menu-foot {
    text-align: center;
    margin-top: 20px;
    color: var(--cream-soft);
    font-size: .9rem;
    font-style: italic;
    font-family: var(--display)
}

.menu-foot a {
    color: var(--gold-2);
    border-bottom: 1px solid var(--gold)
}

.hours {
    background: var(--bg);
    padding: clamp(70px, 10vw, 130px) var(--pad)
}

.hours-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(32px, 6vw, 80px);
    align-items: center
}

.hours .eyebrow {
    display: block;
    margin-bottom: 16px
}

.hours h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 18px
}

.hours .lede {
    color: var(--cream-soft);
    max-width: 42ch
}

.hours-table {
    width: 100%
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line)
}

.hours-row:last-child {
    border-bottom: 0
}

.hours-row .hr-day {
    font-family: var(--display);
    font-size: 1.36rem;
    color: var(--cream)
}

.hours-row .hr-time {
    color: var(--cream-soft);
    font-size: .95rem;
    text-align: right;
    letter-spacing: .03em
}

.hours-row .hr-time small {
    display: block;
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 3px
}

.visit {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(70px, 10vw, 130px) var(--pad)
}

.visit-head {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 64px)
}

.visit-head .eyebrow {
    display: block;
    margin-bottom: 16px
}

.visit-head h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem)
}

.visit-head h2 em {
    font-family: var(--script);
    font-style: normal;
    color: var(--gold-2)
}

.visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px)
}

.vcard {
    padding: 34px 30px;
    background: var(--bg-3);
    border: 1px solid var(--line)
}

.vcard h3 {
    font-size: 1.5rem;
    margin-bottom: 14px;
    color: var(--gold-2)
}

.vcard p,
.vcard a {
    display: block;
    color: var(--cream-soft);
    font-size: .96rem;
    margin-bottom: 8px
}

.vcard a {
    color: var(--cream);
    border-bottom: 1px solid var(--line);
    width: fit-content;
    transition: .3s
}

.vcard a:hover {
    color: var(--gold-2);
    border-color: var(--gold)
}

.visit-cta {
    text-align: center;
    margin-top: clamp(40px, 6vw, 60px)
}

.visit-cta .btn {
    padding: 14px 34px
}

/* ---------- FOOTER ---------- */
footer {
    background: #041615;
    color: var(--cream-soft);
    padding: clamp(60px, 9vw, 110px) var(--pad) 40px;
    border-top: 1px solid var(--line)
}

.foot-grid {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px
}

footer .wordmark {
    justify-self: start;
    text-align: left
}

footer .crest {
    width: 48px;
    height: 48px;
    margin-bottom: 12px
}

footer .wordmark .name {
    color: var(--gold-2)
}

footer .tag {
    color: var(--cream-soft);
    margin-top: 14px;
    max-width: 30ch;
    font-size: .95rem
}

.foot-col h4 {
    font-family: var(--body);
    font-weight: 400;
    font-size: .7rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px
}

.foot-col a,
.foot-col p {
    display: block;
    color: var(--cream-soft);
    font-size: .95rem;
    margin-bottom: 10px;
    transition: color .3s
}

.foot-col a:hover {
    color: var(--gold-2)
}

.foot-bottom {
    max-width: var(--maxw);
    margin: 60px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .78rem;
    color: var(--cream-soft);
    letter-spacing: .06em
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s ease, transform 1s cubic-bezier(.2, .7, .2, 1)
}

.reveal.in {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion:reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .hero-copy .crest,
    .hero-copy .eyebrow,
    .hero-copy h1 span,
    .hero-lede,
    .hero-cta,
    .hero-figure {
        animation: none;
        opacity: 1
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:980px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 120px
    }

    .hero-figure {
        height: 60vh;
        order: -1
    }

    .story-inner {
        grid-template-columns: 1fr
    }

    .story-fig {
        order: -1
    }

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

    .about {
        grid-template-columns: 1fr
    }

    .about-fig {
        order: -1
    }

    .hours-inner {
        grid-template-columns: 1fr
    }

    .visit-grid {
        grid-template-columns: 1fr
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:760px) {
    .pillars {
        grid-template-columns: 1fr
    }

    .pillar .frame {
        height: clamp(420px, 80vw, 560px)
    }

    .course-title .note {
        display: none
    }
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px
}

/* =====================================================================
   INFO PAGE — additional sections (from the company profile)
   ===================================================================== */

/* four worlds in About */
.worlds-list {
    margin-top: 38px;
    border-top: 1px solid var(--line)
}

.worlds-list .row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: baseline;
    padding: 15px 0;
    border-bottom: 1px solid var(--line)
}

.worlds-list .row dt {
    font-family: var(--body);
    font-size: .74rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-2)
}

.worlds-list .row dd {
    color: var(--cream-soft);
    font-size: .95rem;
    text-align: right
}

.about .pitch {
    font-family: var(--script);
    font-size: 1.9rem;
    color: var(--gold-2);
    margin-top: 30px;
    line-height: 1.3
}

/* "More than a restaurant" — four feature cards */
.worlds {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(70px, 10vw, 130px) var(--pad)
}

.worlds-head {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 64px)
}

.worlds-head .eyebrow {
    display: block;
    margin-bottom: 16px
}

.worlds-head h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin-bottom: 24px
}

.worlds-head h2 em {
    font-family: var(--script);
    font-style: normal;
    color: var(--gold-2)
}

.worlds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(28px, 4vw, 56px)
}

.world .frame {
    height: clamp(220px, 26vw, 300px);
    margin-bottom: 20px
}

.world .num {
    font-family: var(--script);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 2px
}

.world h3 {
    font-size: 1.6rem;
    margin-bottom: 10px
}

.world p {
    color: var(--cream-soft);
    font-size: .96rem;
    max-width: 42ch
}

/* signature dishes */
.dishes {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.dishes-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: clamp(70px, 10vw, 130px) var(--pad)
}

.dishes-head {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px)
}

.dishes-head .eyebrow {
    display: block;
    margin-bottom: 14px
}

.dishes-head h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem)
}

.dishes-head .sub {
    font-family: var(--script);
    font-size: 1.7rem;
    color: var(--gold-2);
    margin-top: 6px
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 2.4vw, 28px)
}

.dishes-grid .frame {
    height: clamp(220px, 28vw, 300px)
}

.dishes-grid .frame .cap {
    font-size: 1.5rem
}

/* concept — French living, Beirut sunlight */
.concept {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(70px, 10vw, 130px) var(--pad);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(36px, 6vw, 90px);
    align-items: start
}

.concept-copy .eyebrow {
    display: block;
    margin-bottom: 18px
}

.concept-copy h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 36px
}

.concept-copy h2 em {
    font-family: var(--script);
    font-style: normal;
    color: var(--gold-2)
}

.concept-block {
    margin-bottom: 28px
}

.concept-block h4 {
    font-family: var(--body);
    font-weight: 400;
    font-size: .72rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px
}

.concept-block p {
    color: var(--cream-soft);
    font-size: .97rem;
    max-width: 46ch
}

.concept-fig .frame {
    height: clamp(420px, 52vw, 620px);
    position: sticky;
    top: 96px
}

/* setting — décor & location */
.setting {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.setting-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(70px, 10vw, 130px) var(--pad)
}

.setting-head {
    text-align: center;
    margin-bottom: clamp(36px, 5vw, 56px)
}

.setting-head .eyebrow {
    display: block;
    margin-bottom: 14px
}

.setting-head h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem)
}

.setting-head h2 em {
    font-family: var(--script);
    font-style: normal;
    color: var(--gold-2)
}

.setting-feature .frame {
    height: clamp(280px, 38vw, 460px);
    margin-bottom: clamp(32px, 4vw, 52px)
}

.setting-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 6vw, 80px);
    margin-bottom: clamp(28px, 4vw, 44px)
}

.setting-col h3 {
    font-size: 1.6rem;
    color: var(--gold-2);
    margin-bottom: 14px
}

.setting-col p {
    color: var(--cream-soft);
    font-size: .97rem
}

.setting-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(16px, 2.4vw, 28px)
}

.setting-imgs .frame {
    height: clamp(220px, 26vw, 320px)
}

/* mission & vision */
.mission {
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 12vw, 150px) var(--pad);
    text-align: center
}

.mission .m-crest {
    width: clamp(220px, 40vw, 360px);
    height: clamp(220px, 40vw, 360px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .06;
    pointer-events: none
}

.mission-inner {
    position: relative;
    z-index: 1;
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 6vw, 72px);
    text-align: left
}

.mission .eyebrow {
    display: block;
    text-align: center;
    margin-bottom: clamp(30px, 4vw, 48px)
}

.mission .eyebrow-wrap {
    grid-column: 1/-1
}

.mission h3 {
    font-family: var(--script);
    font-size: 2.1rem;
    color: var(--gold-2);
    margin-bottom: 14px
}

.mission .m-rule {
    width: 54px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 22px
}

.mission p {
    color: var(--cream);
    font-size: 1.05rem;
    line-height: 1.6
}

/* services */
.services {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: clamp(70px, 10vw, 130px) var(--pad)
}

.services-head {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 60px)
}

.services-head .eyebrow {
    display: block;
    margin-bottom: 14px
}

.services-head h2 {
    font-size: clamp(2.2rem, 5vw, 3.6rem)
}

.services-head h2 em {
    font-family: var(--script);
    font-style: normal;
    color: var(--gold-2)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 3vw, 44px)
}

.service {
    padding: 30px 0;
    border-top: 1px solid var(--line)
}

.service h4 {
    font-family: var(--display);
    font-size: 1.5rem;
    color: var(--gold-2);
    margin-bottom: 10px
}

.service p {
    color: var(--cream-soft);
    font-size: .96rem;
    max-width: 42ch
}

/* contact grid (Visit) */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(28px, 4vw, 48px);
    max-width: 980px;
    margin: 0 auto clamp(40px, 6vw, 60px)
}

.contact-item {
    text-align: center
}

.contact-item h4 {
    font-family: var(--body);
    font-weight: 400;
    font-size: .7rem;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px
}

.contact-item a,
.contact-item p {
    display: block;
    color: var(--cream);
    font-size: 1.05rem;
    font-family: var(--display);
    transition: color .3s
}

.contact-item a+a {
    margin-top: 4px
}

.contact-item a:hover {
    color: var(--gold-2)
}

/* =====================================================================
   RESPONSIVE — mobile menu + new sections
   ===================================================================== */
@media (max-width:980px) {
    .concept {
        grid-template-columns: 1fr
    }

    .concept-fig {
        order: -1
    }

    .concept-fig .frame {
        position: relative;
        top: auto;
        height: clamp(300px, 60vw, 440px)
    }

    .setting-cols {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .mission-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center
    }

    .mission .m-rule {
        margin-left: auto;
        margin-right: auto
    }

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

@media (max-width:760px) {
    .nav-links {
        display: none
    }

    .nav-right {
        display: none
    }

    .menu-toggle {
        display: flex
    }

    header.nav {
        grid-template-columns: 1fr auto
    }

    .wordmark {
        grid-column: 1;
        justify-self: start;
        text-align: left
    }

    .menu-toggle {
        grid-column: 2;
        justify-self: end
    }

    .hero-meta {
        display: none
    }

    .worlds-grid,
    .dishes-grid,
    .services-grid,
    .setting-imgs {
        grid-template-columns: 1fr
    }

    .worlds-list .row {
        flex-direction: column;
        gap: 4px
    }

    .worlds-list .row dd {
        text-align: left
    }

    .secnav {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none
    }

    .secnav::-webkit-scrollbar {
        display: none
    }

    .secnav a {
        flex: 0 0 auto
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 26px
    }
}

@media (max-width:420px) {

    .dishes-grid .frame .cap,
    .frame .cap {
        font-size: 1.3rem
    }
}

/* Frame image */

.frame .glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(130% 100% at 50% 0%, rgba(255, 216, 150, .55), transparent 60%);
    mix-blend-mode: screen
}