:root {
    --bg: #f8f1e4;
    --bg-strong: #fffaf2;
    --surface: rgba(255, 250, 242, 0.84);
    --surface-strong: #fff8ee;
    --ink: #1f2940;
    --muted: #5c677d;
    --line: rgba(31, 41, 64, 0.12);
    --brand: #f2b441;
    --brand-deep: #dd8d1f;
    --accent: #21507a;
    --accent-soft: #dce9f5;
    --shadow: 0 24px 60px rgba(22, 37, 61, 0.14);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shell: min(1120px, calc(100vw - 32px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(242, 180, 65, 0.38), transparent 28%),
        radial-gradient(circle at 85% 8%, rgba(33, 80, 122, 0.14), transparent 22%),
        linear-gradient(180deg, #fffaf2 0%, #f8f1e4 56%, #f4ead9 100%);
}

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

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

main {
    overflow: clip;
}

.shell {
    width: var(--shell);
    margin: 0 auto;
}

.page-chrome {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(20px);
    background: rgba(255, 248, 238, 0.8);
    border-bottom: 1px solid rgba(31, 41, 64, 0.08);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 88px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.brand-logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(33, 80, 122, 0.16);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-title,
h1,
h2,
h3 {
    font-family: "Fraunces", serif;
}

.brand-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.1;
}

.brand-subtitle {
    color: var(--muted);
    font-size: 0.92rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-link {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
    color: var(--ink);
    background: rgba(33, 80, 122, 0.08);
    transform: translateY(-1px);
}

.site-nav-toggle {
    display: none;
    padding: 12px 16px;
    border: 0;
    border-radius: 999px;
    background: var(--accent);
    color: white;
    font: inherit;
    font-weight: 800;
}

.announcement-bar {
    overflow: hidden;
    border-bottom: 1px solid rgba(221, 141, 31, 0.28);
    background: #fff2c7;
    color: #873c10;
}

.announcement-track {
    padding: 10px 0;
    font-weight: 800;
    text-align: center;
    white-space: nowrap;
}

.announcement-track span {
    display: inline-block;
    padding: 0 32px;
    animation: announcement-scroll 9s ease-in-out infinite alternate;
    animation-play-state: running;
    will-change: transform;
}

.announcement-bar:hover .announcement-track span,
.announcement-bar:focus-within .announcement-track span {
    animation-play-state: paused;
}

@keyframes announcement-scroll {
    from {
        transform: translateX(-24px);
    }

    to {
        transform: translateX(24px);
    }
}

.button,
.button-secondary,
.button-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
    color: white;
    box-shadow: 0 16px 34px rgba(221, 141, 31, 0.3);
}

.button:hover,
.button:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible,
.button-small:hover,
.button-small:focus-visible {
    transform: translateY(-2px);
}

.button-secondary {
    background: rgba(33, 80, 122, 0.08);
    color: var(--accent);
}

.button-small {
    padding: 12px 18px;
    background: var(--accent);
    color: white;
}

.hero,
.page-hero {
    position: relative;
}

.hero {
    padding: 72px 0 32px;
}

.hero-grid,
.page-hero-inner,
.story-grid,
.contact-grid,
.footer-grid {
    display: grid;
    gap: 24px;
}

.hero-grid,
.page-hero-inner,
.story-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.hero-visual,
.story-visual {
    width: min(100%, 420px);
    justify-self: end;
}

.hero-copy,
.page-hero-card,
.hero-card,
.hero-note,
.feature-card,
.value-card,
.menu-card,
.contact-card,
.story-copy,
.story-visual,
.map-frame {
    position: relative;
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-copy,
.page-hero-card,
.hero-note,
.story-copy,
.contact-card,
.value-card {
    border-radius: var(--radius-xl);
    padding: 28px;
}

.hero-card,
.story-visual,
.map-frame {
    border-radius: calc(var(--radius-xl) + 4px);
    overflow: hidden;
}

.hero-card,
.story-visual {
    padding: 24px;
    background: rgba(255, 255, 255, 0.76);
}

.hero-card img,
.story-visual img,
.contact-card img {
    width: min(100%, 320px);
    height: auto;
    aspect-ratio: 270 / 152;
    object-fit: cover;
}

.hero-card img {
    margin: 0 auto;
    border-radius: 24px;
}

.hero-copy h1,
.page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2.7rem, 7vw, 5.2rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.page-hero {
    padding: 56px 0 12px;
}

.page-hero-card {
    align-self: stretch;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lede,
.section-copy,
.feature-card p,
.menu-card p,
.value-card p,
.story-copy p,
.contact-card p,
.footer-copy,
.hero-note p {
    color: var(--muted);
    line-height: 1.75;
}

.hero-actions,
.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.highlight-pill {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 41, 64, 0.08);
}

.highlight-label,
.hero-note-kicker,
.footer-heading,
.value-number {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-note {
    margin-top: -44px;
    margin-left: auto;
    width: min(82%, 320px);
}

.hero-note-kicker,
.value-number {
    color: var(--accent);
}

.hero-glow {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(28px);
    opacity: 0.7;
}

.hero-glow-one {
    inset: 70px auto auto 10%;
    width: 160px;
    height: 160px;
    background: rgba(242, 180, 65, 0.28);
}

.hero-glow-two {
    inset: auto 8% 12px auto;
    width: 200px;
    height: 200px;
    background: rgba(33, 80, 122, 0.16);
}

.section {
    padding: 32px 0 56px;
}

.section-tight {
    padding-top: 0;
}

.section-accent {
    padding-top: 8px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.section-heading h2,
.story-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.feature-grid,
.value-grid,
.menu-grid {
    display: grid;
    gap: 20px;
}

.feature-grid,
.menu-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    justify-content: center;
}

.feature-card,
.menu-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 100%;
}

.feature-card img,
.menu-card img {
    display: block;
    width: min(100%, 270px);
    aspect-ratio: 270 / 152;
    object-fit: cover;
    margin: 24px auto 0;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(31, 41, 64, 0.12);
}

.feature-card-body,
.menu-card-body {
    padding: 20px;
}

.feature-card h3,
.menu-card h2,
.contact-card h2 {
    margin: 0 0 10px;
    font-size: 1.45rem;
}

.value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-copy .button-secondary {
    margin-top: 8px;
}

.story-visual img {
    margin: 0 auto;
    border-radius: 24px;
}

.story-visual-gallery {
    display: grid;
    width: min(100%, 520px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.story-visual-gallery img {
    width: 100%;
    margin: 0;
    border-radius: 18px;
}

.contact-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    align-items: start;
}

.contact-card img {
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
}

.text-link {
    color: var(--accent);
    font-weight: 800;
}

.map-frame iframe {
    width: 100%;
    min-height: 420px;
    border: 0;
}

.site-footer {
    margin-top: 36px;
    padding: 28px 0 40px;
    border-top: 1px solid rgba(31, 41, 64, 0.08);
    background: rgba(248, 241, 228, 0.75);
}

.footer-grid {
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
}

@media (max-width: 1080px) {
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .site-header-inner {
        align-items: start;
        padding: 16px 0;
    }

    .site-nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255, 248, 238, 0.98);
        border: 1px solid rgba(31, 41, 64, 0.08);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .hero-grid,
    .page-hero-inner,
    .story-grid,
    .value-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid,
    .menu-grid {
        grid-template-columns: minmax(0, 320px);
        justify-content: center;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2.3rem, 12vw, 4rem);
    }

    .hero-visual,
    .story-visual {
        width: 100%;
        justify-self: stretch;
    }

    .hero-note {
        width: 100%;
        margin: 16px 0 0;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .announcement-track span {
        white-space: normal;
        animation: none;
    }
}

@media (max-width: 560px) {
    .announcement-track {
        white-space: normal;
        line-height: 1.45;
    }

    .announcement-track span {
        animation: none;
        padding: 0 18px;
    }

    .brand-title {
        font-size: 1rem;
    }

    .brand-subtitle {
        font-size: 0.82rem;
    }

    .hero,
    .page-hero,
    .section,
    .site-footer {
        padding-left: 0;
        padding-right: 0;
    }

    .hero-copy,
    .page-hero-card,
    .hero-note,
    .story-copy,
    .contact-card,
    .value-card,
    .feature-card-body,
    .menu-card-body {
        padding: 22px;
    }
}
