:root {
    --bg: #01623a;
    --bg-deep: #004d2e;
    --bg-deeper: #013825;
    --accent: #956933;
    --accent-soft: #b8844a;
    --cream: #f3ebe0;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.72);
    --line: rgba(255, 255, 255, 0.14);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    --radius: 18px;
    --font-display: "Anton", sans-serif;
    --font-body: "Montserrat", sans-serif;
    --max: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(149, 105, 51, 0.22), transparent 55%),
        radial-gradient(900px 500px at 100% 0%, rgba(0, 0, 0, 0.25), transparent 50%),
        var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: #000;
    color: #fff;
    padding: 0.75rem 1rem;
    z-index: 100;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-soft);
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.anton-title,
.giant-text,
.main-title,
.footer-logo,
.menu-header h2,
.menu-item h3,
.coffee-card h3 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 0.95;
}

.section-lead {
    max-width: 34rem;
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1.05rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(1, 98, 58, 0.78);
    border-bottom: 1px solid var(--line);
}

.navbar {
    width: min(100% - 2.5rem, var(--max));
    margin: 0 auto;
    padding: 0.85rem 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
}

.brand img {
    height: 72px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.25));
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.main-nav a {
    font-family: var(--font-display);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 1.05rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--accent);
}

.cta-button {
    font-family: var(--font-display);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--cream);
    color: var(--bg-deep);
    padding: 0.7rem 1.15rem;
    border-radius: 999px;
    font-size: 0.95rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-1px);
    background: #fff;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
}

/* Hero */
.hero {
    position: relative;
    min-height: min(88vh, 900px);
    display: flex;
    align-items: flex-end;
    padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 9vw, 7rem);
    overflow: hidden;
}

.hero-atmosphere {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 20%, rgba(1, 56, 37, 0.55) 100%),
        repeating-linear-gradient(
            -18deg,
            transparent 0 18px,
            rgba(255, 255, 255, 0.02) 18px 19px
        ),
        radial-gradient(circle at 70% 30%, rgba(149, 105, 51, 0.35), transparent 42%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    width: min(100% - 2.5rem, var(--max));
    margin: 0 auto;
}

.giant-text {
    font-size: clamp(4.2rem, 14vw, 10.5rem);
    margin-bottom: 1.75rem;
    max-width: 14ch;
}

.outline {
    display: inline-block;
    margin-left: 0.18em;
    color: transparent;
    -webkit-text-stroke: 2px var(--text);
}

.hero-sub {
    max-width: 34rem;
}

.hero-sub p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem 1.75rem;
    align-items: center;
}

.big-link {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--accent-soft);
    text-decoration: none;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 0.15rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.big-link:hover {
    color: var(--text);
    border-color: var(--text);
}

.text-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
}

.text-link:hover {
    color: var(--text);
    border-bottom-color: var(--text);
}

/* Split feature */
.split-feature {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.feature-text {
    padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.5rem, 5vw, 4rem);
    background: rgba(0, 77, 46, 0.85);
}

.feature-text .anton-title {
    font-size: clamp(2.6rem, 6vw, 4.4rem);
    margin-bottom: 1.25rem;
}

.feature-text p {
    max-width: 28rem;
    color: var(--text-muted);
    font-weight: 300;
    font-size: 1.05rem;
}

.feature-visual {
    display: grid;
    grid-template-rows: 1fr 1fr;
    min-height: 420px;
}

.visual-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 2rem;
}

.visual-panel span {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    opacity: 0.8;
}

.visual-panel strong {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1;
}

.panel-a {
    background:
        linear-gradient(160deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.35)),
        var(--accent);
}

.panel-b {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.35)),
        var(--bg-deeper);
}

/* Featured coffees */
.featured,
.atmosphere,
.hours-band {
    width: min(100% - 2.5rem, var(--max));
    margin: 0 auto;
    padding: clamp(4rem, 9vw, 7rem) 0;
}

.section-head {
    margin-bottom: 2.5rem;
}

.section-head .anton-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    margin-bottom: 0.85rem;
}

.coffee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.coffee-card {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.coffee-card:hover {
    transform: translateY(-4px);
    border-color: rgba(149, 105, 51, 0.55);
    background: rgba(0, 0, 0, 0.28);
}

.coffee-body {
    padding: 1.5rem 1.45rem 1.6rem;
}

.coffee-meta {
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-soft);
    margin-bottom: 0.45rem;
}

.coffee-card h3 {
    font-size: 1.7rem;
    margin-bottom: 0.55rem;
}

.coffee-notes {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.98rem;
    margin-bottom: 1rem;
}

.coffee-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.coffee-tags span {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--line);
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    color: var(--text-muted);
}

/* Atmosphere mosaic */
.atmosphere {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: end;
}

.atmosphere .anton-title {
    font-size: clamp(2.8rem, 6vw, 4.6rem);
    margin-bottom: 1rem;
}

.atmosphere-copy p:last-child {
    color: var(--text-muted);
    font-weight: 300;
    max-width: 28rem;
}

.atmosphere-mosaic {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 180px 220px;
    gap: 0.85rem;
    min-height: 420px;
}

.mosaic-cell {
    position: relative;
    border-radius: calc(var(--radius) - 4px);
    border: 1px solid var(--line);
    overflow: hidden;
}

.mosaic-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cell-1 {
    grid-row: 1 / 3;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.45)),
        repeating-radial-gradient(circle at 20% 20%, rgba(243, 235, 224, 0.08) 0 2px, transparent 2px 28px),
        #0d5135;
}

.cell-2 {
    background:
        linear-gradient(135deg, rgba(149, 105, 51, 0.85), rgba(88, 58, 24, 0.95));
}

.cell-3 {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.4)),
        #01291c;
}

.mosaic-cell.has-photo {
    background: var(--bg-deeper);
}

.photo-strip {
    width: min(100% - 2.5rem, var(--max));
    margin: 0 auto;
    padding: 0 0 clamp(3rem, 7vw, 5rem);
}

.photo-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.85rem;
}

.photo-strip-item {
    margin: 0;
    aspect-ratio: 4 / 3;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    border: 1px solid var(--line);
}

.photo-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hours band */
.hours-band-inner {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 2rem;
    align-items: end;
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 4px);
    background: rgba(0, 0, 0, 0.18);
}

.hours-band .anton-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
}

.hours-list {
    list-style: none;
    display: grid;
    gap: 0.65rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.55rem;
}

.hours-list span {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
}

.hours-list strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    letter-spacing: 0.04em;
}

.hours-list.large li {
    padding-bottom: 0.75rem;
}

.hours-list.large strong {
    font-size: 1.5rem;
}

/* Ticker */
.ticker {
    background: #000;
    padding: 1.35rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-wrap {
    display: flex;
    width: max-content;
    animation: ticker 28s linear infinite;
}

.ticker-item {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    padding-right: 3rem;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Menu */
.menu-page {
    padding-bottom: 4rem;
}

.menu-hero {
    width: min(100% - 2.5rem, var(--max));
    margin: 0 auto;
    padding: clamp(2.5rem, 6vw, 4rem) 0 1rem;
    text-align: center;
}

.main-title {
    font-size: clamp(3.4rem, 10vw, 7rem);
    color: var(--accent-soft);
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.menu-hero .section-lead {
    margin: 0 auto;
}

.menu-container {
    width: min(100% - 2.5rem, 920px);
    margin: 2rem auto 4rem;
    padding: clamp(1.75rem, 4vw, 3.5rem);
    border: 2px dashed rgba(149, 105, 51, 0.75);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.12);
}

.menu-block + .menu-block {
    margin-top: 3.5rem;
}

.menu-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.menu-header h2 {
    color: var(--accent-soft);
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin: 0 1.1rem;
    white-space: nowrap;
}

.line {
    flex: 1;
    height: 2px;
    background: var(--accent);
    opacity: 0.85;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 0;
}

.menu-item {
    padding: 0 1.5rem;
}

.menu-item h3 {
    font-size: 1.45rem;
    margin-bottom: 0.4rem;
}

.menu-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 300;
}

.menu-item.divider {
    border-left: 1.5px dotted rgba(255, 255, 255, 0.35);
}

.menu-footer-notes {
    margin: 2rem 1.5rem 0;
    padding: 1.15rem 1.25rem;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 12px;
}

.menu-footer-notes p {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-soft);
}

.menu-footer-notes p + p {
    margin-top: 0.4rem;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--line);
    padding: 4rem 0 2rem;
    background: rgba(0, 0, 0, 0.18);
}

.footer-grid {
    width: min(100% - 2.5rem, var(--max));
    margin: 0 auto 2.5rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2rem;
}

.footer-logo {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--text-muted);
    font-weight: 300;
}

.footer-block h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.45rem;
}

.footer-link:hover {
    color: var(--text);
}

.footer-bottom {
    width: min(100% - 2.5rem, var(--max));
    margin: 0 auto;
    border-top: 1px solid var(--line);
    padding-top: 1.25rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
    .navbar {
        grid-template-columns: auto auto;
    }

    .cta-button {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
    }

    .main-nav {
        display: none;
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 0.5rem;
    }

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

    .split-feature,
    .atmosphere,
    .hours-band-inner,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .atmosphere-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px;
        min-height: 0;
    }

    .cell-1 {
        grid-row: auto;
    }

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

    .menu-item.divider {
        border-left: none;
        border-top: 1.5px dotted rgba(255, 255, 255, 0.3);
        padding-top: 1.5rem;
    }

    .menu-item,
    .menu-footer-notes {
        text-align: center;
    }

    .menu-header h2 {
        white-space: normal;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-wrap {
        animation: none;
    }

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