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

:root {
    --cream: #F4EFE4;
    --cream-light: #FAF8F3;
    --stone: #E8E0D0;
    --dark: #2A2018;
    --dark-soft: #4A3F32;
    --green: #4A6741;
    --green-light: #5C7D52;
    --blue: #5B7FA5;
    --gold: #C4943D;
    --gold-text: #96711E;
    --gold-light: #D4A94D;
    --rust: #A0522D;
    --white: #FDFCF9;
}

/* ============================================
   SKIP NAVIGATION
   ============================================ */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 200;
    padding: 0.75rem 1.5rem;
    background: var(--dark);
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0 0 4px 4px;
}

.skip-nav:focus {
    top: 0;
}

/* ============================================
   FOCUS STYLES
   ============================================ */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ============================================
   NOISE TEXTURE OVERLAY
   ============================================ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0.75rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(244, 239, 228, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(42, 32, 24, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo {
    font-family: 'Young Serif', serif;
    font-size: 1.35rem;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.4s;
}

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

.nav-links a {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--dark-soft);
    text-decoration: none;
    transition: color 0.4s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-bg {
    position: fixed;
    inset: 0;
    background:
        url('images/hero-plaza-park.webp')
        center / cover no-repeat;
    z-index: -1;
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(42, 32, 24, 0.15) 0%,
            rgba(42, 32, 24, 0.05) 40%,
            rgba(42, 32, 24, 0.35) 70%,
            rgba(42, 32, 24, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2.5rem 3rem 3rem;
    margin: 0 0 8vh 6vw;
    max-width: 900px;
    background: rgba(42, 32, 24, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 4px;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title {
    font-family: 'Young Serif', serif;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    line-height: 0.95;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-subtitle {
    font-family: 'Cormorant', serif;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 300;
    font-style: italic;
    color: rgba(253, 252, 249, 0.8);
    line-height: 1.6;
    max-width: 540px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 6vw;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeUp 1s 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253, 252, 249, 0.5);
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(253,252,249,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes charBounce {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(-0.06em); }
    70% { transform: translateY(0.01em); }
}

.hero-title.bounce-active span {
    animation: charBounce 0.4s ease-in-out forwards;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================
   MAIN CONTENT (covers fixed hero)
   ============================================ */
main {
    background: var(--cream);
    position: relative;
    z-index: 1;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro {
    background: var(--cream);
    position: relative;
    z-index: 1;
    padding: 10rem 6vw 8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-left {
    position: relative;
}

.intro-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-text);
    margin-bottom: 2rem;
}

.intro-heading {
    font-family: 'Young Serif', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.intro-text {
    font-family: 'Cormorant', serif;
    font-size: 1.25rem;
    line-height: 1.75;
    color: var(--dark-soft);
    max-width: 480px;
}

.intro-right {
    position: relative;
}

.intro-image-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.intro-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.intro-image-wrap:hover img {
    transform: scale(1.03);
}

.intro-image-accent {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 120px;
    height: 120px;
    border: 1px solid var(--gold);
    opacity: 0.3;
    z-index: -1;
}

.intro-stat {
    position: absolute;
    bottom: -3rem;
    left: -3rem;
    background: var(--dark);
    color: var(--cream);
    padding: 2rem 2.5rem;
    z-index: 2;
}

.intro-stat-number {
    font-family: 'Young Serif', serif;
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}

.intro-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* ============================================
   DIVIDER
   ============================================ */
.divider {
    background: var(--cream);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 6vw;
    max-width: 800px;
    margin: 0 auto;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--stone);
}

.divider-icon {
    color: var(--gold);
    font-size: 1.25rem;
    opacity: 0.6;
}

/* ============================================
   ATTRACTIONS SECTION
   ============================================ */
.attractions {
    background: var(--cream);
    position: relative;
    z-index: 1;
    padding: 4rem 6vw 10rem;
    max-width: 1500px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header .label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-text);
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-family: 'Young Serif', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
}

.attraction-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.attraction-card:nth-child(1) { grid-column: 1 / 8; grid-row: 1; }
.attraction-card:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.attraction-card:nth-child(3) { grid-column: 1 / 5; grid-row: 2; }
.attraction-card:nth-child(4) { grid-column: 5 / 13; grid-row: 2; }

.attraction-card .card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
}

.attraction-card:nth-child(2) .card-image,
.attraction-card:nth-child(3) .card-image {
    aspect-ratio: 4 / 5;
}

.attraction-card:hover .card-image {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(42,32,24,0.75) 0%, rgba(42,32,24,0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: background 0.5s;
}

.attraction-card:hover .card-overlay {
    background: linear-gradient(0deg, rgba(42,32,24,0.85) 0%, rgba(42,32,24,0.1) 70%);
}

.card-tag {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.card-title {
    font-family: 'Young Serif', serif;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.card-desc {
    font-family: 'Cormorant', serif;
    font-size: 1.05rem;
    color: rgba(253,252,249,0.7);
    font-style: italic;
    line-height: 1.5;
    max-width: 400px;
}

/* ============================================
   HERITAGE BAND
   ============================================ */
.heritage {
    background: var(--dark);
    color: var(--cream);
    padding: 8rem 6vw;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.heritage::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(196, 148, 61, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.heritage::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -150px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(196, 148, 61, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.heritage-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.heritage-quote {
    font-family: 'Cormorant', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--cream);
    position: relative;
    padding-left: 2rem;
    border-left: 2px solid var(--gold);
}

.heritage-quote cite {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-style: normal;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 1.5rem;
}

.heritage-text h3 {
    font-family: 'Young Serif', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    margin-bottom: 1.5rem;
    color: var(--cream);
}

.heritage-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(244, 239, 228, 0.7);
    margin-bottom: 1.25rem;
}

.heritage-text p:last-child {
    margin-bottom: 0;
}

.heritage-year {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    font-family: 'Young Serif', serif;
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
}

.heritage-year span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events {
    background: var(--cream);
    position: relative;
    z-index: 1;
    padding: 10rem 6vw;
    max-width: 1200px;
    margin: 0 auto;
}

.events::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: calc(3vw - ((100vw - 100%) / 2));
    width: 33vw;
    height: 33vw;
    max-width: 420px;
    max-height: 420px;
    background: url('images/texas-boerne.svg') no-repeat center / contain;
    color: var(--dark);
    pointer-events: none;
    z-index: 0;
}

.events > * {
    position: relative;
    z-index: 1;
}

.events-list {
    margin-top: 4rem;
}

.event-item {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    gap: 3rem;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--stone);
    transition: all 0.3s ease;
}

.event-item:first-child {
    border-top: 1px solid var(--stone);
}

.event-item:hover {
    padding-left: 1rem;
}

.event-month {
    font-family: 'Young Serif', serif;
    font-size: 1.1rem;
    color: var(--gold-text);
}

.event-info h4 {
    font-family: 'Young Serif', serif;
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}

.event-info p {
    font-family: 'Cormorant', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--dark-soft);
    line-height: 1.5;
}

.event-arrow {
    font-size: 1.25rem;
    color: var(--stone);
    transition: all 0.3s ease;
}

.event-item:hover .event-arrow {
    color: var(--gold);
    transform: translateX(4px);
}

/* ============================================
   BREWERIES SECTION
   ============================================ */
.breweries {
    background: var(--dark);
    color: var(--cream);
    padding: 8rem 6vw 10rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.breweries::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(196, 148, 61, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.breweries-banner {
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
    overflow: hidden;
    height: 280px;
}

.breweries-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    opacity: 0.5;
}

.breweries-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breweries .section-header .label {
    color: var(--gold);
}

.breweries .section-header h2 {
    color: var(--cream);
}

.breweries-intro {
    font-family: 'Cormorant', serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(244, 239, 228, 0.6);
    text-align: center;
    max-width: 620px;
    margin: -2rem auto 4rem;
}

.breweries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.brewery-card {
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(244, 239, 228, 0.08);
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.brewery-card:hover {
    border-color: rgba(196, 148, 61, 0.3);
    background: rgba(244, 239, 228, 0.03);
    transform: translateY(-3px);
}

.brewery-est {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.brewery-name {
    font-family: 'Young Serif', serif;
    font-size: 1.35rem;
    color: var(--cream);
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.brewery-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(244, 239, 228, 0.55);
    flex: 1;
}

.brewery-arrow {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: rgba(244, 239, 228, 0.15);
    transition: all 0.3s;
    align-self: flex-end;
}

.brewery-card:hover .brewery-arrow {
    color: var(--gold);
    transform: translate(3px, -3px);
}

@media (max-width: 1024px) {
    .breweries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .breweries { padding: 5rem 1.5rem; }

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

/* ============================================
   NATURE SECTION
   ============================================ */
.nature {
    background: var(--cream);
    position: relative;
    z-index: 1;
    padding: 0 0 10rem;
}

.nature-banner {
    width: 100%;
    height: 60vh;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.nature-content {
    max-width: 1200px;
    margin: -6rem auto 0;
    padding: 0 6vw;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.nature-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 60px rgba(42, 32, 24, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(42, 32, 24, 0.3);
}

.nature-card-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.nature-card h4 {
    font-family: 'Young Serif', serif;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.nature-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--dark-soft);
}

/* ============================================
   WINE SECTION
   ============================================ */
.wine {
    background: var(--cream-light);
    position: relative;
    z-index: 1;
    padding: 8rem 6vw;
}

.wine-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.wine-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.wine-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.wine-image-wrap:hover img {
    transform: scale(1.03);
}

.wine-text .label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-text);
    margin-bottom: 1.5rem;
}

.wine-text h3 {
    font-family: 'Young Serif', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.wine-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--dark-soft);
    margin-bottom: 1.25rem;
}

.wine-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.wine-tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--stone);
    color: var(--dark-soft);
    text-decoration: none;
    transition: all 0.3s;
}

.wine-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================================
   VISIT CTA
   ============================================ */
.visit {
    background: var(--cream);
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 10rem 6vw;
}

.visit-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-text);
    margin-bottom: 2rem;
}

.visit h2 {
    font-family: 'Young Serif', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.visit p {
    font-family: 'Cormorant', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--dark-soft);
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    background: var(--dark);
    padding: 1.25rem 3rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.visit-btn:hover {
    background: var(--green);
    gap: 1.25rem;
}

.visit-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.visit-btn:hover svg {
    transform: translateX(2px);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--dark);
    color: var(--cream);
    position: relative;
    z-index: 1;
    padding: 5rem 6vw 3rem;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(244, 239, 228, 0.08);
}

.footer-brand {
    font-family: 'Young Serif', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand-sub {
    font-family: 'Cormorant', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(244, 239, 228, 0.5);
    line-height: 1.6;
}

.footer-col h5 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    color: rgba(244, 239, 228, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--cream);
}

.footer-fact {
    display: block;
    color: rgba(244, 239, 228, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(244, 239, 228, 0.5);
}

.footer-designer-link {
    color: rgba(244, 239, 228, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-designer-link:hover {
    color: var(--gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .intro {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 6rem 6vw;
    }

    .intro-stat {
        bottom: -2rem;
        left: 0;
    }

    .heritage-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .attraction-card:nth-child(1) { grid-column: 1 / 3; grid-row: auto; }
    .attraction-card:nth-child(2) { grid-column: 1; grid-row: auto; }
    .attraction-card:nth-child(3) { grid-column: 2; grid-row: auto; }
    .attraction-card:nth-child(4) { grid-column: 1 / 3; grid-row: auto; }

    .nature-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .wine-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    nav.scrolled { padding: 0.75rem 1.5rem; }

    .nav-links { display: none; }

    .hero-content { padding: 2rem 1.5rem 2.5rem; margin: 0 0 6vh 1.5rem; max-width: calc(100% - 3rem); }

    .intro { padding: 5rem 1.5rem; }

    .attractions { padding: 4rem 1.5rem 6rem; }
    .attractions-grid { grid-template-columns: 1fr; }
    .attraction-card:nth-child(1),
    .attraction-card:nth-child(2),
    .attraction-card:nth-child(3),
    .attraction-card:nth-child(4) { grid-column: 1; }
    .attraction-card .card-image { aspect-ratio: 16 / 10 !important; }

    .heritage { padding: 5rem 1.5rem; }

    .events { padding: 5rem 1.5rem; }
    .event-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .event-arrow { display: none; }

    .wine { padding: 5rem 1.5rem; }

    .visit { padding: 6rem 1.5rem; }

    footer { padding: 3rem 1.5rem 2rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .hero-bg {
        transform: none !important;
        transition: none !important;
    }
}
