/* ===================================================================
   Pudel Baar — Shared Stylesheet
   =================================================================== */

/* ── Fonts ─────────────────────────────────────────────────────────── */
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('../fonts/oswald-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('../fonts/oswald-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('../fonts/sourcesans3-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Source Sans 3';
    font-style: normal;
    font-weight: 400 600;
    font-display: swap;
    src: url('../fonts/sourcesans3-latin-ext.woff2') format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ── Custom Properties ─────────────────────────────────────────────── */
:root {
    --color-primary-dark: #1a1a1a;
    --color-accent: #dd3333;
    --color-accent-dark: #b82020;
    --color-bg: #f5f0eb;
    --color-gray: #818a91;
    --color-surface-dark: #2a2a2a;
    --color-surface-light: #ebe5dd;
    --color-white: #ffffff;
    --color-text: #1a1a1a;
    --color-text-muted: #818a91;

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;

    --spacing-unit: 8px;
    --section-padding: 80px;
    --section-padding-mobile: 48px;
    --card-padding: 24px;
    --grid-gap: 24px;

    --z-skip-link: 1200;
    --z-header: 1100;
    --z-mobile-nav: 1050;
    --z-overlay: 1000;

    --max-width: 1200px;
    --header-height: 80px;

    --radius: 4px;
    --radius-lg: 8px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.18);

    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--color-accent-dark);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--color-accent);
}

ul, ol {
    list-style: none;
}

/* ── Typography ────────────────────────────────────────────────────── */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary-dark);
}
h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-primary-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p + p {
    margin-top: 1rem;
}

.text-small {
    font-size: 0.875rem;
}

.text-muted {
    color: var(--color-text-muted);
}

/* ── Layout ────────────────────────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--card-padding);
}

.container--narrow {
    max-width: 720px;
}

.section {
    padding: var(--section-padding) 0;
}

.section--dark {
    background-color: var(--color-surface-dark);
    color: var(--color-white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
    color: var(--color-white);
}
.section--dark a {
    color: #f08080;
}
.section--dark a:hover {
    color: var(--color-white);
}

.section--light {
    background-color: var(--color-surface-light);
}

.section--white {
    background-color: var(--color-white);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 {
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Skip Link ─────────────────────────────────────────────────────── */
.skip-link {
    position: fixed;
    top: -100%;
    left: 16px;
    z-index: var(--z-skip-link);
    padding: 12px 24px;
    background: var(--color-primary-dark);
    color: var(--color-white);
    font-weight: 600;
    border-radius: var(--radius);
    transition: top 0.2s;
}
.skip-link:focus {
    top: 16px;
    color: var(--color-white);
}

/* ── Header ────────────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background-color: var(--color-primary-dark);
    isolation: isolate;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 24px;
}

.site-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.site-logo picture {
    display: block;
}
.site-logo img {
    height: 50px;
    width: auto;
}

/* ── Desktop Nav ───────────────────────────────────────────────────── */
.site-nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 4px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: color var(--transition), background-color var(--transition);
    white-space: nowrap;
}
.nav-link:hover {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.08);
}
.nav-item--active .nav-link {
    color: var(--color-accent);
}

/* ── Header Actions ────────────────────────────────────────────────── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.lang-switch {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 10px;
    border-radius: var(--radius);
    transition: color var(--transition);
}
.lang-switch:hover {
    color: var(--color-white);
}
.lang-switch__current {
    color: var(--color-white);
}
.lang-switch__sep {
    margin: 0 2px;
    opacity: 0.4;
}
.lang-switch__alt {
    color: rgba(255, 255, 255, 0.5);
}
.lang-switch:hover .lang-switch__alt {
    color: var(--color-accent);
}

/* ── Mobile Menu Toggle ────────────────────────────────────────────── */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav ────────────────────────────────────────────────────── */
.mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: min(320px, 85vw);
    height: calc(100vh - var(--header-height));
    background-color: var(--color-primary-dark);
    padding: 32px 24px;
    overflow-y: auto;
    transition: right var(--transition);
    z-index: var(--z-mobile-nav);
}

.mobile-nav--open {
    right: 0;
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav__link {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.8);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color var(--transition);
}
.mobile-nav__link:hover {
    color: var(--color-white);
}
.mobile-nav__item--active .mobile-nav__link {
    color: var(--color-accent);
}

.mobile-nav__footer {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__lang {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    transition: color var(--transition), border-color var(--transition);
}
.mobile-nav__lang:hover {
    color: var(--color-white);
    border-color: var(--color-accent);
}

.mobile-nav__social {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}
.mobile-nav__social:hover {
    color: var(--color-accent);
}

/* Mobile nav backdrop */
.mobile-nav-backdrop {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-mobile-nav) - 1);
}
.mobile-nav-backdrop--visible {
    display: block;
}

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: var(--color-surface-dark);
}

.hero__bg {
    position: absolute;
    inset: 0;
}
.hero__bg picture {
    display: block;
    width: 100%;
    height: 100%;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.6), rgba(26, 26, 26, 0.75));
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) var(--card-padding);
    max-width: 800px;
}

.hero__title {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero__page-title {
    font-size: 2.5rem;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero--compact {
    min-height: 40vh;
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 32px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn--primary {
    background-color: var(--color-accent-dark);
    color: var(--color-white);
    border-color: var(--color-accent-dark);
}
.btn--primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}
.btn--outline:hover {
    background-color: var(--color-white);
    color: var(--color-primary-dark);
}

.btn--outline-dark {
    background: transparent;
    color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
}
.btn--outline-dark:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.btn--sm {
    font-size: 0.875rem;
    padding: 10px 20px;
}

.btn--full {
    width: 100%;
}

/* ── Cards ────────────────────────────────────────────────────────── */
.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card__img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.card picture {
    display: block;
    width: 100%;
}

.card__body {
    padding: var(--card-padding);
}

.card__title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.card__meta {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

/* ── Grid Layouts ─────────────────────────────────────────────────── */
.grid {
    display: grid;
    gap: var(--grid-gap);
}

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

/* ── Forms ────────────────────────────────────────────────────────── */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.form-control {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background-color: var(--color-white);
    border: 1px solid #ccc;
    border-radius: var(--radius);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(221, 51, 51, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23818a91'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.form-hint {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.form-error {
    color: var(--color-accent-dark);
    font-size: 0.875rem;
    margin-top: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
}

/* Honeypot */
.ohnohoney {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Dark section form overrides */
.section--dark .form-group label {
    color: var(--color-white);
}
.section--dark .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}
.section--dark .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.section--dark .form-control:focus {
    border-color: var(--color-accent);
    background-color: rgba(255, 255, 255, 0.15);
}
.section--dark .form-hint {
    color: rgba(255, 255, 255, 0.5);
}
.section--dark .form-error {
    color: #ff6b6b;
}
.section--dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ── Alerts ───────────────────────────────────────────────────────── */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    font-size: 0.9375rem;
}

.alert--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ── Opening Hours ────────────────────────────────────────────────── */
.opening-hours {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.opening-hours__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 4px 0;
}

.opening-hours__row dt {
    font-weight: 600;
    white-space: nowrap;
}

.opening-hours__row dd {
    text-align: right;
    white-space: nowrap;
}

/* ── Tags / Badges ────────────────────────────────────────────────── */
.tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 2px;
    background-color: var(--color-surface-light);
    color: var(--color-primary-dark);
}

.tag--accent {
    background-color: var(--color-accent-dark);
    color: var(--color-white);
}

.tag--cask {
    background-color: #c48a30;
    color: var(--color-white);
}

/* ── Prose (page body content) ────────────────────────────────────── */
.prose {
    font-size: 1.0625rem;
    line-height: 1.8;
}
.prose h2,
.prose h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}
.prose p + p {
    margin-top: 1em;
}
.prose ul,
.prose ol {
    margin: 1em 0;
    padding-left: 1.5em;
    list-style: disc;
}
.prose ol {
    list-style: decimal;
}
.prose li + li {
    margin-top: 0.5em;
}

/* ── Gallery Grid ─────────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-unit);
}

.gallery-grid__item {
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}
.gallery-grid__item picture {
    display: block;
    width: 100%;
}

.gallery-grid__item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform var(--transition);
}
.gallery-grid__item:hover img {
    transform: scale(1.05);
}

/* ── Lightbox ─────────────────────────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.lightbox--open {
    display: flex;
}

.lightbox__img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox__caption {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-white);
    font-size: 0.9375rem;
    text-align: center;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    border-radius: var(--radius);
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.25);
}
.lightbox__nav--prev {
    left: 16px;
}
.lightbox__nav--next {
    right: 16px;
}

/* ── Tap List ─────────────────────────────────────────────────────── */
.tap-table {
    width: 100%;
    border-collapse: collapse;
}

.tap-table thead th {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    padding: 12px 16px;
    text-align: left;
    border-bottom: 2px solid var(--color-surface-light);
}

.tap-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--color-surface-light);
    vertical-align: middle;
}

.tap-table tbody tr:last-child td {
    border-bottom: none;
}

.tap-table .tap-name {
    font-weight: 600;
    font-size: 1.0625rem;
}

.tap-table .tap-brewery {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.tap-table .tap-abv {
    font-weight: 600;
    font-size: 0.875rem;
}

/* ── Venue Features / Quick Info ──────────────────────────────────── */
.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.feature-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    min-width: 100px;
    text-align: center;
}

.feature-badge__icon {
    width: 40px;
    height: 40px;
    color: var(--color-accent);
}

.feature-badge__label {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ── Venue Features (about page) ──────────────────────────────────── */
.venue-feature {
    text-align: center;
    padding: 16px;
}

.venue-feature__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--color-accent);
}

.venue-feature__label {
    margin-bottom: 8px;
}

.venue-feature__desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ── Site Notices ─────────────────────────────────────────────────── */
.site-notices {
    background: var(--color-bg-light, #f5f5f5);
    padding: 12px 0;
}
.site-notice {
    border-left: 4px solid #636b72;
    padding: 8px 14px;
    margin-bottom: 6px;
    background: #fff;
    border-radius: 0 var(--radius-sm, 4px) var(--radius-sm, 4px) 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 12px;
}
.site-notice:last-child { margin-bottom: 0; }
.site-notice__title {
    font-size: 0.9375rem;
    font-weight: 600;
}
.site-notice__meta {
    font-size: 0.8125rem;
    color: var(--color-text-muted, #636b72);
}
.site-notice__body {
    font-size: 0.875rem;
    color: var(--color-text-muted, #636b72);
    flex-basis: 100%;
}

/* ── Footer ───────────────────────────────────────────────────────── */
.site-footer {
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 0 0;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition);
}
.site-footer a:hover {
    color: var(--color-accent);
}

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

.footer-logo img {
    height: 45px;
    width: auto;
    margin-bottom: 12px;
}
.footer-logo picture {
    display: block;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-col--hours .opening-hours__row dt,
.footer-col--hours .opening-hours__row dd {
    font-size: 0.9375rem;
}

.footer-address {
    font-style: normal;
    line-height: 1.8;
}
.footer-address a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-social__link {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}
.footer-social__link:hover {
    color: var(--color-accent);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-nav a {
    font-size: 0.9375rem;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .site-nav {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .mobile-nav {
        display: none;
    }

    .mobile-nav-backdrop {
        display: none !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    }

    .hero__title {
        font-size: 3.5rem;
    }

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

@media (max-width: 1023px) {
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .hero {
        min-height: 360px;
    }

    .hero__title {
        font-size: 2.25rem;
    }

    .hero__page-title {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .tap-table thead {
        display: none;
    }
    .tap-table tbody tr {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--color-surface-light);
    }
    .tap-table tbody td {
        display: block;
        padding: 4px 0;
        border: none;
        text-align: left;
    }
    .tap-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--color-text-muted);
        display: block;
        margin-bottom: 2px;
    }
}

/* ── Utility ──────────────────────────────────────────────────────── */
.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;
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* ── Hero Actions ────────────────────────────────────────────────── */
.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Quick Info Bar ──────────────────────────────────────────────── */
.quick-info {
    padding: 32px 0;
}

.quick-info__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.quick-info__hours .opening-hours {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 24px;
    justify-content: center;
}

.quick-info__hours .opening-hours__row {
    gap: 6px;
}

.quick-info__hours .opening-hours__row dt,
.quick-info__hours .opening-hours__row dd {
    font-size: 0.875rem;
}

.quick-info__address {
    text-align: center;
    font-size: 0.9375rem;
}
.quick-info__address a {
    color: rgba(255, 255, 255, 0.9);
}
.quick-info__address a:hover {
    color: var(--color-white);
}

.quick-info__badges {
    justify-content: center;
}
.quick-info__badges .feature-badge {
    padding: 8px 12px;
    min-width: auto;
}
.quick-info__badges .feature-badge__icon {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
}
.quick-info__badges .feature-badge__label {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ── Section Warm (tap preview bg) ──────────────────────────────── */
.section--warm {
    background-color: var(--color-bg);
}

/* ── Tap Cards ───────────────────────────────────────────────────── */
.tap-card .card__body {
    padding: 20px;
}

.tap-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.tap-card__name {
    font-size: 1.125rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.tap-card__brewery {
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.tap-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.tap-card__abv {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ── Event Cards (homepage scroll) ──────────────────────────────── */
.events-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.event-card__date {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.event-card__desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-top: 8px;
    line-height: 1.5;
}

/* ── About Teaser ────────────────────────────────────────────────── */
.about-teaser__img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.about-teaser__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.about-teaser__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.about-teaser__text h2 {
    margin-bottom: 8px;
}

.about-teaser__body p {
    line-height: 1.7;
}

/* ── Gallery Strip ───────────────────────────────────────────────── */
.gallery-strip {
    padding: 0 0 var(--section-padding);
}

.gallery-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.gallery-strip__item {
    overflow: hidden;
}
.gallery-strip__item picture {
    display: block;
    width: 100%;
}

.gallery-strip__item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform var(--transition);
    display: block;
}

.gallery-strip__item:hover img {
    transform: scale(1.05);
}

/* ── Location Section ────────────────────────────────────────────── */
.location__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.location__info h2 {
    margin-bottom: 16px;
}

.location__address {
    font-style: normal;
    line-height: 1.8;
}

.location__line {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
}

.location__line svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

/* ── Homepage responsive overrides ───────────────────────────────── */
@media (max-width: 1023px) {
    .events-scroll {
        grid-template-columns: 1fr;
    }

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

    .about-teaser {
        grid-template-columns: 1fr;
    }

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

    .quick-info__grid {
        flex-direction: column;
        text-align: center;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .events-scroll {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid--3-desktop {
        grid-template-columns: repeat(3, 1fr);
    }
}
