:root {
    --ink: #1a1410;
    --paper: #f5ede0;
    --paper-deep: #ece0cc;
    --cream: #faf4e8;
    --terracotta: #b5441f;
    --terracotta-deep: #8b3215;
    --ember: #d97b3f;
    --basilico: #4a5a38;
    --gold: #b8893a;
    --ash: #6b5c4d;
    --hairline: rgba(26, 20, 16, 0.15);
    --shadow-warm: 0 30px 80px -30px rgba(139, 50, 21, 0.25);
    --shadow-lift: 0 20px 60px -20px rgba(26, 20, 16, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 18px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* Paper texture overlay - subtle warmth */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(181, 68, 31, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(184, 137, 58, 0.04) 0%, transparent 45%);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.35;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.08'/></svg>");
}

/* Typography */
.display {
    font-family: 'Playfair Display', serif;
}

.serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
}

.sans {
    font-family: 'Inter', -apple-system, sans-serif;
}

/* NAV */
nav.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(245, 237, 224, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hairline);
    transition: padding 0.4s ease;
}

nav.topbar .brand {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.02em;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

nav.topbar .brand .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terracotta);
    display: inline-block;
    transform: translateY(-3px);
}

nav.topbar .brand em {
    font-style: italic;
    font-weight: 400;
    color: var(--terracotta-deep);
}

nav.topbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 38px;
}

nav.topbar ul a {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

nav.topbar ul a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

nav.topbar ul a:hover {
    color: var(--terracotta-deep);
}

nav.topbar ul a:hover::after {
    width: 100%;
}

nav.topbar .reserve-cta {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 22px;
    background: var(--ink);
    color: var(--cream);
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.3s ease;
    white-space: nowrap;
}

nav.topbar .reserve-cta:hover {
    background: var(--terracotta-deep);
    color: var(--cream);
}

nav.topbar .reserve-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
}

/* HERO */
.hero {
    min-height: 100vh;
    padding: 140px 48px 60px;
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}

.hero-left {
    position: relative;
    z-index: 2;
}

.kicker {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.kicker::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--terracotta);
    display: inline-block;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(56px, 8.5vw, 132px);
    line-height: 0.93;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--terracotta-deep);
}

.hero h1 .small {
    display: block;
    font-size: 0.42em;
    font-weight: 500;
    font-style: italic;
    color: var(--ash);
    letter-spacing: 0;
    margin-top: 12px;
    line-height: 1.2;
}

.hero-lede {
    font-size: 22px;
    line-height: 1.55;
    color: var(--ink);
    max-width: 520px;
    margin-bottom: 44px;
    font-weight: 400;
}

.hero-lede strong {
    color: var(--terracotta-deep);
    font-weight: 600;
}

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

.btn {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--cream);
    box-shadow: var(--shadow-warm);
}

.btn-primary:hover {
    background: var(--terracotta-deep);
    transform: translateY(-2px);
    box-shadow: 0 36px 80px -24px rgba(139, 50, 21, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
}

.btn-ghost:hover {
    background: var(--ink);
    color: var(--cream);
}

.hero-phone {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--ash);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.hero-phone:hover {
    border-bottom-color: var(--ash);
}

/* Hero right image */
.hero-right {
    position: relative;
    height: 72vh;
    min-height: 560px;
    z-index: 2;
}

.hero-img-main {
    position: absolute;
    inset: 0;
    background: url('https://images.squarespace-cdn.com/content/v1/66df109a79103c3b13692458/1731083586462-XTXKQRUDAL3V1DCPYH16/SpaccaNapoli2018_1786.png?format=1500w') center/cover no-repeat;
    box-shadow: var(--shadow-lift);
    filter: saturate(1.05) contrast(1.02);
}

.hero-img-small {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 260px;
    background: url('https://images.squarespace-cdn.com/content/v1/66df109a79103c3b13692458/1727555857086-NTUIMHCUJPUU8GPVX7ZG/SpaccaNapoli_Food13699.jpg?format=800w') center/cover no-repeat;
    box-shadow: var(--shadow-lift);
    border: 6px solid var(--paper);
}

.hero-stamp {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    text-align: center;
    font-size: 13px;
    line-height: 1.25;
    padding: 20px;
    box-shadow: var(--shadow-warm);
    transform: rotate(-8deg);
    z-index: 3;
}

.hero-stamp .num {
    display: block;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

/* Marquee */
.marquee-band {
    background: var(--ink);
    color: var(--cream);
    padding: 22px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--terracotta-deep);
    border-bottom: 1px solid var(--terracotta-deep);
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: scroll 36s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.marquee-track span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 26px;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 60px;
}

.marquee-track span::after {
    content: '◉';
    color: var(--terracotta);
    font-style: normal;
    font-size: 14px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* SECTION primer */
section {
    position: relative;
    z-index: 2;
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--terracotta);
}

.section-head {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(40px, 5.5vw, 82px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 30px;
}

.section-head em {
    font-style: italic;
    font-weight: 400;
    color: var(--terracotta-deep);
}

/* STORY */
.story {
    padding: 140px 48px 120px;
    max-width: 1400px;
    margin: 0 auto;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
    align-items: start;
}

.story-intro {
    grid-column: 1 / 7;
}

.story-intro p {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--ink);
}

.story-intro p em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--terracotta-deep);
}

.story-image-stack {
    grid-column: 8 / 13;
    position: relative;
    padding-top: 60px;
}

.story-image-stack .img {
    width: 100%;
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lift);
}

.story-image-stack .img-caption {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--ash);
    margin-top: 16px;
    padding-left: 14px;
    border-left: 2px solid var(--terracotta);
    line-height: 1.4;
}

/* PROFILES - Jon & Ginny */
.profiles {
    padding: 60px 48px 120px;
    max-width: 1400px;
    margin: 0 auto;
}

.profile {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
}

.profile:last-child {
    margin-bottom: 0;
}

.profile.flip {
    grid-template-columns: 1.4fr 1fr;
}

.profile.flip .profile-img {
    order: 2;
}

.profile.flip .profile-text {
    order: 1;
}

.profile-img {
    position: relative;
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lift);
}

.profile-img::before {
    content: '';
    position: absolute;
    inset: -18px;
    border: 1px solid var(--terracotta);
    z-index: -1;
}

.profile-img.wider {
    aspect-ratio: 3/4;
}

.profile-role {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    margin-bottom: 20px;
}

.profile-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.profile-name em {
    font-style: italic;
    font-weight: 400;
    color: var(--terracotta-deep);
    display: block;
}

.profile-text p {
    font-size: 20px;
    line-height: 1.55;
    margin-bottom: 18px;
    color: var(--ink);
}

.profile-text .signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--ash);
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--hairline);
}

.profile-text .signature a {
    color: var(--terracotta-deep);
    text-decoration: none;
    border-bottom: 1px solid var(--terracotta);
}

.quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 140px;
    font-weight: 800;
    color: var(--terracotta);
    line-height: 0.5;
    margin-bottom: 20px;
    opacity: 0.7;
}

/* GALLERY STRIP */
.gallery-strip {
    padding: 40px 0 100px;
    overflow: hidden;
}

.gallery-strip-inner {
    display: flex;
    gap: 20px;
    animation: scrollGallery 60s linear infinite;
    width: max-content;
}

.gallery-strip .gal-img {
    width: 360px;
    height: 440px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    filter: saturate(1.03);
    box-shadow: 0 10px 30px -10px rgba(26, 20, 16, 0.15);
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* MENU */
.menu {
    padding: 140px 48px 120px;
    background: var(--cream);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

.menu-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-header {
    text-align: center;
    margin-bottom: 80px;
}

.menu-header .eyebrow {
    justify-content: center;
}

.menu-header .eyebrow::before {
    content: none;
}

.menu-header p {
    font-size: 20px;
    font-style: italic;
    color: var(--ash);
    max-width: 640px;
    margin: 20px auto 0;
    line-height: 1.5;
}

.menu-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--hairline);
}

.menu-tab {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 10px 18px;
    background: transparent;
    color: var(--ash);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 999px;
    font-weight: 500;
}

.menu-tab:hover {
    color: var(--ink);
}

.menu-tab.active {
    background: var(--ink);
    color: var(--cream);
}

.menu-section {
    display: none;
    animation: fade 0.5s ease;
}

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

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.menu-section-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 32px;
    color: var(--terracotta-deep);
    margin-bottom: 30px;
    text-align: center;
}

.menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px 60px;
}

.menu-list.one-col {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 0 auto;
}

.menu-item {
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--hairline);
}

.menu-item-head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 8px;
}

.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.menu-item-dots {
    flex: 1;
    border-bottom: 1.5px dotted var(--hairline);
    transform: translateY(-5px);
    min-width: 20px;
}

.menu-item-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--terracotta-deep);
    font-weight: 600;
}

.menu-item-desc {
    font-size: 16px;
    color: var(--ash);
    line-height: 1.45;
    font-style: italic;
}

.menu-item.featured {
    background: var(--paper);
    padding: 22px 22px 22px;
    margin: -4px -10px;
    border: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    position: relative;
}

.menu-item.featured::before {
    content: 'OGGI';
    position: absolute;
    top: -8px;
    left: 20px;
    background: var(--terracotta);
    color: var(--cream);
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 0.22em;
    padding: 3px 8px;
    font-weight: 600;
}

.menu-notes {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--hairline);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    font-style: italic;
    color: var(--ash);
    text-align: center;
    line-height: 1.6;
}

.menu-notes p {
    margin-bottom: 8px;
}

.menu-wine-cta {
    text-align: center;
    margin-top: 40px;
}

.menu-wine-cta a {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--terracotta-deep);
    text-decoration: none;
    border-bottom: 1px solid var(--terracotta);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.menu-wine-cta a:hover {
    letter-spacing: 0.03em;
}

/* PRESS */
.press {
    padding: 140px 48px 120px;
    max-width: 1400px;
    margin: 0 auto;
}

.press-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: end;
}

.press-header p {
    font-size: 20px;
    line-height: 1.55;
    color: var(--ash);
    font-style: italic;
}

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

.press-card {
    background: var(--cream);
    padding: 36px 30px;
    border: 1px solid var(--hairline);
    text-decoration: none;
    display: block;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.press-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--terracotta);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

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

.press-card:hover::before {
    transform: scaleY(1);
}

.press-source {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    margin-bottom: 20px;
}

.press-quote {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 24px;
    font-style: italic;
}

.press-link {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.press-card:hover .press-link {
    gap: 14px;
    color: var(--terracotta-deep);
}

/* VISIT */
.visit {
    background: var(--ink);
    color: var(--cream);
    padding: 140px 48px 120px;
    position: relative;
    overflow: hidden;
}

.visit::before {
    content: 'NAPOLI';
    position: absolute;
    bottom: -60px;
    right: -40px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 360px;
    color: rgba(217, 123, 63, 0.06);
    letter-spacing: -0.05em;
    pointer-events: none;
    line-height: 1;
}

.visit-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.visit-left .eyebrow {
    color: var(--ember);
}

.visit-left .eyebrow::before {
    background: var(--ember);
}

.visit-head {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(44px, 6vw, 86px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    color: var(--cream);
}

.visit-head em {
    font-style: italic;
    font-weight: 400;
    color: var(--ember);
}

.visit-address {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--cream);
}

.visit-address .city {
    font-style: italic;
    color: var(--ember);
}

.visit-phone {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 40px;
    color: var(--cream);
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(250, 244, 232, 0.3);
    padding-bottom: 6px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.visit-phone:hover {
    color: var(--ember);
    border-color: var(--ember);
}

.visit-note {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 17px;
    color: rgba(250, 244, 232, 0.65);
    max-width: 440px;
    line-height: 1.5;
    margin-bottom: 36px;
}

.visit-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.visit-ctas .btn-primary {
    background: var(--terracotta);
}

.visit-ctas .btn-primary:hover {
    background: var(--ember);
}

.visit-ctas .btn-ghost {
    color: var(--cream);
    border-color: var(--cream);
}

.visit-ctas .btn-ghost:hover {
    background: var(--cream);
    color: var(--ink);
}

/* Hours panel */
.hours-card {
    background: rgba(250, 244, 232, 0.04);
    border: 1px solid rgba(250, 244, 232, 0.15);
    padding: 44px 40px;
    backdrop-filter: blur(4px);
}

.hours-title {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(250, 244, 232, 0.15);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid rgba(250, 244, 232, 0.08);
    font-family: 'Playfair Display', serif;
}

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

.hours-day {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.hours-time {
    font-size: 17px;
    font-style: italic;
    color: rgba(250, 244, 232, 0.75);
    text-align: right;
}

.hours-row.closed .hours-time {
    color: var(--terracotta);
    font-style: italic;
}

.hours-row.today {
    background: rgba(217, 123, 63, 0.08);
    margin: 0 -20px;
    padding: 14px 20px;
    border-radius: 2px;
}

.hours-row.today .hours-day::before {
    content: '● ';
    color: var(--ember);
    font-size: 12px;
    margin-right: 6px;
}

.hours-note {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(250, 244, 232, 0.15);
    font-size: 14px;
    font-style: italic;
    color: rgba(250, 244, 232, 0.55);
    line-height: 1.5;
}

/* FOOTER */
footer {
    background: var(--paper-deep);
    color: var(--ink);
    padding: 80px 48px 40px;
    position: relative;
    z-index: 2;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--hairline);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 14px;
}

.footer-brand em {
    font-style: italic;
    font-weight: 400;
    color: var(--terracotta-deep);
}

.footer-tag {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--ash);
    max-width: 320px;
    line-height: 1.5;
}

.footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--ink);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--terracotta-deep);
}

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-style: italic;
    color: var(--ash);
    flex-wrap: wrap;
    gap: 14px;
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {
    nav.topbar {
        padding: 18px 28px;
    }

    nav.topbar ul {
        gap: 22px;
    }

    .hero {
        padding: 120px 28px 40px;
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .hero-right {
        height: 60vh;
        min-height: 480px;
    }

    .story,
    .profiles,
    .press,
    .visit,
    .menu,
    footer {
        padding-left: 28px;
        padding-right: 28px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story-intro,
    .story-image-stack {
        grid-column: auto;
    }

    .story-image-stack {
        padding-top: 0;
        max-width: 500px;
    }

    .profile,
    .profile.flip {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .profile.flip .profile-img,
    .profile.flip .profile-text {
        order: initial;
    }

    .profile-img {
        max-width: 500px;
    }

    .menu-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .press-header {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .visit-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    nav.topbar {
        padding: 14px 20px;
    }

    nav.topbar ul.main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: var(--paper) !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 101;
        padding: 80px 30px 40px;
    }

    nav.topbar ul.main-nav::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--paper);
        z-index: -1;
    }

    nav.topbar ul.main-nav.open {
        transform: translateX(0);
    }

    nav.topbar ul.main-nav li a {
        font-size: 15px;
        letter-spacing: 0.22em;
        color: var(--ink);
    }

    nav.topbar ul.main-nav .reserve-cta {
        font-size: 13px;
        padding: 16px 32px;
        margin-top: 12px;
        background: var(--terracotta);
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: var(--paper);
        border: 1px solid var(--hairline);
        cursor: pointer;
        z-index: 101;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        padding: 0;
        transition: all 0.3s ease;
    }

    .nav-toggle:hover {
        border-color: var(--terracotta);
    }

    .nav-toggle span {
        width: 18px;
        height: 1.5px;
        background: var(--ink);
        transition: all 0.3s ease;
        display: block;
    }

    .nav-toggle.active {
        background: var(--ink);
        border-color: var(--ink);
    }

    .nav-toggle.active span {
        background: var(--cream);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 5px);
    }

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

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -5px);
    }

    .hero {
        padding: 100px 20px 40px;
        gap: 50px;
    }

    .hero-lede {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .hero-phone {
        text-align: center;
    }

    .hero-right {
        height: 58vh;
        min-height: 400px;
    }

    .hero-img-small {
        width: 130px;
        height: 170px;
        bottom: -24px;
        left: -20px;
    }

    .hero-stamp {
        width: 100px;
        height: 100px;
        font-size: 11px;
        top: -12px;
        right: -10px;
        padding: 14px;
    }

    .hero-stamp .num {
        font-size: 26px;
    }

    .story,
    .profiles,
    .press,
    .visit,
    .menu,
    footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .menu {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .visit {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .story {
        padding-top: 80px;
        padding-bottom: 60px;
    }

    .press {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .gallery-strip .gal-img {
        width: 260px;
        height: 320px;
    }

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

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .marquee-track span {
        font-size: 19px;
        gap: 40px;
    }

    .visit-phone {
        font-size: 30px;
    }

    .visit::before {
        font-size: 180px;
        bottom: -30px;
    }

    .story-intro p {
        font-size: 18px;
    }

    .profile-text p {
        font-size: 17px;
    }
}

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

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

::selection {
    background: var(--terracotta);
    color: var(--cream);
}

/* ============================================ */
/* PAGE-SPECIFIC STYLES (subpages)               */
/* ============================================ */

/* Sub-page hero - used on menu, press, reserve, order, gifts */
.page-hero {
    padding: 180px 48px 80px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.page-hero .eyebrow {
    margin-bottom: 28px;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(54px, 8vw, 124px);
    line-height: 0.95;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 26px;
}

.page-hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--terracotta-deep);
}

.page-hero .page-lede {
    font-size: 22px;
    line-height: 1.55;
    color: var(--ash);
    max-width: 640px;
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.page-hero .page-lede strong {
    color: var(--terracotta-deep);
    font-weight: 600;
    font-style: normal;
}

/* Page hero variant: with image on right */
.page-hero.with-image {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.page-hero .hero-photo {
    position: relative;
    height: 520px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lift);
}

/* Page content wrapper */
.page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 48px 120px;
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.breadcrumb {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ash);
    margin-bottom: 20px;
    padding-top: 120px;
    padding-left: 48px;
    padding-right: 48px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb a {
    color: var(--ash);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--terracotta-deep);
}

.breadcrumb .sep {
    margin: 0 10px;
    color: var(--hairline);
}

.breadcrumb .current {
    color: var(--ink);
}

/* Breadcrumb removed — the nav's active-page highlight already indicates location.
   Hiding (not removing from DOM) so any link anchors remain valid. */
.breadcrumb {
    display: none;
}

/* Active nav state */
nav.topbar ul.main-nav a.active {
    color: var(--terracotta-deep);
}

nav.topbar ul.main-nav a.active::after {
    width: 100%;
}

/* ==== RESERVE PAGE ==== */
.reserve-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding: 40px 48px 140px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.reserve-call-card {
    background: var(--ink);
    color: var(--cream);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.reserve-call-card::before {
    content: '☎';
    position: absolute;
    top: -40px;
    right: -20px;
    font-size: 280px;
    color: rgba(217, 123, 63, 0.08);
    line-height: 1;
    pointer-events: none;
}

.reserve-call-card .card-kicker {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.reserve-call-card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1;
    margin-bottom: 24px;
    color: var(--cream);
    position: relative;
    z-index: 2;
}

.reserve-call-card h3 em {
    font-style: italic;
    font-weight: 400;
    color: var(--ember);
}

.reserve-call-card p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 19px;
    line-height: 1.5;
    color: rgba(250, 244, 232, 0.7);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.reserve-call-card .big-phone {
    display: block;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 48px;
    color: var(--cream);
    text-decoration: none;
    padding: 22px 0;
    border-top: 1px solid rgba(250, 244, 232, 0.18);
    border-bottom: 1px solid rgba(250, 244, 232, 0.18);
    margin-bottom: 24px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.reserve-call-card .big-phone:hover {
    color: var(--ember);
}

.reserve-call-card .note {
    font-size: 14px;
    font-style: italic;
    color: rgba(250, 244, 232, 0.5);
    position: relative;
    z-index: 2;
}

.reserve-hours {
    background: var(--cream);
    padding: 50px 44px;
    border: 1px solid var(--hairline);
}

.reserve-hours .section-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    margin-bottom: 26px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hairline);
}

.reserve-hours .row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid var(--hairline);
    font-family: 'Playfair Display', serif;
}

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

.reserve-hours .row.closed .time {
    color: var(--terracotta-deep);
    font-style: italic;
}

.reserve-hours .row.today {
    background: rgba(181, 68, 31, 0.07);
    margin: 0 -20px;
    padding: 14px 20px;
}

.reserve-hours .row.today .day::before {
    content: '● ';
    color: var(--terracotta);
    margin-right: 6px;
    font-size: 11px;
}

.reserve-hours .day {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
}

.reserve-hours .time {
    font-size: 17px;
    font-style: italic;
    color: var(--ash);
}

.celebrations {
    background: var(--paper-deep);
    padding: 100px 48px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

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

.celebrations h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.05;
    margin-bottom: 26px;
    letter-spacing: -0.015em;
}

.celebrations h3 em {
    font-style: italic;
    font-weight: 400;
    color: var(--terracotta-deep);
}

.celebrations p {
    font-size: 20px;
    line-height: 1.55;
    color: var(--ink);
    max-width: 680px;
    margin: 0 auto;
}

/* ==== ORDER PAGE ==== */
.order-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    padding: 40px 48px 120px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.order-cta-card {
    padding: 14px;
}

.order-cta-card .eyebrow {
    margin-bottom: 20px;
}

.order-cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.order-cta-card h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--terracotta-deep);
}

.order-cta-card p {
    font-size: 19px;
    line-height: 1.55;
    margin-bottom: 14px;
    color: var(--ink);
}

.order-cta-card .note {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--ash);
    margin-bottom: 36px;
}

.order-hours-inline {
    margin-top: 40px;
    padding: 24px 28px;
    background: var(--cream);
    border-left: 3px solid var(--terracotta);
    border-radius: 0 6px 6px 0;
}

.order-hours-inline .label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    margin-bottom: 10px;
}

.order-hours-inline .line {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: var(--ink);
    line-height: 1.6;
}

.order-hours-inline .line em {
    font-weight: 600;
    font-style: normal;
    color: var(--terracotta-deep);
}

.order-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.order-photo {
    position: relative;
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lift);
}

.order-photo::before {
    content: '';
    position: absolute;
    inset: -18px;
    border: 1px solid var(--terracotta);
    z-index: -1;
}

/* ==== GIFTS PAGE ==== */
.gifts-hero {
    text-align: center;
    padding: 160px 48px 60px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gifts-hero .eyebrow {
    justify-content: center;
}

.gifts-hero .eyebrow::before {
    content: none;
}

.gifts-hero h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(48px, 7vw, 104px);
    line-height: 0.95;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

.gifts-hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--terracotta-deep);
}

.gifts-hero .page-lede {
    font-size: 22px;
    line-height: 1.55;
    color: var(--ash);
    font-style: italic;
    font-family: 'Playfair Display', serif;
    max-width: 640px;
    margin: 0 auto;
}

.gift-card-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 48px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.gift-card-visual {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
    color: var(--cream);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-warm);
    position: relative;
    overflow: hidden;
}

.gift-card-visual::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(250, 244, 232, 0.25);
    pointer-events: none;
}

.gift-card-visual .gc-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.01em;
}

.gift-card-visual .gc-brand em {
    font-weight: 400;
    font-style: italic;
    color: rgba(250, 244, 232, 0.85);
}

.gift-card-visual .gc-caption {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 22px;
    line-height: 1.3;
    max-width: 240px;
}

.gift-card-visual .gc-bottom {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-top: 1px solid rgba(250, 244, 232, 0.25);
    padding-top: 18px;
}

.gift-card-visual .gc-bottom .label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(250, 244, 232, 0.7);
}

.gift-card-visual .gc-bottom .value {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
}

.gift-form h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.gift-form h3 em {
    font-style: italic;
    font-weight: 400;
    color: var(--terracotta-deep);
}

.gift-form p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 17px;
    color: var(--ash);
    line-height: 1.5;
    margin-bottom: 28px;
}

.gift-form .form-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    display: block;
    margin-bottom: 12px;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 30px;
}

.amount-btn {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    padding: 14px 8px;
    border: 1px solid var(--hairline);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--ink);
    font-weight: 500;
}

.amount-btn:hover {
    border-color: var(--terracotta);
    background: rgba(181, 68, 31, 0.04);
}

.amount-btn.selected {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}

.gifts-why {
    background: var(--cream);
    padding: 100px 48px;
    border-top: 1px solid var(--hairline);
    position: relative;
    z-index: 2;
}

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

.gifts-why h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(30px, 4vw, 48px);
    margin-bottom: 60px;
    letter-spacing: -0.015em;
}

.gifts-why h3 em {
    font-style: italic;
    font-weight: 400;
    color: var(--terracotta-deep);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.why-card {
    text-align: center;
}

.why-card .num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 44px;
    color: var(--terracotta);
    line-height: 1;
    margin-bottom: 14px;
    font-weight: 400;
}

.why-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.why-card p {
    font-size: 17px;
    line-height: 1.5;
    color: var(--ash);
}

/* ==== PRESS PAGE — expanded ==== */
.press-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 48px 100px;
    position: relative;
    z-index: 2;
}

.press-featured {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding: 50px;
    background: var(--ink);
    color: var(--cream);
    align-items: center;
    position: relative;
    overflow: hidden;
}

.press-featured::before {
    content: 'BANCHET';
    position: absolute;
    right: -30px;
    bottom: -60px;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 220px;
    color: rgba(217, 123, 63, 0.06);
    letter-spacing: -0.04em;
    pointer-events: none;
    line-height: 1;
}

.press-featured .badge {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.press-featured h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.press-featured h3 em {
    font-style: italic;
    font-weight: 400;
    color: var(--ember);
}

.press-featured p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.5;
    color: rgba(250, 244, 232, 0.75);
    margin-bottom: 28px;
    max-width: 520px;
    position: relative;
    z-index: 2;
}

.press-featured .btn-ember {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 16px 30px;
    background: var(--terracotta);
    color: var(--cream);
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 2;
    width: fit-content;
}

.press-featured .btn-ember:hover {
    background: var(--ember);
    transform: translateY(-2px);
}

.press-featured .featured-num {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: clamp(140px, 18vw, 240px);
    line-height: 0.85;
    color: var(--ember);
    text-align: right;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 2;
}

.press-featured .featured-num em {
    display: block;
    font-style: italic;
    font-weight: 400;
    font-size: 0.18em;
    color: rgba(250, 244, 232, 0.7);
    margin-top: 10px;
    letter-spacing: 0.1em;
}

.press-section-divider {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--terracotta-deep);
    margin: 60px 0 30px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hairline);
    display: flex;
    align-items: center;
    gap: 14px;
}

.press-section-divider::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--terracotta);
}

.press-video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.press-video {
    position: relative;
    aspect-ratio: 16/9;
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--cream);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.press-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(181, 68, 31, 0.3) 0%, rgba(26, 20, 16, 0.9) 100%);
    transition: opacity 0.4s ease;
}

.press-video:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}

.press-video .play-ring {
    width: 64px;
    height: 64px;
    border: 2px solid var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: all 0.4s ease;
}

.press-video:hover .play-ring {
    background: var(--terracotta);
    border-color: var(--terracotta);
    transform: translate(-50%, -50%) scale(1.1);
}

.press-video .play-ring::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 14px solid var(--cream);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 4px;
}

.press-video .video-info {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
}

.press-video .video-source {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 8px;
}

.press-video .video-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.3;
}

/* ==== MENU PAGE — remove cream background since menu is its own page ==== */
body.page-menu .menu {
    background: var(--paper);
    border-top: none;
    border-bottom: none;
    padding-top: 40px;
}

/* Menu page specials upfront */
.menu-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.menu-intro p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--ash);
    line-height: 1.5;
}

/* ==== HOME MENU TEASER (replaces embedded full menu) ==== */
.menu-teaser {
    background: var(--cream);
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    padding: 140px 48px 130px;
    position: relative;
    z-index: 2;
}

.menu-teaser-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.menu-teaser-left .eyebrow {
    margin-bottom: 26px;
}

.menu-teaser h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(44px, 6vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.menu-teaser h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--terracotta-deep);
}

.menu-teaser .lede {
    font-size: 21px;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 36px;
    max-width: 520px;
}

.menu-teaser .lede em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--terracotta-deep);
}

.teaser-pizza-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.teaser-pizza-list li {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px dashed var(--hairline);
}

.teaser-pizza-list .name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.teaser-pizza-list .dots {
    flex: 1;
    border-bottom: 1.5px dotted var(--hairline);
    transform: translateY(-5px);
    min-width: 20px;
}

.teaser-pizza-list .price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--terracotta-deep);
    font-weight: 600;
}

.teaser-pizza-list .desc {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--ash);
    width: 100%;
    line-height: 1.4;
    margin-top: -6px;
    padding-left: 2px;
}

.menu-teaser-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.menu-teaser-right .img {
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lift);
}

.menu-teaser-right .img.tall {
    aspect-ratio: 3/5;
    margin-top: 30px;
}

/* Page media queries */
@media (max-width: 1024px) {
    .page-hero {
        padding: 140px 28px 60px;
    }

    .page-hero.with-image {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .page-hero .hero-photo {
        height: 400px;
    }

    .page-content,
    .press-full {
        padding-left: 28px;
        padding-right: 28px;
    }

    .breadcrumb {
        padding-left: 28px;
        padding-right: 28px;
        padding-top: 100px;
    }

    .reserve-layout,
    .order-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 30px 28px 80px;
    }

    .press-featured {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 30px;
    }

    .press-featured .featured-num {
        text-align: left;
    }

    .press-featured::before {
        font-size: 140px;
    }

    .press-video-grid {
        grid-template-columns: 1fr;
    }

    .gift-card-wrap {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 30px 28px 80px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-teaser {
        padding: 80px 28px;
    }

    .menu-teaser-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .menu-teaser-right .img.tall {
        margin-top: 0;
    }

    .celebrations {
        padding: 70px 28px;
    }

    .gifts-why {
        padding: 70px 28px;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 120px 20px 40px;
    }

    .page-hero h1 {
        font-size: clamp(44px, 11vw, 72px);
    }

    .page-hero .page-lede {
        font-size: 18px;
    }

    .gifts-hero {
        padding: 120px 20px 40px;
    }

    .gifts-hero h1 {
        font-size: clamp(40px, 11vw, 68px);
    }

    .breadcrumb {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 90px;
        font-size: 10px;
    }

    .page-content,
    .press-full {
        padding-left: 20px;
        padding-right: 20px;
    }

    .reserve-layout,
    .order-layout {
        padding: 30px 20px 60px;
    }

    .reserve-call-card {
        padding: 40px 28px;
    }

    .reserve-call-card h3 {
        font-size: 30px;
    }

    .reserve-call-card .big-phone {
        font-size: 34px;
    }

    .reserve-hours {
        padding: 36px 24px;
    }

    .celebrations {
        padding: 60px 20px;
    }

    .gifts-why {
        padding: 60px 20px;
    }

    .press-featured {
        padding: 30px 22px;
    }

    .press-featured::before {
        font-size: 100px;
    }

    .gift-card-wrap {
        padding: 30px 20px 60px;
    }

    .gift-card-visual {
        padding: 28px;
    }

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

/* =====================================================
   FILM SECTION (home page) — 10 year anniversary video
   ===================================================== */
.film-section {
    background: var(--paper);
    padding: 100px 48px 120px;
    position: relative;
}

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

.film-inner .eyebrow {
    justify-content: center;
}

.film-head {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    color: var(--ink);
    margin: 10px 0 18px;
    letter-spacing: -0.01em;
}

.film-head em {
    font-style: italic;
    font-weight: 500;
    color: var(--terracotta-deep);
}

.film-lede {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 19px;
    color: var(--ash);
    max-width: 680px;
    margin: 0 auto 44px;
    line-height: 1.55;
}

.film-frame {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    background: #000;
}

.film-frame video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
}

.film-caption {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--ash);
    margin-top: 22px;
}

/* =====================================================
   FOOTER SOCIAL COLUMN
   ===================================================== */
.footer-social-row {
    display: flex;
    gap: 10px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.footer-social-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    border: 1px solid var(--hairline);
    border-radius: 50%;
    color: var(--ink);
    background: transparent;
    transition: all 0.3s ease;
}

.footer-social-row a:hover {
    background: var(--terracotta-deep);
    border-color: var(--terracotta-deep);
    color: var(--cream);
    transform: translateY(-2px);
}

.footer-social-row a svg {
    width: 16px;
    height: 16px;
    display: block;
}

.footer-email-link {
    display: inline-block !important;
    margin-top: 14px !important;
    padding-top: 14px;
    border-top: 1px solid var(--hairline);
    font-style: italic;
    color: var(--ash) !important;
    font-size: 15px !important;
}

.footer-email-link:hover {
    color: var(--terracotta-deep) !important;
}

/* =====================================================
   MOBILE TWEAKS for new sections
   ===================================================== */
@media (max-width: 640px) {
    .film-section {
        padding: 70px 20px 80px;
    }

    .film-lede {
        font-size: 17px;
    }
}