:root {
    --paper: #fffaf7;
    --paper-deep: #f1eee8;
    --sand: #f4eadc;
    --border: #d0b894;
    --ink: #2f211d;
    --wine: #7b1e2b;
    --vine: #596548;
    --muted: #6e655d;
    --gold: #d4af37;
    --gold-deep: #b88a2e;
    --shadow: rgba(75, 42, 32, 0.14);
}

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

body {
    font-family: Georgia, serif;
    background: linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
    color: var(--ink);
    overflow-x: hidden;
}

body.site-page {
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.home-page {
    background-color: var(--paper);
}

a { color: inherit; }

.btn,
.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid var(--gold);
    padding: 10px 28px;
    color: var(--gold);
    background-color: transparent;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Georgia, serif;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn:hover,
.button-link:hover,
.button-link.primary {
    background-color: var(--gold);
    color: #1d140d;
}

.button-link.primary:hover {
    background-color: var(--gold-deep);
    border-color: var(--gold-deep);
}

.button-link.secondary {
    color: var(--wine);
    border-color: var(--wine);
}

.button-link.secondary:hover {
    background-color: var(--wine);
    color: var(--paper);
}

#age-gate {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    background: #120c08;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    text-align: center;
    padding: 24px;
    overflow: hidden;
}

#age-gate::before {
    content: "";
    position: absolute;
    inset: -24px;
    background:
        linear-gradient(rgba(8, 6, 5, 0.72), rgba(8, 6, 5, 0.78)),
        url('images/hero.jpg') center / cover no-repeat;
    filter: blur(10px);
    transform: scale(1.04);
}
#age-gate::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(80, 45, 24, 0.18), rgba(0, 0, 0, 0.38));
}
#age-gate > * {
    position: relative;
    z-index: 1;
}

#age-gate img { max-width: clamp(170px, 13vw, 240px); margin-bottom: 2.2rem; filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55)); }
#age-gate h2 { color: var(--paper); font-size: clamp(1.9rem, 3.2vw, 3.4rem); line-height: 1.12; max-width: 1120px; margin-bottom: 1.1rem; text-shadow: 0 10px 30px rgba(0, 0, 0, 0.58); }
#age-gate p { font-size: clamp(1.05rem, 1.35vw, 1.3rem); color: #f4debe; text-shadow: 0 6px 18px rgba(0, 0, 0, 0.5); }
#age-gate .btn { color: var(--paper); border-color: var(--gold); min-width: 170px; background: rgba(212, 175, 55, 0.16); font-weight: bold; }
#age-gate .btn:hover { background-color: var(--gold); color: #1d140d; }
#age-gate.is-hidden { display: none; }
.age-buttons { margin-top: 2rem; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

#main-content { display: flex; flex-direction: column; min-height: 100vh; }

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    z-index: 10000;
    background-color: var(--sand);
    border-bottom: 1px solid var(--border);
}

.home-page nav {
    height: 72px;
    background: rgba(75, 31, 25, 0.96);
    border-bottom: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: 0 10px 28px rgba(35, 16, 12, 0.18);
}

.nav-left,
.nav-right,
.nav-right-wrapper { display: flex; align-items: center; gap: 30px; }

nav a {
    color: #4b2a20;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.25s ease;
}

.home-page nav a { color: var(--paper); }
nav a:hover,
nav a.active,
.active { color: var(--gold); }
.active { border-bottom: 2px solid var(--gold); padding-bottom: 5px; }

.nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav-logo img { width: 82px; height: auto; transition: 0.25s ease; }
.home-page .nav-logo { display: none; }

.cart-container { position: relative; cursor: pointer; }
.cart-icon { font-size: 1.5rem; text-decoration: none; }
.cart-count { position: absolute; top: -10px; right: -15px; background-color: var(--gold); color: #000; font-size: 0.7rem; font-weight: bold; padding: 2px 6px; border-radius: 50%; font-family: Arial, sans-serif; }

.hamburger { display: none; background: transparent; border: none; color: var(--gold); font-size: 2.5rem; cursor: pointer; z-index: 10001; }
.mobile-menu { display: none; flex-direction: column; position: fixed; top: 85px; left: 0; width: 100%; background: var(--sand); border-bottom: 1px solid var(--border); z-index: 9999; }
.mobile-menu a { padding: 15px 20px; color: #4b2a20; text-decoration: none; text-transform: uppercase; border-top: 1px solid var(--border); text-align: center; font-size: 1.1rem; }

.hero {
    min-height: 88vh;
    background-image: linear-gradient(rgba(32, 18, 13, 0.26), rgba(22, 12, 9, 0.66)), url('images/hero.jpg');
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 92px;
    position: relative;
    overflow: hidden;
}


.hero-logo {
    position: absolute;
    top: clamp(96px, 12vh, 132px);
    left: clamp(42px, 7vw, 112px);
    width: clamp(112px, 12vw, 172px);
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.42));
}
.hero-content {
    max-width: 1040px;
    position: relative;
    z-index: 2;
}
.hero-kicker { color: #fff5dc; text-transform: uppercase; letter-spacing: 3px; font-size: clamp(0.9rem, 1.1vw, 1.08rem); margin-bottom: 22px; font-weight: bold; text-shadow: 0 4px 14px rgba(0, 0, 0, 0.52); }
.hero-content h1 { font-size: clamp(3.4rem, 6.7vw, 6.9rem); font-weight: normal; letter-spacing: 0; line-height: 0.98; color: var(--paper); text-shadow: 2px 2px 10px rgba(0,0,0,0.72); }
.hero-content p { max-width: 700px; margin: 24px auto 0; color: #f8ead8; font-size: 1.22rem; line-height: 1.75; text-shadow: 1px 1px 8px rgba(0,0,0,0.65); }
.hero-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.hero-actions .button-link.secondary {
    color: var(--paper);
    border-color: rgba(255, 248, 237, 0.82);
    background: rgba(75, 31, 25, 0.34);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}
.hero-actions .button-link.secondary:hover {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--wine);
    text-shadow: none;
}

.home-section { padding: 76px 24px; }
.home-section.alt { background-color: rgba(243, 227, 204, 0.72); border-top: 1px solid rgba(216, 191, 159, 0.6); border-bottom: 1px solid rgba(216, 191, 159, 0.6); }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.section-heading h2 { color: var(--wine); font-size: clamp(2rem, 3vw, 3rem); font-weight: normal; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.section-heading p { color: var(--vine); font-size: 1.08rem; line-height: 1.7; }

.wine-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.wine-card { background-color: rgba(255, 250, 242, 0.94); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; box-shadow: 0 18px 40px var(--shadow); display: flex; flex-direction: column; }
.wine-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.wine-card-content { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.wine-card h3 { color: #4b2a20; font-size: 1.35rem; }
.wine-card p { color: var(--vine); line-height: 1.6; }
.wine-card .price { color: var(--gold-deep); font-size: 1.25rem; font-weight: bold; margin-top: auto; }

.story-split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); gap: 46px; align-items: center; }
.story-copy h2 { color: var(--wine); font-size: clamp(2rem, 3vw, 3rem); font-weight: normal; text-transform: uppercase; margin-bottom: 18px; }
.story-copy p { color: var(--vine); font-size: 1.08rem; line-height: 1.8; margin-bottom: 18px; }
.story-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 28px 0; }
.story-point { border-top: 2px solid var(--gold); padding-top: 12px; color: var(--ink); font-size: 0.98rem; line-height: 1.45; }
.story-image { width: 100%; border-radius: 6px; border: 1px solid var(--border); box-shadow: 0 18px 40px var(--shadow); }

.visit-band { text-align: center; background: var(--wine); color: var(--paper); padding: 68px 24px 76px; position: relative; z-index: 2; }
.visit-band h2 { font-size: clamp(2rem, 3vw, 3rem); font-weight: normal; margin-bottom: 14px; text-transform: uppercase; }
.visit-band p { max-width: 760px; margin: 0 auto 28px; color: #f4debe; font-size: 1.08rem; line-height: 1.7; }
.visit-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

footer { background-color: var(--sand); padding: 40px 20px; border-top: 1px solid var(--border); width: 100%; margin-top: auto; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.home-page footer { background-color: var(--paper); padding: 54px 20px 70px; border-top: 1px solid rgba(216, 191, 159, 0.42); position: relative; z-index: 2; }
footer p { color: var(--muted); font-size: 0.85rem; margin: 0; text-align: center; letter-spacing: 1px; }
.footer-links { display: flex; gap: 15px; align-items: center; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--gold-deep); text-decoration: none; font-size: 0.9rem; transition: 0.25s ease; }
.footer-links a:hover { color: #4b2a20; }
.footer-links span { color: #b99657; }

@media (max-width: 900px) {
    .desktop-only { display: none !important; }
    .hamburger { display: block; }
    nav { padding: 0 20px; }
    .home-page nav { height: 72px; background: rgba(75, 31, 25, 0.96); }
    .nav-logo img { width: 72px; }
    .hero {
        min-height: 82vh;
        padding: 110px 18px 86px;
    }
    .hero-logo { top: 94px; left: 20px; width: 92px; }
    .wine-grid,
    .story-split,
    .story-points { grid-template-columns: 1fr; }
    .home-section { padding: 56px 18px; }
}

@media (max-width: 640px) {
    .hero {
        min-height: 82vh;
        padding: 98px 16px 74px;
    }
    .hero-content h1 {
        font-size: clamp(2.75rem, 14vw, 4.4rem);
    }
    .hero-content p {
        font-size: 1.05rem;
    }
    .home-page footer {
        padding-bottom: 58px;
    }
}

.shop-header {
    text-align: center;
    margin: 10px auto 40px;
    max-width: 760px;
    padding: 0 20px;
}
.shop-header h1 {
    color: var(--wine);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.shop-header p { color: var(--muted); line-height: 1.6; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    max-width: 1180px;
    margin: 0 auto 90px;
    padding: 0 24px;
}
.product-card {
    background-color: rgba(255, 250, 242, 0.96);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 22px;
    text-align: center;
    transition: 0.25s ease;
    box-shadow: 0 14px 30px rgba(75, 42, 32, 0.1);
}
.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 18px 36px var(--shadow);
}
.product-card-link { display: block; color: inherit; text-decoration: none; }
.product-card img {
    width: 100%;
    height: 360px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 16px;
    background: #fff;
}
.product-card h3 { font-size: 1.35rem; color: #4b2a20; margin-bottom: 6px; }
.product-card p.volume { color: var(--muted); font-size: 0.95rem; margin-bottom: 10px; }
.product-card p.price { color: var(--gold-deep); font-size: 1.45rem; font-weight: bold; margin-bottom: 12px; }
.product-summary { color: var(--vine); line-height: 1.55; min-height: 72px; margin-bottom: 18px; }
.add-to-cart-btn {
    background-color: transparent;
    color: var(--wine);
    border: 1px solid var(--wine);
    padding: 12px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.25s ease;
    text-transform: uppercase;
    width: 100%;
    font-family: Georgia, serif;
    letter-spacing: 1px;
}
.add-to-cart-btn:hover { background-color: var(--wine); color: var(--paper); }
#toast {
    visibility: hidden;
    min-width: 250px;
    background-color: var(--gold);
    color: #1d140d;
    text-align: center;
    border-radius: 5px;
    padding: 15px;
    position: fixed;
    z-index: 10000;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
    font-size: 1.1rem;
}
#toast.show { visibility: visible; opacity: 1; bottom: 50px; }
.product-detail {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
    gap: 46px;
    max-width: 1240px;
    margin: 0 auto 90px;
    padding: 20px 28px;
    align-items: start;
}
.product-gallery {
    background: #fff;
    border: 1px solid rgba(216, 191, 159, 0.7);
    border-radius: 6px;
    padding: 28px;
    text-align: center;
    box-shadow: 0 18px 38px rgba(75, 42, 32, 0.1);
}
.product-main-image { width: 100%; max-height: 760px; object-fit: contain; }
.label-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--gold-deep);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}
.product-info h1 {
    color: var(--wine);
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.08;
    text-transform: uppercase;
    font-weight: normal;
    margin: 12px 0 14px;
}
.back-link { color: var(--gold-deep); text-decoration: none; }
.product-subtitle { color: var(--vine); font-size: 1.15rem; line-height: 1.7; margin-bottom: 24px; }
.product-price { color: var(--gold-deep); font-size: 2rem; font-weight: bold; margin-bottom: 22px; }
.delivery-note {
    background: var(--gold-deep);
    color: var(--paper);
    padding: 16px 20px;
    font-size: 1.1rem;
    margin-bottom: 28px;
}
.product-specs { width: 100%; border-collapse: collapse; margin-bottom: 34px; background: rgba(255, 250, 242, 0.8); }
.product-specs th,
.product-specs td { border: 1px solid rgba(216, 191, 159, 0.55); padding: 16px; text-align: left; vertical-align: top; line-height: 1.55; }
.product-specs th { width: 34%; color: var(--muted); font-weight: normal; }
.product-specs td { color: var(--ink); }
.product-actions-row {
    display: grid;
    grid-template-columns: auto 110px minmax(180px, 260px);
    gap: 14px;
    align-items: center;
}
.product-actions-row label { color: var(--gold-deep); font-size: 1.2rem; font-weight: bold; }
.product-actions-row input {
    height: 48px;
    border: 1px solid var(--border);
    background: #fffaf2;
    color: var(--ink);
    padding: 0 14px;
    font-size: 1rem;
}
.detail-add { background: var(--gold); color: #1d140d; border-color: var(--gold); }
.detail-add:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
@media (max-width: 900px) {
    .products-grid,
    .product-detail { grid-template-columns: 1fr; }
    .product-card img { height: 300px; }
    .product-actions-row { grid-template-columns: 1fr; }
}

/* Consistent navbar across every page */
nav {
    height: 72px !important;
    background: rgba(75, 31, 25, 0.96) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.45) !important;
    box-shadow: 0 10px 28px rgba(35, 16, 12, 0.18) !important;
}
nav a {
    color: var(--paper) !important;
}
nav a:hover,
nav a.active,
.active {
    color: var(--gold) !important;
}
.nav-logo {
    display: none !important;
}
.mobile-menu {
    top: 72px !important;
    background: rgba(75, 31, 25, 0.98) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.45) !important;
}
.mobile-menu a {
    color: var(--paper) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.22) !important;
}
@media (max-width: 900px) {
    nav {
        height: 72px !important;
        background: rgba(75, 31, 25, 0.96) !important;
    }
}

/* Reference-style navbar with logo on the left */
nav {
    height: 78px !important;
    padding: 0 34px 0 132px !important;
    background: linear-gradient(90deg, rgba(36, 20, 16, 0.94), rgba(75, 42, 32, 0.82)) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.34) !important;
    box-shadow: 0 12px 30px rgba(35, 16, 12, 0.22) !important;
    backdrop-filter: blur(8px);
}
.nav-logo {
    display: flex !important;
    left: 34px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}
.nav-logo img,
.home-page .nav-logo img {
    width: 72px !important;
    height: auto !important;
    filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.35));
}
.nav-left,
.nav-right,
.nav-right-wrapper {
    gap: 24px !important;
}
nav a {
    color: var(--paper) !important;
    font-size: 0.92rem !important;
    font-weight: bold !important;
    letter-spacing: 1.4px !important;
}
nav a:hover,
nav a.active,
.active {
    color: var(--gold) !important;
}
.cart-icon {
    color: var(--paper) !important;
}
.mobile-menu {
    top: 78px !important;
}
@media (max-width: 900px) {
    nav {
        height: 74px !important;
        padding: 0 20px 0 96px !important;
    }
    .nav-logo {
        left: 18px !important;
    }
    .nav-logo img,
    .home-page .nav-logo img {
        width: 58px !important;
    }
    .mobile-menu {
        top: 74px !important;
    }
}

.powered-by {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    opacity: 0.9;
}
.powered-by:hover {
    color: var(--wine);
    opacity: 1;
}
.powered-by img {
    width: 96px;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
}
@media (max-width: 640px) {
    .powered-by {
        flex-direction: column;
        gap: 6px;
    }
    .powered-by img {
        width: 86px;
    }
}

.home-section .wine-card img {
    height: 360px;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    background: #fff;
    padding: 18px;
}
.home-section .wine-card {
    overflow: hidden;
}
@media (max-width: 900px) {
    .home-section .wine-card img {
        height: 320px;
    }
}

.section-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--gold-deep);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    font-weight: bold;
}

.intro-section {
    position: relative;
    padding: 58px 24px;
    background: #fffaf2;
    border-bottom: 1px solid rgba(216, 191, 159, 0.62);
    overflow: hidden;
}

.intro-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
    gap: 42px;
    align-items: center;
}

.intro-copy h2 {
    max-width: 780px;
    color: var(--wine);
    font-size: clamp(2rem, 3.6vw, 3.6rem);
    line-height: 1.08;
    font-weight: normal;
    text-transform: uppercase;
}

.intro-copy p {
    max-width: 680px;
    margin-top: 18px;
    color: var(--vine);
    font-size: 1.12rem;
    line-height: 1.75;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.intro-stats div {
    border-left: 3px solid var(--gold);
    background: rgba(242, 223, 198, 0.48);
    padding: 18px 20px;
}

.intro-stats strong,
.intro-stats span {
    display: block;
}

.intro-stats strong {
    color: var(--ink);
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.intro-stats span {
    color: var(--muted);
    line-height: 1.45;
}

.featured-card {
    position: relative;
}

.wine-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: rgba(123, 30, 43, 0.92);
    color: var(--paper);
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wine-notes {
    color: var(--muted);
    border-top: 1px solid rgba(216, 191, 159, 0.72);
    padding-top: 10px;
    font-size: 0.95rem;
    line-height: 1.45;
}

.tasting-split .story-image {
    min-height: 440px;
    object-fit: cover;
}

.visit-band .section-kicker {
    color: #f0c857;
}

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

    .intro-section {
        padding: 46px 18px;
    }

    .wine-badge {
        top: 12px;
        left: 12px;
        font-size: 0.72rem;
    }
}

.simple-page {
    width: 100%;
    flex: 1;
    padding: 24px 24px 86px;
}

.simple-layout,
.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 46px;
    align-items: center;
}

.simple-layout h1,
.contact-grid h1,
.cart-page h1 {
    color: var(--wine);
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.08;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.simple-layout p,
.contact-grid p {
    color: var(--vine);
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.simple-layout img {
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border: 1px solid var(--border);
    box-shadow: 0 18px 40px var(--shadow);
}

.contact-panel {
    background: rgba(255, 250, 242, 0.96);
    border: 1px solid var(--border);
    padding: 30px;
    box-shadow: 0 18px 40px var(--shadow);
}

.contact-panel h2 {
    color: var(--wine);
    margin-bottom: 18px;
    font-weight: normal;
    font-size: 1.8rem;
}

.contact-hero-section,
.contact-details-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: 44px;
    align-items: start;
}

.contact-hero-copy h1 {
    color: var(--wine);
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.08;
    font-weight: normal;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-hero-copy p {
    color: var(--vine);
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.contact-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.contact-details-grid {
    margin-top: 58px;
    align-items: stretch;
}

.map-panel {
    border: 1px solid var(--border);
    box-shadow: 0 18px 40px var(--shadow);
    background: #fff;
    min-height: 420px;
    overflow: hidden;
}

.map-panel iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.inquiry-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    background: rgba(255, 250, 242, 0.96);
    border: 1px solid var(--border);
    padding: 28px;
    box-shadow: 0 18px 40px var(--shadow);
}

.inquiry-form label {
    display: grid;
    gap: 8px;
    color: var(--gold-deep);
    font-weight: bold;
    line-height: 1.35;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    border: 1px solid rgba(216, 191, 159, 0.88);
    background: #fffaf2;
    color: var(--ink);
    padding: 12px 13px;
    font: inherit;
}

.inquiry-form textarea {
    resize: vertical;
}

.inquiry-form button:disabled {
    opacity: 0.66;
    cursor: wait;
}

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

.form-consent {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    color: var(--muted) !important;
    font-weight: normal !important;
    font-size: 0.95rem;
}

.form-consent input {
    width: auto;
    margin-top: 4px;
}

.form-status {
    margin: 0;
    min-height: 24px;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.form-status.success {
    color: var(--vine);
}

.form-status.error {
    color: var(--wine);
}

.legal-page {
    max-width: 980px;
}

.legal-intro {
    margin-bottom: 34px;
}

.legal-intro h1 {
    color: var(--wine);
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.08;
    font-weight: normal;
    text-transform: uppercase;
    margin: 10px 0 16px;
}

.legal-updated {
    color: var(--gold-deep);
    font-weight: bold;
    margin-bottom: 18px;
}

.legal-block {
    background: rgba(255, 250, 242, 0.74);
    border-top: 1px solid rgba(216, 191, 159, 0.72);
    padding: 26px 0;
}

.legal-block h2 {
    color: var(--wine);
    font-size: 1.55rem;
    font-weight: normal;
    margin-bottom: 14px;
}

.legal-block h3 {
    color: #4b2a20;
    font-size: 1.12rem;
    margin: 18px 0 8px;
}

.legal-block p,
.legal-block li,
.legal-intro p {
    color: var(--vine);
    font-size: 1.05rem;
    line-height: 1.75;
}

.legal-block ul {
    margin-left: 22px;
}

.legal-block li {
    margin-bottom: 8px;
}

.cart-page {
    max-width: 980px;
}

.cart-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 18px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(216, 191, 159, 0.72);
}

.cart-row strong,
.cart-row span {
    display: block;
}

.cart-row span {
    color: var(--muted);
    margin-top: 4px;
}

.cart-row button {
    border: 1px solid var(--wine);
    color: var(--wine);
    background: transparent;
    padding: 9px 14px;
    cursor: pointer;
    font-family: Georgia, serif;
}

.cart-row button:hover {
    background: var(--wine);
    color: var(--paper);
}

.cart-total {
    margin-top: 24px;
    color: var(--gold-deep);
    font-size: 1.6rem;
    font-weight: bold;
}

.cart-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.empty-cart {
    color: var(--muted);
    font-size: 1.15rem;
}

@media (max-width: 900px) {
    .simple-layout,
    .contact-grid,
    .contact-hero-section,
    .contact-details-grid,
    .cart-row {
        grid-template-columns: 1fr;
    }

    .simple-page {
        padding: 18px 18px 64px;
    }

    .simple-layout img {
        min-height: 300px;
    }

    .contact-details-grid {
        margin-top: 48px;
    }

    .inquiry-form {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .map-panel,
    .map-panel iframe {
        min-height: 340px;
    }
}

.cart-bump {
    animation: cartBump 0.55s ease;
}
@keyframes cartBump {
    0% { transform: scale(1); }
    35% { transform: scale(1.45); background-color: var(--wine); color: var(--paper); }
    100% { transform: scale(1); }
}
#cart-toast {
    visibility: hidden;
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 10001;
    background: rgba(75, 31, 25, 0.96);
    color: var(--paper);
    border: 1px solid rgba(212, 175, 55, 0.55);
    box-shadow: 0 18px 38px rgba(35, 16, 12, 0.24);
    padding: 14px 18px;
    border-radius: 6px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
#cart-toast.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
#toast.show {
    animation: toastPop 0.28s ease;
}
@keyframes toastPop {
    0% { transform: translateX(-50%) translateY(12px); opacity: 0; }
    100% { transform: translateX(-50%) translateY(0); opacity: 1; }
}


.vineyard-section {
    background-color: rgba(255, 248, 237, 0.96);
}
.vineyard-slideshow {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border: 1px solid rgba(180, 132, 72, 0.42);
    background-color: #21120d;
    box-shadow: 0 22px 44px rgba(75, 42, 32, 0.16);
}
.vineyard-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}
.vineyard-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}
.vineyard-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.slide-backdrop {
    object-fit: cover;
    filter: blur(18px);
    transform: scale(1.08);
    opacity: 0.45;
}
.slide-photo {
    object-fit: contain;
    padding: 18px;
    z-index: 1;
}
.slideshow-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.48);
    background-color: rgba(33, 18, 13, 0.62);
    color: #fff7e8;
    font-size: 2.1rem;
    line-height: 1;
    cursor: pointer;
    transition: 0.25s ease;
}
.slideshow-arrow:hover {
    background-color: rgba(217, 185, 56, 0.86);
    color: #21120d;
}
.slideshow-arrow.prev { left: 18px; }
.slideshow-arrow.next { right: 18px; }
.slideshow-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    padding: 8px 10px;
    background-color: rgba(33, 18, 13, 0.48);
}
.slideshow-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background-color: rgba(255, 255, 255, 0.42);
    padding: 0;
    cursor: pointer;
}
.slideshow-dots button.is-active {
    background-color: var(--gold);
    border-color: var(--gold);
}
@media (max-width: 900px) {
    .vineyard-slideshow {
        min-height: 460px;
    }
    .slide-photo {
        padding: 12px;
    }
}
@media (max-width: 640px) {
    .vineyard-slideshow {
        min-height: 380px;
    }
    .slideshow-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.7rem;
    }
    .slideshow-arrow.prev { left: 10px; }
    .slideshow-arrow.next { right: 10px; }
    .slideshow-dots {
        max-width: calc(100% - 28px);
        flex-wrap: wrap;
        justify-content: center;
    }
}
