/* ===========================
   Morton Family Cellars
   Modern Winery Website
   =========================== */

:root {
    --wine: #1E3255;
    --wine-dark: #162744;
    --wine-light: #2C4A78;
    --gold: #C9A96E;
    --gold-light: #D4BC8B;
    --cream: #F5F6F8;
    --cream-dark: #E8EAF0;
    --charcoal: #1A2235;
    --text: #2D3340;
    --text-light: #5E6577;
    --white: #FFFFFF;
    --shadow: 0 2px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --transition: 0.3s ease;
    --font-heading: 'Cormorant Garamond', serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    line-height: 1.2;
    color: var(--charcoal);
}

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

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

a:hover {
    color: var(--gold);
}

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

/* ===========================
   Navigation
   =========================== */

#navbar.no-transition,
#navbar.no-transition * {
    transition: none !important;
}

.nav-inner {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-inner.visible {
    opacity: 1;
}

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

#navbar.scrolled {
    background: rgba(26, 34, 53, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@media (hover: hover) {
    .nav-logo:hover {
        color: var(--gold);
    }
}

.nav-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 50%;
}

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

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.5rem 0.9rem;
    border-radius: 4px;
    transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ===========================
   Hero
   =========================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #1a1a1a center/cover no-repeat;
    text-align: center;
}

.hero.hero-loaded {
    background-image: url('images/hero.webp');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    opacity: 0;
    transition: opacity 2s ease;
}

.hero-overlay.revealed {
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    padding-top: 14vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.hero-crest {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
    transition: transform 0.6s ease, filter 0.6s ease;
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
}

.hero-crest.revealed {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.4s ease, transform 1.4s ease, filter 0.6s ease;
}

.hero-crest:hover {
    transform: scale(1.08) rotate(1deg);
    filter: drop-shadow(0 0 25px rgba(201, 169, 110, 0.5)) drop-shadow(0 0 50px rgba(201, 169, 110, 0.25)) drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.hero-text {
    margin-top: auto;
    margin-bottom: calc(16vh - 10px);
    opacity: 0;
    transform: translateY(20px);
}

.hero-text.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 30px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    color: #FFFFFF;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.9rem 2.5rem;
    border-radius: 4px;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
    letter-spacing: 0.15em;
}

.btn-primary:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border-color: var(--white);
}

.btn-visit {
    background: rgba(0, 0, 0, 0.45);
    color: var(--gold);
    border: 1.5px solid var(--gold);
    letter-spacing: 0.12em;
}

.btn-visit:hover {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

.btn-visit-details {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    letter-spacing: 0.12em;
}

.btn-visit-details:hover {
    background: var(--gold);
    color: var(--charcoal);
}

.visit-cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* ===========================
   Welcome
   =========================== */

.welcome {
    padding: 5rem 0;
    text-align: center;
}

.welcome-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--text);
    max-width: 750px;
    margin: 0 auto;
}

.welcome-text strong {
    color: var(--wine);
}

/* ===========================
   Feature Cards
   =========================== */

.features {
    padding: 0 0 6rem;
}

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

.feature-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--gold);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    text-decoration: none;
    color: var(--text);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-light);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.15);
    color: var(--text);
}

.feature-img-wrap {
    height: 240px;
    overflow: hidden;
}

.feature-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-img-wrap img {
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.5rem;
    padding: 1.25rem 1.5rem 0.25rem;
    color: var(--wine-dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 0 1.5rem 1.5rem;
}

/* ===========================
   Parallax Banner
   =========================== */

.parallax-banner {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(22, 39, 68, 0.80);
}

.parallax-content {
    position: relative;
    z-index: 1;
    padding: 3rem 2rem;
    max-width: 700px;
}

.parallax-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    font-style: italic;
    font-weight: 400;
    margin-bottom: 1rem;
}

.parallax-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
}

/* ===========================
   Sections
   =========================== */

.section {
    padding: 6rem 0;
}

.page-section-first {
    padding-top: calc(72px + 4rem);
    padding-bottom: 3rem;
}

.section-dark {
    background: var(--charcoal);
    position: relative;
}

/* Section slant dividers */
.section-slant {
    display: block;
    width: 100%;
    height: 22px;
    margin-top: -1px;
    margin-bottom: -1px;
    position: relative;
    z-index: 2;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-dark p,
.section-dark address {
    color: rgba(255,255,255,0.8);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 0.75rem;
    position: relative;
    padding-bottom: 1.25rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 1.5rem auto 3rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.section-dark .section-intro {
    color: rgba(255,255,255,0.7);
}

/* ===========================
   About / Our Story
   =========================== */

.story-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.story-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.story-image {
    padding: 6px;
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.03);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.story-image img {
    width: 100%;
    border-radius: calc(var(--radius) - 2px);
    display: block;
}

.story-image:hover {
    border-color: var(--gold-light);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.15);
}

/* ===========================
   Philosophy
   =========================== */

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

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

.philosophy-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.philosophy-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.philosophy-img:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.philosophy-card h3 {
    font-size: 1.5rem;
    color: var(--wine-dark);
    margin-bottom: 0.75rem;
}

.philosophy-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

/* ===========================
   Vineyard
   =========================== */

.vineyard-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.vineyard-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.vineyard-images img {
    border-radius: var(--radius);
    object-fit: cover;
    width: 100%;
    height: 200px;
}

.vineyard-images img:first-child {
    grid-column: 1 / -1;
    height: 280px;
}

.vineyard-text p {
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.vineyard-text strong {
    color: var(--gold);
}

.vineyard-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vineyard-gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    border: 1.5px solid var(--gold);
    padding: 4px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.vineyard-gallery img:hover {
    transform: scale(1.03);
    border-color: var(--gold-light);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.15);
}

.vineyard-gallery-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.vineyard-gallery-top img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.vineyard-gallery-wide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center 70%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.section-dark .stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-left: 3px solid var(--gold);
}

.section-dark .stat-card-number {
    color: var(--gold);
}

.section-dark .stat-card-label {
    color: rgba(255,255,255,0.6);
}

.section-dark .vineyard-text-light p {
    color: rgba(255,255,255,0.8);
}

.section-dark .vineyard-text-light strong {
    color: var(--gold);
}

.section-dark .vineyard-text-light a {
    color: var(--gold-light);
}

.vineyard-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/thumb/Macro Bin 4.webp') center calc(50% + 45px)/cover no-repeat;
    text-align: center;
}

.vineyard-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.55) 100%
    );
}

.vineyard-hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem 2rem;
}

.vineyard-hero .section-title {
    color: var(--white);
    text-shadow: 0 2px 30px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3);
}

.vineyard-hero .section-intro {
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.vineyard-detail-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.vineyard-text-light p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text);
}

.vineyard-text-light strong {
    color: var(--wine);
}

.vineyard-stats-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 3px solid var(--gold);
}

.stat-card-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--wine);
}

.stat-card-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.vineyard-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gold);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.5);
}

/* ===========================
   Wines
   =========================== */

.wine-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.wine-category h3 {
    font-size: 1.6rem;
    color: var(--wine);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold);
}

.wine-list {
    list-style: none;
}

.wine-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 0.92rem;
}

.wine-list li:last-child {
    border-bottom: none;
}

.wine-name {
    font-weight: 500;
}

.wine-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    color: var(--text-light);
    font-style: italic;
}

/* Wine Page — Detailed Price List */

.wine-section {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.wine-section-title {
    font-size: 1.8rem;
    color: var(--wine);
    padding-bottom: 0.5rem;
    padding-left: 0.75rem;
    border-bottom: 2px solid var(--gold);
    border-left: 3px solid var(--wine);
    margin-bottom: 0.5rem;
}

.wine-price-header {
    display: grid;
    grid-template-columns: 1fr 55px 55px 65px 140px;
    gap: 0.5rem;
    padding: 0.5rem 0;
    padding-left: calc(80px + 1rem);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    text-align: right;
}

.wine-price-header span:first-child {
    text-align: left;
}

.wine-entry {
    border-bottom: 1px solid var(--cream-dark);
    padding: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.wine-entry-bottle {
    width: 80px;
    height: auto;
    flex-shrink: 0;
    align-self: center;
}

.wine-entry-info {
    flex: 1;
    min-width: 0;
}

.wine-entry:last-of-type {
    border-bottom: none;
}

.wine-entry-header {
    display: grid;
    grid-template-columns: 1fr 55px 55px 65px 140px;
    gap: 0.5rem;
    align-items: baseline;
    text-align: right;
}

.wine-club-price {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
}

.wine-entry-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal);
    text-align: left;
}

.wine-entry-price {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.wine-entry-price.wine-sale {
    color: var(--gold);
    font-weight: 600;
}

.wine-entry-origin {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-top: 0.25rem;
}

.wine-entry-notes {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.2rem;
    line-height: 1.5;
}

.wine-entry-aka {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
    margin-left: 0.25rem;
}

.wine-section-promo {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.wine-section-accent {
    text-align: center;
    background: var(--cream-dark);
    border-radius: var(--radius);
    padding: 2rem;
}

.wine-section-accent .wine-section-title {
    border-bottom: none;
    margin-bottom: 0.5rem;
}

.wine-slushie-info {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
}

.wine-slushie-layout {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: left;
}

.wine-slushie-img {
    width: 140px;
    height: auto;
    flex-shrink: 0;
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    padding: 4px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.wine-slushie-img:hover {
    border-color: var(--gold-light);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.15);
}

.wine-slushie-feature .wine-section-title {
    text-align: left;
}

.wine-slushie-desc {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    line-height: 1.6;
}

.wine-notes {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 1rem;
    border-top: 1px solid var(--cream-dark);
}

.wine-notes p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    font-style: italic;
}

@media (max-width: 600px) {
    .wine-price-header,
    .wine-entry-header {
        grid-template-columns: 1fr 40px 40px 50px;
    }

    .wine-entry-name {
        font-size: 1.1rem;
    }

    .wine-entry-bottle {
        display: none;
    }

    .wine-entry {
        display: block;
    }

    .wine-price-header {
        padding-left: 0;
    }

    .wine-club-price,
    .wine-price-header .wine-club-header {
        display: none;
    }
}

/* ===========================
   Events Page
   =========================== */

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    padding-bottom: 56.1%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.event-split {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

.event-split-img {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.event-split-img img {
    width: 100%;
    display: block;
}

.event-split-content {
    padding-top: 0.25rem;
}

.event-split-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text);
}

.event-split-content .event-feature-details {
    margin-top: 1rem;
}

.event-venue-details {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.event-venue-details p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .event-split {
        grid-template-columns: 1fr;
    }

    .event-split-img {
        max-width: 300px;
        margin: 0 auto;
    }
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

.event-feature {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.events-grid .event-feature {
    max-width: none;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--gold);
}

.event-featured {
    max-width: 800px;
    margin: 0 auto;
}

.section-dark .event-feature {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: none;
}

.section-dark .events-grid .event-feature {
    border-top: 3px solid var(--gold);
}

.event-feature-title {
    font-size: 2.2rem;
    color: var(--wine-dark);
    margin-bottom: 0.25rem;
}

.section-dark .event-feature-title {
    color: var(--white);
}

.event-feature-schedule {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(201, 169, 110, 0.12);
    border-radius: 4px;
    display: inline-block;
}

.section-dark .event-feature-schedule {
    background: rgba(201, 169, 110, 0.2);
    color: var(--gold-light);
}

.event-feature-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text);
}

.section-dark .event-feature-content p {
    color: rgba(255,255,255,0.8);
}

.event-feature-details {
    list-style: none;
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--cream-dark);
    border-radius: var(--radius);
}

.section-dark .event-feature-details {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.event-feature-details li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--text);
    padding-left: 1.5rem;
    position: relative;
}

.section-dark .event-feature-details li {
    color: rgba(255,255,255,0.8);
}

.event-feature-details li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.events-grid .event-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.events-grid .event-feature-details {
    margin-top: auto;
    padding-top: 1.5rem;
}

.events-grid .event-feature-title {
    font-size: 1.8rem;
}

.event-feature-cta {
    font-size: 0.92rem;
    margin-top: 1.5rem;
    opacity: 0.7;
}

.section-dark .event-feature-cta {
    color: rgba(255,255,255,0.6);
}

/* ===========================
   Wine Club Page
   =========================== */

.wine-club-perks-detail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.wine-club-detail-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-top: 3px solid var(--gold);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.wine-club-detail-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.wine-club-detail-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--gold);
}

.wine-club-detail-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.wine-club-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.wine-club-step {
    padding: 2rem 1.5rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.wine-club-step h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.wine-club-step p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ===========================
   Tasting Room
   =========================== */

.tasting-layout {
    margin-top: 2rem;
}

.tasting-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: -1rem;
    margin-bottom: -2rem;
}

.tasting-images img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1.5px solid var(--gold);
    padding: 4px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.tasting-images img:hover {
    transform: scale(1.03);
    border-color: var(--gold-light);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.15);
}

.tasting-story {
    max-width: 800px;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.tasting-story p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.tasting-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tasting-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 1.75rem;
}

.tasting-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.tasting-prices, .hours-list {
    list-style: none;
}

.tasting-prices li, .hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tasting-prices li:last-child, .hours-list li:last-child {
    border-bottom: none;
}

.hours-list li.closed span:last-child {
    color: rgba(255,255,255,0.4);
}

.tasting-note {
    font-size: 0.82rem;
    color: var(--gold-light);
    font-style: italic;
    margin-top: 0.75rem;
}

.tasting-card address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.6;
}

.tasting-phone {
    font-size: 1.1rem;
    color: var(--gold) !important;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* ===========================
   Events Banner
   =========================== */

.events-banner {
    background: var(--charcoal);
    padding: 4rem 0;
    text-align: center;
}

.events-banner h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 2rem;
}

.events-banner .events-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.event-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 500px;
    text-align: left;
}

.event-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
}

.event-time {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.event-card h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.event-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
}

/* ===========================
   Highlights (Wines & Events)
   =========================== */

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.highlight-block {
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
}

.highlight-title {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
}

.highlight-block p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.highlight-link {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    padding: 0.7rem 1.75rem;
    border-radius: 4px;
    transition: all var(--transition);
}

.highlight-link:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* ===========================
   Wine Club
   =========================== */

.wine-club-section {
    text-align: center;
}

.wine-club-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
}

.wine-club-perk {
    padding: 1.5rem;
}

.perk-icon {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--gold);
}

.wine-club-perk h4 {
    font-size: 1.2rem;
    color: var(--wine-dark);
    margin-bottom: 0.5rem;
}

.wine-club-perk p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===========================
   Plan Your Visit
   =========================== */

.visit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.visit-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.visit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.visit-hours {
    list-style: none;
}

.visit-hours li {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.visit-hours li:last-child {
    border-bottom: none;
}

.visit-hours li.closed span:last-child {
    color: rgba(255,255,255,0.4);
}

.visit-card address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
}

.visit-phone {
    margin-top: 0.5rem;
}

.visit-phone a {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 500;
}

.visit-directions {
    display: inline-block;
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: var(--charcoal);
    background: var(--gold);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    transition: all var(--transition);
}

.visit-directions:hover {
    background: var(--gold-light);
    color: var(--charcoal);
}

.visit-note {
    font-size: 0.82rem;
    color: var(--gold-light);
    font-style: italic;
    margin-top: auto;
    padding-top: 0.75rem;
}

/* ===========================
   Reviews
   =========================== */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.review-stars {
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    flex: 1;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1rem;
}

.review-source {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}

/* ===========================
   Footer Social
   =========================== */

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-social a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-social a:hover {
    color: var(--gold);
}

/* ===========================
   FAQ
   =========================== */

.faq-section {
    background: var(--cream-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.faq-item h4 {
    font-size: 1.2rem;
    color: var(--wine-dark);
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===========================
   Gallery
   =========================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ===========================
   Contact
   =========================== */

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--wine-dark);
    margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item address {
    font-size: 1rem;
    font-style: normal;
    color: var(--text);
}

.contact-item a:hover {
    color: var(--wine);
}

/* ===========================
   Footer
   =========================== */

footer {
    background: var(--charcoal);
    padding: 2.5rem 0 0;
    color: rgba(255,255,255,0.7);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-brand strong {
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
}

.footer-brand a {
    color: var(--gold-light);
    font-size: 0.82rem;
}

.footer-brand {
    font-size: 0.82rem;
    line-height: 1.5;
}

.footer-quote blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255,255,255,0.5);
    max-width: 400px;
}

.footer-quote cite {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.82rem;
    font-style: normal;
    color: rgba(255,255,255,0.3);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ===========================
   Lightbox
   =========================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    opacity: 1;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 2.5rem;
    padding: 0.5rem;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.lightbox-close {
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
}

/* ===========================
   Reusable Gold Link
   =========================== */

.link-gold {
    color: var(--gold);
    font-weight: 500;
}

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

/* ===========================
   Gallery Hover Overlay
   =========================== */

.gallery-item {
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 34, 53, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: var(--radius);
    pointer-events: none;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ===========================
   Wine Entry Hover
   =========================== */

.wine-entry {
    transition: background-color 0.2s ease;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    border-radius: 4px;
}

.wine-entry:hover {
    background-color: rgba(201, 169, 110, 0.06);
}

/* ===========================
   Wine Club CTA Button
   =========================== */

.btn-cta-gold {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--charcoal);
    background: var(--gold);
    padding: 0.9rem 2.5rem;
    border-radius: 4px;
    transition: all var(--transition);
    margin-top: 1.5rem;
}

.btn-cta-gold:hover {
    background: var(--gold-light);
    color: var(--charcoal);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
    transform: translateY(-1px);
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 1024px) {
    .feature-grid,
    .philosophy-grid,
    .wine-categories,
    .tasting-details-grid,
    .wine-club-perks-detail,
    .wine-club-steps {
        grid-template-columns: 1fr 1fr;
    }

    .feature-grid > :last-child {
        grid-column: 1 / -1;
    }

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

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

    .footer-inner {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(26, 34, 53, 0.95);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 1rem 2rem 1.5rem;
        display: none;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 0.6rem 0;
    }

    .feature-grid,
    .philosophy-grid,
    .wine-categories,
    .tasting-details-grid,
    .faq-grid,
    .highlights-grid,
    .wine-club-perks,
    .wine-club-perks-detail,
    .wine-club-steps,
    .visit-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid > :last-child {
        grid-column: auto;
    }

    .vineyard-layout,
    .vineyard-detail-layout,
    .contact-layout,
    .story-layout {
        grid-template-columns: 1fr;
    }

    .vineyard-gallery-top {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .vineyard-gallery-top img {
        height: auto;
    }

    .vineyard-detail-layout .vineyard-text-light p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .vineyard-stats-section {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-card {
        min-width: 0;
        flex: 1 1 auto;
    }

    .vineyard-images {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .parallax-banner {
        background-attachment: scroll;
    }

    .philosophy-img {
        width: 160px;
        height: 160px;
    }

    .vineyard-stats {
        justify-content: center;
    }

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

    .footer-brand {
        justify-content: center;
    }

    .footer-quote blockquote {
        max-width: 100%;
    }

    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tasting-images {
        grid-template-columns: 1fr;
    }

    .vineyard-images {
        grid-template-columns: 1fr;
    }

    .vineyard-images img:first-child {
        height: 220px;
    }

    .vineyard-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-crest {
        width: 200px;
    }

    .hero {
        background-position: calc(50% + 100px) 25%;
    }

    .hero-text {
        margin-bottom: calc(16vh + 5px);
    }

    .hero-overlay.revealed {
        opacity: 0.9;
    }

    .page-section-first {
        padding-top: calc(72px + 2.5rem);
    }

    .wine-slushie-layout {
        flex-direction: column;
        text-align: center;
    }

    .wine-slushie-feature .wine-section-title {
        text-align: center;
    }
}
