/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Modern & Subtle */
    --primary-color: #2d5a2d;
    --secondary-color: #7f8c8d;
    --accent-color: #C4A77D;
    --green-subtle: #5a7a6f;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --white: #fff;
    --light-bg: #f8f9fa;
    --cream-bg: #fdfbf7;
    --overlay: rgba(45, 90, 45, 0.5);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 20px;
    --container-max: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.loaded {
    opacity: 1;
}

body.no-scroll {
    overflow: hidden;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
}

p {
    text-align: justify;
    hyphens: auto;
}

@media (max-width: 480px) {
    p { text-align: justify; }
}

/* ============================================
   AGE VERIFICATION POPUP
   ============================================ */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.age-verification-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-verification-modal {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.5s ease;
}

@keyframes modalFadeIn {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.age-logo {
    margin: 0 auto 30px;
    width: 100px;
    height: 100px;
}

.age-logo svg,
.age-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.age-verification-modal h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.age-message {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.age-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.age-yes {
    background: var(--primary-color);
    color: var(--white);
}

.age-yes:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 90, 45, 0.3);
}

.age-no {
    background: var(--light-bg);
    color: var(--text-dark);
}

.age-no:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.age-disclaimer {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.4;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.brand-text .brand-name {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: -5px;
    display: block;
}

.brand-text .tagline {
    font-size: 0.8rem;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

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

.schedule-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(45, 90, 45, 0.3);
}

.schedule-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 90, 45, 0.4);
}

.schedule-btn svg {
    width: 18px;
    height: 18px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 5px 8px;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.lang-btn:hover {
    background: var(--light-bg);
    color: var(--primary-color);
}

.lang-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.lang-divider {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Hidden on desktop, shown inside the mobile nav dropdown */
.nav-lang-mobile {
    display: none;
}

/* Language loading transition */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d5a2d 0%, #3d6b3d 100%);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.page-transition.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.transition-logo {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
    animation: logoFade 1.5s ease-in-out infinite;
}

.transition-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
    color: white;
}

.transition-subtitle {
    font-size: 0.8rem;
    font-weight: 400;
    color: #C4A77D;
    margin: 5px 0 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.transition-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #C4A77D;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.transition-text {
    font-size: 1.2rem;
    font-weight: 600;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes logoFade {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2d5a2d 0%, #4a7c4a 50%, #5a7a6f 100%);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 20px;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    height: 120px;
    width: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-size: clamp(2.2rem, 7vw, 5rem);
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    background: var(--white);
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 30px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 10px;
}

.divider {
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--section-padding);
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
    text-align: justify;
    hyphens: auto;
    line-height: 1.8;
}

.about-image {
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.about-image .image-placeholder {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.video-background {
    background: linear-gradient(135deg, #2d5a2d 0%, #3d6b3d 50%, #2d5a2d 100%);
    padding: var(--section-padding);
    position: relative;
}

.video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="white" opacity="0.1"/></svg>');
    opacity: 0.4;
}

.video-section .section-header {
    position: relative;
    z-index: 1;
}

.video-section .section-header h2,
.video-section .section-header .section-subtitle {
    color: var(--white);
}

.video-section .divider {
    background: var(--accent-color);
}

.video-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.video-wrapper video {
    object-fit: cover;
}

.video-description {
    background: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.video-description h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.video-description p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
    hyphens: auto;
}

.video-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
}

.highlight-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.highlight-item span {
    color: var(--text-dark);
    font-weight: 600;
}

/* ============================================
   WINE SECTION — PRODUCT CARDS GRID
   ============================================ */
.wine-section {
    padding: var(--section-padding);
    background: var(--cream-bg);
}

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

.wine-product-card {
    text-align: center;
}

.wine-product-img {
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.wine-product-img img {
    aspect-ratio: 2/3;
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.wine-product-card:hover .wine-product-img img {
    transform: scale(1.05);
}

.wine-product-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.wine-product-grape {
    font-family: var(--font-body);
    font-variant: small-caps;
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.wine-product-note {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================
   TESTIMONIALS MARQUEE STRIP
   ============================================ */
.marquee-section {
    background: #1a3c1a;
    padding: 20px 0;
    overflow: hidden;
}

.marquee-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: marquee-scroll 55s linear infinite;
}

.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .marquee-track {
        animation: none;
    }
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.marquee-card {
    flex: 0 0 340px;
    width: 340px;
    height: 220px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    margin-right: 16px;
}

.quote-card {
    background: #1a3c1a;
    border: 1px solid rgba(196, 167, 125, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px;
    text-align: center;
    box-sizing: border-box;
}

.marquee-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.0rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.65;
    margin: 0 0 14px;
}

.marquee-rule {
    width: 48px;
    border: none;
    border-top: 1px solid var(--accent-color);
    margin: 0 auto 12px;
}

.marquee-cite {
    font-family: var(--font-body);
    font-variant: small-caps;
    font-style: normal;
    font-size: 0.68rem;
    color: var(--accent-color);
    letter-spacing: 0.1em;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

/* ============================================
   REGION SECTION
   ============================================ */
.region-section {
    padding: var(--section-padding);
    background: var(--white);
}

.region-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.region-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
    text-align: justify;
    hyphens: auto;
    line-height: 1.8;
}

.region-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
}

.fact {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 10px;
    border: 2px solid var(--cream-bg);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.fact h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.fact p {
    color: var(--text-light);
    font-weight: 600;
}

.region-image .image-placeholder {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.region-image svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CONTACT SECTION — SPLIT LAYOUT
   ============================================ */
.contact-section {
    padding: var(--section-padding);
    background: var(--cream-bg);
}

/* New split layout */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-split-left h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-address p {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

.contact-address .maps-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    margin: 8px 0 14px;
    transition: color 0.2s;
}

.contact-address .maps-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-address .contact-email a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.contact-address .contact-email a:hover {
    color: var(--primary-color);
}

.contact-map {
    margin-top: 24px;
}

.contact-split-right h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-card .icon {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    margin: 0 auto 15px;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-card p {
    color: var(--text-light);
}

.contact-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-color: var(--primary-color);
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
    background: #888 !important;
    color: #fff !important;
}

/* ============================================
   FOCUS VISIBLE — keyboard accessibility
   ============================================ */
.cta-button:focus-visible,
.age-btn:focus-visible,
.schedule-btn:focus-visible,
.submit-button:focus-visible,
.cookie-btn:focus-visible,
.lang-btn:focus-visible,
.menu-toggle:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* ============================================
   CERTIFICATION SECTION
   ============================================ */
.certification-section {
    padding: 60px 20px;
    background: var(--white);
    border-top: 1px solid var(--light-bg);
}

.certification-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.certification-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.certification-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: justify;
    hyphens: auto;
}

.certification-logos {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.cert-logo-link {
    display: block;
    transition: transform 0.3s ease;
}

.cert-logo-link:hover {
    transform: scale(1.05);
}

.cvrvv-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d5a2d 0%, #1a3a1a 100%);
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #C4A77D;
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: #C4A77D;
    color: #1a3a1a;
}

.cookie-btn.accept:hover {
    background: #d4b88d;
    transform: translateY(-2px);
}

.cookie-btn.essential {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cookie-btn.essential:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.cookie-btn.learn-more {
    background: transparent;
    color: #C4A77D;
    padding: 0.75rem 1rem;
    text-decoration: underline;
}

.cookie-btn.learn-more:hover {
    opacity: 0.8;
}

/* ============================================
   ABOUT LABEL (Stitch — gold small-caps tag)
   ============================================ */
.about-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-color);
    margin-bottom: 10px;
}

/* ============================================
   HERO — italic tagline
   ============================================ */
.hero-italic {
    font-style: italic;
    font-family: var(--font-heading);
    font-weight: 400;
    opacity: 0.9;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1a3c1a;
    color: var(--white);
    padding: 60px 20px 0;
}

.footer-dark {
    background: #1a3c1a;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand-name {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.footer-brand-name .footer-logo {
    margin-bottom: 0;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 4px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 2px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 20px;
    align-items: center;
    align-self: center;
}

.footer-nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

.footer-social-col {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
    align-self: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}

.footer-social-link svg {
    flex-shrink: 0;
}

.footer-social-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
}

.footer-bottom p {
    margin: 5px 0;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 10px 0;
}

.footer-legal a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-legal span {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.producer {
    opacity: 0.9 !important;
    font-size: 0.95rem !important;
}

.producer strong {
    font-weight: 600;
    opacity: 1;
}

.disclaimer {
    font-style: italic;
    font-size: 0.8rem !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scrollDown {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    :root {
        --section-padding: 60px 20px;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .about-content,
    .wine-cards-grid,
    .press-quotes,
    .region-content,
    .contact-split,
    .contact-content,
    .video-container,
    .certification-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .schedule-btn span {
        display: none;
    }

    .schedule-btn {
        padding: 10px 12px;
    }

    .nav-actions {
        gap: 6px;
    }

    /* Move lang switcher into hamburger menu on mobile */
    .lang-switcher {
        display: none;
    }

    .nav-lang-mobile {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 0 0;
        border-top: 1px solid var(--light-bg);
        margin-top: 8px;
    }

    .brand-logo {
        height: 38px;
    }

    .brand-text .brand-name {
        font-size: 1.4rem;
    }

    .brand-text .tagline {
        font-size: 0.7rem;
    }
    
    .wine-carousel {
        position: static;
        max-width: 420px;
        margin: 0 auto;
    }
    
    .region-facts {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-nav,
    .footer-social-col {
        align-items: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1.2rem;
    }
        .hero-logo {
        height: 80px;
    }
        .section-header h2 {
        font-size: 2rem;
    }
    
    .nav-brand h1 {
        font-size: 1.3rem;
    }

    .brand-text .tagline {
        display: none;
    }
    
    .brand-logo {
        height: 34px;
    }

    .lang-btn {
        min-width: 36px;
        min-height: 36px;
        font-size: 0.8rem;
        padding: 4px 6px;
    }

    .schedule-btn {
        padding: 8px 10px;
    }

    .nav-actions {
        gap: 4px;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-text h3 {
        font-size: 1.2rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-legal span {
        display: none;
    }
}

/* ============================================
   BOTTLE LIGHTBOX
   ============================================ */
.wc-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: lb-in 0.25s ease;
}

.wc-lightbox.open {
    display: flex;
}

@keyframes lb-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.wc-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.7);
    animation: lb-zoom 0.25s ease;
    cursor: default;
    display: block;
}

/* zoomable content images */
.about-image img,
.region-image img,
.certification-content img {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.about-image img:hover,
.region-image img:hover,
.certification-content img:hover {
    transform: scale(1.02);
}

/* zoomable video wrapper */
.video-wrapper {
    cursor: zoom-in;
}

@keyframes lb-zoom {
    from { transform: scale(0.92); opacity: 0.6; }
    to   { transform: scale(1);    opacity: 1; }
}

.wc-lightbox-close {
    position: fixed;
    top: 18px;
    right: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.2s, background 0.2s;
    z-index: 10000;
}

.wc-lightbox-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.22);
}

/* ============================================
   NOTIFICATIONS
   ============================================ */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 18px 28px;
    color: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
    z-index: 10001;
    max-width: 400px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    animation: slideInRight 0.3s ease forwards;
}

.notification-success { background: #2d5a2d; }
.notification-error   { background: #c62828; }

.notification-exit {
    animation: slideOutRight 0.35s ease forwards;
}

@keyframes slideInRight {
    from { transform: translateX(440px); opacity: 0; }
    to   { transform: translateX(0);     opacity: 1; }
}

@keyframes slideOutRight {
    from { transform: translateX(0);     opacity: 1; }
    to   { transform: translateX(440px); opacity: 0; }
}

/* ============================================
   ACTIVE NAV LINK
   ============================================ */
.nav-links a.active {
    color: var(--primary-color);
}

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

/* ============================================
   VIDEO PLAY OVERLAY
   ============================================ */
.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    z-index: 998;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
}

.whatsapp-float svg {
    width: 34px;
    height: 34px;
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 16px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   WINE SECTION — DARK LUXURY THEME
   ============================================ */
.wine-section {
    background: linear-gradient(160deg, #0c1a0c 0%, #132213 45%, #1a2e1a 100%);
    color: #f0ece2;
}

.wine-section .section-header h2 {
    color: #c4a77d;
}

.wine-section .section-subtitle {
    color: rgba(240, 236, 226, 0.65);
}

.wine-section .divider {
    background: #c4a77d;
}

/* Glassmorphism wine cards on dark background */
.wine-section .wine-card {
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(196, 167, 125, 0.22);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.wine-section .wine-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    border-color: rgba(196, 167, 125, 0.5);
}

.wine-section .wine-card h3 {
    color: #c4a77d;
}

.wine-section .wine-card ul li {
    color: rgba(240, 236, 226, 0.82);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.wine-section .wine-card p {
    color: rgba(240, 236, 226, 0.82);
}

/* ============================================
   WINE IMAGE CAROUSEL
   ============================================ */
.wine-carousel {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    filter: drop-shadow(0 0 40px rgba(196, 167, 125, 0.18));
}

.wc-track {
    width: 100%;
    position: relative;
}

.wc-slide {
    display: none;
    text-align: center;
    position: relative;
}

.wc-slide.active {
    display: block;
    animation: wc-fade 0.5s ease;
}

.wc-slide.active::after {
    content: '';
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    background: rgba(0,0,0,0.5) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") center/18px no-repeat;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
}

.wc-slide.active:hover::after {
    opacity: 1;
}

@keyframes wc-fade {
    from { opacity: 0; transform: scale(0.98); }
    to   { opacity: 1; transform: scale(1); }
}

.wc-slide img {
    width: auto;
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    border-radius: 14px;
    display: block;
    margin: 0 auto;
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.wc-slide img:hover {
    transform: scale(1.02);
}

.wc-label {
    margin-top: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7a7060;
    font-weight: 600;
}

.wc-controls {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

/* prev/next buttons removed — carousel is auto-advancing only */

.wc-dots {
    display: flex;
    gap: 8px;
}

.wc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #c4a77d;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.wc-dot.active {
    background: #c4a77d;
}

@media (max-width: 900px) {
    .wine-carousel {
        position: static;
    }
    .wc-slide img {
        max-height: 380px;
    }
}

@media (max-width: 480px) {
    .wc-slide img {
        max-height: 300px;
    }
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║   DESIGN ENHANCEMENTS — Cerrado Seco Premium Polish         ║
   ║   magic_mads visual layer — appended to styles.css          ║
   ╚══════════════════════════════════════════════════════════════╝ */


/* ─────────────────────────────────────────────────────────────────
   § KEYFRAMES
───────────────────────────────────────────────────────────────── */

@keyframes cs-shimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

@keyframes cs-divider-reveal {
    from { width: 0;     opacity: 0; }
    to   { width: 80px; opacity: 1; }
}

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


/* ─────────────────────────────────────────────────────────────────
   § TYPOGRAPHY REFINEMENTS
───────────────────────────────────────────────────────────────── */

.section-subtitle {
    letter-spacing: 0.05em;
}

.section-header h2 {
    letter-spacing: -0.01em;
}


/* ─────────────────────────────────────────────────────────────────
   § DIVIDER — animated gold gradient line
───────────────────────────────────────────────────────────────── */

.divider {
    width: 0;
    height: 2px !important;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--accent-color) 25%,
        #e8cfa0 60%,
        transparent 100%
    ) !important;
    border-radius: 2px;
    margin: 0 auto;
    animation: cs-divider-reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

/* Wine section divider keeps gold on dark bg */
.wine-section .divider {
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--accent-color) 25%,
        #e8cfa0 60%,
        transparent 100%
    ) !important;
}


/* ─────────────────────────────────────────────────────────────────
   § SECTION RHYTHM — alternating backgrounds
───────────────────────────────────────────────────────────────── */

/* About: warm cream */
.about-section {
    background-color: var(--cream-bg) !important;
    position: relative;
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

/* Region: subtle sage-green tint */
.region-section {
    background: #f0f5f0 !important;
}

/* Contact: clean white for contrast after green region */
.contact-section {
    background: var(--white) !important;
}

/* Certification: cream */
.certification-section {
    background-color: var(--cream-bg) !important;
    border-top: none !important;
    position: relative;
}

.certification-section .container {
    position: relative;
    z-index: 1;
}


/* ─────────────────────────────────────────────────────────────────
   § WAVE TRANSITION — Hero (dark) → About (cream)
   Uses ::before arch on about-section that peeks into hero bottom
───────────────────────────────────────────────────────────────── */

.about-section::before {
    content: '';
    position: absolute;
    top: -32px;
    left: -3%;
    width: 106%;
    height: 64px;
    background: var(--cream-bg);
    /* elliptical arch — flat bottom, curved top */
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    z-index: 2;
    pointer-events: none;
}


/* ─────────────────────────────────────────────────────────────────
   § NAVBAR SCROLLED STATE
   JS triggers this via navbar.classList.add('scrolled')
───────────────────────────────────────────────────────────────── */

.navbar.scrolled {
    background: rgba(253, 251, 247, 0.97) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    box-shadow: 0 2px 24px rgba(45, 90, 45, 0.13) !important;
}

.navbar.scrolled .container {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.navbar.scrolled .brand-logo {
    height: 38px;
    transition: height 0.3s ease;
}

.navbar.scrolled .brand-text .brand-name {
    font-size: 1.5rem;
    transition: font-size 0.3s ease;
}


/* ─────────────────────────────────────────────────────────────────
   § BUTTONS — shimmer/shine animation on hover
───────────────────────────────────────────────────────────────── */

/* Hero CTA */
.cta-button {
    position: relative;
    overflow: hidden;
    letter-spacing: 0.07em;
    border: 1px solid rgba(196, 167, 125, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease,
                background 0.4s ease !important;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.42) 50%,
        transparent 100%
    );
    transform: skewX(-22deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.cta-button:hover::after {
    left: 130%;
}

.cta-button:hover {
    box-shadow: 0 12px 32px rgba(196, 167, 125, 0.45) !important;
    transform: translateY(-4px) !important;
}

/* Submit button — shimmer */
.submit-button {
    position: relative;
    overflow: hidden;
    border-radius: 8px !important;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    font-size: 0.88rem !important;
    transition: background 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        #3d6b3d 50%,
        var(--primary-color) 100%
    ) !important;
    background-size: 200% auto !important;
}

.submit-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.22) 50%,
        transparent 100%
    );
    transform: skewX(-22deg);
    transition: left 0.55s ease;
    pointer-events: none;
}

.submit-button:hover::after {
    left: 130%;
}

.submit-button:hover {
    background: linear-gradient(
        135deg,
        var(--accent-color) 0%,
        #d4b88e 50%,
        var(--accent-color) 100%
    ) !important;
    color: var(--primary-color) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(45, 90, 45, 0.28) !important;
}

/* Schedule/navbar CTA — shimmer */
.schedule-btn {
    position: relative;
    overflow: hidden;
}

.schedule-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.45) 50%,
        transparent 100%
    );
    transform: skewX(-22deg);
    transition: left 0.5s ease;
    pointer-events: none;
}

.schedule-btn:hover::after {
    left: 130%;
}


/* ─────────────────────────────────────────────────────────────────
   § WINE CARDS — gold accent top line (dark luxury already set)
───────────────────────────────────────────────────────────────── */

.wine-section .wine-card {
    position: relative;
}

.wine-section .wine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--accent-color) 30%,
        #e8cfa0 65%,
        transparent 100%
    );
    border-radius: 18px 18px 0 0;
    opacity: 0.85;
}


/* ─────────────────────────────────────────────────────────────────
   § REGION FACT BOXES — elegant gold top-border cards
───────────────────────────────────────────────────────────────── */

.fact {
    background: var(--white) !important;
    border: none !important;
    border-top: 3px solid var(--accent-color) !important;
    border-radius: 0 0 10px 10px !important;
    box-shadow: 0 4px 20px rgba(45, 90, 45, 0.09) !important;
    padding: 26px 22px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.fact:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(45, 90, 45, 0.16) !important;
}

.fact h4 {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-color) !important;
    margin-bottom: 12px !important;
}

.fact p {
    color: var(--text-dark) !important;
    font-size: 0.94rem;
    line-height: 1.75;
    font-weight: 500;
}


/* ─────────────────────────────────────────────────────────────────
   § CONTACT CARDS — glass with gold top border
───────────────────────────────────────────────────────────────── */

.contact-card {
    background: rgba(253, 251, 247, 0.85) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(196, 167, 125, 0.22) !important;
    border-top: 3px solid var(--accent-color) !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 22px rgba(45, 90, 45, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 34px rgba(45, 90, 45, 0.14) !important;
}


/* ─────────────────────────────────────────────────────────────────
   § CONTACT FORM — Material bottom-border inputs
───────────────────────────────────────────────────────────────── */

/* glass wrapper */
.contact-form {
    background: rgba(255, 255, 255, 0.78) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(196, 167, 125, 0.2) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 36px rgba(45, 90, 45, 0.10) !important;
}

/* Material-style bottom-border-only inputs */
.form-group input,
.form-group textarea {
    border: none !important;
    border-bottom: 2px solid #d8d8d8 !important;
    border-radius: 0 !important;
    padding: 14px 2px !important;
    background: transparent !important;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: none !important;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid var(--primary-color) !important;
    outline-offset: 3px !important;
    border-bottom-color: var(--primary-color) !important;
    box-shadow: 0 2px 0 0 var(--primary-color) !important;
    background: transparent !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(108, 117, 125, 0.65);
    font-size: 0.92rem;
    letter-spacing: 0.03em;
}


/* ─────────────────────────────────────────────────────────────────
   § CERTIFICATION SECTION — gold underline on heading
───────────────────────────────────────────────────────────────── */

.certification-text h3 {
    position: relative;
    padding-bottom: 18px;
}

.certification-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 56px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--accent-color) 0%,
        transparent 100%
    );
}

/* Vinho Verde logo hover */
.cert-logo-link {
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(45, 90, 45, 0.1));
}

.cert-logo-link:hover {
    transform: scale(1.06);
    filter: drop-shadow(0 4px 14px rgba(45, 90, 45, 0.22));
}

/* Certification logo row separator */
.certification-logos {
    position: relative;
}

.certification-logos::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(196, 167, 125, 0.4) 30%,
        rgba(196, 167, 125, 0.4) 70%,
        transparent
    );
    transform: translateX(-50%);
}


/* ─────────────────────────────────────────────────────────────────
   § FOOTER — deep forest gradient + gold vine + refined links
───────────────────────────────────────────────────────────────── */

.footer {
    background: linear-gradient(
        155deg,
        #0e2010 0%,
        #1a3a1a 35%,
        #2d5a2d 65%,
        #1e3c1e 100%
    ) !important;
    border-top: 3px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    padding-top: 56px !important;
}

/* footer overlay cleared */
.footer::before {
    display: none;
}

.footer .container,
.footer-content,
.footer-bottom,
.footer-legal,
.footer-brand,
.footer-links,
.footer-social {
    position: relative;
    z-index: 1;
}

/* stronger gold on footer tagline */
.footer-brand p {
    color: rgba(196, 167, 125, 0.8);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem !important;
}

/* footer nav link underline sweep */
.footer-links a {
    position: relative;
    padding-bottom: 3px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

/* footer bottom gold separator */
.footer-bottom {
    border-top: 1px solid rgba(196, 167, 125, 0.3) !important;
    padding-top: 24px;
}

/* gold social icon ring on hover */
.footer-social a {
    border: 1px solid rgba(196, 167, 125, 0);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease !important;
}

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


/* ─────────────────────────────────────────────────────────────────
   § AGE VERIFICATION MODAL — gold top bar polish
───────────────────────────────────────────────────────────────── */

.age-verification-modal {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(196, 167, 125, 0.2);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55),
                0 0 0 1px rgba(196, 167, 125, 0.08) !important;
}

.age-verification-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--primary-color) 0%,
        var(--accent-color) 50%,
        var(--primary-color) 100%
    );
    border-radius: 20px 20px 0 0;
    z-index: 1;
}


/* ─────────────────────────────────────────────────────────────────
   § VIDEO DESCRIPTION CARD — glass upgrade
───────────────────────────────────────────────────────────────── */

.video-description {
    background: rgba(255, 255, 255, 0.93) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(196, 167, 125, 0.18);
    border-top: 3px solid var(--accent-color);
    border-radius: 16px !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.22) !important;
}


/* ─────────────────────────────────────────────────────────────────
   § REGION SECTION — about image subtle tilt on hover
───────────────────────────────────────────────────────────────── */

.region-image img,
.about-image img,
.about-image .image-placeholder {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.region-image img:hover,
.about-image img:hover {
    transform: scale(1.02) rotate(0.5deg);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16) !important;
}


/* ─────────────────────────────────────────────────────────────────
   § SCROLL INDICATOR — soft gold tint on scroll arrow
───────────────────────────────────────────────────────────────── */

.scroll-indicator span {
    border-color: rgba(196, 167, 125, 0.75) !important;
}

.scroll-indicator span::after {
    background: rgba(196, 167, 125, 0.75) !important;
}


/* ─────────────────────────────────────────────────────────────────
   § SECTION HEADERS — decorative corner flourish
───────────────────────────────────────────────────────────────── */

.section-header {
    position: relative;
}


/* ─────────────────────────────────────────────────────────────────
   § RESPONSIVE — preserve enhancements on mobile
───────────────────────────────────────────────────────────────── */

@media (max-width: 968px) {
    /* arch wave height reduction on mobile */
    .about-section::before {
        height: 40px;
        top: -20px;
    }

    /* fact boxes full-width stack */
    .fact {
        border-radius: 0 0 8px 8px !important;
    }

    /* simplify certification logo divider on mobile */
    .certification-logos::before {
        display: none;
    }
}

@media (max-width: 480px) {
    /* reduce shimmer sweep distance on small screens */
    .cta-button::after,
    .submit-button::after,
    .schedule-btn::after {
        display: none;
    }

    .about-section::before {
        height: 28px;
        top: -14px;
    }
}

/* ─────────────────────────────────────────────────────────────
   (carousel styles consolidated above in WINE IMAGE CAROUSEL section)
   ───────────────────────────────────────────────────────────── */

/* ============================================
   ACCESSIBILITY UTILITIES
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   WHATSAPP FAB TOOLTIP
   ============================================ */
.whatsapp-float::before {
    content: 'Contactar via WhatsApp';
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: #1a1a1a;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}
.whatsapp-float:hover::before {
    opacity: 1;
}
@media (max-width: 768px) {
    .whatsapp-float::before {
        display: none;
    }
}

/* ============================================
   PREFERS 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;
    }
    .hero-section {
        background-attachment: scroll;
    }
}
