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

:root {
    --bg: #ffffff;
    --bg-alt: #f5f5f5;
    --bg-dark: #1a3a5c;
    --text: #222222;
    --muted: #666666;
    --subtle: #999999;
    --accent: #1a6fa8;
    --accent-hover: #155c8e;
    --accent-light: #e8f3fb;
    --border: #dddddd;
    --border-light: #eeeeee;
    --nav-bg: #ffffff;
    --nav-text: #222222;
    --nav-border: #dddddd;

    --max-w: 960px;

    --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --font-ui: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

/* ── Navigation ── */
nav {
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 60px;
}

.nav-logo {
    color: var(--accent);
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 0;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    padding: 8px 14px;
    transition: color 0.15s, background 0.15s;
    display: block;
}

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

/* ── Hero ── */
.hero {
    background: var(--bg-dark);
    padding: 60px 24px 52px;
    color: #ffffff;
}

.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-text {
    flex: 1 1 340px;
    min-width: 0;
}

.hero-eyebrow {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7ab8e0;
    margin-bottom: 14px;
}

.hero h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    font-style: italic;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 18px;
}

.hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    margin: 0 0 18px;
    font-weight: 400;
}

.hero-address {
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
}

/* ── Hero image ── */
.hero-image {
    flex: 1 1 400px;
    min-width: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
}

/* ── Content wrapper ── */
.content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px 80px;
}

/* ── Section headings ── */
.section-heading {
    margin: 56px 0 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--bg-dark);
}

.section-note {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ── Standalone locations ── */
.standalone-list {
    list-style: none;
    margin: 20px 0 0;
    display: grid;
    gap: 8px;
}

.standalone-list li {
    padding: 16px 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
}

.standalone-list li small {
    display: block;
    font-weight: 400;
    color: var(--muted);
    font-size: 13px;
    margin-top: 3px;
}

/* ── Vendor cards ── */
.vendors {
    margin-top: 24px;
    display: grid;
    gap: 0;
    border: 1px solid var(--border);
}

.vendor {
    background: var(--bg);
    padding: 18px 22px;
    border-bottom: 1px solid var(--border-light);
}

.vendor:last-child {
    border-bottom: none;
}

.vendor:nth-child(even) {
    background: var(--bg-alt);
}

.vendor-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
}

.vendor-num {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
    background: var(--accent);
    letter-spacing: 0.06em;
    white-space: nowrap;
    padding: 2px 7px;
    border-radius: 2px;
}

.vendor-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
}

.vendor-name a {
    color: var(--accent);
    text-decoration: none;
}

.vendor-name a:hover {
    text-decoration: underline;
    color: var(--accent-hover);
}

.vendor-desc {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 5px;
}

.vendor-meta {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--subtle);
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.vendor-meta span::before {
    content: '· ';
    color: var(--border);
}

.vendor-meta span:first-child::before {
    content: '';
}

/* ── Featured vendor (Booth 23) ── */
.vendor-featured {
    margin: 48px 0;
    border: 1px solid var(--border);
    background: var(--bg);
}

.vendor-featured-header {
    background: var(--bg-dark);
    color: #ffffff;
    padding: 16px 24px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.vendor-featured-header .vendor-num {
    background: rgba(255,255,255,0.2);
    color: #ffffff;
}

.vendor-featured-header .vendor-name {
    color: #ffffff;
    font-size: 18px;
}

.vendor-featured-body {
    padding: 28px 24px;
}

.vendor-featured-tagline {
    font-size: 15px;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 20px;
    text-align: center;
    border-left: 3px solid var(--accent);
    padding-left: 14px;
    text-align: left;
}

.featured-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 24px 0;
}

.featured-images figure {
    max-width: 380px;
    flex: 1 1 280px;
}

.featured-images img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid var(--border);
}

.featured-images figcaption {
    font-size: 13px;
    color: var(--muted);
    margin-top: 8px;
    line-height: 1.5;
}

.vendor-featured-body p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 10px;
}

/* ── ATM notice ── */
.notice {
    margin: 16px 0 20px;
    padding: 12px 18px;
    background: #fff8e1;
    border: 1px solid #f0c940;
    border-left: 4px solid #f0c940;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: #5a4a00;
}

/* ── Directions block ── */
.directions {
    margin: 20px 0 0;
    padding: 20px 24px;
    border: 1px solid var(--border);
    background: var(--bg-alt);
}

.directions p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 6px;
}

.directions p strong {
    color: var(--text);
}

.directions .lede {
    font-size: 16px;
    color: var(--text);
    margin-bottom: 10px;
}

/* ── Footer ── */
footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.85);
    padding: 48px 24px;
    text-align: center;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

footer h2 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}

footer p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    margin: 0 auto 10px;
}

footer .site-name {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-top: 32px;
}

/* ── Generic links ── */
a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

a:hover {
    color: var(--accent-hover);
}

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

    .vendor {
        padding: 14px 16px;
    }

    .vendor-featured-body {
        padding: 20px 16px;
    }

    .hero {
        padding: 44px 20px 40px;
    }

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

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