/* =====================================================================
   Salvatore — Hero (split, light cream + video right)
   Inspired by /design/design-04 (text + visual split) + design-05 (cards).
   ===================================================================== */

.sv-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    background: var(--sv-cream);
    color: var(--sv-text);
    overflow: hidden;
    isolation: isolate;
    padding: clamp(80px, 10vw, 120px) var(--sv-gutter) clamp(60px, 8vw, 100px);
    display: flex;
    align-items: center;
}

/* Soft warm radial in the corners */
.sv-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(183, 138, 60, 0.10) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.sv-hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(107, 63, 29, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.sv-hero__grid {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
}

/* ---------- LEFT — copy ---------- */
.sv-hero__copy {
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 620px;
}

/* ---------- Hero pill — caffè glass + Pacifico script ---------- */
.sv-hero__pill {
    align-self: flex-start;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: var(--sv-brown);

    opacity: 0;
    transform: translateY(12px);
    transition: opacity .9s var(--sv-ease) .1s, transform .9s var(--sv-ease) .1s;
}

/* Caffè glass icon */
.sv-hero__pill-icon {
    display: inline-flex;
    flex-shrink: 0;
    width: 38px;
    height: 42px;
    color: var(--sv-gold);
}

.sv-hero__pill-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

/* Steam wisps — gentle continuous rise */
.sv-hero__pill-steam {
    transform-box: fill-box;
    transform-origin: bottom center;
    animation: sv-pill-steam 3.6s ease-in-out infinite;
}

.sv-hero__pill-steam--b { animation-delay: .35s; }
.sv-hero__pill-steam--c { animation-delay: .7s;  }

@keyframes sv-pill-steam {
    0%   { opacity: 0; transform: translateY(4px)  scale(.85); }
    35%  { opacity: .85; }
    70%  { opacity: .55; }
    100% { opacity: 0; transform: translateY(-6px) scale(1.15); }
}

/* Pacifico script word */
.sv-hero__pill-cursive {
    font-family: 'Pacifico', var(--sv-font-script), cursive;
    font-style: normal;
    font-weight: 400;
    color: var(--sv-brown);
    font-size: 26px;
    line-height: 1;
    letter-spacing: 0.005em;
    white-space: nowrap;
}

/* Soft dot separator */
.sv-hero__pill-dot {
    color: var(--sv-gold);
    font-size: 18px;
    line-height: 1;
    opacity: 0.6;
    flex-shrink: 0;
}

/* Tracked uppercase meal info */
.sv-hero__pill-text {
    font-family: 'Pacifico', var(--sv-font-script), cursive;
    font-size: 16px;
    font-weight: 400;
    color: var(--sv-text-soft);
    white-space: nowrap;
    line-height: 1;
}

@media (max-width: 480px) {
    .sv-hero__pill { gap: 10px; }
    .sv-hero__pill-icon { width: 30px; height: 34px; }
    .sv-hero__pill-cursive { font-size: 22px; }
    .sv-hero__pill-text    { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
    .sv-hero__pill-steam { animation: none; }
}

.sv-hero__title {
    margin: 0;
    line-height: 0.92;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sv-hero__title-script {
    display: inline-block;
    position: relative;
    /* Dancing Script renders much thinner than Pacifico at the same size. */
    font-family: 'Dancing Script', 'Pacifico', var(--sv-font-script), cursive;
    font-style: normal;
    font-weight: 400;
    color: #c8943a;                 /* match the logo's hand-painted gold */
    -webkit-text-fill-color: #c8943a;
    background: none;
    font-size: clamp(64px, 9vw, 132px);
    letter-spacing: 0.005em;
    line-height: 1;
    text-shadow: none;
    -webkit-text-stroke: 0;

    opacity: 0;
    transform: translateY(40px);
    filter: blur(14px);
    transition: opacity 1.2s var(--sv-ease) .25s,
                transform 1.2s var(--sv-ease) .25s,
                filter 1.2s var(--sv-ease) .25s;
}

/* Hand-drawn underline swoosh — slim, matches the logo's flourish */
.sv-hero__title-script::after {
    content: '';
    position: absolute;
    left: 4%;
    right: 8%;
    bottom: 0.06em;
    height: 0.035em;
    background: currentColor;
    border-radius: 999px;
    transform: rotate(-2deg) skewX(-6deg);
    transform-origin: left center;
    opacity: 0.85;
}

.sv-hero__title-after {
    display: inline-block;
    font-family: var(--sv-font-display);
    font-weight: 500;
    color: var(--sv-text);
    font-size: clamp(28px, 3.4vw, 44px);
    margin-top: 8px;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s var(--sv-ease) .55s, transform 1s var(--sv-ease) .55s;
}

.sv-hero__sub {
    color: var(--sv-text-soft);
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.7;
    max-width: 540px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s var(--sv-ease) .7s, transform 1s var(--sv-ease) .7s;
}

.sv-hero__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s var(--sv-ease) .85s, transform 1s var(--sv-ease) .85s;
}

.sv-hero__link {
    color: var(--sv-text);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: border-color .4s var(--sv-ease), color .4s var(--sv-ease);
}

.sv-hero__link:hover {
    color: var(--sv-brown);
    border-color: var(--sv-brown);
}

.sv-hero__link-arrow {
    transition: transform .4s var(--sv-ease);
}

.sv-hero__link:hover .sv-hero__link-arrow {
    transform: translateX(4px);
}

/* ---------- stats row ---------- */
.sv-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 0;
    margin-top: 12px;
    padding-top: 28px;
    border-top: 1px solid var(--sv-line-soft);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s var(--sv-ease) 1s, transform 1s var(--sv-ease) 1s;
}

.sv-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 22px;
    border-right: 1px solid var(--sv-line-soft);
}

.sv-hero__stat:first-child { padding-left: 0; }
.sv-hero__stat:last-child  { border-right: none; }

.sv-hero__stat strong {
    font-family: var(--sv-font-display);
    font-size: clamp(18px, 1.6vw, 22px);
    color: var(--sv-text);
    font-weight: 500;
    line-height: 1;
}

.sv-hero__stat span {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sv-text-muted);
}

/* ---------- entrance ---------- */
.sv-hero.is-ready .sv-hero__pill,
.sv-hero.is-ready .sv-hero__title-script,
.sv-hero.is-ready .sv-hero__title-after,
.sv-hero.is-ready .sv-hero__sub,
.sv-hero.is-ready .sv-hero__actions,
.sv-hero.is-ready .sv-hero__stats,
.sv-hero.is-ready .sv-hero__visual,
.sv-hero.is-ready .sv-hero__card {
    opacity: 1;
    transform: translateY(0);
}

.sv-hero.is-ready .sv-hero__title-script {
    filter: blur(0);
}

/* ---------- RIGHT — visual ---------- */
.sv-hero__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    max-width: 540px;
    justify-self: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s var(--sv-ease) .4s, transform 1.2s var(--sv-ease) .4s;
}

.sv-hero__media {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--sv-radius-lg);
    overflow: hidden;
    background: var(--sv-ink);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 0 0 1px rgba(216, 184, 122, 0.45),
        0 40px 90px -28px rgba(28, 24, 22, 0.45),
        0 14px 30px -14px rgba(28, 24, 22, 0.20);
    rotate: -2deg;
    transition: rotate 1s var(--sv-ease), box-shadow .8s var(--sv-ease);
    isolation: isolate;
}

.sv-hero__visual:hover .sv-hero__media {
    rotate: 0deg;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.10) inset,
        0 0 0 1px rgba(216, 184, 122, 0.65),
        0 50px 100px -28px rgba(28, 24, 22, 0.55),
        0 18px 38px -14px rgba(183, 138, 60, 0.30);
}

.sv-hero__video,
.sv-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 8s linear;
}

.sv-hero__visual:hover .sv-hero__video,
.sv-hero__visual:hover .sv-hero__image {
    transform: scale(1.0);
}

/* ---------- Video frame inside the media card ---------- */
.sv-hero__triptych {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    height: 100%;
    background: var(--sv-ink);
}

.sv-hero__triptych-frame {
    position: relative;
    overflow: hidden;
    background: var(--sv-ink);
}

.sv-hero__triptych-frame img,
.sv-hero__triptych-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.06);
    transition: transform 1.6s var(--sv-ease), filter 1.2s var(--sv-ease);
}

.sv-hero__visual:hover .sv-hero__triptych-frame img,
.sv-hero__visual:hover .sv-hero__triptych-frame video {
    transform: scale(1.0);
}

/* Side frames are slightly desaturated so the center video draws focus */
.sv-hero__triptych-frame--side img {
    filter: saturate(0.78) brightness(0.85);
}

.sv-hero__triptych-frame--center {
    /* center frame "pops" forward */
    box-shadow: inset 0 0 0 1px rgba(216, 184, 122, 0.35);
}

.sv-hero__triptych-frame--center::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(10,10,10,0.45) 100%);
    pointer-events: none;
}

/* ---------- Glass-morphism notification card ---------- */
.sv-hero__notif {
    position: absolute;
    bottom: 22px;
    left: 22px;
    right: 22px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 14px 14px 16px;
    background: rgba(253, 250, 243, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    box-shadow:
        0 24px 60px -20px rgba(28, 24, 22, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    color: var(--sv-text);
    animation: sv-hero-notif 5.5s ease-in-out infinite;
}

@keyframes sv-hero-notif {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-4px); }
}

.sv-hero__notif-icon {
    flex-shrink: 0;
    width: 36px;
    height: 40px;
    color: var(--sv-brown);
}

.sv-hero__notif-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.sv-hero__notif-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    min-width: 0;
}

.sv-hero__notif-body strong {
    font-family: var(--sv-font-display);
    font-weight: 500;
    font-size: 14px;
    color: var(--sv-text);
    letter-spacing: 0.005em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sv-hero__notif-body small {
    font-size: 11px;
    color: var(--sv-text-muted);
    letter-spacing: 0.01em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sv-hero__notif-action {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sv-text);
    color: var(--sv-paper);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sv-hero__notif-action svg { width: 16px; height: 16px; display: block; }

/* ---------- Mini satellite thumbnail ---------- */
.sv-hero__mini {
    position: absolute;
    top: -22px;
    right: -22px;
    z-index: 4;
    width: 88px;
    height: 110px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 24px 50px -18px rgba(28, 24, 22, 0.45),
        0 0 0 4px rgba(253, 250, 243, 0.92);
    background: var(--sv-ink);
    rotate: 6deg;
    animation: sv-hero-mini 7s ease-in-out infinite;
}

@keyframes sv-hero-mini {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(-4px, 4px); }
}

.sv-hero__mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.9);
}

.sv-hero__mini-tag {
    position: absolute;
    left: 6px;
    bottom: 6px;
    padding: 3px 8px;
    background: rgba(253, 250, 243, 0.92);
    color: var(--sv-brown);
    border-radius: 999px;
    font-family: 'Pacifico', var(--sv-font-script), cursive;
    font-size: 10px;
    line-height: 1;
}

/* Soft bottom gradient for legibility of cards */
.sv-hero__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
                rgba(10, 10, 10, 0.0) 0%,
                rgba(10, 10, 10, 0.0) 55%,
                rgba(10, 10, 10, 0.55) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Inner gold ring — refined modern frame */
.sv-hero__media::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: calc(var(--sv-radius-lg) - 8px);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
    pointer-events: none;
    z-index: 2;
}

/* ---------- Decorative Italian tile pattern behind the video ---------- */
.sv-hero__tile {
    position: absolute;
    inset: -22px;
    z-index: -1;
    border-radius: var(--sv-radius-lg);
    pointer-events: none;
    opacity: 0.35;
    background-image:
        /* small 8-pointed star motif (rotated overlapping squares) */
        linear-gradient(45deg, var(--sv-gold) 1px, transparent 1px),
        linear-gradient(-45deg, var(--sv-gold) 1px, transparent 1px),
        linear-gradient(0deg,  var(--sv-gold) 1px, transparent 1px),
        linear-gradient(90deg, var(--sv-gold) 1px, transparent 1px);
    background-size: 22px 22px;
    background-position: 0 0, 0 0, 0 0, 0 0;
    -webkit-mask-image: radial-gradient(closest-side at 50% 50%, black 0%, black 60%, transparent 88%);
    mask-image:        radial-gradient(closest-side at 50% 50%, black 0%, black 60%, transparent 88%);
    transform: rotate(-2deg);
    transition: transform 1s var(--sv-ease);
}

.sv-hero__visual:hover .sv-hero__tile {
    transform: rotate(0deg);
}

/* ---------- Live badge — Cucina Italiana ---------- */
.sv-hero__live {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 10px;
    background: rgba(28, 24, 22, 0.58);
    color: var(--sv-bone);
    border: 1px solid rgba(216, 184, 122, 0.35);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.sv-hero__live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e30a17; /* Italian red */
    box-shadow: 0 0 0 4px rgba(227, 10, 23, 0.25);
    animation: sv-hero-live 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes sv-hero-live {
    0%, 100% { box-shadow: 0 0 0 4px rgba(227, 10, 23, 0.25); transform: scale(1); }
    50%      { box-shadow: 0 0 0 7px rgba(227, 10, 23, 0); transform: scale(1.15); }
}

.sv-hero__live-text {
    line-height: 1;
}

/* ---------- Caffè seal in the top-right of the video ---------- */
.sv-hero__seal {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 36px;
    height: 40px;
    color: var(--sv-gold-soft);
    opacity: 0.85;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.sv-hero__seal svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.sv-hero__seal-steam {
    transform-box: fill-box;
    transform-origin: bottom center;
    animation: sv-hero-steam 3.6s ease-in-out infinite;
}

.sv-hero__seal-steam:nth-of-type(2) { animation-delay: .4s; }

@keyframes sv-hero-steam {
    0%   { opacity: 0; transform: translateY(4px)  scale(.8); }
    35%  { opacity: .85; }
    70%  { opacity: .55; }
    100% { opacity: 0; transform: translateY(-6px) scale(1.15); }
}

/* ---------- mute toggle ---------- */
.sv-hero__sound {
    position: absolute;
    bottom: 18px;
    right: 18px;
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--sv-text);
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--sv-shadow-sm);
    transition: background .4s var(--sv-ease), transform .4s var(--sv-ease);
}

.sv-hero__sound:hover {
    background: var(--sv-paper);
    transform: scale(1.08);
}

.sv-hero__sound-icon {
    position: relative;
    width: 22px;
    height: 22px;
    display: inline-block;
}

/* Speaker speaker body */
.sv-hero__sound-icon span:nth-child(1) {
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 6px;
    background: currentColor;
    border-radius: 1px;
}

.sv-hero__sound-icon span:nth-child(2) {
    position: absolute;
    left: 6px;
    top: 2px;
    bottom: 2px;
    width: 0;
    border-left: 8px solid currentColor;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
}

/* Sound wave / muted slash */
.sv-hero__sound-icon span:nth-child(3) {
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 1.5px;
    background: currentColor;
    transform-origin: center;
    transform: translateY(-50%) rotate(0deg);
    transition: transform .35s var(--sv-ease);
}

.sv-hero__sound[data-muted="true"] .sv-hero__sound-icon span:nth-child(3) {
    width: 24px;
    right: -1px;
    transform: translateY(-50%) rotate(45deg);
}

/* ---------- floating cards on visual ---------- */
.sv-hero__card {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    color: var(--sv-text);
    padding: 14px 20px;
    border-radius: 18px;
    box-shadow: var(--sv-shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 4;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s var(--sv-ease), transform 1s var(--sv-ease);
}

.sv-hero.is-ready .sv-hero__card--rating { transition-delay: 1.0s; }
.sv-hero.is-ready .sv-hero__card--hours  { transition-delay: 1.15s; }
.sv-hero.is-ready .sv-hero__card--badge  { transition-delay: 1.30s; }

/* Top-left rating card */
.sv-hero__card--rating {
    top: -14px;
    left: -28px;
    animation: sv-float-a 7s ease-in-out infinite;
}

.sv-hero__card-stars {
    color: var(--sv-gold);
    letter-spacing: 2px;
    font-size: 14px;
    line-height: 1;
}

.sv-hero__card-meta { display: flex; flex-direction: column; }

.sv-hero__card-meta strong {
    font-family: var(--sv-font-display);
    font-size: 16px;
    color: var(--sv-text);
}

.sv-hero__card-meta span {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sv-text-muted);
}

/* Right-middle hours card */
.sv-hero__card--hours {
    top: 38%;
    right: -32px;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    animation: sv-float-b 8s ease-in-out infinite;
}

.sv-hero__card-eyebrow {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--sv-gold);
    font-weight: 600;
}

.sv-hero__card-title {
    display: block;
    font-family: var(--sv-font-display);
    font-size: 16px;
    color: var(--sv-text);
    line-height: 1.1;
    margin-top: 2px;
}

.sv-hero__card-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2ea866;
    box-shadow: 0 0 0 4px rgba(46, 168, 102, 0.18);
    animation: sv-pulse-dot 2s ease-in-out infinite;
}

/* Bottom-left signature badge */
.sv-hero__card--badge {
    bottom: -26px;
    left: -22px;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 12px 22px 12px 12px;
    border-radius: 999px;
    animation: sv-float-a 9s ease-in-out infinite reverse;
}

.sv-hero__card-mark {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d8b87a, #6b3f1d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sv-paper);
    font-family: var(--sv-font-script);
    font-style: italic;
    font-size: 18px;
    font-weight: 600;
}

.sv-hero__card-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.sv-hero__card-badge-text em {
    font-family: var(--sv-font-script);
    font-style: italic;
    color: var(--sv-text);
    font-size: 17px;
}

.sv-hero__card-badge-text small {
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sv-text-muted);
}

/* ---------- decorative braces ---------- */
.sv-hero__brace {
    position: absolute;
    width: 32px;
    height: 32px;
    z-index: 3;
}

.sv-hero__brace--tl {
    top: -10px;
    left: -10px;
    border-top: 2px solid var(--sv-gold);
    border-left: 2px solid var(--sv-gold);
    border-top-left-radius: 12px;
}

.sv-hero__brace--br {
    bottom: -10px;
    right: -10px;
    border-bottom: 2px solid var(--sv-gold);
    border-right: 2px solid var(--sv-gold);
    border-bottom-right-radius: 12px;
}

/* ---------- animations ---------- */
@keyframes sv-float-a {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

@keyframes sv-float-b {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}

@keyframes sv-pulse-dot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(46, 168, 102, 0.18); }
    50%      { box-shadow: 0 0 0 8px rgba(46, 168, 102, 0); }
}

/* ---------- scroll cue — “Scopri” + curled arrow + wine drop ---------- */
.sv-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--sv-brown);
    transition: transform .45s var(--sv-ease), color .35s var(--sv-ease);
}

.sv-hero__scroll:hover {
    color: var(--sv-text);
    transform: translateX(-50%) translateY(-3px);
}

/* Italic Italian "Scopri" */
.sv-hero__scroll-word {
    font-family: var(--sv-font-script);
    font-style: italic;
    font-weight: 600;
    color: var(--sv-brown);
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.01em;
    transition: color .35s var(--sv-ease);
}

.sv-hero__scroll-word::after {
    content: '';
    display: block;
    width: 70%;
    margin: 4px auto 0;
    border-bottom: 1px solid currentColor;
    opacity: 0.55;
}

.sv-hero__scroll:hover .sv-hero__scroll-word {
    color: var(--sv-text);
}

/* Curled hand-drawn arrow */
.sv-hero__scroll-arrow {
    width: 44px;
    height: 60px;
    color: var(--sv-gold);
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 4px;
}

.sv-hero__scroll-arrow svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.sv-hero__scroll-arrow path {
    stroke-dasharray: 110;
    stroke-dashoffset: 110;
    animation: sv-hero-trace 3.2s var(--sv-ease) infinite;
}

.sv-hero__scroll-arrow path:nth-child(2) {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation-delay: .9s;
}

@keyframes sv-hero-trace {
    0%   { stroke-dashoffset: 110; opacity: 0; }
    18%  { opacity: 1; }
    55%  { stroke-dashoffset: 0; opacity: 1; }
    85%  { opacity: 0; }
    100% { stroke-dashoffset: 110; opacity: 0; }
}

/* Wine drop — falls and bounces under the arrow */
.sv-hero__scroll-drop {
    width: 8px;
    height: 11px;
    background: var(--sv-brown);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(180deg);
    box-shadow: 0 4px 8px -3px rgba(107, 63, 29, 0.45);
    animation: sv-hero-drop 2.8s var(--sv-ease) infinite;
    opacity: 0;
}

@keyframes sv-hero-drop {
    0%   { transform: translateY(-12px) rotate(180deg) scale(.6, .8); opacity: 0; }
    20%  { transform: translateY(-6px)  rotate(180deg) scale(.9, 1.1); opacity: 1; }
    55%  { transform: translateY(8px)   rotate(180deg) scale(1, 1);    opacity: 1; }
    78%  { transform: translateY(14px)  rotate(180deg) scale(1.6, .35); opacity: .6; }
    100% { transform: translateY(20px)  rotate(180deg) scale(2.4, .1);  opacity: 0; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
    .sv-hero__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .sv-hero__copy {
        max-width: 100%;
        text-align: left;
    }
    .sv-hero__visual {
        max-width: 420px;
        aspect-ratio: 4 / 5;
    }
    .sv-hero__card--rating { left: -16px; top: -16px; }
    .sv-hero__card--hours  { right: -16px; }
    .sv-hero__card--badge  { left: -10px; bottom: -16px; }
}

@media (max-width: 768px) {
    .sv-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 80px;
    }
    .sv-hero__title-after {
        font-size: 28px;
    }
    .sv-hero__stats {
        grid-template-columns: 1fr 1fr;
        row-gap: 18px;
    }
    .sv-hero__stat {
        padding: 0;
        border-right: none;
    }
    .sv-hero__scroll { display: none; }
    .sv-hero__visual { max-width: 86%; }
}

@media (max-width: 480px) {
    .sv-hero__card--rating,
    .sv-hero__card--hours {
        padding: 10px 14px;
    }
    .sv-hero__card--rating { left: 0; }
    .sv-hero__card--hours  { right: 0; }
    .sv-hero__card--badge  { left: 0; }
}

/* Triptych collapses on tablet/mobile — side panels hide so the video has room */
@media (max-width: 768px) {
    .sv-hero__triptych {
        grid-template-columns: 1fr;
    }
    .sv-hero__triptych-frame--side { display: none; }
    .sv-hero__notif {
        left: 14px;
        right: 14px;
        bottom: 14px;
        padding: 12px;
        gap: 10px;
    }
    .sv-hero__notif-action { width: 32px; height: 32px; }
    .sv-hero__notif-body strong { font-size: 13px; }
    .sv-hero__notif-body small  { font-size: 10px; }
    .sv-hero__mini { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .sv-hero__card,
    .sv-hero__card-dot,
    .sv-hero__scroll-arrow path,
    .sv-hero__scroll-drop,
    .sv-hero__live-dot,
    .sv-hero__seal-steam,
    .sv-hero__notif,
    .sv-hero__mini {
        animation: none;
    }
    .sv-hero__scroll-arrow path {
        stroke-dashoffset: 0;
        opacity: 1;
    }
    .sv-hero__media { rotate: 0deg; }
}
