/* =============================================
   Clos Du Bois Wines — Styles
   Palette: Midnight Blue + Mint
   ============================================= */

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

:root {
    --midnight-deep:    #060e1a;
    --midnight:         #0a1628;
    --midnight-light:   #1a3a5c;
    --midnight-mid:     #2a5a7c;
    --mint:             #7fbfa8;
    --mint-light:       #a8d4be;
    --mint-pale:        #d4eade;
    --mint-paler:       #eaf3ee;
    --cream:            #f5f2ed;
    --cream-light:      #faf8f5;
    --warm-white:       #fdfcfa;
    --text-dark:        #1a1a1a;
    --text-body:        #3a3a3a;
    --text-muted:       #6a6a6a;
    --text-light:       #f5f2ed;
    --gold:             #c9a96e;
    --gold-light:       #dfc08a;
    
    --font-serif:       'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --nav-height:       80px;
    --container-max:    1200px;
    --container-narrow: 800px;
    
    --radius-sm:        4px;
    --radius-md:        8px;
    --radius-lg:        16px;
    
    --shadow-sm:        0 1px 3px rgba(10, 22, 40, 0.08);
    --shadow-md:        0 4px 20px rgba(10, 22, 40, 0.10);
    --shadow-lg:        0 8px 40px rgba(10, 22, 40, 0.14);
    --shadow-xl:        0 16px 60px rgba(10, 22, 40, 0.18);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-body);
    background: var(--warm-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--mint);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--mint-light);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--midnight);
    line-height: 1.2;
    font-weight: 600;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
    color: var(--midnight);
}

.text-accent {
    color: var(--mint);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.lead {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--mint);
    color: var(--midnight);
    border-color: var(--mint);
}

.btn-primary:hover {
    background: var(--mint-light);
    border-color: var(--mint-light);
    color: var(--midnight);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--text-light);
}

.btn-full {
    width: 100%;
}

/* ---------- HEADER / NAV ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(10, 22, 40, 0.0);
    transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-light);
    z-index: 1001;
}

.logo-mark {
    color: var(--mint);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-primary {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo-secondary {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mint);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(245, 242, 237, 0.8);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: color 0.25s ease, background 0.25s ease;
    letter-spacing: 0.02em;
}

.nav-link:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--mint);
    border: 1.5px solid var(--mint);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.04em;
}

.nav-cta:hover {
    background: var(--mint);
    color: var(--midnight);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-light);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 1.5px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.mobile-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--midnight-deep);
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 40px;
    overflow-y: auto;
}

.mobile-nav-overlay.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--text-light);
    padding: 16px 24px;
    text-decoration: none;
    transition: color 0.25s ease;
    width: 100%;
    text-align: center;
}

.mobile-nav-link:hover {
    color: var(--mint);
}

.mobile-nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--mint);
    margin-top: 24px;
    text-decoration: none;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--midnight-deep);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(6, 14, 26, 0.7) 0%,
        rgba(10, 22, 40, 0.5) 40%,
        rgba(10, 22, 40, 0.65) 70%,
        rgba(6, 14, 26, 0.9) 100%
    );
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(6, 14, 26, 0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 0 24px;
    padding-top: var(--nav-height);
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: 28px;
}

.hero-accent {
    color: var(--mint);
    font-style: italic;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(245, 242, 237, 0.75);
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 242, 237, 0.4);
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

/* ---------- ABOUT ---------- */
.about {
    padding: 120px 0;
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--mint-pale);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-content {
    padding: 16px 0;
}

.about-content p {
    margin-bottom: 18px;
}

.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(10, 22, 40, 0.08);
}

.stat {
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--midnight);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    background: rgba(10, 22, 40, 0.1);
    align-self: stretch;
    margin: 4px 0;
}

/* ---------- WINE SECTION ---------- */
.wine-section {
    padding: 120px 0;
    background: var(--cream);
}

.wine-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.wine-category {
    background: var(--warm-white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 22, 40, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.wine-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.wine-category-icon {
    color: var(--mint);
    margin-bottom: 20px;
}

.wine-category-name {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.wine-category-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.wine-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
    font-size: 0.9375rem;
}

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

.wine-name {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--midnight);
}

.wine-region {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
    white-space: nowrap;
    margin-left: 12px;
}

.wine-note {
    text-align: center;
    margin-top: 48px;
    font-size: 0.9375rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ---------- FOOD SECTION ---------- */
.food-section {
    padding: 120px 0;
    background: var(--warm-white);
}

.food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.food-items {
    margin: 32px 0;
}

.food-item {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.food-item:first-child {
    padding-top: 0;
}

.food-item:last-child {
    border-bottom: none;
}

.food-item-mark {
    color: var(--mint);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    line-height: 1;
    padding-top: 4px;
}

.food-item-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 4px;
}

.food-item-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.food-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 8px;
}

.food-image-stack {
    position: relative;
    padding-top: 40px;
}

.food-image-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.food-image-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 260px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 4px solid var(--warm-white);
}

.food-image-float img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ---------- EXPERIENCE STRIP ---------- */
.experience-strip {
    background: var(--midnight);
    padding: 80px 0;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.experience-item {
    text-align: center;
    padding: 24px 16px;
}

.exp-icon {
    color: var(--mint);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.exp-title {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.exp-desc {
    font-size: 0.875rem;
    color: rgba(245, 242, 237, 0.6);
    line-height: 1.7;
}

/* ---------- EVENTS ---------- */
.events-section {
    padding: 120px 0;
    background: var(--cream);
}

.events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.events-list {
    list-style: none;
    margin: 32px 0 40px;
}

.events-list li {
    display: flex;
    gap: 16px;
    align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(10, 22, 40, 0.06);
}

.events-list li:first-child {
    padding-top: 0;
}

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

.event-tag {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--midnight);
    white-space: nowrap;
    min-width: 140px;
    padding-top: 2px;
}

.event-desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.events-image-group {
    display: grid;
    gap: 20px;
}

.events-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.events-img-top {
    height: 220px;
}

/* ---------- TESTIMONIAL ---------- */
.testimonial-section {
    padding: 100px 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(127, 191, 168, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-wrapper {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-mark {
    font-family: var(--font-serif);
    font-size: 8rem;
    line-height: 0.8;
    color: var(--mint);
    opacity: 0.25;
    position: absolute;
    top: -40px;
    left: -10px;
    pointer-events: none;
}

.testimonial-wrapper blockquote {
    margin-bottom: 28px;
}

.testimonial-wrapper p {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.65;
}

.testimonial-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.testimonial-source {
    font-size: 0.8125rem;
    color: var(--mint);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

/* ---------- VISIT / CONTACT ---------- */
.visit-section {
    padding: 120px 0;
    background: var(--warm-white);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.contact-icon {
    color: var(--mint);
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
}

.contact-item h4 {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--midnight);
    margin-bottom: 6px;
}

.contact-item p {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.7;
}

.contact-item a {
    color: var(--midnight-light);
}

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

.form-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(10, 22, 40, 0.05);
}

.form-title {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--midnight);
    letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    padding: 12px 16px;
    border: 1.5px solid rgba(10, 22, 40, 0.12);
    border-radius: var(--radius-sm);
    background: var(--warm-white);
    color: var(--text-dark);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--mint);
    box-shadow: 0 0 0 3px rgba(127, 191, 168, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    color: var(--mint);
    margin: 0 auto 20px;
}

.form-success h4 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--midnight);
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.form-success a {
    color: var(--mint);
    font-weight: 500;
}

/* ---------- MAP ---------- */
.map-section {
    border-top: 1px solid rgba(10, 22, 40, 0.06);
}

.map-container {
    height: 400px;
    filter: saturate(0.6) contrast(1.05);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--midnight-deep);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(245, 242, 237, 0.55);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--mint);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-hours ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(245, 242, 237, 0.6);
    transition: color 0.25s ease;
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.875rem;
    color: rgba(245, 242, 237, 0.6);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-hours .closed {
    color: rgba(245, 242, 237, 0.35);
}

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(245, 242, 237, 0.6);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--mint);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 242, 237, 0.35);
}

.footer-legal {
    font-size: 0.75rem !important;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Scroll-reveal (progressive enhancement — content visible without JS) */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    
    .reveal[data-animate] {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .reveal[data-animate].revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .wine-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .about-grid,
    .food-grid,
    .events-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-wrap {
        order: -1;
    }
    
    .food-image-stack {
        order: -1;
        padding-top: 0;
    }
    
    .food-image-float {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 68px;
    }
    
    .nav-list,
    .nav-cta {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .wine-categories {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .events-image-group {
        order: -1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 32px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .about,
    .wine-section,
    .food-section,
    .events-section,
    .visit-section {
        padding: 80px 0;
    }
    
    .hero-content {
        padding-top: calc(var(--nav-height) + 20px);
    }
    
    .testimonial-mark {
        font-size: 5rem;
        top: -20px;
    }
}
