:root {
    --site-hero: #d8a25d;
    --site-page-bg: #dedede;
    --site-panel: #ebcea9;
    --site-text: #151515;
    --site-white: #ffffff;
    --site-black: #000000;
    --site-green: #37c75b;
    --site-yellow: #f5cc00;
    --site-cyan: #18b6d7;
    --site-magenta: #c932d6;
    --site-field: #efefef;
    --site-border: #9b9b9b;
}

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

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--site-text);
    background: var(--site-white);
    line-height: 1.4;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
    line-height: 1.1;
    font-weight: 600;
}

.page-template-page-shop,
.page-template-page-degustazione,
.page-template-page-contattaci {
    background: var(--site-page-bg);
}

.site-header {
    position: relative;
    z-index: 30;
    background: var(--site-black);
}

.home .site-header,
.page-template-page-shop .site-header,
.page-template-page-degustazione .site-header,
.page-template-page-contattaci .site-header {
    position: absolute;
    inset: 0 0 auto 0;
    background: transparent;
}

.site-nav {
    max-width: 1260px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.home .site-nav,
.page-template-page-shop .site-nav,
.page-template-page-degustazione .site-nav,
.page-template-page-contattaci .site-nav {
    max-width: none;
    padding: 0 28px 0 0;
}

.nav-logo {
    width: 188px;
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo .logo-img {
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-link {
    color: var(--site-white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2px;
    opacity: 0.88;
    transition: opacity 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
}

.hero-section {
    background: var(--site-hero);
    position: relative;
    overflow: hidden;
}

.hero-parallax-container {
    min-height: 460px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-bg-layer {
    position: absolute;
    inset: -24px;
    background: var(--site-hero);
    will-change: transform;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1260px;
    margin: 0 auto;
    width: 100%;
    padding: 80px 28px 54px;
    display: flex;
    align-items: center;
    gap: 42px;
}

.hero-image-col {
    flex: 0 0 420px;
    display: flex;
    justify-content: center;
}

.hero-arch-image {
    will-change: transform;
}

.hero-image-stack {
    --hero-vineyard-cutoff: 82%;
    position: relative;
    width: min(100%, 392px);
    aspect-ratio: 400 / 440;
    overflow: hidden;
    clip-path: inset(0 0 calc(100% - var(--hero-vineyard-cutoff)) 0);
}

.hero-clip-svg {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.hero-layer {
    position: absolute;
    will-change: transform;
    pointer-events: none;
    user-select: none;
    opacity: 1;
    animation: heroLayerReveal 0.8s ease-out forwards;
}

.hero-layer--vineyard { animation-delay: 0.05s; }
.hero-layer--arch { animation-delay: 0.15s; }
.hero-layer--barrel { animation-delay: 0.25s; }
.hero-layer--bottle { animation-delay: 0.4s; }

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

.hero-layer-img {
    display: block;
}

.hero-mobile-composition {
    display: none;
}

/* Vineyard - clipped to arch interior */
.hero-layer--vineyard {
    top: 0;
    left: 0;
    width: 100%;
    height: 82%;
    clip-path: url(#vineyard-arch);
    overflow: hidden;
}

.hero-layer--vineyard .hero-layer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

/* Vine arch decorative frame */
.hero-layer--arch {
    top: 0;
    left: 0;
    width: 100%;
    height: 82%;
}

.hero-layer--arch .hero-layer-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Barrel at bottom center - clipped at vineyard bottom edge */
.hero-layer--barrel {
    bottom: 5%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    clip-path: inset(0 0 38% 0);
    transition: clip-path 0.16s ease-out;
}

.hero-layer--barrel .hero-layer-img {
    width: 38%;
    height: auto;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.22));
}

.hero-parallax-container.is-scroll-active .hero-layer--barrel {
    clip-path: inset(0 0 38% 0);
}

/* Bottle on barrel */
.hero-layer--bottle {
    bottom: 34%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

.hero-layer--bottle .hero-layer-img {
    width: 28%;
    height: auto;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.28));
}

.arch-img {
    width: 100%;
    max-width: 300px;
}

.hero-divider {
    width: 3px;
    background: rgba(255, 255, 255, 0.78);
    min-height: 330px;
}

.hero-text-col {
    flex: 1;
    max-width: 740px;
}

.hero-title {
    font-size: clamp(2.4rem, 4.7vw, 4rem);
    color: var(--site-white);
    margin-bottom: 14px;
    font-weight: 500;
}

.hero-subtitle {
    color: var(--site-white);
    font-size: clamp(1rem, 1.85vw, 2rem);
    line-height: 1.25;
    max-width: 620px;
    font-weight: 400;
}

.hero-section--inner .hero-parallax-container {
    min-height: 300px;
}

.hero-section--inner .hero-content-wrapper {
    padding-top: 66px;
    padding-bottom: 34px;
}

.hero-section--inner .hero-image-col {
    flex: 0 0 188px;
}

.hero-section--inner .arch-img {
    max-width: 168px;
}

.hero-section--inner .hero-divider {
    min-height: 186px;
}

.hero-section--inner .hero-title {
    font-size: clamp(2rem, 3.5vw, 2.9rem);
}

.hero-section--inner .hero-subtitle {
    font-size: clamp(0.95rem, 1.45vw, 1.42rem);
    max-width: 460px;
}

/* ── Horizontal scroll (homepage) ── */

.horizontal-scroll {
    display: block;
    overflow: visible;
    height: auto;
}

.horizontal-panel {
    width: 100%;
    height: auto;
    position: relative;
}

body.home {
    overflow-x: hidden;
    height: auto;
}

.horizontal-panel.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.horizontal-panel.hero-section .hero-parallax-container {
    min-height: 462px;
    width: 100%;
}

.horizontal-panel.info-panel {
    background: var(--site-panel);
}

.horizontal-panel.showcase-section {
    display: block;
}

.horizontal-panel.footer-panel {
    display: block;
    background: var(--site-black);
    width: 100%;
    min-width: 0;
}

.horizontal-panel.footer-panel .site-footer {
    display: block;
}

/* ── End horizontal scroll ── */

.info-section {
    background: var(--site-panel);
}

.info-block {
    min-height: 372px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.info-block__image {
    min-height: 372px;
}

.info-block__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-block__content {
    padding: 34px 30px;
    background: var(--site-panel);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-block__content h2 {
    text-transform: uppercase;
    font-size: clamp(1.35rem, 2.7vw, 2.7rem);
    margin-bottom: 10px;
    max-width: 390px;
    line-height: 1;
}

.info-block__content p {
    font-size: 0.7rem;
    line-height: 1.34;
    max-width: 530px;
    margin-bottom: 14px;
    color: rgba(0, 0, 0, 0.82);
}

.info-block__link {
    border: 1px solid rgba(20, 20, 20, 0.9);
    border-radius: 0;
    color: rgba(15, 15, 15, 0.96);
    display: inline-block;
    font-size: 0.58rem;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1;
    padding: 6px 11px;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease;
}

.info-block__link:hover {
    background: rgba(0, 0, 0, 0.88);
    color: var(--site-white);
}

.info-block--right .info-block__image {
    order: 2;
}

.info-block--right .info-block__content {
    order: 1;
}

/* Homepage info blocks typography/buttons */
body.home .info-block__content h2 {
    font-size: 40px;
}

body.home .info-block__content p {
    font-size: 12px;
}

body.home .info-block__link {
    font-size: 16px;
    width: fit-content;
    align-self: flex-start;
}

.showcase-section {
    background: var(--site-page-bg);
}

.showcase-title-wrapper {
    padding: 18px 26px 14px;
}

.showcase-title {
    font-size: clamp(2rem, 3.4vw, 2.6rem);
    color: #1f1f1f;
    text-transform: uppercase;
    font-weight: 600;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showcase-card {
    min-height: 258px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 22px;
    color: var(--site-white);
    transition: filter 0.2s ease;
}

.showcase-card:hover {
    filter: brightness(0.98);
}

.showcase-card__image {
    flex: 0 0 74px;
}

.showcase-card__image img {
    width: 60px;
    height: 174px;
    object-fit: contain;
}

.showcase-card__title {
    color: var(--site-white);
    font-size: clamp(2rem, 2.9vw, 3rem);
    font-weight: 600;
    margin-bottom: 8px;
}

.showcase-card__desc {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.72rem;
    line-height: 1.4;
    margin-bottom: 14px;
    max-width: 240px;
}

.showcase-card__btn {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 9px;
    font-size: 0.64rem;
    line-height: 1;
    background: var(--site-magenta);
    color: var(--site-white);
    font-weight: 500;
}

.shop-section {
    background: var(--site-page-bg);
    padding: 48px 18px 72px;
}

.shop-products {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.shop-product-card {
    min-height: 172px;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 16px 22px;
    background: var(--card-color, #37c75b);
    color: var(--site-white);
    text-decoration: none;
    transition: transform 0.18s ease;
}

.shop-product-card--link:hover {
    transform: translateY(-2px);
}

.shop-product-card__image {
    flex: 0 0 126px;
    width: 126px;
    height: 108px;
    background: var(--site-page-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
}

.shop-product-card__image img {
    width: auto;
    height: 100%;
    max-width: 72px;
    object-fit: contain;
    object-position: center bottom;
}

.shop-product-card__info {
    flex: 1;
}

.shop-product-card__title {
    color: var(--site-white);
    font-size: clamp(1.75rem, 2.6vw, 2.6rem);
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1;
}

.shop-product-card__desc {
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.62rem;
    line-height: 1.35;
    margin-bottom: 10px;
    max-width: 620px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-product-card__btn {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 7px;
    font-size: 0.62rem;
    background: var(--site-magenta);
    color: var(--site-white);
    font-weight: 500;
}

.booking-section {
    background: var(--site-page-bg);
    padding: 50px 16px 76px;
}

.booking-container {
    max-width: 760px;
    margin: 0 auto;
    background: var(--site-panel);
    border-radius: 9px;
    padding: 26px 30px 32px;
}

.booking-heading {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    margin-bottom: 18px;
    color: var(--site-text);
}

.booking-fieldset {
    border: 0;
    margin-bottom: 22px;
}

.booking-checkboxes {
    background: var(--site-field);
    border: 2px solid var(--site-border);
    border-radius: 9px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booking-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    cursor: pointer;
    color: var(--site-text);
}

.booking-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4f4f4f;
}

.booking-availability-hint {
    font-size: 0.75rem;
    margin-bottom: 8px;
    color: rgba(0, 0, 0, 0.72);
}

.booking-calendar-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.booking-calendar-wrapper.is-hidden {
    display: none;
}

.booking-calendar {
    flex: 1;
}

.booking-calendar table {
    width: 100%;
    border-collapse: collapse;
    background: var(--site-field);
    border: 2px solid var(--site-border);
    border-radius: 9px;
    overflow: hidden;
}

.booking-calendar th,
.booking-calendar td {
    text-align: center;
    width: 14.28%;
    padding: 2px 2px;
    font-size: 0.94rem;
    line-height: 1.15;
}

.booking-calendar th {
    color: #414141;
    font-weight: 500;
}

.booking-calendar td {
    color: #2d2d2d;
    cursor: pointer;
}

.booking-calendar td:hover:not(.disabled):not(.empty) {
    background: rgba(79, 79, 79, 0.22);
}

.booking-calendar td.selected {
    background: #5b5b5b;
    color: var(--site-white);
    font-weight: 600;
}

.booking-calendar td.disabled {
    color: #a7a7a7;
    cursor: not-allowed;
}

.booking-calendar td.booked {
    color: #8d8d8d;
}

.booking-calendar td.today {
    outline: 1px solid #5f5f5f;
    outline-offset: -2px;
}

.booking-calendar td.empty {
    cursor: default;
}

.booking-month-selector {
    width: 126px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 176px;
    overflow-y: auto;
    background: var(--site-field);
    border: 2px solid var(--site-border);
    border-radius: 9px;
    padding: 4px;
    scrollbar-width: thin;
    scrollbar-color: var(--site-border) transparent;
}

.booking-month-selector::-webkit-scrollbar {
    width: 5px;
}

.booking-month-selector::-webkit-scrollbar-track {
    background: transparent;
}

.booking-month-selector::-webkit-scrollbar-thumb {
    background: var(--site-border);
    border-radius: 3px;
}

.month-btn {
    border: 0;
    background: transparent;
    color: #2b2b2b;
    border-radius: 5px;
    padding: 3px 6px;
    text-align: left;
    font-size: 1.02rem;
    cursor: pointer;
}

.month-btn.active {
    background: #595959;
    border-color: #595959;
    color: var(--site-white);
}

.booking-loading {
    font-size: 0.92rem;
    color: rgba(0, 0, 0, 0.75);
    padding: 9px 0;
}

.booking-field {
    margin-bottom: 14px;
}

.booking-field label {
    display: block;
    margin-bottom: 4px;
    font-size: 0.98rem;
    font-weight: 500;
}

.booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.booking-field input,
.booking-field textarea {
    width: 100%;
    border: 2px solid var(--site-border);
    border-radius: 10px;
    background: var(--site-field);
    color: #232323;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 6px 10px;
}

.booking-field textarea {
    min-height: 78px;
    resize: vertical;
}

.booking-field--phone {
    max-width: calc(50% - 9px);
}

.booking-field input:focus,
.booking-field textarea:focus {
    outline: none;
    border-color: #5d5d5d;
}

.booking-submit-btn {
    border: 2px solid var(--site-border);
    background: var(--site-field);
    color: #2d2d2d;
    border-radius: 9px;
    padding: 6px 18px;
    font-size: 0.98rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
}

.booking-submit-btn:hover {
    background: #d4d4d4;
}

.booking-submit-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.booking-success {
    text-align: center;
    padding: 34px 20px;
}

.booking-success p {
    font-size: 1.38rem;
    line-height: 1.3;
}

.contact-section {
    background: var(--site-page-bg);
    padding: 50px 16px 76px;
}

.contact-container {
    max-width: 820px;
    margin: 0 auto;
    background: var(--site-panel);
    border-radius: 10px;
    padding: 30px 30px 34px;
}

.contact-heading {
    font-size: clamp(1.5rem, 3.2vw, 2.05rem);
    margin-bottom: 24px;
}

.contact-fieldset {
    border: 0;
    margin-bottom: 22px;
}

.contact-fieldset legend {
    font-size: 1.03rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-checkboxes {
    background: var(--site-field);
    border: 2px solid var(--site-border);
    border-radius: 9px;
    padding: 11px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 1rem;
}

.contact-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4f4f4f;
}

.contact-field {
    margin-bottom: 14px;
}

.contact-field label {
    display: block;
    margin-bottom: 4px;
    font-size: 1.02rem;
    font-weight: 500;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 2px solid var(--site-border);
    border-radius: 10px;
    background: var(--site-field);
    color: #232323;
    font-family: inherit;
    font-size: 1rem;
    padding: 8px 12px;
}

.contact-field textarea {
    min-height: 110px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #5d5d5d;
}

.contact-submit-btn {
    border: 2px solid var(--site-border);
    background: var(--site-magenta);
    color: var(--site-white);
    border-radius: 10px;
    padding: 8px 26px;
    font-size: 1.03rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
}

.contact-submit-btn:hover {
    filter: brightness(0.95);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.contact-success {
    text-align: center;
    padding: 30px 18px 18px;
}

.contact-success p {
    font-size: 1.2rem;
}

.contact-wine-club {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.contact-wine-club__title {
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    margin-bottom: 7px;
}

.contact-wine-club__desc {
    font-size: 0.9rem;
    margin-bottom: 16px;
    color: rgba(0, 0, 0, 0.76);
}

.wine-club-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    align-items: center;
}

.wine-club-form input {
    width: 100%;
    border: 2px solid var(--site-border);
    border-radius: 10px;
    background: var(--site-field);
    color: #232323;
    font-family: inherit;
    font-size: 0.95rem;
    padding: 9px 12px;
}

.wine-club-form input:focus {
    outline: none;
    border-color: #5d5d5d;
}

.wine-club-btn {
    border: 2px solid var(--site-border);
    background: var(--site-black);
    color: var(--site-white);
    border-radius: 10px;
    padding: 9px 22px;
    font-size: 0.94rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
}

.wine-club-btn:hover {
    opacity: 0.9;
}

.wine-club-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.wine-club-error {
    margin-top: 8px;
    color: #ffffff;
    background: #c54646;
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 0.82rem;
}

.wine-club-success {
    margin-top: 8px;
    background: #f2f2f2;
    border: 1px solid #d2d2d2;
    border-radius: 8px;
    padding: 10px 12px;
}

.wine-club-success p {
    font-size: 0.88rem;
    color: #232323;
}

.wine-club-success strong {
    display: inline-block;
    margin: 0 4px;
    letter-spacing: 1px;
}

.site-main {
    background: var(--site-page-bg);
}

.page-content-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: 50px 20px 76px;
}

.legal-page {
    background: var(--site-panel);
    border-radius: 10px;
    padding: 30px 30px 34px;
}

.legal-page h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.8rem);
    margin: 22px 0 10px;
    font-weight: 600;
}

.legal-page p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.legal-page ul {
    margin: 6px 0 16px 20px;
}

.legal-page li {
    margin-bottom: 6px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.legal-note {
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.9rem;
}

.page-utility-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.page-utility-links a {
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.55);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.cookie-preferences-form {
    margin-top: 18px;
    border: 2px solid var(--site-border);
    border-radius: 10px;
    background: var(--site-field);
    padding: 16px;
}

.cookie-pref-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.cookie-pref-row:last-of-type {
    border-bottom: 0;
}

.cookie-pref-row strong {
    display: block;
    font-size: 0.98rem;
    margin-bottom: 3px;
}

.cookie-pref-row span {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.74);
}

.cookie-pref-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #4f4f4f;
}

.cookie-pref-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.cookie-pref-actions button {
    border: 2px solid var(--site-border);
    border-radius: 9px;
    padding: 8px 14px;
    font-family: inherit;
    font-size: 0.86rem;
    cursor: pointer;
}

.cookie-pref-save {
    background: var(--site-magenta);
    color: var(--site-white);
}

.cookie-pref-reset {
    background: #ffffff;
    color: #232323;
}

.pref-status {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(0, 0, 0, 0.78);
}

.site-footer {
    background: var(--site-black);
    color: var(--site-white);
    padding: 22px 20px 16px;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 22px;
}

.footer-logo-link {
    min-height: 0;
    width: 224px;
    height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
}

.footer-logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--site-white);
    padding: 8px 10px;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-links a {
    color: var(--site-white);
    font-size: 0.56rem;
    font-weight: 600;
    opacity: 0.86;
    letter-spacing: 0.15px;
}

.footer-links a:hover {
    opacity: 1;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 120;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.04);
}

@media (max-width: 1050px) {
    .hero-content-wrapper {
        gap: 26px;
    }

    .hero-image-col {
        flex-basis: 320px;
    }

    .hero-image-stack {
        width: min(100%, 308px);
    }

    .hero-layer--barrel .hero-layer-img {
        width: 38%;
    }

    .hero-layer--bottle .hero-layer-img {
        width: 17%;
    }

    .arch-img {
        max-width: 240px;
    }

    .hero-divider {
        min-height: 250px;
    }
}

@media (max-width: 820px) {
    .site-nav {
        padding-inline: 16px;
    }

    .nav-links {
        gap: 12px;
    }

    .hero-content-wrapper,
    .hero-section--inner .hero-content-wrapper {
        padding: 76px 18px 30px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .hero-image-col,
    .hero-section--inner .hero-image-col {
        flex: 0 0 auto;
        justify-content: center;
    }

    .hero-image-stack {
        width: min(100%, 250px);
    }

    .hero-layer--barrel .hero-layer-img {
        width: 40%;
    }

    .hero-layer--bottle .hero-layer-img {
        width: 18%;
    }

    .arch-img,
    .hero-section--inner .arch-img {
        max-width: 170px;
    }

    .hero-divider {
        width: 160px;
        height: 3px;
        min-height: 0;
    }

    .hero-text-col {
        max-width: 100%;
    }

    .hero-subtitle,
    .hero-section--inner .hero-subtitle {
        max-width: 100%;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .info-block {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    body.home .info-block__content {
        order: 1;
    }

    body.home .info-block__image {
        order: 2;
    }

    .info-block__image {
        min-height: 260px;
    }

    .info-block__content {
        padding: 30px 22px;
    }

    .shop-products {
        max-width: 640px;
    }

    .shop-product-card {
        flex-direction: row;
        align-items: center;
        gap: 14px;
        padding: 14px 16px;
    }

    .shop-product-card__image {
        flex: 0 0 94px;
        width: 94px;
        height: 94px;
        padding: 6px 8px;
    }

    .shop-product-card__image img {
        max-width: 54px;
    }

    .shop-product-card__title {
        font-size: clamp(1.25rem, 6.5vw, 1.9rem);
        margin-bottom: 6px;
    }

    .shop-product-card__desc {
        max-width: 100%;
        font-size: 0.58rem;
        margin-bottom: 10px;
        -webkit-line-clamp: 5;
    }

    .booking-container,
    .contact-container {
        padding: 24px 18px;
    }

    .booking-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .booking-field--phone {
        max-width: 100%;
    }

    .booking-calendar-wrapper {
        flex-direction: column;
    }

    .booking-month-selector {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-height: none;
        overflow-y: visible;
    }

    .wine-club-form {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 520px) {
    .nav-logo {
        width: 44px;
        height: 44px;
    }

    .nav-logo .logo-img {
        width: 32px;
        height: 32px;
        max-width: 32px;
    }

    .footer-logo-link {
        min-height: 44px;
        width: 44px;
        height: 44px;
        padding: 0;
    }

    .footer-logo img {
        width: 34px;
        height: 34px;
        max-width: 34px;
    }

    .nav-link {
        font-size: 0.62rem;
    }

    .showcase-card {
        padding: 22px 16px;
        gap: 16px;
    }

    .showcase-card__image {
        flex-basis: 68px;
    }

    .showcase-card__image img {
        width: 56px;
        height: 152px;
    }

    .showcase-card__desc {
        font-size: 0.68rem;
    }

    .shop-product-card__image {
        width: 84px;
        height: 84px;
        flex-basis: 84px;
    }

    .shop-product-card {
        gap: 10px;
        padding: 12px;
    }

    .shop-product-card__image img {
        max-width: 46px;
        height: 100%;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        right: 14px;
        bottom: 14px;
    }
}

/* Mobile design refresh aligned to the provided references */
.booking-field--mobile-date {
    display: none;
}

.booking-mobile-date-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 820px) {
    .home .site-nav,
    .page-template-page-shop .site-nav,
    .page-template-page-degustazione .site-nav,
    .page-template-page-contattaci .site-nav {
        padding: 12px 16px 0;
    }

    .site-nav {
        align-items: flex-start;
        gap: 12px;
    }

    .nav-logo {
        width: 138px;
        height: auto;
    }

    .nav-logo .logo-img {
        width: 100%;
        height: auto;
        max-width: none;
    }

    .nav-links {
        gap: 20px;
        padding-top: 4px;
    }

    .nav-link {
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0;
        opacity: 1;
    }

    .hero-parallax-container {
        min-height: 468px;
    }

    .hero-content-wrapper,
    .hero-section--inner .hero-content-wrapper {
        padding: 86px 16px 34px;
        gap: 18px;
    }

    .hero-image-stack {
        width: min(100%, 258px);
        aspect-ratio: 400 / 430;
        clip-path: none;
    }

    .home .hero-image-stack,
    .page-template-page-shop .hero-image-stack,
    .page-template-page-degustazione .hero-image-stack {
        aspect-ratio: auto;
        overflow: hidden;
        margin: 0 auto;
    }

    .home .hero-mobile-composition,
    .page-template-page-shop .hero-mobile-composition,
    .page-template-page-degustazione .hero-mobile-composition {
        display: block !important;
        width: 104%;
        max-width: none;
        height: auto;
        margin-left: -2%;
        clip-path: inset(0 0 2px 0);
        position: relative;
        z-index: 2;
    }

    .home .hero-layer,
    .page-template-page-shop .hero-layer,
    .page-template-page-degustazione .hero-layer {
        display: none;
    }

    .hero-layer--barrel {
        bottom: 3%;
        clip-path: none;
    }

    .hero-layer--barrel .hero-layer-img {
        width: 41%;
    }

    .hero-layer--bottle {
        bottom: 31%;
    }

    .hero-layer--bottle .hero-layer-img {
        width: 26%;
    }

    .hero-divider {
        width: min(74vw, 250px);
        height: 2px;
        min-height: 0;
        background: rgba(255, 255, 255, 0.68);
    }

    .hero-title,
    .hero-section--inner .hero-title {
        font-size: clamp(2.15rem, 10vw, 3rem);
        margin-bottom: 8px;
    }

    .hero-subtitle,
    .hero-section--inner .hero-subtitle {
        max-width: 320px;
        margin: 0 auto;
        font-size: 0.95rem;
        line-height: 1.2;
    }

    body.home .info-block__image {
        min-height: 238px;
    }

    body.home .info-block__content {
        padding: 24px 14px 32px;
    }

    body.home .info-block__content h2 {
        font-size: clamp(2rem, 9vw, 2.9rem);
        line-height: 0.95;
    }

    body.home .info-block__content p {
        font-size: 0.62rem;
        line-height: 1.35;
        margin-bottom: 14px;
    }

    body.home .info-block__link {
        font-size: 0.66rem;
        letter-spacing: 0.12px;
        padding: 7px 11px;
    }

    .home .showcase-title-wrapper {
        padding: 20px 12px 14px;
    }

    .home .showcase-title {
        font-size: 2.05rem;
    }

    .home .showcase-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home .showcase-section {
        min-height: 0;
    }

    .page-template-page-shop .shop-section {
        padding: 34px 0 72px;
    }

    .page-template-page-shop .shop-products {
        max-width: none;
        gap: 36px;
        padding: 0 22px;
    }

    .page-template-page-shop .shop-product-card {
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        background: transparent;
        transform: none;
    }

    .page-template-page-shop .shop-product-card__image {
        width: 100%;
        height: auto;
        flex: 0 0 auto;
        background: transparent;
        margin: 0 auto 18px;
        padding: 0;
    }

    .page-template-page-shop .shop-product-card__image img {
        width: 124px;
        max-width: 124px;
        height: auto;
        max-height: none;
    }

    .page-template-page-shop .shop-product-card__info {
        width: 100%;
        background: var(--card-color, #37c75b);
        text-align: center;
        padding: 42px 22px 38px;
    }

    .page-template-page-shop .shop-product-card__title {
        font-size: clamp(2.5rem, 14vw, 3.6rem);
        margin-bottom: 12px;
    }

    .page-template-page-shop .shop-product-card__desc {
        max-width: 260px;
        margin: 0 auto 18px;
        font-size: 0.62rem;
        -webkit-line-clamp: 2;
    }

    .page-template-page-shop .shop-product-card__btn {
        padding: 10px 28px;
        border-radius: 15px;
        font-size: 0.7rem;
    }

    .page-template-page-degustazione .booking-section {
        background: var(--site-panel);
        padding: 26px 0 76px;
    }

    .page-template-page-degustazione .booking-container {
        max-width: none;
        border-radius: 0;
        background: transparent;
        padding: 0;
    }

    .page-template-page-degustazione .booking-heading,
    .page-template-page-degustazione .booking-availability-hint,
    .page-template-page-degustazione .booking-calendar-wrapper {
        display: none !important;
    }

    .page-template-page-degustazione .booking-fieldset {
        margin-bottom: 22px;
    }

    .page-template-page-degustazione .booking-checkboxes {
        border: 0;
        border-top: 1px solid #111;
        border-bottom: 1px solid #111;
        border-radius: 0;
        background: var(--site-page-bg);
        padding: 22px 24px;
        gap: 10px;
    }

    .page-template-page-degustazione .booking-checkbox {
        font-size: 1.05rem;
    }

    .page-template-page-degustazione .booking-checkbox input[type="checkbox"] {
        width: 22px;
        height: 22px;
        border: 2px solid #1b1b1b;
        border-radius: 5px;
        appearance: none;
        background: transparent;
        accent-color: transparent;
        position: relative;
    }

    .page-template-page-degustazione .booking-checkbox input[type="checkbox"]:checked {
        background: #1b1b1b;
    }

    .page-template-page-degustazione .booking-field--mobile-date {
        display: block;
        margin-bottom: 16px;
        padding: 0 16px;
    }

    .page-template-page-degustazione #booking-date-mobile {
        width: 100%;
        height: 44px;
        border: 1px solid #1f1f1f;
        border-radius: 24px;
        background: var(--site-page-bg);
        color: #1f1f1f;
        font-family: inherit;
        font-size: 1rem;
        padding: 8px 14px;
    }

    .page-template-page-degustazione .booking-field,
    .page-template-page-degustazione .booking-row,
    .page-template-page-degustazione .booking-submit-wrapper {
        padding: 0 16px;
    }

    .page-template-page-degustazione .booking-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .page-template-page-degustazione .booking-field {
        margin-bottom: 14px;
    }

    .page-template-page-degustazione .booking-field label {
        margin-bottom: 8px;
    }

    .page-template-page-degustazione .booking-field--phone {
        max-width: 100%;
    }

    .page-template-page-degustazione .booking-field input,
    .page-template-page-degustazione .booking-field textarea {
        border: 1px solid #1f1f1f;
        border-radius: 24px;
        background: var(--site-page-bg);
        padding: 10px 14px;
        font-size: 1rem;
    }

    .page-template-page-degustazione .booking-field textarea {
        min-height: 160px;
        border-radius: 22px;
    }

    .page-template-page-degustazione .booking-submit-wrapper {
        margin-top: 8px;
    }

    .page-template-page-degustazione .booking-submit-btn {
        width: 100%;
        border-radius: 26px;
        border: 1px solid #1f1f1f;
        padding: 11px 14px;
        font-size: 2rem;
        background: var(--site-page-bg);
        color: #121212;
    }

    .footer-inner {
        align-items: center;
        gap: 14px;
    }

    .footer-logo-link {
        width: 176px;
        height: auto;
        min-height: 0;
    }

    .footer-logo img {
        width: 100%;
        height: auto;
        max-width: none;
    }

    .footer-logo-badge {
        padding: 8px 12px;
    }

    .footer-links {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .footer-links a {
        font-size: 0.95rem;
    }

    .whatsapp-float {
        display: none;
    }
}

@media (max-width: 520px) {
    .site-nav {
        padding-inline: 12px;
    }

    .nav-logo {
        width: 120px;
        height: auto;
    }

    .nav-logo .logo-img {
        width: 100%;
        height: auto;
        max-width: none;
    }

    .nav-links {
        gap: 14px;
    }

    .nav-link {
        font-size: 0.88rem;
    }

    .hero-content-wrapper,
    .hero-section--inner .hero-content-wrapper {
        padding-inline: 12px;
    }

    .home .showcase-section {
        min-height: 380px;
    }

    .page-template-page-shop .shop-products {
        padding-inline: 14px;
    }

    .page-template-page-shop .shop-product-card__image img {
        width: 112px;
        max-width: 112px;
    }

    .page-template-page-shop .shop-product-card__info {
        padding: 34px 16px 30px;
    }

    .page-template-page-shop .shop-product-card__btn {
        font-size: 0.66rem;
    }

    .page-template-page-degustazione .booking-field--mobile-date,
    .page-template-page-degustazione .booking-field,
    .page-template-page-degustazione .booking-row,
    .page-template-page-degustazione .booking-submit-wrapper {
        padding-inline: 12px;
    }

    .page-template-page-degustazione .booking-checkboxes {
        padding: 18px 14px;
    }

    .page-template-page-degustazione .booking-submit-btn {
        font-size: 1.82rem;
    }

    .footer-links a {
        font-size: 0.82rem;
    }
}
