/* ==========================================================================
   Amaro U Ciaciu — foglio di stile
   ========================================================================== */

/* Font self-hosted ---------------------------------------------------------- */
@font-face { font-family: 'Bevan'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/bevan-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Bevan'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/bevan-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Bevan'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/bevan-italic-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Bevan'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/bevan-italic-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'EB Garamond'; font-style: normal; font-weight: 400 600; font-display: swap; src: url('../fonts/eb-garamond-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'EB Garamond'; font-style: normal; font-weight: 400 600; font-display: swap; src: url('../fonts/eb-garamond-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'EB Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/eb-garamond-italic-latin.woff2') format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'EB Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/eb-garamond-italic-latin-ext.woff2') format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

/* Design token --------------------------------------------------------------- */
:root {
    --ink: #120d08;
    --panel: #1B130C;
    --paper: #EFE3CC;
    --card: #FBF5E7;
    --cream: #F6EEDD;
    --brown: #2A1C10;
    --gold: #C98B3A;
    --gold-light: #E8C583;
    --gold-pale: #F1D49A;
    --gold-hover: #E8B65E;
    --amber: #8A5A1E;
    --amber-mid: #A2702C;
    --link: #D9A84E;
    --error: #9B2C1F;

    --font-display: 'Bevan', Georgia, serif;
    --font-body: 'EB Garamond', Georgia, serif;

    --pad-x: clamp(18px, 5vw, 80px);
    --header-pad-x: clamp(18px, 4vw, 54px);
    --container: 1180px;
}

/* Base ----------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; background: var(--ink); }
html.is-locked { overflow: hidden; }

body {
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--cream);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, p, dl, dd, ul, ol, figure, blockquote { margin: 0; }
h1, h2, h3 { font-weight: 400; }
ul, ol { padding: 0; list-style: none; }
p { text-wrap: pretty; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea { font: inherit; }
[hidden] { display: none !important; }

a {
    color: var(--link);
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}
a:hover { color: var(--gold-pale); }

::selection { background: var(--gold); color: var(--ink); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
main:focus { outline: none; }

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 300;
    padding: 10px 18px;
    background: var(--gold);
    color: var(--ink);
    font-size: 15px;
}
.skip-link:focus { top: 16px; color: var(--ink); }

.site { position: relative; min-height: 100vh; overflow-x: hidden; }

/* Animazioni ------------------------------------------------------------------ */
@keyframes ucFade { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes ucBottle { 0% { opacity: 0; transform: translateY(60px) rotate(-4deg) scale(.96); } 100% { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); } }
@keyframes ucFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes ucGlow { 0%, 100% { opacity: .45; } 50% { opacity: .8; } }
@keyframes ucCue { 0% { transform: translateY(0); opacity: .2; } 50% { opacity: 1; } 100% { transform: translateY(14px); opacity: .2; } }

/* Utility --------------------------------------------------------------------- */
.container { max-width: var(--container); margin-left: auto; margin-right: auto; }
.container--900 { max-width: 900px; }
.text-center { text-align: center; }
.mb-14 { margin-bottom: 14px; }
.mb-16 { margin-bottom: 16px; }
.mb-18 { margin-bottom: 18px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-26 { margin-bottom: 26px; }
.mt-34 { margin-top: 34px; }

.wordmark {
    font-family: var(--font-display);
    font-size: clamp(15px, 1.5vw, 19px);
    line-height: 1;
    letter-spacing: .02em;
    color: var(--gold-pale);
    text-transform: uppercase;
}
.wordmark span { color: var(--gold); }

.eyebrow {
    font-size: 12px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--gold);
}
.eyebrow--amber { color: var(--amber-mid); }

/* Sfondi fotografici a livelli --------------------------------------------------- */
.layer {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.layer--parallax { inset: -10% 0; will-change: transform; }
.layer--parallax-hero { inset: -12% 0 0 0; will-change: transform; }

.photo-artisti { background-image: url('../img/artisti-bottiglia.webp'); background-size: cover; background-position: 55% center; }
.media-famiglia { object-position: center 30%; }
.media-famiglia-spec { object-position: center 32%; }
.media-artisti { object-position: 55% center; }
.photo-etichetta { background-image: url('../img/etichetta-cornice.webp'); background-size: cover; background-position: center; }
.photo-sour { background-image: url('../img/artisti-bottiglia.webp'); background-size: 150%; background-position: 72% 52%; }
.photo-spritz-slide { background-image: url('../img/bar-mixing.webp'); background-size: 230%; background-position: 14% 14%; }
.photo-mule-slide { background-image: url('../img/bar-mixing.webp'); background-size: 230%; background-position: 20% 84%; }
.photo-spritz { background-image: url('../img/bar-mixing.webp'); background-size: 230%; background-position: 16% 16%; }
.photo-mule { background-image: url('../img/bar-mixing.webp'); background-size: 230%; background-position: 18% 82%; }
.photo-press-lancio { background-image: url('../img/due-amari.webp'); background-size: 190%; background-position: 30% 62%; }
.photo-press-locali { background-image: url('../img/bar-mixing.webp'); background-size: 230%; background-position: 16% 20%; }

.photo-hero-home { background-image: url('../img/artisti-bottiglia.webp'); background-position: 62% 35%; }
.shade-hero-home { background: linear-gradient(rgba(18,13,8,.55) 0%, rgba(18,13,8,.1) 38%, rgba(18,13,8,.78) 82%, #120d08 100%); }
.photo-story-teaser { background-image: url('../img/artisti-bottiglia.webp'); background-position: 68% 22%; opacity: .22; }
.shade-story-teaser { background: linear-gradient(#120d08, rgba(18,13,8,.55), #120d08); }
.photo-locali { background-image: url('../img/artisti-bottiglia.webp'); background-position: 20% 75%; opacity: .35; }
.shade-locali { background: linear-gradient(rgba(18,13,8,.85), rgba(18,13,8,.78)); }
.photo-hero-prodotto { background-image: url('../img/artisti-bottiglia.webp'); background-position: 40% 60%; opacity: .32; }
.shade-hero-prodotto { background: linear-gradient(rgba(18,13,8,.7), #120d08 88%); }
.photo-hero-storia { background-image: url('../img/artisti-bottiglia.webp'); background-position: 30% 30%; opacity: .3; }
.shade-hero-storia { background: linear-gradient(rgba(18,13,8,.78), #120d08 92%); }
.photo-tre-v { background-image: url('../img/artisti-bottiglia.webp'); background-position: 18% 78%; opacity: .24; }
.shade-tre-v { background: linear-gradient(rgba(27,19,12,.86), rgba(18,13,8,.94)); }
.photo-hero-botaniche { background-image: url('../img/artisti-bottiglia.webp'); background-position: 50% 18%; opacity: .24; }
.shade-hero-botaniche { background: linear-gradient(rgba(18,13,8,.8), #120d08 90%); }
.photo-hero-cocktail { background-image: url('../img/bar-mixing.webp'); background-size: 180%; background-position: 14% 16%; opacity: .42; }
.shade-hero-cocktail { background: linear-gradient(rgba(18,13,8,.72), #120d08 90%); }
.photo-hero-contatti { background-image: url('../img/artisti-bottiglia.webp'); background-position: 78% 40%; opacity: .3; }
.shade-hero-contatti { background: linear-gradient(rgba(18,13,8,.78), #120d08 92%); }

/* Bottoni ---------------------------------------------------------------------- */
.btn {
    display: inline-block;
    padding: 15px 32px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: .26em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}
.btn--primary { background: var(--gold); color: var(--ink); }
.btn--primary:hover { background: var(--gold-hover); color: var(--ink); }
.btn--ghost { border-color: rgba(246,238,221,.4); color: var(--cream); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-light); }
.btn--outline-gold { padding: 15px 34px; border-color: rgba(232,197,131,.5); color: var(--gold-light); }
.btn--outline-gold:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn--dark { padding: 15px 34px; background: var(--brown); color: var(--paper); }
.btn--dark:hover { background: var(--amber); color: var(--card); }
.btn--phone { padding: 14px 34px; font-family: var(--font-display); font-size: clamp(20px, 2.4vw, 28px); letter-spacing: .04em; text-transform: none; }
.btn--tall { padding: 18px 32px; }
.btn--wide { padding: 16px 34px; }
.btn--press { padding: 16px 32px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; }

/* Header ------------------------------------------------------------------------ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px var(--header-pad-x);
    background: linear-gradient(rgba(18,13,8,.92), rgba(18,13,8,0));
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}
.site-header__brand:hover { color: var(--gold-pale); }

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    border: 1px solid rgba(246,238,221,.28);
    border-radius: 2px;
    background: transparent;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: .3em;
    text-transform: uppercase;
    cursor: pointer;
}
.menu-toggle:hover { border-color: var(--gold); color: var(--gold-pale); }
.menu-toggle__icon { display: flex; flex-direction: column; gap: 4px; width: 16px; }
.menu-toggle__icon span { display: block; height: 1px; background: currentColor; }

/* Menu overlay --------------------------------------------------------------------- */
.menu {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    background: rgba(18,13,8,.97);
}
.menu.is-open, html:not(.js) .menu:target { display: flex; animation: ucFade .45s ease both; }
.menu__top { display: flex; align-items: center; justify-content: space-between; padding: 18px var(--header-pad-x); }
.menu__top .menu-toggle:hover { color: var(--cream); }
.menu__body {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
    gap: clamp(28px, 5vw, 70px);
    align-content: center;
    padding: clamp(24px, 5vw, 70px);
}
.menu__heading {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(201,139,58,.3);
    color: var(--gold);
    font-size: 12px;
    letter-spacing: .4em;
    text-transform: uppercase;
}
.menu__heading--aside { margin-bottom: 20px; }
.menu__nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--font-display);
    font-size: clamp(24px, 3.2vw, 40px);
    line-height: 1.1;
    text-transform: uppercase;
}
.menu__nav a { color: var(--cream); }
.menu__nav a:hover, .menu__nav a[aria-current="page"] { color: var(--gold); }
.menu__aside { display: flex; flex-direction: column; gap: 38px; }
.menu__links { display: flex; flex-direction: column; gap: 10px; font-size: 18px; }
.menu__links a { color: rgba(246,238,221,.82); }
.menu__links a:hover { color: var(--gold); }
.menu__note { max-width: 320px; font-size: 17px; line-height: 1.65; color: rgba(246,238,221,.62); }
.menu__bottom {
    padding: 20px var(--header-pad-x);
    border-top: 1px solid rgba(246,238,221,.1);
    color: rgba(246,238,221,.4);
    font-size: 13px;
    letter-spacing: .24em;
    text-transform: uppercase;
}

/* Age gate ---------------------------------------------------------------------------- */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
    overflow-y: auto;
    background: var(--ink);
    text-align: center;
}
.age-gate__photo {
    position: absolute;
    inset: 0;
    background: url('../img/artisti-bottiglia.webp') center / cover no-repeat;
    opacity: .3;
    filter: saturate(.75);
}
.age-gate__shade { position: absolute; inset: 0; background: radial-gradient(circle at 50% 40%, rgba(201,139,58,.18), rgba(18,13,8,.92) 68%); }
.age-gate__panel { position: relative; max-width: 560px; animation: ucFade .8s ease both; }
.age-gate__panel--refused { max-width: 520px; }
.age-gate__brand {
    font-family: var(--font-display);
    font-size: clamp(30px, 5.4vw, 52px);
    line-height: 1.02;
    letter-spacing: .01em;
    color: var(--gold-pale);
    text-transform: uppercase;
}
.age-gate__tagline { margin: 14px 0 40px; color: var(--gold); font-size: 13px; letter-spacing: .42em; text-transform: uppercase; }
.age-gate__question { font-family: var(--font-display); font-size: clamp(19px, 2.4vw, 25px); line-height: 1.35; color: var(--cream); text-wrap: pretty; }
.age-gate__text { max-width: 430px; margin: 16px auto 34px; color: rgba(246,238,221,.72); font-size: 17px; line-height: 1.6; }
.age-gate__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.age-gate__title { font-family: var(--font-display); font-size: clamp(30px, 5vw, 46px); color: var(--gold-pale); text-transform: uppercase; }
.age-gate__eyebrow { margin: 18px 0 20px; color: var(--gold); font-size: 13px; letter-spacing: .4em; text-transform: uppercase; }
.age-gate__courtesy { color: rgba(246,238,221,.74); font-size: 17px; line-height: 1.7; }

.gate-btn {
    display: inline-block;
    padding: 17px 46px;
    border: 0;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 15px;
    letter-spacing: .26em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}
.gate-btn--yes { background: var(--gold); color: var(--ink); }
.gate-btn--yes:hover { background: var(--gold-hover); }
.gate-btn--no { border: 1px solid rgba(246,238,221,.35); background: transparent; color: var(--cream); }
.gate-btn--no:hover { border-color: var(--gold); color: var(--gold-pale); }
.gate-btn--back {
    margin-top: 30px;
    padding: 14px 34px;
    border: 1px solid rgba(246,238,221,.3);
    background: transparent;
    color: var(--cream);
    font-size: 14px;
    letter-spacing: .24em;
}
.gate-btn--back:hover { border-color: var(--gold); color: var(--cream); }

/* Sezioni ------------------------------------------------------------------------------ */
.section { padding: clamp(60px, 9vh, 110px) var(--pad-x); }
.section--compact { padding-top: clamp(50px, 8vh, 100px); padding-bottom: clamp(50px, 8vh, 100px); }
.section--ink { background: var(--ink); }
.section--panel { background: var(--panel); }
.section--paper { background: var(--paper); color: var(--brown); }
.section--bordered { border-top: 1px solid rgba(246,238,221,.08); }
.section-head { margin-bottom: 46px; text-align: center; }

.title-h2 {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.8vw, 52px);
    line-height: 1.08;
    text-transform: uppercase;
    text-wrap: balance;
}
.title-h2--bottle { margin-bottom: 22px; font-size: clamp(28px, 3.6vw, 50px); color: var(--brown); }
.title-h2--carousel { font-size: clamp(26px, 3.8vw, 50px); }
.title-h2--locali { margin-bottom: 22px; font-size: clamp(26px, 4vw, 52px); color: var(--cream); }
.title-h2--sm { font-size: clamp(24px, 3.2vw, 42px); }
.title-h2--method { margin-bottom: 22px; line-height: 1.1; color: var(--cream); }
.title-h2--serving { margin-bottom: 34px; font-size: clamp(24px, 3.4vw, 44px); color: var(--cream); }

.body-paper { margin-bottom: 18px; color: rgba(42,28,16,.8); font-size: 18px; line-height: 1.75; }
.body-paper--last { margin-bottom: 30px; }
.body-dark { margin-bottom: 18px; color: rgba(246,238,221,.76); font-size: 18px; line-height: 1.75; }
.body-dark--last { margin-bottom: 0; }

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(30px, 5vw, 70px);
    align-items: center;
}
.split--method { grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: clamp(30px, 5vw, 60px); }

/* Home: hero --------------------------------------------------------------------------- */
.hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
    overflow: hidden;
}
.hero__content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 30px;
    align-items: end;
    width: 100%;
    padding: 0 var(--pad-x) clamp(50px, 8vh, 90px);
}
.hero__intro { animation: ucFade 1.1s ease both; }
.hero__eyebrow { margin-bottom: 20px; color: var(--gold-light); font-size: 12px; letter-spacing: .44em; text-transform: uppercase; }
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(42px, 7.6vw, 108px);
    line-height: .94;
    color: var(--cream);
    text-transform: uppercase;
    text-shadow: 0 6px 40px rgba(18,13,8,.6);
}
.hero__title span { color: var(--gold-light); }
.hero__tagline {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 22px;
    color: var(--cream);
    font-size: 13px;
    letter-spacing: .4em;
    text-transform: uppercase;
}
.hero__tagline::before { content: ''; flex: 0 0 46px; height: 1px; background: var(--gold); }
.hero__aside { justify-self: end; max-width: 420px; animation: ucFade 1.4s ease both; }
.hero__quote { margin-bottom: 24px; color: var(--cream); font-size: clamp(21px, 2.4vw, 30px); font-style: italic; line-height: 1.35; }
.hero__text { margin-bottom: 28px; color: rgba(246,238,221,.76); font-size: 17px; line-height: 1.7; }

.scroll-cue {
    position: absolute;
    left: var(--pad-x);
    bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(246,238,221,.55);
    font-size: 11px;
    letter-spacing: .3em;
    text-transform: uppercase;
    pointer-events: none;
}
.scroll-cue::before { content: ''; width: 34px; height: 1px; background: linear-gradient(90deg, #C98B3A, transparent); animation: ucCue 2.2s ease-in-out infinite; }

/* Home: claim ---------------------------------------------------------------------------- */
.claim { border-bottom: 1px solid rgba(246,238,221,.08); }
.claim__head { text-align: center; }
.claim__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 4.4vw, 60px);
    line-height: 1.06;
    color: var(--cream);
    text-transform: uppercase;
    text-wrap: balance;
}
.claim__title span { color: var(--gold-light); }
.claim__text { max-width: 640px; margin: 26px auto 0; color: rgba(246,238,221,.72); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.7; }

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
    gap: 1px;
    margin-top: clamp(44px, 6vw, 70px);
    background: rgba(246,238,221,.12);
}
.stats__item { display: flex; flex-direction: column-reverse; padding: 30px 24px; background: var(--ink); text-align: center; }
.stats__value { font-family: var(--font-display); font-size: clamp(30px, 3.6vw, 46px); line-height: 1; color: var(--gold-light); }
.stats__label { margin-top: 10px; color: rgba(246,238,221,.6); font-size: 12px; letter-spacing: .28em; text-transform: uppercase; }

/* Home: bottiglia ------------------------------------------------------------------------- */
.bottle-section { overflow: hidden; }
.bottle { position: relative; display: flex; justify-content: center; }
.bottle__glow {
    position: absolute;
    width: 74%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,139,58,.35), transparent 70%);
    animation: ucGlow 5s ease-in-out infinite;
}
.bottle__img {
    position: relative;
    width: 100%;
    max-width: 460px;
    mix-blend-mode: multiply;
    animation: ucBottle 1.3s cubic-bezier(.2,.8,.2,1) both, ucFloat 7s ease-in-out 1.3s infinite;
}
.sensory { display: flex; flex-wrap: wrap; gap: 26px; padding-top: 22px; border-top: 1px solid rgba(42,28,16,.18); }
.sensory__label { color: rgba(42,28,16,.55); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; }
.sensory__value { font-family: var(--font-display); font-size: 24px; color: var(--amber); }

/* Home: due amari ---------------------------------------------------------------------------- */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 26px; }
.product-card { display: block; overflow: hidden; border: 1px solid rgba(246,238,221,.1); background: var(--ink); color: inherit; }
.product-card:hover { border-color: var(--gold); color: inherit; }
.product-card__media { display: block; width: 100%; height: clamp(260px, 34vw, 420px); object-fit: cover; }
.product-card__body { padding: 30px 28px 34px; }
.product-card__meta { color: var(--gold); font-size: 11px; letter-spacing: .32em; text-transform: uppercase; }
.product-card__title { margin: 12px 0 14px; font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 32px); color: var(--cream); text-transform: uppercase; }
.product-card__text { color: rgba(246,238,221,.7); font-size: 17px; line-height: 1.7; }

/* Home: teaser storia ---------------------------------------------------------------------------- */
.story-teaser { position: relative; overflow: hidden; padding: clamp(70px, 12vh, 140px) var(--pad-x); background: var(--ink); }
.story-teaser__content { position: relative; max-width: 860px; margin: 0 auto; text-align: center; }
.story-teaser__quote { font-family: var(--font-display); font-size: clamp(34px, 7vw, 84px); font-style: italic; line-height: 1; color: var(--gold-light); }
.story-teaser__text { max-width: 640px; margin: 30px auto 0; color: rgba(246,238,221,.78); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.75; }
.story-teaser__cta { margin-top: 34px; }

/* Home: carosello cocktail ------------------------------------------------------------------------ */
.cocktail-carousel { padding-left: 0; padding-right: 0; }
.carousel-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}
.carousel-nav { display: flex; gap: 10px; }
.carousel-btn {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(42,28,16,.3);
    border-radius: 50%;
    background: transparent;
    color: var(--brown);
    font-size: 18px;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease, opacity .2s ease;
}
.carousel-btn:hover:not(:disabled) { background: var(--brown); color: var(--paper); }
.carousel-btn:disabled { opacity: .35; cursor: default; }
.carousel {
    display: flex;
    gap: 22px;
    padding: 40px var(--pad-x);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(217,168,78,.4) transparent;
}
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-thumb { background: rgba(217,168,78,.4); border-radius: 99px; }
.cocktail-slide { flex: 0 0 min(86vw, 380px); scroll-snap-align: center; border: 1px solid rgba(42,28,16,.14); background: var(--card); }
.cocktail-slide__media { height: 230px; background-repeat: no-repeat; }
.cocktail-slide__body { padding: 26px 26px 30px; }
.cocktail-slide__title { font-family: var(--font-display); font-size: 24px; color: var(--brown); text-transform: uppercase; }
.cocktail-slide__meta { margin: 8px 0 18px; color: var(--amber-mid); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; }
.cocktail-slide__list { display: flex; flex-direction: column; gap: 7px; color: rgba(42,28,16,.82); font-size: 17px; line-height: 1.5; }
.cocktail-slide__garnish { color: rgba(42,28,16,.6); font-style: italic; }

/* Home: CTA locali --------------------------------------------------------------------------------- */
.cta-locali { position: relative; overflow: hidden; padding: clamp(60px, 10vh, 120px) var(--pad-x); background: var(--ink); }
.cta-locali__content { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.cta-locali__text { max-width: 560px; margin: 0 auto 32px; color: rgba(246,238,221,.78); font-size: 18px; line-height: 1.7; }

/* Hero delle pagine interne --------------------------------------------------------------------------- */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(130px, 20vh, 200px) var(--pad-x) clamp(50px, 8vh, 90px);
    background: var(--ink);
}
.page-hero--storia { padding-top: clamp(130px, 20vh, 210px); }
.page-hero--short { padding-bottom: clamp(40px, 6vh, 70px); }
.page-hero--error { min-height: 80vh; display: flex; align-items: center; justify-content: center; }
.page-hero__content { position: relative; max-width: var(--container); margin: 0 auto; }
.page-hero__content--center { max-width: 860px; text-align: center; }
.page-hero__content--narrow { max-width: 820px; }
.page-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5.6vw, 76px);
    line-height: 1.02;
    color: var(--cream);
    text-transform: uppercase;
}
.page-title span { color: var(--gold-light); }
.page-title--lg { font-size: clamp(34px, 6vw, 82px); line-height: 1; }
.page-title--sm { font-size: clamp(32px, 5.4vw, 72px); line-height: 1.04; }
.page-title--botaniche { margin-bottom: 26px; font-size: clamp(32px, 5.6vw, 74px); }
.page-title--balance { text-wrap: balance; }
.page-title--spaced { margin-bottom: 24px; }
.page-title--contatti { margin-bottom: 22px; }
.page-hero__text { max-width: 580px; margin-top: 26px; color: rgba(246,238,221,.78); font-size: clamp(17px, 1.6vw, 21px); line-height: 1.7; }
.page-hero__text--center { margin-left: auto; margin-right: auto; }
.page-hero__text--540 { max-width: 540px; }
.page-hero__text--520 { max-width: 520px; }
.page-title--spaced + .page-hero__text,
.page-title--contatti + .page-hero__text,
.page-title--botaniche + .page-hero__text { margin-top: 0; }
.page-title--botaniche + .page-hero__text { max-width: none; color: rgba(246,238,221,.76); }

/* Prodotto ---------------------------------------------------------------------------------------------- */
.grid-specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: clamp(28px, 4vw, 56px); }
.spec-card { border: 1px solid rgba(42,28,16,.14); background: var(--card); }
.spec-card__media { display: block; width: 100%; height: clamp(300px, 36vw, 440px); object-fit: cover; }
.spec-card__body { padding: 32px 30px 36px; }
.spec-card__title { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); text-transform: uppercase; }
.spec-card__meta { margin: 10px 0 20px; color: var(--amber-mid); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; }
.spec-card__text { margin-bottom: 22px; color: rgba(42,28,16,.8); font-size: 17px; line-height: 1.7; }
.kv { display: flex; flex-direction: column; gap: 12px; padding-top: 18px; border-top: 1px solid rgba(42,28,16,.15); font-size: 16px; }
.kv__row { display: flex; justify-content: space-between; gap: 14px; }
.kv__row dt { color: rgba(42,28,16,.6); }
.kv__row dd { text-align: right; }

.reseller-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: clamp(30px, 4vw, 48px) clamp(24px, 4vw, 48px);
    border: 1px solid rgba(201,139,58,.4);
}
.reseller-cta__body { flex: 1 1 420px; max-width: 640px; }
.reseller-cta__title { color: var(--cream); }
.reseller-cta__text { margin-top: 18px; color: rgba(246,238,221,.72); font-size: 18px; line-height: 1.7; }
.reseller-cta__actions { flex: 0 1 auto; }

.grid-tech { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: clamp(30px, 5vw, 64px); }
.tech-table { display: flex; flex-direction: column; }
.tech-table__row { display: flex; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 1px solid rgba(246,238,221,.12); font-size: 17px; }
.tech-table__row:last-child { border-bottom: 0; }
.tech-table__row dt { color: rgba(246,238,221,.55); }
.tech-table__row dd { text-align: right; }
.profile { display: flex; flex-direction: column; gap: 24px; }
.profile__title { margin-bottom: 8px; font-family: var(--font-display); font-size: 18px; color: var(--gold-light); text-transform: uppercase; }
.profile__text { color: rgba(246,238,221,.74); font-size: 17px; line-height: 1.7; }


/* Storia ------------------------------------------------------------------------------------------------------ */
.timeline { display: flex; flex-direction: column; gap: 8px; max-width: 820px; margin: 0 auto; }
.timeline__item {
    display: grid;
    grid-template-columns: minmax(90px, 130px) 1fr;
    gap: clamp(18px, 3vw, 40px);
    padding: 28px 0;
    border-bottom: 1px solid rgba(42,28,16,.18);
}
.timeline__item:last-child { border-bottom: 0; }
.timeline__year { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); color: var(--amber); }
.timeline__title { margin-bottom: 10px; font-family: var(--font-display); font-size: 19px; text-transform: uppercase; }
.timeline__text { color: rgba(42,28,16,.8); font-size: 17px; line-height: 1.75; }

.tre-v { position: relative; overflow: hidden; padding: clamp(60px, 10vh, 120px) var(--pad-x); background: var(--panel); }
.tre-v__content { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.tre-v__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr)); gap: 26px; margin-bottom: 40px; text-align: left; }
.tre-v__item { padding-top: 18px; border-top: 1px solid rgba(232,197,131,.35); }
.tre-v__title { font-family: var(--font-display); font-size: 26px; color: var(--gold-light); text-transform: uppercase; }
.tre-v__text { margin-top: 8px; color: rgba(246,238,221,.7); font-size: 16px; line-height: 1.65; }
.tre-v__claim { font-family: var(--font-display); font-size: clamp(26px, 4.4vw, 52px); font-style: italic; line-height: 1.1; color: var(--cream); }
.tre-v__claim span { color: var(--gold-light); }
.tre-v__closing { max-width: 520px; margin: 24px auto 0; color: rgba(246,238,221,.74); font-size: 18px; line-height: 1.7; }

/* Botaniche ------------------------------------------------------------------------------------------------------ */
.botanicals { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr)); gap: 1px; background: rgba(42,28,16,.18); }
.botanicals__item { padding: 34px 28px; background: var(--paper); }
.botanicals__number { color: var(--amber-mid); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; }
.botanicals__name { margin: 12px 0 14px; font-family: var(--font-display); font-size: 24px; text-transform: uppercase; }
.botanicals__name--lead { font-size: clamp(24px, 2.6vw, 34px); }
.botanicals__text { color: rgba(42,28,16,.8); font-size: 17px; line-height: 1.7; }
.method-image { height: clamp(280px, 34vw, 420px); border: 1px solid rgba(246,238,221,.14); }

/* Cocktail --------------------------------------------------------------------------------------------------------- */
.grid-recipes { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); gap: 26px; }
.recipe { display: flex; flex-direction: column; border: 1px solid rgba(42,28,16,.14); background: var(--card); }
.recipe__media { height: 260px; background-repeat: no-repeat; }
.recipe__body { padding: 30px 28px 34px; }
.recipe__title { font-family: var(--font-display); font-size: clamp(22px, 2.2vw, 28px); text-transform: uppercase; }
.recipe__meta { margin: 10px 0 20px; color: var(--amber-mid); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; }
.recipe__ingredients { display: flex; flex-direction: column; gap: 10px; color: rgba(42,28,16,.85); font-size: 17px; line-height: 1.5; }
.recipe__ingredient { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 8px; border-bottom: 1px dotted rgba(42,28,16,.25); }
.recipe__ingredient:last-child { padding-bottom: 0; border-bottom: 0; }
.recipe__ingredient dd { text-align: right; white-space: nowrap; }
.recipe__garnish { margin-top: 18px; color: rgba(42,28,16,.65); font-size: 16px; font-style: italic; line-height: 1.6; }

.serving { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr)); gap: 1px; background: rgba(246,238,221,.14); }
.serving__item { padding: 26px 18px; background: var(--ink); }
.serving__title { font-family: var(--font-display); font-size: 19px; color: var(--gold-light); text-transform: uppercase; }
.serving__text { margin-top: 8px; color: rgba(246,238,221,.6); font-size: 15px; }
.serving__closing { max-width: 520px; margin: 32px auto 0; color: rgba(246,238,221,.7); font-size: 18px; line-height: 1.7; }

/* Press ------------------------------------------------------------------------------------------------------------ */
.press { padding: 0 var(--pad-x) clamp(56px, 9vh, 100px); background: var(--ink); }
.press-item {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
    gap: clamp(20px, 3vw, 46px);
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(246,238,221,.14);
    color: inherit;
}
.press-item:last-of-type { border-bottom: 1px solid rgba(246,238,221,.14); }
.press-item:hover { background: rgba(201,139,58,.07); color: inherit; }
.press-item__media { height: 200px; background-repeat: no-repeat; }
.press-item__body { grid-column: span 2; }
.press-item__date { margin-bottom: 12px; color: var(--gold); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; }
.press-item__title { margin-bottom: 12px; font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 28px); color: var(--cream); text-transform: uppercase; }
.press-item__text { color: rgba(246,238,221,.7); font-size: 17px; line-height: 1.7; }
.press-kit {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 46px;
    padding: 34px 30px;
    border: 1px solid rgba(201,139,58,.4);
}
.press-kit__title { font-family: var(--font-display); font-size: clamp(19px, 2vw, 26px); color: var(--cream); text-transform: uppercase; }
.press-kit__text { max-width: 460px; margin-top: 10px; color: rgba(246,238,221,.65); font-size: 17px; line-height: 1.6; }

/* Contatti ------------------------------------------------------------------------------------------------------------- */
.grid-contacts { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr)); gap: clamp(30px, 5vw, 60px); }
.contact-list { display: flex; flex-direction: column; gap: 22px; }
.contact-list__label { margin-bottom: 6px; color: rgba(42,28,16,.55); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; }
.contact-list__label--address { margin-bottom: 8px; }
.contact-list__phone { font-family: var(--font-display); font-size: clamp(22px, 2.4vw, 30px); color: var(--amber); }
.contact-list__link { font-size: 19px; color: var(--amber); overflow-wrap: anywhere; }
.contact-list__phone:hover, .contact-list__link:hover { color: var(--brown); }
.contact-list__addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(42,28,16,.18);
}
.contact-list__address { color: rgba(42,28,16,.8); font-size: 17px; line-height: 1.6; }
.contact-list__legal { color: rgba(42,28,16,.6); font-size: 16px; }

.reseller { padding: clamp(26px, 3vw, 40px); border: 1px solid rgba(42,28,16,.16); background: var(--card); scroll-margin-top: 90px; }
.reseller__title { margin-bottom: 8px; font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 27px); text-transform: uppercase; }
.reseller__intro { margin-bottom: 26px; color: rgba(42,28,16,.7); font-size: 17px; line-height: 1.65; }
.reseller__form { display: flex; flex-direction: column; gap: 16px; }

.form-alert { margin-bottom: 22px; padding: 14px 16px; border-left: 3px solid; font-size: 17px; line-height: 1.5; }
.form-alert:focus { outline: none; }
.form-alert--success { border-color: var(--amber); background: rgba(201,139,58,.14); color: var(--brown); }
.form-alert--error { border-color: var(--error); background: rgba(155,44,31,.08); color: var(--error); }

.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.field { display: flex; flex-direction: column; gap: 7px; }
.field__label { color: rgba(42,28,16,.6); font-size: 12px; letter-spacing: .26em; text-transform: uppercase; }
.field__input {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(42,28,16,.25);
    border-radius: 2px;
    background: var(--paper);
    color: var(--brown);
    font-family: var(--font-body);
    font-size: 17px;
    transition: border-color .2s ease;
}
.field__input::placeholder { color: rgba(42,28,16,.45); }
.field__input:focus { border-color: var(--amber); outline: 2px solid rgba(138,90,30,.25); outline-offset: 0; }
.field__input--textarea { resize: vertical; min-height: 110px; }
.field__input[aria-invalid="true"] { border-color: var(--error); }
.field__error { color: var(--error); font-size: 15px; line-height: 1.4; }
.field__error:empty { display: none; }

.check { display: flex; align-items: flex-start; gap: 10px; color: rgba(42,28,16,.75); font-size: 16px; line-height: 1.5; cursor: pointer; }
.check input { flex: 0 0 auto; width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--amber); }
.check a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }
.check a:hover { color: var(--brown); }

.submit-btn {
    padding: 16px;
    border: 0;
    border-radius: 2px;
    background: var(--brown);
    color: var(--paper);
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: .26em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .2s ease, opacity .2s ease;
}
.submit-btn:hover { background: var(--amber); }
.submit-btn:disabled { opacity: .6; cursor: progress; }

/* Pagine legali --------------------------------------------------------------------------------------------------------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { margin: 36px 0 12px; font-family: var(--font-display); font-size: clamp(18px, 1.8vw, 22px); text-transform: uppercase; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: rgba(42,28,16,.82); font-size: 17px; line-height: 1.75; }
.legal p + p { margin-top: 12px; }
.legal ul { padding-left: 22px; list-style: disc; }
.legal li + li { margin-top: 8px; }
.legal a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--brown); }
.legal__updated { margin-top: 40px; color: rgba(42,28,16,.55) !important; font-size: 15px !important; }
.legal__table-wrap { margin: 16px 0; overflow-x: auto; }
.legal__table { width: 100%; border-collapse: collapse; font-size: 16px; }
.legal__table th, .legal__table td { padding: 12px 10px; border-bottom: 1px solid rgba(42,28,16,.18); text-align: left; vertical-align: top; color: rgba(42,28,16,.82); }
.legal__table th { color: rgba(42,28,16,.6); font-size: 12px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; }

/* Footer --------------------------------------------------------------------------------------------------------------- */
.site-footer { padding: clamp(44px, 7vh, 80px) var(--pad-x) 34px; border-top: 1px solid rgba(246,238,221,.12); background: var(--ink); }
.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
    gap: clamp(26px, 4vw, 54px);
    max-width: var(--container);
    margin: 0 auto;
}
.site-footer__brand { font-size: clamp(18px, 2vw, 24px); line-height: 1.1; }
.site-footer__tagline { margin-top: 12px; color: rgba(246,238,221,.45); font-size: 12px; letter-spacing: .32em; text-transform: uppercase; }
.site-footer__heading { margin-bottom: 16px; color: var(--gold); font-size: 11px; letter-spacing: .32em; text-transform: uppercase; }
.site-footer__links { display: flex; flex-direction: column; gap: 9px; font-size: 17px; }
.site-footer__links a { color: rgba(246,238,221,.72); overflow-wrap: anywhere; }
.site-footer__links a:hover { color: var(--gold-light); }
.site-footer__note { color: rgba(246,238,221,.55); font-size: 16px; line-height: 1.6; }
.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    max-width: var(--container);
    margin: clamp(30px, 5vw, 50px) auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(246,238,221,.1);
    color: rgba(246,238,221,.42);
    font-size: 14px;
}
.site-footer__legal a, .site-footer__credits { color: rgba(246,238,221,.6); }
.site-footer__legal a:hover, .site-footer__credits:hover { color: var(--gold-light); }
.site-footer__credits { margin-left: auto; }

/* Pagina di errore autonoma ------------------------------------------------------------------------------------------------ */
.error-page { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; min-height: 100vh; padding: 40px var(--pad-x); text-align: center; }
.error-page__brand { margin-bottom: 30px; font-size: 22px; }
.error-page__detail { max-width: 100%; margin-top: 30px; padding: 16px; overflow-x: auto; background: var(--panel); color: rgba(246,238,221,.7); font-size: 12px; text-align: left; white-space: pre-wrap; }

/* Responsive -------------------------------------------------------------------------------------------------------------- */
@media (max-width: 720px) {
    .hero__aside { justify-self: start; }
    .press-item__body { grid-column: auto; }
}

@media (max-width: 480px) {
    .menu-toggle { gap: 10px; padding: 9px 14px; letter-spacing: .2em; }
    .timeline__item { grid-template-columns: 1fr; gap: 8px; }
    .gate-btn { padding: 16px 34px; }
    .site-footer__credits { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    .layer--parallax, .layer--parallax-hero { transform: none !important; }
}
