:root {
    --white: #FFFFFF;
    --off-white: #FDFCF9;
    --sand: #F7EEDF;
    --light-sand: #FFFBF2;
    --pindan: #D95A2B; 
    --pindan-dark: #B54A21;
    --teal: #06B6D4;
    --ink: #2C2A26;
    --muted: #6B7280;
    --light-muted: #9CA3AF;
    --border: #E5E7EB;
    --noise-opacity: 0.06;

    --font-sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --font-serif: 'Fraunces', serif;

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.02), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.03);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: var(--off-white);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

/* Add a subtle noise background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.6" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23n)"/></svg>');
    opacity: var(--noise-opacity);
    pointer-events: none;
    z-index: -1;
}

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

a {
    color: var(--pindan);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover {
    color: var(--pindan-dark);
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 0.5em 0;
}

h1.page-heading {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--ink);
}

h2.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    margin-bottom: 0.1em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: clamp(3rem, 8vw, 6rem) 0;
}
.section.section-alt {
    background: var(--light-sand);
}

.section-head {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.section-dek {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 50ch;
    margin: 0 auto;
}

/* --- HEADER --- */
.site-header {
    background-color: rgba(253, 252, 249, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 2px solid var(--sand);
    box-shadow: var(--shadow-sm);
}
.main-nav {
    display: none;
}
@media (min-width: 768px) {
    .main-nav {
        display: flex;
        gap: 24px;
        align-items: center;
        font-weight: 500;
    }
    .main-nav a {
        color: var(--ink);
        padding: 8px 0;
        position: relative;
    }
    .main-nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--pindan);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }
    .main-nav a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }
}
.header-cta .btn {
    font-size: 14px;
}

/* --- BTNS & CHIPS --- */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 99px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
}
.btn-primary {
    background-color: var(--pindan);
    color: var(--white);
    border-color: var(--pindan);
}
.btn-primary:hover {
    background-color: var(--pindan-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-ghost {
    border-color: var(--border);
    color: var(--ink);
}
.btn-ghost:hover {
    background-color: var(--sand);
    border-color: var(--sand);
    color: var(--ink);
}
.btn-dark {
    background-color: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}
.btn-dark:hover {
    background-color: var(--muted);
    color: var(--white);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.chip {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}
.chip:hover {
    background: var(--sand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* --- HERO --- */
.hero {
    text-align: center;
    padding: clamp(3rem, 10vw, 8rem) 0;
    background: var(--off-white);
}
.hero-eyebrow {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* --- LEAD STORY --- */
.story-card {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 768px) {
    .story-card {
        grid-template-columns: 1fr 1fr;
    }
}
.story-image {
    height: 400px;
    border-radius: 8px;
    background: linear-gradient(to top, var(--pindan), var(--sand), var(--teal));
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: rotate(-1.5deg);
    transition: transform 0.3s ease;
}
.story-card:hover .story-image {
    transform: rotate(0) scale(1.02);
}
.story-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
}
.story-content .section-kicker {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--pindan);
    font-size: 1rem;
}
.story-content p {
    max-width: 45ch;
    font-size: 1.1rem;
    line-height: 1.6;
}
.byline {
    font-style: italic;
    color: var(--muted);
}

/* --- EDITORIAL GUIDES --- */
.grid-3 {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}
.editorial-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}
.editorial-card:nth-child(even) {
    transform: rotate(0.8deg);
}
.editorial-card:nth-child(odd) {
    transform: rotate(-0.8deg);
}
.editorial-card:hover {
    transform: rotate(0) translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.editorial-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.editorial-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
}

/* --- HIT LIST (VENUE CARDS) --- */
.venue-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 640px) {
    .venue-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .venue-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.venue-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}
.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Add stamped number */
.venue-card::before {
    counter-increment: hitlist;
    content: "0" counter(hitlist);
    position: absolute;
    top: -5px;
    left: -5px;
    width: 48px;
    height: 48px;
    background: var(--pindan);
    color: var(--white);
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    transform: rotate(-15deg);
    z-index: 2;
}

.venue-card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    /* Fake paper texture on image */
    position: relative;
}
.venue-card-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://www.transparenttextures.com/patterns/paper.png);
    opacity: 0.2;
    mix-blend-mode: overlay;
}
.venue-card-body {
    padding: 1.25rem;
}
.venue-card-title {
    font-size: 1.25rem;
    margin: 0;
    font-family: var(--font-serif);
}
.venue-card-meta {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0.25rem 0 0.75rem;
}
.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 6px;
}
.badge-open {
    background-color: #D1FAE5;
    color: #065F46;
}
.badge-closed {
    background-color: #FEE2E2;
    color: #991B1B;
}
.loading-row {
    height: 200px;
    background: #eee;
    border-radius: 8px;
    animation: pulse 1.5s infinite ease-in-out;
}
@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* --- FEATURE LONGFORM --- */
.feature-longform .info-card {
    background: var(--sand);
    padding: clamp(2rem, 8vw, 4rem);
    border-radius: 8px;
    display: grid;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 992px) {
    .feature-longform .info-card {
        grid-template-columns: 1fr 2fr;
        padding: clamp(2rem, 8vw, 5rem);
    }
}
.pull-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -0.03em;
    border-left: 5px solid var(--pindan);
    padding-left: 1.5rem;
}
.info-content h3 {
    font-size: 1.75rem;
}
.info-content p {
    max-width: 60ch;
    margin-bottom: 2rem;
}

/* --- AREA GRID --- */
.area-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.area-card {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    color: var(--ink);
    position: relative;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}
/* Stamped effect */
.area-card::after {
    content: 'EXPLORE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-size: 3rem;
    font-family: var(--font-serif);
    font-weight: 900;
    color: var(--pindan);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.area-card > * {
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.area-card:hover {
    color: var(--ink);
    border-color: var(--pindan);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.area-card:hover::after {
    opacity: 0.1;
}

.area-name {
    font-size: 1.75rem;
}
.area-count {
    color: var(--muted);
    margin: 0;
}

/* --- VALUES & CTA --- */
.values-strip {
    background: var(--ink);
    color: var(--light-sand);
    padding: 1.5rem 0;
    text-align: center;
    font-weight: 500;
}
.cta-band {
    background: linear-gradient(45deg, var(--sand), var(--light-sand));
    text-align: center;
}
.cta-band h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
}
.cta-band p {
    max-width: 50ch;
    margin: 1rem auto 2rem;
}

/* --- FOOTER --- */
.site-footer {
    background: var(--sand);
    color: var(--muted);
    padding: 4rem 0 2rem;
    font-size: 15px;
    border-top: 5px solid var(--pindan);
}
.footer-grid {
    display: grid;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}
.footer-brand .logo img {
    height: 60px;
    width: 60px;
    margin-bottom: 1rem;
}
.footer-about {
    max-width: 35ch;
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-col h4 {
    font-family: var(--font-sans);
    font-weight: 700;
    color: var(--ink);
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.footer-col a {
    color: var(--muted);
}
.footer-col a:hover {
    color: var(--ink);
}
.footer-copy {
    padding-top: 2rem;
    font-size: 13px;
    text-align: center;
}
.footer-copy p {
    margin: 0 0 1rem;
    max-width: 80ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
