/* ── Reset & Base Styles ── */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    background: var(--bg);
    color: var(--brown);
    font-family: 'Lora', Georgia, serif;
    font-weight: 400;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.page {
    max-width: 640px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 5rem;
}

/* ── Typography ── */
h2 {
    font-family: 'Caveat', cursive;
    font-size: clamp(1.8rem, 5.5vw, 2.4rem);
    color: var(--green);
    font-weight: 700;
    margin-bottom: 0.6rem;
}

/* All body text consistent */
p, .note {
    font-family: 'Lora', Georgia, serif;
    font-weight: 400;
    font-style: normal;
    color: var(--brown);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.venue-name {
    font-family: 'Caveat', cursive;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--green);
    display: block;
    margin-bottom: 0.5rem;
}

/* Small address line under the venue name (same feel as parking coords) */
.venue-address {
    font-family: 'Caveat', cursive;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brown-light);
    line-height: 1.15;
    margin-top: -0.25rem;
    margin-bottom: 0.45rem;
}

/* Screen-reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Footer ── */
footer {
    text-align: center;
    margin-top: 3.5rem;
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    color: var(--green);
}

/* ── Mobile adjustments ── */
@media (max-width: 520px) {
    .venue-address { margin-bottom: 0.95rem; }
}

@media (max-width: 480px) {
    .page { padding: 1.5rem 1rem 3rem; }
}