/*--------------------------------------------------------------
# Grid System
--------------------------------------------------------------*/
.grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.grid-featured {
    grid-template-columns: 5fr 7fr;
}

.grid-2col {
    grid-template-columns: 1fr 1fr;
}

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

.grid-contact {
    grid-template-columns: 5fr 7fr;
}

@media (max-width: 991px) {
    .grid-featured,
    .grid-2col,
    .grid-3col,
    .grid-contact {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 577px) and (max-width: 991px) {
    .grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 60px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 60px;
}

.btn-secondary:hover {
    color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-primary:active, .btn-secondary:active {
    transform: translateY(-2px) scale(0.97);
}

/*--------------------------------------------------------------
# Section Headings
--------------------------------------------------------------*/
.section-heading {
    margin-bottom: 60px;
}

.section-heading .subheading {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(72, 1, 9, 0.08);
    border-radius: 30px;
    position: relative;
    backdrop-filter: blur(8px);
}

.section-heading h2 {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 25px;
    font-weight: 400;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-accent));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.section-description {
    font-size: 17px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

/*--------------------------------------------------------------
# Mobile Menu Overlay
--------------------------------------------------------------*/
.navbar-mobile {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(0px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-mobile.active {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(72, 1, 9, 0.95) 100%);
    backdrop-filter: blur(20px);
    opacity: 1;
    visibility: visible;
}

.navbar-mobile ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
    list-style: none;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.navbar-mobile.active ul {
    transform: translateY(0);
    opacity: 1;
}

.navbar-mobile > ul > li {
    padding: 0;
    width: 85%;
    max-width: 320px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-mobile.active > ul > li:nth-child(1) { transition-delay: 0.25s; transform: translateY(0); opacity: 1; }
.navbar-mobile.active > ul > li:nth-child(2) { transition-delay: 0.35s; transform: translateY(0); opacity: 1; }
.navbar-mobile.active > ul > li:nth-child(3) { transition-delay: 0.45s; transform: translateY(0); opacity: 1; }
.navbar-mobile.active > ul > li:nth-child(4) { transition-delay: 0.55s; transform: translateY(0); opacity: 1; }

.navbar-mobile a, .navbar-mobile a:focus {
    padding: 22px 35px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    width: 100%;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: transparent;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(72, 1, 9, 0.5);
}

/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/
#featured {
    padding-top: 100px;
    background: linear-gradient(180deg, #fff 0%, var(--bg-cream) 100%);
}

.featured-wrapper {
    position: relative;
    background: var(--glass-bg);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    overflow: visible;
}

.featured-badge {
    position: absolute;
    top: -18px;
    left: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(72, 1, 9, 0.3);
    z-index: 10;
    white-space: nowrap;
}

.featured-wrapper h3 {
    margin-top: 20px;
    margin-bottom: 35px;
    color: var(--primary-color);
    font-weight: 400;
    font-size: clamp(1.6rem, 1rem + 1.5vw, 2.2rem);
}

.featured-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-color);
}

.featured-meta {
    font-size: 13px;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(72, 1, 9, 0.05);
    border-radius: 20px;
    margin-top: 15px;
}

.featured-meta svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.featured-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all var(--transition-medium);
    position: relative;
}

.featured-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(72, 1, 9, 0.1) 100%);
    pointer-events: none;
    opacity: 0;
    transition: all var(--transition-medium);
}

.featured-image:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.featured-image:hover::after {
    opacity: 1;
}

.featured-image img {
    width: 100%;
    transition: all var(--transition-slow);
}

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
#about {
    background: linear-gradient(180deg, var(--bg-cream) 0%, #fff 100%);
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 1;
    pointer-events: none;
    border-radius: var(--border-radius-md);
    transition: all var(--transition-medium);
}

.about-image:hover::before {
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    pointer-events: none;
    opacity: 0;
    transition: all var(--transition-medium);
}

.about-image:hover::after {
    opacity: 1;
}

.about-image img {
    transition: all var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-content {
    padding: 20px 30px;
}

.about-content > p:first-of-type {
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-feature {
    margin: 35px 0;
    padding: 25px 30px;
    background: var(--glass-bg);
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.about-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--gold-accent));
}

.about-feature h3 {
    margin-bottom: 18px;
    color: var(--primary-color);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature h3 svg {
    color: var(--gold-accent);
    flex-shrink: 0;
}

.about-feature ul {
    padding-left: 0;
    list-style: none;
}

.about-feature ul li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.7;
}

.about-feature ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--gold-accent));
    border-radius: 50%;
}

.about-quote {
    background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
    padding: 35px 40px;
    border-radius: var(--border-radius-lg);
    font-style: italic;
    position: relative;
    margin-top: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(72, 1, 9, 0.08);
}

.about-quote::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    position: absolute;
    top: -15px;
    left: 30px;
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.15;
    line-height: 1;
}

.about-quote p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-color);
}

.quote-author {
    display: block;
    text-align: right;
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery-section {
    background: linear-gradient(180deg, #fff 0%, var(--bg-cream) 50%, #fff 100%);
    position: relative;
}

.gallery-link {
    display: block;
}

.gallery-container {
    column-count: 3;
    column-gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    cursor: pointer;
    break-inside: avoid;
    margin-bottom: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.gallery-item:nth-child(1) img,
.gallery-item:nth-child(4) img {
    height: 380px;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    padding: 0 20px 20px;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

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

.gallery-info {
    color: #fff;
    text-align: left;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #fff;
}

.gallery-info p {
    font-size: 13px;
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

/*--------------------------------------------------------------
# Call to Action Section
--------------------------------------------------------------*/
.cta-section {
    background: linear-gradient(135deg, rgba(72, 1, 9, 0.85) 0%, rgba(0, 0, 0, 0.8) 100%), url("assets/img/call-to-action-bg.avif") fixed center center;
    background-size: cover;
    padding: var(--spacing-lg) 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: clamp(1.6rem, 0.6rem + 3vw, 3rem);
    margin-bottom: 25px;
    color: #fff;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.cta-section .btn-secondary {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
}

.cta-section .btn-secondary:hover {
    background: var(--gold-accent);
    color: var(--bg-dark);
    border-color: var(--gold-accent);
}

.cta-section .btn-secondary::before {
    background: var(--gold-accent);
}

/*--------------------------------------------------------------
# Wine Section
--------------------------------------------------------------*/
#wines {
    background: linear-gradient(180deg, #fff 0%, var(--bg-cream) 100%);
}

.wines-container {
    margin-top: 50px;
}

.wine-item {
    margin-bottom: 40px;
    background: #fff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.wine-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--gold-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.wine-item:hover::before {
    transform: scaleX(1);
}

.wine-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.wine-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #f8f4f0 0%, #f1e9e3 100%);
}

.wine-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(255,255,255,0.8), transparent);
    pointer-events: none;
}

.wine-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all var(--transition-slow);
    padding: 20px;
}

.wine-item:hover .wine-image img {
    transform: scale(1.08) translateY(-5px);
}

.wine-content {
    padding: 30px;
    position: relative;
}

.wine-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.wine-item:hover .wine-name {
    color: var(--accent-color);
}

.wine-type {
    font-size: 11px;
    color: var(--gold-accent);
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    padding: 5px 12px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 20px;
}

.wine-desc p {
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.wine-details {
    list-style: none;
    padding: 15px 20px;
    margin: 0;
    background: var(--bg-cream);
    border-radius: var(--border-radius-sm);
}

.wine-details li {
    padding: 10px 0;
    border-top: 1px solid rgba(72, 1, 9, 0.08);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.wine-details li:first-child {
    border-top: none;
}

.wine-details li span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 13px;
}

.wine-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--gold-accent), #d4b36a);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.4);
    display: flex;
    align-items: center;
    gap: 5px;
}

.wine-badge svg {
    font-size: 10px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
    background: linear-gradient(180deg, var(--bg-cream) 0%, #fff 100%);
    position: relative;
}

.contact-info {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
    padding: 20px 25px;
    background: var(--glass-bg);
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 22px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--border-radius-sm);
    margin-right: 20px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(72, 1, 9, 0.2);
}

.contact-item div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text-color);
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.contact-item a {
    color: var(--text-light);
    transition: all var(--transition-fast);
}

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

.social-links {
    margin-top: 35px;
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    transition: all var(--transition-medium);
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(72, 1, 9, 0.2);
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(72, 1, 9, 0.3);
}

.map-container {
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 420px;
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
    z-index: 1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    filter: saturate(0.9) contrast(1.05);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #111 100%);
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    overflow: hidden;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.footer-logo h3 {
    color: #fff;
    margin-bottom: 18px;
    font-size: 1.6rem;
    font-weight: 400;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links h4,
.footer-newsletter h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 500;
}

.footer-links h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-accent), transparent);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    padding: 10px 0;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    font-size: 14px;
}

.footer-links ul li a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--gold-accent);
    margin-right: 0;
    transition: all var(--transition-fast);
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-links ul li a:hover::before {
    width: 15px;
    margin-right: 10px;
}

.footer-newsletter p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    padding-top: 35px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    position: relative;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.copyright strong {
    font-weight: 600;
    color: var(--gold-accent);
}

.footer-credit {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 10px;
    margin-bottom: 0;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition-fast);
}

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

.footer-credit a span {
    color: var(--gold-accent);
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.footer-credit a:hover span {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-fast);
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--gold-accent);
    color: #fff;
    transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Lightbox
--------------------------------------------------------------*/
.lightbox-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: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.lightbox-overlay.active .lightbox-content img {
    opacity: 1;
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/*--------------------------------------------------------------
# Ripple Effect
--------------------------------------------------------------*/
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.7s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Smooth text selection
--------------------------------------------------------------*/
::selection {
    background: var(--primary-color);
    color: #fff;
}

::-moz-selection {
    background: var(--primary-color);
    color: #fff;
}

/*--------------------------------------------------------------
# Focus visible
--------------------------------------------------------------*/
:focus-visible {
    outline: 3px solid var(--gold-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

/*--------------------------------------------------------------
# Elegant scrollbar
--------------------------------------------------------------*/
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 1199px) {
    .gallery-item img {
        height: 250px;
    }
}

@media (max-width: 992px) {
    .gallery-container {
        column-count: 2;
    }

    .gallery-item img {
        height: 250px;
    }

    .gallery-item:nth-child(1) img,
    .gallery-item:nth-child(4) img {
        height: 340px;
    }
}

@media (max-width: 991px) {
    :root {
        --spacing-md: 60px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .featured-text {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-md: 50px;
    }

    #hero h1 {
        letter-spacing: 0;
    }

    #hero h2 {
        letter-spacing: 3px;
    }

    .btn-primary, .btn-secondary {
        padding: 14px 28px;
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .section-heading .subheading {
        font-size: 11px;
        padding: 6px 16px;
    }

    .gallery-item {
        margin-bottom: 20px;
    }

    .wine-item {
        margin-bottom: 30px;
    }

    .contact-info {
        margin-bottom: 40px;
    }

    .contact-item {
        padding: 15px 18px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-md: 40px;
        --spacing-sm: 30px;
        --border-radius-lg: 16px;
        --border-radius-md: 12px;
    }

    .section-heading .subheading {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .section-description {
        font-size: 15px;
    }

    .featured-wrapper {
        padding: 35px 20px;
    }

    .featured-badge {
        left: 50%;
        transform: translateX(-50%);
        font-size: 10px;
        padding: 8px 18px;
        top: -15px;
    }

    .featured-wrapper h3 {
        text-align: center;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .gallery-container {
        column-count: 1;
    }

    .gallery-item img,
    .gallery-item:nth-child(1) img,
    .gallery-item:nth-child(4) img {
        height: 260px;
    }

    .wine-item {
        margin-bottom: 25px;
    }

    .wine-content {
        padding: 22px;
    }

    .wine-name {
        font-size: 1.4rem;
    }

    .wine-details {
        padding: 12px 15px;
    }

    #hero::before {
        height: 150px;
    }

    #hero h1 {
        line-height: 1.2;
    }

    #hero h2 {
        letter-spacing: 3px;
        margin: 12px 0 20px 0;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
        margin-bottom: 35px;
    }

    .contact-item {
        margin-bottom: 15px;
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
        align-self: center;
    }

    .social-links {
        justify-content: center;
    }

    .map-container {
        min-height: 280px;
    }

    .about-content {
        padding: 15px 10px;
    }

    .about-feature {
        padding: 20px;
    }

    .about-quote {
        padding: 25px 20px;
    }

    .about-quote::before {
        font-size: 60px;
        top: -10px;
        left: 15px;
    }

    /* Footer mobile */
    .footer-grid {
        text-align: center;
    }

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

    .footer-links h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* Tablet portrait optimizations */
@media (min-width: 577px) and (max-width: 768px) {
    .gallery-container {
        column-count: 2;
        column-gap: 15px;
    }
}

/* Landscape phone optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    #hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 50px;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero h2 {
        font-size: 1.2rem;
    }
}

/* High resolution displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .wine-image img,
    .gallery-item img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/*--------------------------------------------------------------
# Print styles
--------------------------------------------------------------*/
@media print {
    header,
    .mobile-nav-toggle,
    .social-links,
    #footer,
    .scroll-progress,
    .lightbox-overlay {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    a {
        text-decoration: underline;
        color: #000;
    }

    section {
        page-break-inside: avoid;
        opacity: 1;
        transform: none;
    }

    .fade-in {
        opacity: 1;
        transform: none;
    }
}
