/* ============================================================
   Barton Investors Group - Public Stylesheet
   Premium enterprise hospitality website
   ============================================================ */

/* ─── CSS Custom Properties ──────────────────────────────── */
:root {
    /* Brand — from logo (#a02020 red + black) */
    --red:           #a02020;
    --red-dark:      #8a1a1a;
    --red-light:     #c43a3e;

    /* Legacy aliases (mapped to red) */
    --gold:          #a02020;
    --gold-dark:     #8a1a1a;
    --gold-light:    #c43a3e;
    --crimson:       #a02020;
    --crimson-dark:  #8a1a1a;
    --crimson-light: #c43a3e;
    --green:         #1e6b35;

    /* Light Palette */
    --white:         #ffffff;
    --grey-50:       #fafafa;
    --grey-100:      #f5f5f5;
    --grey-200:      #eeeeee;
    --grey-300:      #e0e0e0;
    --grey-400:      #bdbdbd;
    --grey-500:      #999999;
    --grey-600:      #757575;
    --grey-700:      #616161;
    --grey-800:      #424242;
    --grey-900:      #212121;
    --black:         #1a1a1a;
    --charcoal:      #2a2a2a;
    --charcoal-light:#3a3a3a;

    /* Semantic mappings (so existing var() refs still work) */
    --navy:          #ffffff;
    --navy-light:    #f8f8f8;
    --slate-900:     #1a1a1a;
    --slate-800:     #ffffff;
    --slate-700:     #e0e0e0;
    --slate-600:     #bdbdbd;
    --slate-500:     #999999;
    --slate-400:     #666666;
    --slate-300:     #444444;
    --slate-200:     #333333;
    --slate-100:     #f5f5f5;

    /* Feedback */
    --success:       #16a34a;
    --error:         #dc2626;
    --warning:       #d97706;
    --info:          #2563eb;

    /* Typography */
    --font-heading:  'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --container:     1200px;
    --section-pad:   6rem;
    --gap:           2rem;

    /* Misc */
    --radius:        8px;
    --radius-lg:     12px;
    --shadow:        0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-lg:     0 8px 30px rgba(0,0,0,.08);
    --transition:    .3s ease;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::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: 16px;
    line-height: 1.7;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--red);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--red-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--red);
    letter-spacing: .05em;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

p { margin-bottom: 1rem; color: var(--grey-800); }

/* ─── Accessibility ──────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--red);
    color: var(--white);
    padding: .75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    z-index: 10000;
    transition: top .3s;
}
.skip-link:focus {
    top: 1rem;
}

/* ─── Container ──────────────────────────────────────────── */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1.4;
}

.btn .material-icons-outlined { font-size: 1.1rem; }

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

.btn-outline-light {
    background: transparent;
    color: var(--grey-700);
    border-color: var(--grey-400);
}
.btn-outline-light:hover {
    background: var(--grey-100);
    border-color: var(--grey-600);
    color: var(--black);
}

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

.btn-muted {
    background: var(--grey-200);
    color: var(--grey-500);
    border-color: var(--grey-200);
    cursor: default;
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }

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

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--grey-300);
    transition: background var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: .25rem;
}

.nav-list a {
    display: block;
    padding: .5rem 1.15rem;
    color: var(--grey-700);
    font-size: .9rem;
    font-weight: 500;
    letter-spacing: .02em;
    position: relative;
    transition: color var(--transition);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width var(--transition), left var(--transition);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--red);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
    left: 0;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--grey-700);
    transition: all var(--transition);
    border-radius: 2px;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--grey-100);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 80%;
    height: 180%;
    background: radial-gradient(ellipse, rgba(160,32,32,.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 8rem 0 6rem;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: .4rem 1.25rem;
    background: rgba(160,32,32,.08);
    color: var(--red);
    border: 1px solid rgba(160,32,32,.2);
    border-radius: 100px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--red);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--grey-700);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ─── Sections ───────────────────────────────────────────── */
.section {
    padding: var(--section-pad) 0;
}

.section-alt {
    background: var(--grey-100);
}

.section-label {
    display: inline-block;
    color: var(--red);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.section-header {
    max-width: 650px;
    margin-bottom: 3.5rem;
}

.section-header.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-header p {
    margin-top: 1rem;
    font-size: 1.1rem;
}

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

/* ─── Page Hero ──────────────────────────────────────────── */
.page-hero {
    position: relative;
    padding: 10rem 0 4rem;
    background: var(--grey-100);
    border-bottom: 1px solid var(--grey-300);
}

.page-hero-sm { padding: 9rem 0 3rem; }

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    margin-top: .5rem;
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: var(--grey-700);
    max-width: 600px;
}

/* ─── Intro Section ──────────────────────────────────────── */
.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-content h2 {
    margin-bottom: 1.5rem;
}

.intro-content .btn {
    margin-top: 1rem;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--grey-300);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: .5rem;
}

.stat-label {
    font-size: .85rem;
    color: var(--grey-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .08em;
}

/* ─── Content Grid ───────────────────────────────────────── */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid-reverse .content-text { order: 2; }
.content-grid-reverse .content-image { order: 1; }

.content-text h2 { margin-bottom: 1.5rem; }

.image-placeholder {
    background: var(--grey-100);
    border: 2px dashed var(--grey-300);
    border-radius: var(--radius-lg);
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--grey-500);
}

.image-placeholder .material-icons-outlined {
    font-size: 3rem;
    margin-bottom: .5rem;
}

/* ─── Venues Grid ────────────────────────────────────────── */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--gap);
}

.venue-card {
    background: var(--white);
    border: 1px solid var(--grey-300);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.venue-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--crimson);
}

.venue-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
}

.venue-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1.5rem;
}

.venue-card-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--grey-200), var(--grey-100));
    color: var(--grey-500);
}

.venue-card-placeholder .material-icons-outlined { font-size: 3rem; }
.venue-card-placeholder-large { min-height: 400px; }

.venue-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: .3rem .8rem;
    border-radius: 100px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.venue-status-live { background: rgba(34,197,94,.15); color: var(--success); border: 1px solid rgba(34,197,94,.3); }
.venue-status-development { background: rgba(245,158,11,.15); color: var(--warning); border: 1px solid rgba(245,158,11,.3); }

.venue-card-body {
    padding: 1.75rem;
}

.venue-type {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: .5rem;
}

.venue-card-body h3 { margin-bottom: .5rem; }

.venue-location {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .9rem;
    color: var(--grey-600);
    margin-bottom: .75rem;
}

.venue-location .material-icons-outlined { font-size: 1rem; }

.venue-desc {
    font-size: .9rem;
    margin-bottom: 1.25rem;
}

/* ─── Venue Feature (Full width) ─────────────────────────── */
.venue-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--grey-300);
}

.venue-feature:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.venue-feature-reverse { direction: rtl; }
.venue-feature-reverse > * { direction: ltr; }

.venue-feature-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--grey-300);
}

.venue-feature-image img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    padding: 2rem;
}

.venue-feature-content { padding: 1rem 0; }
.venue-feature-content h2 { margin-bottom: .75rem; }

.venue-contact-info {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--grey-300);
    border-bottom: 1px solid var(--grey-300);
}

.venue-contact-info p {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem;
    font-size: .9rem;
}

.venue-feature-actions { margin-top: 1.5rem; }

/* ─── Values Grid ────────────────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--gap);
}

.value-card {
    background: var(--white);
    border: 1px solid var(--grey-300);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: border-color var(--transition);
}

.value-card:hover {
    border-color: var(--crimson);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1.25rem;
}

.value-card h3 {
    margin-bottom: .75rem;
    font-size: 1.2rem;
}

/* ─── Features Grid ──────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--gap);
}

.feature-card {
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--grey-300);
    border-radius: var(--radius-lg);
}

.feature-icon {
    font-size: 2rem;
    color: var(--red);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: .5rem;
    font-size: 1.15rem;
}

/* ─── Timeline ───────────────────────────────────────────── */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--grey-300);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 2rem;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: .35rem;
    width: 16px;
    height: 16px;
    background: var(--red);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.timeline-content h3 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
    color: var(--gold-light);
}

/* ─── CTA Section ────────────────────────────────────────── */
.section-cta {
    background: var(--grey-100);
    border-top: 2px solid var(--red);
    border-bottom: 2px solid var(--red);
}

.section-cta h2 {
    margin-bottom: 1rem;
}

.section-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Contact ────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-sidebar .contact-info-card {
    background: var(--grey-100);
    border: 1px solid var(--grey-300);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--grey-300);
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: flex-start;
}

.contact-info-item .material-icons-outlined {
    color: var(--red);
    margin-top: 2px;
}

.contact-info-item strong {
    display: block;
    font-size: .8rem;
    color: var(--grey-600);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .25rem;
}

.venue-links { list-style: none; }
.venue-links li { margin-bottom: .5rem; }
.venue-links small { color: var(--grey-500); }

/* ─── News Grid ──────────────────────────────────────────── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: var(--gap);
}

.news-card {
    background: var(--white);
    border: 1px solid var(--grey-300);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition);
}

.news-card:hover { transform: translateY(-3px); }

.news-card-image { height: 200px; overflow: hidden; background: var(--grey-100); }
.news-card-image img { width: 100%; height: 100%; object-fit: contain; padding: 1rem; }

.news-card-body { padding: 1.75rem; }

.news-date {
    font-size: .8rem;
    color: var(--red);
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.news-card-body h3 {
    margin: .5rem 0 .75rem;
    font-size: 1.2rem;
}

.news-card-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

.news-card-body h3 a:hover {
    color: var(--red);
}

.news-card-image {
    display: block;
    cursor: pointer;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .75rem;
    font-size: .9rem;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    transition: gap var(--transition);
}

.read-more:hover {
    gap: .6rem;
}

.read-more .material-icons-outlined {
    font-size: 1rem;
}

/* ─── Single Post ────────────────────────────────────────── */
.post-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-image {
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--grey-100);
    text-align: center;
}

.post-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    padding: 1.5rem;
}

.post-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--black);
}

.post-body p {
    margin-bottom: 1.25rem;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--grey-300);
}

/* ─── Forms ──────────────────────────────────────────────── */
.form { max-width: 100%; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: .4rem;
    font-weight: 500;
    font-size: .9rem;
    color: var(--grey-800);
}

.required { color: var(--error); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: .85rem 1rem;
    background: var(--white);
    border: 1px solid var(--grey-300);
    border-radius: var(--radius);
    color: var(--black);
    font-family: var(--font-body);
    font-size: .95rem;
    transition: border-color var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(160,32,32,.1);
}

select {
    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 fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    cursor: pointer;
    font-size: .9rem;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--red);
}

small {
    display: block;
    margin-top: .3rem;
    font-size: .8rem;
    color: var(--grey-500);
}

/* ─── Alerts ─────────────────────────────────────────────── */
.alert {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: .9rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.alert .material-icons-outlined { font-size: 1.5rem; }

.alert-close {
    margin-left: auto;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0 .25rem;
    opacity: .7;
}
.alert-close:hover { opacity: 1; }

.alert-success {
    background: rgba(22,163,74,.08);
    border: 1px solid rgba(22,163,74,.3);
    color: #166534;
}

.alert-error {
    background: rgba(220,38,38,.08);
    border: 1px solid rgba(220,38,38,.3);
    color: #991b1b;
}

.alert-warning {
    background: rgba(217,119,6,.08);
    border: 1px solid rgba(217,119,6,.3);
    color: #92400e;
}

/* ─── Empty State ────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--grey-600);
}

.empty-state .material-icons-outlined {
    font-size: 4rem;
    color: var(--grey-400);
    margin-bottom: 1rem;
}

.empty-state h3 { color: var(--grey-700); margin-bottom: .5rem; }

/* ─── Pagination ─────────────────────────────────────────── */
.pagination {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: .5rem 1rem;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 500;
}

.pagination a {
    background: var(--white);
    color: var(--grey-700);
    border: 1px solid var(--grey-300);
}

.pagination a:hover {
    background: var(--grey-100);
    color: var(--black);
}

.pagination-current {
    background: var(--red) !important;
    color: var(--white) !important;
    font-weight: 600;
}

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: var(--white);
    border-top: 3px solid var(--red);
    padding: 4rem 0 2rem;
    color: var(--black);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo .logo-img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-about {
    font-size: .9rem;
    color: #616161;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: .75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--grey-200);
    border-radius: 50%;
    color: #616161;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    color: var(--white);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--red);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: .65rem;
}

.footer-links a {
    color: #424242;
    font-size: .9rem;
    position: relative;
    transition: color var(--transition);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width var(--transition), left var(--transition);
}

.footer-links a:hover {
    color: var(--red);
}

.footer-links a:hover::after {
    width: 100%;
    left: 0;
}

.footer-links .muted {
    color: #757575;
    font-size: .9rem;
}

.footer-bottom {
    border-top: 1px solid var(--grey-300);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: .85rem;
    color: #616161;
    margin-bottom: .25rem;
}

.company-info {
    font-size: .8rem !important;
}

/* ─── Cookie Banner ──────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    border-top: 1px solid var(--grey-300);
    box-shadow: 0 -4px 24px rgba(0,0,0,.08);
}

.cookie-banner-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-inner p {
    font-size: .9rem;
    margin: 0;
    color: var(--grey-700);
}

.cookie-actions {
    display: flex;
    gap: .75rem;
    flex-shrink: 0;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .intro-grid,
    .content-grid,
    .venue-feature {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .venue-feature-reverse { direction: ltr; }
    .content-grid-reverse .content-text,
    .content-grid-reverse .content-image { order: unset; }

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

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

@media (max-width: 768px) {
    :root {
        --section-pad: 4rem;
    }

    .nav-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 2rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        z-index: 999;
        border-top: 1px solid var(--grey-300);
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-list a {
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--grey-200);
    }

    .hero-content { padding: 7rem 0 4rem; }
    .hero-title { font-size: 2.5rem; }

    .intro-stats { grid-template-columns: 1fr 1fr; }

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

    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .values-grid,
    .venues-grid,
    .features-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .intro-stats { grid-template-columns: 1fr; }
}

/* ─── Legal / Policy Pages ───────────────────────────────── */
.container-narrow { max-width: 800px; }

.legal-content h2 {
    font-size: 1.35rem;
    margin-top: 2.5rem;
    margin-bottom: .75rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--grey-300);
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: .5rem;
    color: var(--red);
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: .5rem;
    line-height: 1.7;
}

.legal-updated {
    background: var(--grey-100);
    padding: .75rem 1.25rem;
    border-radius: var(--radius);
    border-left: 3px solid var(--red);
    margin-bottom: 2rem;
    font-size: .9rem;
}

.legal-contact {
    background: var(--grey-100);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    margin: 1rem 0 1.5rem;
}

.legal-contact p { margin-bottom: .4rem; }
.legal-contact p:last-child { margin-bottom: 0; }

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: .9rem;
}

.cookie-table th {
    text-align: left;
    padding: .75rem 1rem;
    background: var(--grey-100);
    color: var(--red);
    font-weight: 600;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.cookie-table td {
    padding: .75rem 1rem;
    border-bottom: 1px solid var(--grey-200);
}

.cookie-table code {
    background: var(--grey-100);
    padding: .15rem .4rem;
    border-radius: 3px;
    font-size: .85em;
    color: var(--red);
}

/* GDPR Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0 2.5rem;
}

.right-card {
    background: var(--white);
    border: 1px solid var(--grey-300);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: border-color var(--transition);
}

.right-card:hover { border-color: var(--red); }
.right-card .material-icons-outlined { font-size: 2rem; color: var(--red); margin-bottom: .75rem; }
.right-card h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--black); }
.right-card p { font-size: .85rem; color: var(--grey-600); margin-bottom: 0; }

/* Small Hero Variant */
.page-hero-sm { padding: 8rem 0 3rem; }
.page-hero-sm h1 { font-size: 2.25rem; }
.page-hero-sm p { font-size: 1.1rem; }
