:root {
    --cv-ink: #180f0a;
    --cv-cacao: #2a1710;
    --cv-cacao-2: #4b2619;
    --cv-caramel: #b56b22;
    --cv-gold: #f4bd45;
    --cv-cream: #fff0cd;
    --cv-milk: #f7dec0;
    --cv-berry: #d95f6f;
    --cv-cherry: #8f1825;
    --cv-pink: #ffb3c5;
    --cv-ice: #aee9f2;
    --cv-blue: #f4bd45;
    --cv-muted: rgba(255, 240, 205, 0.7);
    --cv-dark-muted: #7b6252;
    --cv-line: rgba(255, 240, 205, 0.18);
    --cv-shadow: 0 34px 90px rgba(10, 6, 4, 0.45);
    --cv-radius: 8px;
    --cv-shell: min(1180px, calc(100vw - 42px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.caviani-site {
    margin: 0;
    color: var(--cv-cream);
    background:
        radial-gradient(circle at 18% 8%, rgba(244, 189, 69, 0.18), transparent 28rem),
        radial-gradient(circle at 78% 12%, rgba(217, 95, 111, 0.12), transparent 26rem),
        linear-gradient(180deg, #130b08 0%, #24120c 45%, #120d0a 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}

body.caviani-site img,
body.caviani-site video {
    display: block;
    max-width: 100%;
}

.cv-shell {
    width: var(--cv-shell);
    margin-inline: auto;
}

.cv-skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 1000;
    transform: translateY(-140%);
    padding: 10px 14px;
    color: var(--cv-ink);
    background: var(--cv-gold);
    border-radius: var(--cv-radius);
}

.cv-skip-link:focus {
    transform: translateY(0);
}

.cv-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    color: var(--cv-cream);
    background: linear-gradient(90deg, rgba(31, 13, 8, 0.98), rgba(68, 31, 18, 0.96));
    box-shadow: 0 1px 0 rgba(255, 226, 179, 0.14);
    backdrop-filter: blur(16px);
    transition: background 220ms ease, box-shadow 220ms ease;
}

.cv-header.is-scrolled,
body:not(.home) .cv-header {
    background: linear-gradient(90deg, rgba(24, 10, 7, 0.98), rgba(54, 25, 15, 0.96));
    box-shadow: 0 1px 0 var(--cv-line);
    backdrop-filter: blur(18px);
}

.cv-header-inner {
    width: 100%;
    min-height: 102px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 32px;
    padding: 8px clamp(24px, 4vw, 64px);
}

body.home .cv-header {
    position: fixed;
    inset: 0 0 auto;
    background: linear-gradient(90deg, rgba(31, 13, 8, 0.98), rgba(68, 31, 18, 0.96));
    box-shadow: 0 1px 0 rgba(255, 226, 179, 0.14);
    backdrop-filter: blur(16px);
}

body.home .cv-header.is-scrolled {
    position: fixed;
    inset: 0 0 auto;
    background: linear-gradient(90deg, rgba(24, 10, 7, 0.98), rgba(54, 25, 15, 0.96));
    box-shadow: 0 1px 0 rgba(255, 226, 179, 0.14);
    backdrop-filter: blur(16px);
}

body.home .cv-header-inner {
    width: 100%;
    min-height: 102px;
    padding: 8px clamp(24px, 4vw, 64px);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.home .cv-header.is-scrolled .cv-header-inner {
    width: 100%;
    min-height: 68px;
    padding: 4px clamp(24px, 4vw, 64px);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.home .cv-brand {
    padding: 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body.home .cv-brand-logo {
    height: 82px;
    filter: none;
}

body.home .cv-header.is-scrolled .cv-brand-logo,
.cv-header.is-scrolled .cv-brand-logo,
body:not(.home) .cv-brand-logo {
    height: 58px;
}

.cv-brand,
.cv-footer-brand {
    color: inherit;
    text-decoration: none;
}

.cv-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-weight: 900;
}

.cv-brand-logo {
    width: auto;
    height: 82px;
    object-fit: contain;
}

.cv-footer-logo {
    width: auto;
    height: 56px;
    object-fit: contain;
    margin-bottom: 14px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.cv-brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(244, 189, 69, 0.8);
    border-radius: 50%;
    color: var(--cv-gold);
    font-family: Georgia, serif;
    font-size: 24px;
    box-shadow: inset 0 0 24px rgba(244, 189, 69, 0.18);
}

.cv-brand-name,
.cv-footer-brand {
    font-family: Georgia, serif;
    font-size: 24px;
}

.cv-nav {
    justify-self: end;
}

.cv-menu,
.cv-footer-menu {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.3vw, 34px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.cv-menu a,
.cv-footer-menu a {
    color: inherit;
    text-decoration: none;
}

.cv-menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    font-size: 11px;
    font-weight: 760;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.cv-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    background: var(--cv-gold);
    transition: transform 180ms ease;
}

.cv-menu a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.cv-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--cv-line);
    border-radius: 50%;
    color: inherit;
    background: rgba(255, 240, 205, 0.08);
}

.cv-nav-toggle span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
}

.cv-main {
    min-height: 70vh;
    overflow: hidden;
}

.cv-hero-poster {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    padding: 34px 0;
    background:
        radial-gradient(circle at 74% 22%, rgba(198, 111, 42, 0.24), transparent 26rem),
        radial-gradient(circle at 12% 78%, rgba(244, 189, 69, 0.16), transparent 22rem),
        linear-gradient(135deg, #1a0e0b 0%, #2b1712 44%, #140b09 100%);
}

.cv-hero-frame {
    position: relative;
    width: min(1420px, calc(100vw - 44px));
    overflow: visible;
    min-height: calc(100svh - 68px);
    background:
        linear-gradient(110deg, rgba(75, 38, 25, 0.96), rgba(181, 107, 34, 0.88)),
        #4b2619;
    box-shadow: none;
}

.cv-hero-scene {
    position: relative;
    min-height: calc(100svh - 68px);
    display: grid;
    grid-template-columns: minmax(300px, 0.74fr) minmax(470px, 1.26fr);
    gap: 34px;
    align-items: stretch;
    padding: 150px clamp(34px, 4.2vw, 76px) 54px;
}

.cv-kicker,
.cv-eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--cv-gold);
    font-size: 11px;
    font-weight: 820;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cv-hero-copy h1 {
    max-width: 540px;
    margin: 0;
    color: #fff8e7;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(40px, 4.4vw, 72px);
    font-weight: 760;
    line-height: 1.02;
    letter-spacing: 0;
    text-shadow: 0 14px 42px rgba(32, 12, 5, 0.34);
}

.cv-hero-copy p {
    max-width: 500px;
    margin: 18px 0 0;
    color: rgba(255, 244, 218, 0.76);
    font-size: clamp(15px, 1.14vw, 17px);
}

.cv-hero-proof {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: center;
    margin-top: 22px;
}

.cv-hero-proof span {
    width: 18px;
    height: 18px;
    border: 2px solid #fff8e7;
    border-radius: 6px;
    background: rgba(255, 248, 231, 0.12);
    box-shadow: inset 0 0 0 3px rgba(244, 189, 69, 0.16);
}

.cv-hero-proof p {
    margin: 0;
    color: rgba(255, 244, 218, 0.72);
    font-size: 13px;
    font-weight: 720;
}

.cv-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.cv-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border: 1px solid currentColor;
    border-radius: var(--cv-radius);
    color: inherit;
    font-size: 14px;
    font-weight: 820;
    text-decoration: none;
    cursor: pointer;
}

.cv-button-primary {
    color: var(--cv-ink);
    background: linear-gradient(135deg, var(--cv-gold), #f6d99b);
    border-color: transparent;
    box-shadow: 0 14px 42px rgba(244, 189, 69, 0.28);
}

.cv-button-ghost {
    color: var(--cv-cream);
    background: rgba(255, 240, 205, 0.08);
    border-color: var(--cv-line);
}

.cv-button-text {
    min-height: 42px;
    padding-inline: 8px;
    border-color: transparent;
    color: #fff4da;
    background: transparent;
}

.cv-hero-visual {
    position: relative;
    align-self: end;
    display: grid;
    gap: 14px;
}

.cv-hero-photo {
    margin: 0;
    overflow: hidden;
    background: rgba(24, 15, 10, 0.4);
    box-shadow: 0 34px 90px rgba(5, 3, 2, 0.34);
}

.cv-hero-photo img {
    width: 100%;
    min-height: 430px;
    max-height: 560px;
    object-fit: cover;
    filter: saturate(1.02) contrast(1.02) brightness(0.9);
}

.cv-hero-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.cv-hero-products article {
    overflow: hidden;
    background: rgba(48, 23, 13, 0.72);
    box-shadow: 0 16px 34px rgba(14, 5, 2, 0.24);
}

.cv-hero-products img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
}

.cv-hero-products span {
    display: block;
    padding: 8px 10px 10px;
    color: #fff4da;
    font-size: 12px;
    font-weight: 900;
}

.cv-intro-board {
    display: grid;
    grid-template-columns: 1fr 0.58fr;
    gap: 46px;
    padding: 88px 0;
}

.cv-board-title h2,
.cv-page-hero h1,
.cv-video-copy h2,
.cv-motion-copy h2,
.cv-seo-copy h2,
.cv-split h2,
.cv-contact h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.2vw, 62px);
    font-weight: 520;
    line-height: 0.96;
    letter-spacing: 0;
}

.cv-board-note {
    align-self: end;
    padding: 26px;
    border: 1px solid var(--cv-line);
    border-radius: var(--cv-radius);
    color: var(--cv-muted);
    background: linear-gradient(145deg, rgba(255, 240, 205, 0.09), rgba(244, 189, 69, 0.05));
}

.cv-product-worlds {
    position: relative;
    width: min(1360px, calc(100vw - 28px));
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin: 0 auto 104px;
}

.cv-fade-section {
    position: relative;
    isolation: isolate;
}

.cv-fade-section::before,
.cv-fade-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    z-index: 3;
    height: 120px;
    pointer-events: none;
}

.cv-fade-section::before {
    top: -1px;
    background: linear-gradient(180deg, rgba(18, 13, 10, 0.96), rgba(18, 13, 10, 0));
}

.cv-fade-section::after {
    bottom: -1px;
    background: linear-gradient(0deg, rgba(18, 13, 10, 0.96), rgba(18, 13, 10, 0));
}

.cv-fade-cacao::before {
    background: linear-gradient(180deg, rgba(36, 18, 12, 0.92), rgba(36, 18, 12, 0));
}

.cv-world {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: end;
    grid-column: span 6;
    overflow: hidden;
    border: 1px solid var(--cv-line);
    border-radius: var(--cv-radius);
    background: var(--cv-cacao);
    box-shadow: var(--cv-shadow);
    isolation: isolate;
}

.cv-world:nth-child(2),
.cv-world:nth-child(3) {
    min-height: 430px;
}

.cv-world:nth-child(3) {
    grid-column: span 5;
}

.cv-world:nth-child(4) {
    grid-column: span 7;
}

.cv-world img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms ease;
}

.cv-world:hover img {
    transform: scale(1.045);
}

.cv-world::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(18, 10, 7, 0.92), rgba(18, 10, 7, 0.14) 70%);
}

.cv-world div {
    max-width: 560px;
    padding: 34px;
}

.cv-world span {
    color: var(--cv-gold);
    font-weight: 950;
}

.cv-world h2 {
    margin: 10px 0 12px;
    font-family: Georgia, serif;
    font-size: clamp(34px, 4.4vw, 64px);
    line-height: 0.9;
}

.cv-world p {
    margin: 0;
    color: var(--cv-muted);
    font-size: 17px;
}

.cv-world-ice span,
.cv-world-ice h2 {
    color: var(--cv-ice);
}

.cv-world-party span,
.cv-world-party h2 {
    color: #ff9eab;
}

.cv-category-stage {
    min-height: 108svh;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff7c9;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 179, 197, 0.55), transparent 19rem),
        radial-gradient(circle at 78% 34%, rgba(255, 78, 104, 0.45), transparent 23rem),
        linear-gradient(180deg, #2b0c12 0%, #8f1825 38%, #ffc1cf 100%);
}

.cv-stage-media {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.cv-stage-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.25) contrast(1.04) brightness(0.68);
}

.cv-stage-kuchen::before {
    height: 180px;
    background: linear-gradient(180deg, rgba(18, 13, 10, 0.98), rgba(143, 24, 37, 0));
}

.cv-stage-kuchen::after {
    height: 200px;
    background: linear-gradient(0deg, rgba(18, 13, 10, 0.98), rgba(255, 193, 207, 0));
}

.cv-stage-kuchen .cv-stage-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(75, 7, 16, 0.82), rgba(143, 24, 37, 0.28) 48%, rgba(255, 179, 197, 0.18)),
        radial-gradient(circle at 67% 52%, rgba(255, 179, 197, 0.42), transparent 20rem);
}

.cv-stage-copy {
    position: relative;
    z-index: 4;
    padding: 150px 0 130px;
}

.cv-stage-copy h2 {
    max-width: 850px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5.4vw, 78px);
    font-weight: 520;
    line-height: 0.86;
}

.cv-stage-copy p {
    max-width: 650px;
    margin: 24px 0 30px;
    color: rgba(255, 247, 201, 0.82);
    font-size: 20px;
}

.cv-stage-kuchen .cv-kicker {
    color: #ffe6a2;
}

.cv-dessert-strip {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 80px;
    z-index: 2;
    display: flex;
    gap: 18px;
    opacity: 0.52;
    transform: rotate(-2deg);
    white-space: nowrap;
}

.cv-dessert-strip span {
    font-family: Georgia, serif;
    font-size: clamp(34px, 5.2vw, 74px);
    color: rgba(255, 240, 205, 0.5);
}

.cv-split-worlds {
    width: min(1360px, calc(100vw - 28px));
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 16px;
    margin: 0 auto 0;
    padding: 106px 0;
    background:
        linear-gradient(180deg, rgba(18, 13, 10, 0), rgba(101, 201, 223, 0.08) 46%, rgba(18, 13, 10, 0));
}

.cv-split-worlds::before {
    background: linear-gradient(180deg, rgba(255, 193, 207, 0.55), rgba(18, 13, 10, 0));
}

.cv-split-worlds::after {
    background: linear-gradient(0deg, rgba(18, 13, 10, 0.98), rgba(101, 201, 223, 0));
}

.cv-split-worlds .cv-world {
    grid-column: auto;
    min-height: 640px;
}

.cv-world-ice {
    background: #d8f7fb;
}

.cv-world-ice::after {
    background:
        linear-gradient(0deg, rgba(17, 68, 80, 0.82), rgba(17, 68, 80, 0.06) 66%),
        radial-gradient(circle at 70% 12%, rgba(174, 233, 242, 0.32), transparent 18rem);
}

.cv-world-ice span,
.cv-world-ice h2 {
    color: #c8fbff;
}

.cv-world-cold {
    background: #0e4350;
}

.cv-world-cold::after {
    background:
        linear-gradient(0deg, rgba(4, 30, 37, 0.88), rgba(4, 30, 37, 0.08) 68%),
        radial-gradient(circle at 25% 24%, rgba(255, 240, 205, 0.2), transparent 16rem);
}

.cv-world-cold span,
.cv-world-cold h2 {
    color: var(--cv-ice);
}

.cv-party-worlds {
    padding-top: 96px;
}

.cv-party-worlds .cv-world {
    grid-column: span 12;
    min-height: 600px;
}

.cv-party-worlds::before {
    background: linear-gradient(180deg, rgba(18, 13, 10, 0.98), rgba(18, 13, 10, 0));
}

.cv-video-scroll {
    position: relative;
    min-height: 285vh;
    background: #0d0907;
    color: var(--cv-cream);
}

.cv-section-scene {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
}

.cv-scene-grid,
.cv-cold-layout,
.cv-event-layout {
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    align-items: center;
    gap: 56px;
    padding: 126px 0;
}

.cv-scene-copy h2,
.cv-ice-hero-card h2,
.cv-cake-copy h2,
.cv-event-title h2 {
    margin: 0;
    color: var(--cv-cream);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 520;
    line-height: 0.88;
}

.cv-scene-copy p,
.cv-ice-hero-card p,
.cv-cake-copy p,
.cv-event-title p {
    max-width: 660px;
    color: var(--cv-muted);
    font-size: 19px;
}

.cv-warm-scene {
    background:
        linear-gradient(180deg, #1a0d08 0%, #4c2617 42%, #23120c 100%);
}

.cv-warm-scene::before,
.cv-warm-scene::after {
    display: none;
}

.cv-scene-art span {
    position: absolute;
    z-index: -1;
    display: block;
}

.cv-bean {
    width: 74px;
    height: 112px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6e341d, #1b0d08);
    box-shadow: inset 14px 0 0 rgba(255, 240, 205, 0.08), var(--cv-shadow);
    opacity: 0.48;
    transform: rotate(24deg);
}

.cv-bean::after {
    content: "";
    position: absolute;
    inset: 14px 32px;
    border-left: 2px solid rgba(255, 240, 205, 0.22);
    border-radius: 50%;
}

.cv-bean-a {
    left: 7%;
    top: 18%;
}

.cv-bean-b {
    right: 9%;
    bottom: 12%;
    transform: rotate(-34deg);
}

.cv-steam {
    width: 110px;
    height: 260px;
    border: 2px solid rgba(255, 240, 205, 0.14);
    border-color: transparent rgba(255, 240, 205, 0.18) transparent transparent;
    border-radius: 50%;
    filter: blur(0.2px);
}

.cv-steam-a {
    left: 47%;
    top: 16%;
}

.cv-steam-b {
    left: 52%;
    top: 9%;
    transform: rotate(18deg);
}

.cv-warm-poster {
    position: relative;
    z-index: 4;
    padding: 112px 0 118px;
}

.cv-poster-topline {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 24px;
    color: #2b130b;
    background: linear-gradient(180deg, #ffe9c2, #efc38a);
    border-radius: var(--cv-radius) var(--cv-radius) 0 0;
    box-shadow: 0 26px 70px rgba(10, 6, 4, 0.26);
}

.cv-poster-topline > span {
    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 700;
}

.cv-poster-topline div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: rgba(43, 19, 11, 0.76);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cv-warm-hero-panel {
    position: relative;
    min-height: 590px;
    display: grid;
    align-items: center;
    overflow: hidden;
    border-left: 1px solid rgba(255, 240, 205, 0.14);
    border-right: 1px solid rgba(255, 240, 205, 0.14);
    background: #2b130b;
    box-shadow: var(--cv-shadow);
}

.cv-warm-hero-panel > img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.1) brightness(0.72);
}

.cv-warm-hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(43, 19, 11, 0.9), rgba(43, 19, 11, 0.34) 48%, rgba(43, 19, 11, 0.12)),
        linear-gradient(0deg, rgba(43, 19, 11, 0.75), transparent 54%);
}

.cv-warm-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 70px 54px;
}

.cv-warm-hero-copy h2 {
    margin: 0;
    color: #ffe9c2;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5.2vw, 76px);
    font-weight: 520;
    line-height: 0.86;
}

.cv-warm-hero-copy p {
    max-width: 560px;
    color: rgba(255, 233, 194, 0.82);
    font-size: 19px;
}

.cv-warm-bottom {
    display: grid;
    grid-template-columns: 1fr 0.42fr;
    gap: 1px;
    overflow: hidden;
    border-radius: 0 0 var(--cv-radius) var(--cv-radius);
    background: rgba(255, 240, 205, 0.16);
    box-shadow: var(--cv-shadow);
}

.cv-warm-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 240, 205, 0.12);
}

.cv-warm-menu article {
    min-height: 132px;
    padding: 24px;
    background: rgba(42, 23, 16, 0.98);
}

.cv-warm-menu strong,
.cv-warm-menu span {
    display: block;
}

.cv-warm-menu strong {
    color: var(--cv-gold);
    font-family: Georgia, serif;
    font-size: 24px;
}

.cv-warm-menu span {
    color: var(--cv-muted);
}

.cv-warm-note {
    display: grid;
    align-content: center;
    padding: 28px;
    color: #2b130b;
    background: linear-gradient(135deg, #f6d99b, #b56b22);
}

.cv-warm-note span {
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cv-warm-story {
    position: relative;
    z-index: 4;
    padding: 106px 0 116px;
}

.cv-warm-atmosphere {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.cv-warm-dust {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 233, 194, 0.72);
    box-shadow: 0 0 22px rgba(244, 189, 69, 0.44);
    animation: cv-warm-drift 7s ease-in-out infinite;
}

.cv-warm-dust-one {
    left: 18%;
    top: 24%;
}

.cv-warm-dust-two {
    right: 22%;
    top: 18%;
    animation-delay: 1.8s;
}

.cv-warm-dust-three {
    left: 55%;
    bottom: 28%;
    animation-delay: 3s;
}

.cv-warm-showcase {
    position: relative;
    min-height: min(760px, 92svh);
    display: grid;
    grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1.22fr);
    align-items: center;
    gap: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 226, 179, 0.2);
    border-radius: 8px;
    background: #1c0f0a;
    box-shadow: var(--cv-shadow);
}

.cv-warm-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.1) brightness(0.54);
}

.cv-warm-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cv-warm-showcase::before {
    content: none;
}

.cv-warm-showcase::after {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(21, 11, 7, 0.92), rgba(35, 18, 11, 0.58) 47%, rgba(21, 11, 7, 0.25)),
        linear-gradient(0deg, rgba(18, 10, 7, 0.72), transparent 58%);
}

.cv-warm-copy {
    padding: 58px 0 58px 54px;
}

.cv-warm-copy h2 {
    max-width: 560px;
    margin: 0;
    color: #fff1c7;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4.8vw, 68px);
    font-weight: 560;
    line-height: 0.98;
}

.cv-warm-copy p {
    max-width: 500px;
    margin: 20px 0 30px;
    color: rgba(255, 240, 205, 0.78);
    font-size: 17px;
}

.cv-warm-cup-stage {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 44px 44px 34px 0;
}

.cv-warm-cup-stage::before {
    content: "";
    position: absolute;
    left: 3%;
    right: 0;
    bottom: 94px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(4, 2, 1, 0.62), transparent 68%);
    filter: blur(10px);
}

.cv-warm-cup {
    position: relative;
    z-index: 4;
    width: min(680px, 92%);
    filter: drop-shadow(0 32px 48px rgba(4, 2, 1, 0.58)) saturate(1.08);
}

.cv-warm-leaves {
    position: absolute;
    left: 2%;
    bottom: 52px;
    z-index: 5;
    width: min(340px, 42%);
    opacity: 0.78;
    transform: rotate(-8deg);
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.38));
}

.cv-warm-steam-line {
    position: absolute;
    z-index: 6;
    width: 96px;
    height: 280px;
    border: 3px solid rgba(255, 248, 232, 0.36);
    border-color: transparent rgba(255, 248, 232, 0.5) transparent transparent;
    border-radius: 50%;
    opacity: 0.95;
    filter: blur(0.15px) drop-shadow(0 0 10px rgba(255, 244, 218, 0.28));
    animation: cv-steam-rise 5.8s ease-in-out infinite;
}

.cv-warm-steam-a {
    top: 54px;
    left: 38%;
}

.cv-warm-steam-b {
    top: 24px;
    left: 50%;
    height: 300px;
    animation-delay: 1.4s;
}

.cv-warm-steam-c {
    top: 78px;
    right: 24%;
    transform: rotate(16deg);
    animation-delay: 2.4s;
}

.cv-warm-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: -82px;
    padding: 0 44px;
}

.cv-warm-product {
    position: relative;
    z-index: 6;
    overflow: hidden;
    min-height: 360px;
    display: grid;
    align-content: end;
    border: 1px solid rgba(255, 226, 179, 0.16);
    border-radius: 8px;
    background: #25130c;
    box-shadow: 0 28px 60px rgba(5, 3, 2, 0.36);
}

.cv-warm-product img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.06) brightness(0.72);
    transition: transform 700ms ease;
}

.cv-warm-product:hover img {
    transform: scale(1.045);
}

.cv-warm-product::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(18, 10, 7, 0.94), rgba(18, 10, 7, 0.12) 72%);
}

.cv-warm-product div {
    padding: 24px;
}

.cv-warm-product span {
    color: var(--cv-gold);
    font-size: 12px;
    font-weight: 860;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cv-warm-product h3 {
    margin: 8px 0 8px;
    color: #fff1c7;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 560;
}

.cv-warm-product p {
    margin: 0;
    color: rgba(255, 240, 205, 0.74);
}

.cv-warm-note p {
    margin: 10px 0 0;
    color: rgba(43, 19, 11, 0.78);
}

.cv-ice-scene {
    color: #173947;
    background:
        radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.8), transparent 18rem),
        linear-gradient(180deg, #dff8ff 0%, #8ed8ea 48%, #f7fbff 100%);
}

.cv-ice-scene::before {
    background: linear-gradient(180deg, rgba(31, 74, 84, 0.62), rgba(223, 248, 255, 0));
}

.cv-ice-scene::after {
    background: linear-gradient(0deg, rgba(255, 193, 207, 0.75), rgba(247, 251, 255, 0));
}

.cv-ice-layout {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 34px;
    padding: 124px 0;
}

.cv-ice-hero-card {
    position: relative;
    min-height: 620px;
    display: grid;
    align-items: end;
    overflow: hidden;
    border-radius: var(--cv-radius);
    box-shadow: var(--cv-shadow);
}

.cv-ice-hero-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cv-ice-hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(223, 248, 255, 0.94), rgba(223, 248, 255, 0.08) 70%);
}

.cv-ice-hero-card div {
    position: relative;
    z-index: 2;
    padding: 34px;
}

.cv-ice-hero-card .cv-kicker,
.cv-ice-items span {
    color: #006780;
}

.cv-ice-hero-card h2,
.cv-ice-items h3 {
    color: #173947;
}

.cv-ice-hero-card p,
.cv-ice-items p {
    color: rgba(23, 57, 71, 0.78);
}

.cv-ice-splashes span {
    position: absolute;
    z-index: 1;
    width: 90px;
    height: 90px;
    border-radius: 44% 56% 68% 32%;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 14px 45px rgba(0, 103, 128, 0.12);
}

.cv-ice-splashes span:nth-child(1) { left: 8%; top: 18%; }
.cv-ice-splashes span:nth-child(2) { right: 14%; top: 14%; width: 54px; height: 54px; }
.cv-ice-splashes span:nth-child(3) { left: 28%; bottom: 12%; width: 62px; height: 62px; }
.cv-ice-splashes span:nth-child(4) { right: 7%; bottom: 24%; width: 120px; height: 120px; }

.cv-ice-scene {
    color: #fff6d7;
    background:
        radial-gradient(circle at 50% 14%, rgba(255, 179, 220, 0.64), transparent 24rem),
        radial-gradient(circle at 84% 24%, rgba(255, 226, 128, 0.2), transparent 19rem),
        linear-gradient(180deg, #2b0f55 0%, #7d2a8d 42%, #e57dba 72%, #36105c 100%);
}

.cv-ice-scene::before {
    height: 170px;
    background: linear-gradient(180deg, rgba(35, 18, 11, 0.92), rgba(125, 42, 141, 0));
}

.cv-ice-scene::after {
    height: 170px;
    background: linear-gradient(0deg, rgba(18, 13, 10, 0.96), rgba(54, 16, 92, 0));
}

.cv-ice-story {
    position: relative;
    z-index: 4;
    padding: 110px 0 118px;
}

.cv-ice-floaters {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.cv-ice-cloud {
    position: absolute;
    width: 260px;
    height: 86px;
    border-radius: 999px;
    background: rgba(255, 214, 235, 0.26);
    filter: blur(1px);
}

.cv-ice-cloud::before,
.cv-ice-cloud::after {
    content: "";
    position: absolute;
    bottom: 24px;
    border-radius: 50%;
    background: inherit;
}

.cv-ice-cloud::before {
    left: 42px;
    width: 108px;
    height: 108px;
}

.cv-ice-cloud::after {
    right: 44px;
    width: 136px;
    height: 136px;
}

.cv-ice-cloud-one {
    left: 18%;
    top: 20%;
}

.cv-ice-cloud-two {
    right: 14%;
    bottom: 34%;
    transform: scale(0.72);
}

.cv-ice-bubble {
    position: absolute;
    border: 1px solid rgba(255, 246, 215, 0.64);
    border-radius: 50%;
    background: radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.82), rgba(255, 179, 220, 0.18) 42%, rgba(255, 255, 255, 0.02));
    box-shadow: 0 14px 34px rgba(43, 15, 85, 0.2);
    animation: cv-ice-float 8s ease-in-out infinite;
}

.cv-ice-bubble-one {
    left: 9%;
    top: 28%;
    width: 52px;
    height: 52px;
}

.cv-ice-bubble-two {
    right: 10%;
    top: 44%;
    width: 76px;
    height: 76px;
    animation-delay: 1.7s;
}

.cv-ice-bubble-three {
    left: 48%;
    bottom: 14%;
    width: 38px;
    height: 38px;
    animation-delay: 3s;
}

.cv-ice-showcase {
    position: relative;
    min-height: min(760px, 92svh);
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(480px, 1.05fr) minmax(260px, 0.5fr);
    align-items: center;
    gap: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 246, 215, 0.2);
    border-radius: 8px 8px 0 0;
    background:
        radial-gradient(circle at 56% 44%, rgba(255, 246, 215, 0.22), transparent 20rem),
        linear-gradient(135deg, rgba(229, 125, 186, 0.78), rgba(88, 24, 124, 0.9));
    box-shadow: var(--cv-shadow);
}

.cv-ice-showcase::before {
    content: "";
    position: absolute;
    left: -8%;
    right: -8%;
    bottom: -92px;
    height: 260px;
    border-radius: 50% 50% 0 0;
    background: rgba(255, 214, 235, 0.24);
}

.cv-ice-copy {
    position: relative;
    z-index: 4;
    padding: 68px 0 68px 54px;
}

.cv-ice-copy .cv-kicker {
    color: #fff6d7;
}

.cv-ice-copy h2 {
    max-width: 620px;
    margin: 0;
    color: #fff8ef;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(42px, 5.4vw, 78px);
    font-weight: 760;
    line-height: 0.96;
}

.cv-ice-copy p {
    max-width: 510px;
    margin: 20px 0 0;
    color: rgba(255, 248, 239, 0.82);
    font-size: 17px;
}

.cv-ice-hero-products {
    position: relative;
    z-index: 3;
    min-height: 660px;
}

.cv-ice-hero-products figure {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 246, 215, 0.28);
    border-radius: 999px 999px 24px 24px;
    background: rgba(255, 246, 215, 0.18);
    box-shadow: 0 30px 70px rgba(43, 15, 85, 0.34);
}

.cv-ice-hero-products img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cv-ice-main-cup {
    left: 18%;
    bottom: 56px;
    width: 52%;
    height: 500px;
}

.cv-ice-side-cup {
    width: 32%;
    height: 390px;
    opacity: 0.96;
}

.cv-ice-side-left {
    left: 0;
    bottom: 38px;
    transform: rotate(-4deg);
}

.cv-ice-side-right {
    right: 0;
    bottom: 34px;
    transform: rotate(4deg);
}

.cv-ice-note {
    position: relative;
    z-index: 4;
    max-width: 280px;
    margin-right: 38px;
    padding: 22px;
    border-left: 2px solid rgba(255, 246, 215, 0.62);
}

.cv-ice-note h3 {
    margin: 0 0 12px;
    color: #fff8ef;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 560;
}

.cv-ice-note p {
    margin: 0;
    color: rgba(255, 248, 239, 0.76);
}

.cv-ice-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
    background: rgba(255, 246, 215, 0.18);
    box-shadow: var(--cv-shadow);
}

.cv-ice-product-grid article {
    min-height: 330px;
    display: grid;
    grid-template-rows: 1fr auto;
    background: rgba(54, 16, 92, 0.9);
}

.cv-ice-product-grid img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.cv-ice-product-grid div {
    padding: 22px;
}

.cv-ice-product-grid span {
    color: #ffe88e;
    font-size: 12px;
    font-weight: 860;
    letter-spacing: 0.1em;
}

.cv-ice-product-grid h3 {
    margin: 8px 0 6px;
    color: #fff8ef;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 560;
}

.cv-ice-product-grid p {
    margin: 0;
    color: rgba(255, 248, 239, 0.72);
}

.cv-mini-grid {
    display: grid;
    gap: 14px;
}

.cv-mini-grid article {
    padding: 22px;
    border: 1px solid rgba(23, 57, 71, 0.14);
    border-radius: var(--cv-radius);
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 18px 50px rgba(23, 57, 71, 0.1);
}

.cv-mini-grid h3 {
    margin: 8px 0;
    font-family: Georgia, serif;
    font-size: 32px;
}

.cv-cake-scene {
    color: #fff7c9;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 179, 197, 0.6), transparent 18rem),
        radial-gradient(circle at 80% 36%, rgba(255, 84, 112, 0.5), transparent 24rem),
        linear-gradient(180deg, #8f1825 0%, #ffb3c5 54%, #7e1420 100%);
}

.cv-cake-scene::before {
    background: linear-gradient(180deg, rgba(223, 248, 255, 0.55), rgba(143, 24, 37, 0));
}

.cv-cake-scene::after {
    background: linear-gradient(0deg, rgba(10, 68, 82, 0.72), rgba(126, 20, 32, 0));
}

.cv-cake-layout {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 48px;
    padding: 120px 0;
}

.cv-cake-copy p {
    color: rgba(255, 247, 201, 0.84);
}

.cv-cake-copy h2 {
    color: #fff7c9;
}

.cv-cake-showcase {
    position: relative;
}

.cv-cake-showcase figure {
    margin: 0;
    overflow: hidden;
    border: 12px solid rgba(255, 240, 205, 0.18);
    border-radius: 50% 50% 8px 8px;
    box-shadow: var(--cv-shadow);
}

.cv-cake-showcase figure img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: saturate(1.2) brightness(0.9);
}

.cv-cake-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: -46px;
    padding-inline: 28px;
}

.cv-cake-cards article {
    overflow: hidden;
    border-radius: var(--cv-radius);
    background: rgba(255, 179, 197, 0.8);
    box-shadow: 0 18px 48px rgba(70, 0, 14, 0.24);
}

.cv-cake-cards img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.cv-cake-cards strong {
    display: block;
    padding: 12px;
    color: #5a0812;
}

.cv-dessert-confetti span {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff0cd;
    box-shadow: 0 0 0 8px rgba(255, 240, 205, 0.12);
}

.cv-dessert-confetti span:nth-child(1) { left: 12%; top: 18%; }
.cv-dessert-confetti span:nth-child(2) { left: 28%; bottom: 18%; background: #ff5370; }
.cv-dessert-confetti span:nth-child(3) { right: 12%; top: 28%; }
.cv-dessert-confetti span:nth-child(4) { right: 30%; bottom: 12%; background: #f4bd45; }
.cv-dessert-confetti span:nth-child(5) { left: 50%; top: 12%; background: #f4bd45; }

.cv-cake-scene {
    color: #4a190f;
    background:
        radial-gradient(circle at 16% 22%, rgba(196, 35, 43, 0.24), transparent 16rem),
        radial-gradient(circle at 82% 18%, rgba(255, 182, 72, 0.34), transparent 20rem),
        linear-gradient(180deg, #36105c 0%, #f6dfbd 24%, #fff0cf 58%, #d99a42 100%);
}

.cv-cake-scene::before {
    height: 170px;
    background: linear-gradient(180deg, rgba(54, 16, 92, 0.92), rgba(246, 223, 189, 0));
}

.cv-cake-scene::after {
    height: 170px;
    background: linear-gradient(0deg, rgba(18, 13, 10, 0.9), rgba(217, 154, 66, 0));
}

.cv-cake-story {
    position: relative;
    z-index: 4;
    padding: 110px 0 118px;
}

.cv-cake-floaters {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.cv-cake-berry,
.cv-cake-cream {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 18px 42px rgba(107, 25, 16, 0.18);
    animation: cv-cake-float 8s ease-in-out infinite;
}

.cv-cake-berry {
    width: 54px;
    height: 54px;
    background:
        radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.5), transparent 20%),
        linear-gradient(135deg, #d71f34, #8f1421);
}

.cv-cake-berry-one {
    left: 9%;
    top: 31%;
}

.cv-cake-berry-two {
    right: 13%;
    bottom: 20%;
    width: 42px;
    height: 42px;
    animation-delay: 2.2s;
}

.cv-cake-cream {
    width: 96px;
    height: 58px;
    border-radius: 60% 60% 44% 44%;
    background: linear-gradient(135deg, #fff8e9, #f3c886);
}

.cv-cake-cream-one {
    left: 42%;
    top: 14%;
}

.cv-cake-cream-two {
    right: 24%;
    top: 36%;
    transform: rotate(18deg);
    animation-delay: 1.4s;
}

.cv-cake-showcase-new {
    position: relative;
    min-height: min(760px, 92svh);
    display: grid;
    grid-template-columns: minmax(330px, 0.74fr) minmax(520px, 1.26fr);
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(109, 49, 14, 0.16);
    border-radius: 8px 8px 0 0;
    background: #fff0cf;
    box-shadow: var(--cv-shadow);
}

.cv-cake-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.02) brightness(1.04);
}

.cv-cake-showcase-new::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(68, 24, 11, 0.74), rgba(255, 240, 207, 0.24) 48%, rgba(255, 240, 207, 0.1)),
        radial-gradient(circle at 78% 42%, rgba(255, 183, 68, 0.34), transparent 22rem);
}

.cv-cake-showcase-new::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -110px;
    z-index: -1;
    height: 260px;
    border-radius: 50% 50% 0 0;
    background: rgba(255, 247, 230, 0.64);
}

.cv-cake-copy-new {
    position: relative;
    z-index: 4;
    padding: 68px 0 68px 54px;
}

.cv-cake-copy-new .cv-kicker {
    color: #ffd77d;
}

.cv-cake-copy-new h2 {
    max-width: 600px;
    margin: 0;
    color: #fff8e9;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5.2vw, 76px);
    font-weight: 620;
    line-height: 0.96;
    text-shadow: 0 16px 40px rgba(68, 24, 11, 0.34);
}

.cv-cake-copy-new p {
    max-width: 500px;
    margin: 20px 0 0;
    color: rgba(255, 248, 233, 0.84);
    font-size: 17px;
}

.cv-cake-dessert-stage {
    position: relative;
    z-index: 4;
    min-height: 650px;
}

.cv-cake-dessert-stage figure {
    position: absolute;
    margin: 0;
    display: grid;
    place-items: center;
    border-radius: 999px 999px 20px 20px;
    background: rgba(255, 248, 233, 0.54);
    box-shadow: 0 30px 70px rgba(107, 25, 16, 0.2);
}

.cv-cake-dessert-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 34px rgba(107, 25, 16, 0.2));
}

.cv-cake-main-dessert {
    left: 26%;
    bottom: 64px;
    width: 48%;
    height: 440px;
    padding: 34px;
}

.cv-cake-side-dessert {
    width: 31%;
    height: 330px;
    padding: 26px;
}

.cv-cake-side-one {
    left: 4%;
    bottom: 46px;
    transform: rotate(-5deg);
}

.cv-cake-side-two {
    right: 4%;
    bottom: 42px;
    transform: rotate(5deg);
}

.cv-cake-product-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(109, 49, 14, 0.14);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: rgba(109, 49, 14, 0.14);
    box-shadow: var(--cv-shadow);
}

.cv-cake-product-strip article {
    min-height: 300px;
    display: grid;
    grid-template-rows: 168px auto;
    background: rgba(255, 247, 230, 0.9);
}

.cv-cake-product-strip img {
    width: 100%;
    height: 168px;
    object-fit: contain;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 218, 152, 0.14));
}

.cv-cake-product-strip div {
    padding: 18px 20px 22px;
}

.cv-cake-product-strip span {
    color: #ad4a19;
    font-size: 12px;
    font-weight: 860;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cv-cake-product-strip h3 {
    margin: 8px 0 6px;
    color: #5d1f11;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 620;
}

.cv-cake-product-strip p {
    margin: 0;
    color: rgba(93, 31, 17, 0.66);
}

.cv-cold-scene {
    background:
        radial-gradient(circle at 25% 22%, rgba(174, 233, 242, 0.24), transparent 20rem),
        linear-gradient(180deg, #0a4452 0%, #102d37 50%, #110d0b 100%);
}

.cv-cold-scene::before {
    background: linear-gradient(180deg, rgba(126, 20, 32, 0.86), rgba(10, 68, 82, 0));
}

.cv-cold-scene::after {
    background: linear-gradient(0deg, rgba(40, 16, 34, 0.9), rgba(16, 45, 55, 0));
}

.cv-cold-stack {
    position: relative;
    min-height: 580px;
}

.cv-cold-stack img {
    width: 82%;
    height: 560px;
    object-fit: cover;
    border-radius: 999px 999px 8px 8px;
    box-shadow: var(--cv-shadow);
}

.cv-cold-bubble {
    position: absolute;
    right: 8%;
    top: 12%;
    display: grid;
    place-items: center;
    width: 136px;
    height: 136px;
    border: 1px solid rgba(174, 233, 242, 0.5);
    border-radius: 50%;
    color: #c8fbff;
    background: rgba(174, 233, 242, 0.1);
    backdrop-filter: blur(10px);
    font-family: Georgia, serif;
    font-size: 34px;
}

.cv-cold-bubble-alt {
    right: 0;
    top: auto;
    bottom: 16%;
    width: 96px;
    height: 96px;
    color: #fff0cd;
}

.cv-cold-scene .cv-mini-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
}

.cv-cold-scene .cv-mini-grid article {
    color: var(--cv-cream);
    border-color: rgba(174, 233, 242, 0.2);
    background: rgba(174, 233, 242, 0.08);
}

.cv-cold-scene .cv-mini-grid p {
    color: var(--cv-muted);
}

.cv-cold-scene {
    color: #0b3150;
    background:
        radial-gradient(circle at 15% 22%, rgba(255, 255, 255, 0.96), transparent 17rem),
        radial-gradient(circle at 84% 18%, rgba(88, 171, 230, 0.28), transparent 21rem),
        linear-gradient(180deg, #f4fbff 0%, #d8f0ff 42%, #0d4a75 100%);
}

.cv-cold-scene::before {
    height: 170px;
    background: linear-gradient(180deg, rgba(217, 154, 66, 0.82), rgba(244, 251, 255, 0));
}

.cv-cold-scene::after {
    height: 170px;
    background: linear-gradient(0deg, rgba(18, 13, 10, 0.92), rgba(13, 74, 117, 0));
}

.cv-cold-story {
    position: relative;
    z-index: 4;
    padding: 110px 0 118px;
}

.cv-cold-floaters {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.cv-cold-ice {
    position: absolute;
    width: 76px;
    height: 76px;
    border: 1px solid rgba(17, 96, 145, 0.18);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(116, 190, 236, 0.2));
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.72), 0 16px 38px rgba(17, 96, 145, 0.16);
    transform: rotate(18deg);
    animation: cv-cold-float 8s ease-in-out infinite;
}

.cv-cold-ice-one {
    left: 8%;
    top: 22%;
}

.cv-cold-ice-two {
    right: 10%;
    top: 35%;
    width: 58px;
    height: 58px;
    animation-delay: 1.5s;
}

.cv-cold-ice-three {
    left: 46%;
    bottom: 18%;
    width: 48px;
    height: 48px;
    animation-delay: 2.8s;
}

.cv-cold-berry {
    position: absolute;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.78), transparent 22%),
        linear-gradient(135deg, #e32134, #8d1d6f);
    box-shadow: 0 18px 40px rgba(13, 74, 117, 0.2);
    animation: cv-cold-float 7.4s ease-in-out infinite;
}

.cv-cold-berry-one {
    left: 14%;
    bottom: 28%;
}

.cv-cold-berry-two {
    right: 16%;
    top: 20%;
    width: 42px;
    height: 42px;
    animation-delay: 2.2s;
}

.cv-cold-showcase-new {
    position: relative;
    min-height: min(760px, 92svh);
    display: grid;
    grid-template-columns: minmax(320px, 0.74fr) minmax(520px, 1.26fr);
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(17, 96, 145, 0.14);
    border-radius: 8px 8px 0 0;
    background:
        radial-gradient(circle at 72% 36%, rgba(255, 255, 255, 0.86), transparent 23rem),
        linear-gradient(135deg, rgba(232, 248, 255, 0.96), rgba(100, 174, 224, 0.82));
    box-shadow: var(--cv-shadow);
}

.cv-cold-showcase-new::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 12%, rgba(15, 75, 128, 0.16), transparent 16rem),
        linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.08) 56%);
}

.cv-cold-showcase-new::after {
    content: "";
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -106px;
    height: 260px;
    border-radius: 50% 50% 0 0;
    background: rgba(255, 255, 255, 0.58);
}

.cv-cold-copy-new {
    position: relative;
    z-index: 4;
    padding: 68px 0 68px 54px;
}

.cv-cold-copy-new .cv-kicker {
    color: #0f679b;
}

.cv-cold-copy-new h2 {
    max-width: 590px;
    margin: 0;
    color: #0c3151;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(42px, 5.2vw, 76px);
    font-weight: 760;
    line-height: 0.96;
}

.cv-cold-copy-new p {
    max-width: 500px;
    margin: 20px 0 0;
    color: rgba(12, 49, 81, 0.72);
    font-size: 17px;
}

.cv-cold-drink-stage {
    position: relative;
    z-index: 4;
    min-height: 650px;
}

.cv-cold-drink-stage figure {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px 999px 24px 24px;
    background: rgba(255, 255, 255, 0.52);
    box-shadow: 0 30px 70px rgba(15, 75, 128, 0.22);
}

.cv-cold-drink-stage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cv-cold-main-drink {
    left: 28%;
    bottom: 58px;
    width: 44%;
    height: 500px;
}

.cv-cold-side-drink {
    width: 30%;
    height: 390px;
}

.cv-cold-side-one {
    left: 6%;
    bottom: 42px;
    transform: rotate(-5deg);
}

.cv-cold-side-two {
    right: 6%;
    bottom: 38px;
    transform: rotate(5deg);
}

.cv-cold-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
    background: rgba(17, 96, 145, 0.16);
    box-shadow: var(--cv-shadow);
}

.cv-cold-product-grid article {
    min-height: 330px;
    display: grid;
    grid-template-rows: 220px auto;
    background: rgba(248, 253, 255, 0.94);
}

.cv-cold-product-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.cv-cold-product-grid div {
    padding: 22px;
}

.cv-cold-product-grid span {
    color: #0f679b;
    font-size: 12px;
    font-weight: 860;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cv-cold-product-grid h3 {
    margin: 8px 0 6px;
    color: #0c3151;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 620;
}

.cv-cold-product-grid p {
    margin: 0;
    color: rgba(12, 49, 81, 0.66);
}

.cv-reviews-scene {
    min-height: auto;
    color: #fff4da;
    background:
        radial-gradient(circle at 18% 26%, rgba(244, 189, 69, 0.14), transparent 24rem),
        radial-gradient(circle at 78% 16%, rgba(101, 201, 223, 0.1), transparent 22rem),
        linear-gradient(180deg, #0d1620 0%, #18100c 58%, #0b0807 100%);
}

.cv-reviews-scene::before {
    background: linear-gradient(180deg, rgba(235, 247, 255, 0.76), rgba(13, 22, 32, 0));
}

.cv-reviews-scene::after {
    background: linear-gradient(0deg, rgba(11, 8, 7, 1), rgba(11, 8, 7, 0));
}

.cv-reviews-bg span {
    position: absolute;
    display: block;
    pointer-events: none;
}

.cv-review-orbit {
    border: 1px solid rgba(244, 189, 69, 0.24);
    border-radius: 50%;
}

.cv-review-orbit-one {
    width: 380px;
    height: 380px;
    right: -120px;
    top: 110px;
}

.cv-review-orbit-two {
    width: 220px;
    height: 220px;
    left: -60px;
    bottom: 120px;
}

.cv-review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cv-gold);
    box-shadow: 0 0 28px rgba(244, 189, 69, 0.55);
    animation: cv-ice-float 5.5s ease-in-out infinite;
}

.cv-review-dot-one {
    left: 13%;
    top: 28%;
}

.cv-review-dot-two {
    right: 18%;
    top: 42%;
    animation-delay: 1.1s;
}

.cv-review-dot-three {
    left: 54%;
    bottom: 18%;
    animation-delay: 2.2s;
}

.cv-reviews-story {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
    gap: 42px;
    align-items: center;
    padding: 116px 0 128px;
}

.cv-reviews-copy {
    max-width: 540px;
}

.cv-reviews-copy h2 {
    margin: 0;
    color: #fff8e7;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 540;
    line-height: 0.98;
}

.cv-reviews-copy p {
    margin: 20px 0 28px;
    color: rgba(255, 244, 218, 0.74);
    font-size: 17px;
}

.cv-reviews-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 240, 205, 0.14);
    border-radius: var(--cv-radius);
    background: rgba(255, 240, 205, 0.12);
    box-shadow: var(--cv-shadow);
}

.cv-reviews-panel article {
    min-height: 230px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 14px;
    align-content: end;
    padding: 24px 24px 22px;
    background:
        linear-gradient(160deg, rgba(255, 240, 205, 0.1), rgba(255, 240, 205, 0.035)),
        rgba(20, 14, 11, 0.78);
}

.cv-review-stars {
    color: var(--cv-gold);
    font-size: 11px;
    font-weight: 860;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.cv-reviews-panel blockquote {
    margin: 0;
    color: rgba(255, 244, 218, 0.78);
    font-size: 15px;
    line-height: 1.58;
}

.cv-reviews-panel cite {
    color: #fff4da;
    font-size: 13px;
    font-style: normal;
    font-weight: 850;
}

.cv-reviews-panel blockquote {
    border-left: 4px solid var(--cv-gold);
    padding-left: 18px;
}

.cv-contact-scene {
    min-height: auto;
    color: #fff4da;
    background:
        radial-gradient(circle at 82% 20%, rgba(244, 189, 69, 0.16), transparent 24rem),
        linear-gradient(180deg, #18100c 0%, #0b0807 100%);
}

.cv-contact-scene::before {
    background: linear-gradient(180deg, rgba(24, 16, 12, 0.98), rgba(24, 16, 12, 0));
}

.cv-contact-scene::after {
    background: linear-gradient(0deg, rgba(11, 8, 7, 1), rgba(11, 8, 7, 0));
}

.cv-contact-story {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1.28fr);
    gap: 34px;
    align-items: center;
    padding: 112px 0 122px;
}

.cv-contact-copy h2 {
    max-width: 520px;
    margin: 0;
    color: #fff8e7;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 540;
    line-height: 0.98;
}

.cv-contact-copy p {
    max-width: 500px;
    margin: 20px 0 28px;
    color: rgba(255, 244, 218, 0.74);
    font-size: 17px;
}

.cv-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cv-map-card {
    overflow: hidden;
    min-height: 420px;
    border: 1px solid rgba(255, 240, 205, 0.16);
    border-radius: var(--cv-radius);
    background: rgba(20, 14, 11, 0.78);
    box-shadow: var(--cv-shadow);
}

.cv-map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    filter: saturate(0.9) contrast(1.02);
}

.cv-event-scene {
    background:
        radial-gradient(circle at 15% 22%, rgba(255, 179, 197, 0.2), transparent 18rem),
        radial-gradient(circle at 82% 25%, rgba(244, 189, 69, 0.2), transparent 22rem),
        linear-gradient(180deg, #281022 0%, #4b2619 48%, #120d0a 100%);
}

.cv-event-scene::before {
    background: linear-gradient(180deg, rgba(17, 13, 11, 0.96), rgba(40, 16, 34, 0));
}

.cv-event-layout {
    grid-template-columns: 0.84fr 1.16fr;
}

.cv-event-panels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.cv-event-panel {
    min-height: 560px;
    display: grid;
    align-content: end;
    overflow: hidden;
    position: relative;
    padding: 26px;
    border: 1px solid var(--cv-line);
    border-radius: var(--cv-radius);
    box-shadow: var(--cv-shadow);
}

.cv-event-panel img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cv-event-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(18, 10, 7, 0.9), rgba(18, 10, 7, 0.16) 70%);
}

.cv-event-panel h3 {
    margin: 0 0 10px;
    color: var(--cv-cream);
    font-family: Georgia, serif;
    font-size: 42px;
    line-height: 0.95;
}

.cv-event-panel p {
    color: var(--cv-muted);
}

.cv-event-panel a {
    color: var(--cv-gold);
    font-weight: 900;
}

.cv-video-sticky {
    position: sticky;
    top: 0;
    min-height: 100svh;
    display: grid;
    align-items: end;
    isolation: isolate;
    overflow: hidden;
}

.cv-scroll-video,
.cv-video-sticky video {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cv-scroll-video:not([src]) {
    background: radial-gradient(circle at 60% 42%, rgba(244, 189, 69, 0.2), transparent 20rem), #110b08;
}

.cv-video-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(13, 9, 7, 0.92), rgba(13, 9, 7, 0.22) 55%, rgba(13, 9, 7, 0.68)),
        linear-gradient(0deg, rgba(13, 9, 7, 0.9), transparent 54%);
}

.cv-video-copy {
    width: var(--cv-shell);
    margin: 0 auto;
    padding: 0 0 82px;
}

.cv-video-copy p {
    max-width: 620px;
    margin: 20px 0 0;
    color: var(--cv-muted);
    font-size: 19px;
}

.cv-scroll-cards {
    position: absolute;
    top: 94svh;
    right: max(20px, calc((100vw - 1180px) / 2));
    width: min(440px, calc(100vw - 40px));
    display: grid;
    gap: 16px;
    padding-bottom: 90vh;
}

.cv-scroll-cards article {
    min-height: 176px;
    padding: 24px;
    border: 1px solid rgba(255, 240, 205, 0.2);
    border-radius: var(--cv-radius);
    background: rgba(42, 23, 16, 0.68);
    box-shadow: var(--cv-shadow);
    backdrop-filter: blur(18px);
}

.cv-scroll-cards span {
    color: var(--cv-gold);
    font-weight: 950;
}

.cv-scroll-cards h3 {
    margin: 10px 0 8px;
    font-family: Georgia, serif;
    font-size: 30px;
}

.cv-scroll-cards p {
    margin: 0;
    color: var(--cv-muted);
}

.cv-motion-plan {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 34px;
    padding: 96px 0 74px;
}

.cv-motion-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.cv-motion-steps article,
.cv-menu-card,
.cv-contact-panel,
.cv-form,
.cv-values article {
    border: 1px solid var(--cv-line);
    border-radius: var(--cv-radius);
    background: linear-gradient(145deg, rgba(255, 240, 205, 0.1), rgba(255, 240, 205, 0.035));
}

.cv-motion-steps article {
    min-height: 150px;
    padding: 22px;
}

.cv-motion-steps span {
    color: var(--cv-gold);
    font-weight: 950;
}

.cv-motion-steps p,
.cv-seo-copy p,
.cv-split p {
    color: var(--cv-muted);
    font-size: 18px;
}

.cv-seo-copy {
    padding: 20px 0 104px;
}

.cv-seo-copy h2 {
    max-width: 900px;
    font-size: clamp(32px, 3.8vw, 58px);
}

.cv-seo-copy p {
    max-width: 760px;
}

.cv-page-hero {
    padding: 150px 0 64px;
}

.cv-page-hero p {
    max-width: 700px;
    margin: 22px 0 0;
    color: var(--cv-muted);
    font-size: 20px;
}

.cv-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding-bottom: 44px;
}

.cv-menu-card {
    padding: 28px;
}

.cv-menu-card h2 {
    margin: 0 0 18px;
    font-family: Georgia, serif;
    font-size: 38px;
}

.cv-menu-card ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.cv-menu-card li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--cv-line);
}

.cv-menu-card strong {
    color: var(--cv-gold);
    font-size: 12px;
    text-transform: uppercase;
}

.cv-menu-gallery {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 18px;
    padding: 24px 0 96px;
}

.cv-menu-gallery img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--cv-radius);
    box-shadow: var(--cv-shadow);
}

.cv-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    padding: 92px 0;
}

.cv-split img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: var(--cv-radius);
    box-shadow: var(--cv-shadow);
}

.cv-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 0 0 90px;
}

.cv-values article {
    padding: 26px;
}

.cv-values h2 {
    margin: 0 0 10px;
    font-family: Georgia, serif;
    font-size: 32px;
}

.cv-values p {
    margin: 0;
    color: var(--cv-muted);
}

.cv-contact {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px;
    padding-bottom: 90px;
}

.cv-contact-panel,
.cv-form {
    padding: 28px;
}

.cv-contact dl,
.cv-contact dd {
    margin: 0;
}

.cv-contact dl {
    display: grid;
    gap: 18px;
}

.cv-contact dt {
    color: var(--cv-gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.cv-contact a {
    color: var(--cv-cream);
}

.cv-form {
    display: grid;
    gap: 16px;
}

.cv-form label {
    display: grid;
    gap: 8px;
    color: var(--cv-muted);
    font-weight: 800;
}

.cv-form input,
.cv-form textarea {
    width: 100%;
    border: 1px solid var(--cv-line);
    border-radius: var(--cv-radius);
    padding: 13px 14px;
    color: var(--cv-cream);
    background: rgba(255, 240, 205, 0.08);
    font: inherit;
}

.cv-content {
    padding-bottom: 90px;
}

.cv-legal {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-bottom: 96px;
}

.cv-legal-card {
    padding: 28px;
    border: 1px solid var(--cv-line);
    border-radius: var(--cv-radius);
    background: linear-gradient(145deg, rgba(255, 240, 205, 0.1), rgba(255, 240, 205, 0.035));
}

.cv-legal-card h2 {
    margin: 0 0 14px;
    color: var(--cv-gold);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 620;
    line-height: 1;
}

.cv-legal-card p {
    margin: 0;
    color: var(--cv-muted);
    font-size: 16px;
}

.cv-legal-card a,
.cv-footer-bottom a,
.cv-footer a {
    color: inherit;
}

.cv-cookie-placeholder {
    border-color: rgba(244, 189, 69, 0.38);
    background:
        radial-gradient(circle at 92% 12%, rgba(244, 189, 69, 0.18), transparent 12rem),
        linear-gradient(145deg, rgba(255, 240, 205, 0.12), rgba(255, 240, 205, 0.04));
}

.cv-footer {
    color: var(--cv-cream);
    background: #0b0807;
    border-top: 1px solid var(--cv-line);
}

.cv-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 62px 0 36px;
}

.cv-footer h2 {
    margin: 0 0 12px;
    color: var(--cv-gold);
    font-size: 13px;
    text-transform: uppercase;
}

.cv-footer p {
    margin: 0;
    color: var(--cv-muted);
}

.cv-footer-menu {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}

.cv-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0 28px;
    border-top: 1px solid var(--cv-line);
    color: rgba(255, 240, 205, 0.62);
    font-size: 13px;
}

/* Final home cleanup: no fake product grids, no particles, flat section surfaces. */
body.caviani-site {
    background: #120d0a;
}

.cv-fade-section::before,
.cv-fade-section::after,
.cv-warm-scene::before,
.cv-warm-scene::after,
.cv-ice-scene::before,
.cv-ice-scene::after,
.cv-cake-scene::before,
.cv-cake-scene::after,
.cv-cold-scene::before,
.cv-cold-scene::after,
.cv-reviews-scene::before,
.cv-reviews-scene::after,
.cv-warm-showcase::before,
.cv-warm-showcase::after,
.cv-ice-showcase::before,
.cv-ice-showcase::after,
.cv-cake-showcase-new::before,
.cv-cake-showcase-new::after,
.cv-cold-showcase-new::before,
.cv-cold-showcase-new::after {
    content: none !important;
    display: none !important;
}

.cv-warm-product-grid,
.cv-ice-product-grid,
.cv-cake-product-strip,
.cv-cold-product-grid,
.cv-ice-floaters,
.cv-cake-floaters,
.cv-cold-floaters,
.cv-reviews-bg,
.cv-warm-atmosphere,
.cv-hero-proof,
.cv-warm-steam-line,
.cv-ice-side-right,
.cv-cake-side-dessert {
    display: none !important;
}

.cv-warm-story,
.cv-ice-story,
.cv-cake-story,
.cv-cold-story,
.cv-reviews-story,
.cv-contact-story {
    width: min(1420px, calc(100vw - 44px));
}

.cv-warm-scene {
    background: #24120c !important;
}

.cv-ice-scene {
    background: #32113f !important;
}

.cv-cake-scene {
    background: #f0c5bf !important;
}

.cv-cold-scene {
    background: #eaf6fb !important;
}

.cv-reviews-scene,
.cv-contact-scene {
    background: #120d0a !important;
}

.cv-warm-showcase {
    background: #160b07 !important;
}

.cv-ice-showcase {
    background: #b863a9 !important;
}

.cv-cake-showcase-new {
    background: #6f241e !important;
}

.cv-cold-showcase-new {
    background: #effaff !important;
}

.cv-warm-showcase,
.cv-ice-showcase,
.cv-cake-showcase-new,
.cv-cold-showcase-new {
    border: 0 !important;
}

.cv-ice-main-cup {
    left: 30% !important;
    width: 50% !important;
    height: min(480px, 58svh) !important;
}

.cv-ice-side-left {
    left: 3% !important;
    width: 34% !important;
    height: min(390px, 48svh) !important;
}

.cv-ice-showcase-clean {
    min-height: min(760px, 88svh) !important;
    display: grid !important;
    grid-template-columns: minmax(300px, 0.78fr) minmax(460px, 1.22fr) !important;
    gap: clamp(28px, 5vw, 86px) !important;
    align-items: center !important;
    overflow: hidden !important;
    padding: clamp(42px, 6vw, 92px) !important;
    color: #f7fbff !important;
    background: #0f5f8f !important;
}

.cv-ice-showcase-clean .cv-ice-copy {
    max-width: 540px !important;
    padding: 0 !important;
}

.cv-ice-showcase-clean .cv-ice-copy h2 {
    max-width: 560px !important;
    color: #f7fbff !important;
    font-size: clamp(34px, 4.2vw, 60px) !important;
    font-weight: 390 !important;
    line-height: 1.06 !important;
}

.cv-ice-showcase-clean .cv-ice-copy p {
    max-width: 470px !important;
    color: rgba(247, 251, 255, 0.82) !important;
}

.cv-ice-photo {
    position: relative !important;
    z-index: 3 !important;
    align-self: stretch !important;
    min-height: 460px !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: #0b3f60 !important;
    box-shadow: var(--cv-shadow) !important;
}

.cv-ice-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: saturate(1.04) contrast(1.02) !important;
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1), filter 620ms ease !important;
}

.cv-ice-hero-products,
.cv-ice-note {
    display: none !important;
}

.cv-cake-copy-new .cv-kicker,
.cv-cake-copy-new h2,
.cv-cake-copy-new p {
    color: #fff4da !important;
    text-shadow: 0 16px 36px rgba(35, 12, 8, 0.46);
}

.cv-cake-main-dessert {
    left: 50% !important;
    bottom: 46px !important;
    width: min(54%, 430px) !important;
    height: min(430px, 48svh) !important;
    transform: translateX(-50%) !important;
}

/* Absolute final warm-section correction. */
.cv-warm-scene,
.cv-warm-story,
.cv-warm-showcase {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #170a06 !important;
}

.cv-warm-story {
    padding: 0 !important;
}

.cv-warm-showcase {
    min-height: 100svh !important;
}

.cv-warm-showcase::before,
.cv-warm-showcase::after,
.cv-warm-cup-stage::before {
    content: none !important;
    display: none !important;
}

.cv-warm-cup {
    width: min(340px, 46%) !important;
    max-width: 340px !important;
}

.cv-warm-leaves {
    width: min(170px, 21%) !important;
    max-width: 170px !important;
}

/* Final warm-section correction: no framed card, no light backing, half-size tea. */
.cv-warm-scene,
.cv-warm-story,
.cv-warm-showcase {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #170a06 !important;
}

.cv-warm-story {
    padding: 0 !important;
}

.cv-warm-showcase {
    min-height: 100svh !important;
}

.cv-warm-showcase::before,
.cv-warm-showcase::after,
.cv-warm-cup-stage::before {
    content: none !important;
    display: none !important;
}

.cv-warm-cup {
    width: min(340px, 46%) !important;
    max-width: 340px !important;
}

.cv-warm-leaves {
    width: min(170px, 21%) !important;
    max-width: 170px !important;
}

/* Eis section reset: no collage, no floating rectangles, one clean photo composition. */
.cv-ice-hero-products,
.cv-ice-note {
    display: none !important;
}

.cv-ice-showcase-clean {
    min-height: min(760px, 88svh) !important;
    display: grid !important;
    grid-template-columns: minmax(300px, 0.78fr) minmax(460px, 1.22fr) !important;
    gap: clamp(28px, 5vw, 86px) !important;
    align-items: center !important;
    overflow: hidden !important;
    padding: clamp(42px, 6vw, 92px) !important;
    color: #f7fbff !important;
    background: #0f5f8f !important;
}

.cv-ice-showcase-clean .cv-ice-copy {
    max-width: 540px !important;
    padding: 0 !important;
}

.cv-ice-showcase-clean .cv-ice-copy h2 {
    max-width: 560px !important;
    color: #f7fbff !important;
    font-size: clamp(34px, 4.2vw, 60px) !important;
    font-weight: 390 !important;
    line-height: 1.06 !important;
}

.cv-ice-showcase-clean .cv-ice-copy p {
    max-width: 470px !important;
    color: rgba(247, 251, 255, 0.82) !important;
}

.cv-ice-photo {
    position: relative !important;
    z-index: 3 !important;
    align-self: stretch !important;
    display: block !important;
    min-height: 460px !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: #0b3f60 !important;
    box-shadow: var(--cv-shadow) !important;
}

.cv-ice-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: saturate(1.04) contrast(1.02) !important;
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1), filter 620ms ease !important;
}

@media (hover: hover) and (pointer: fine) {
    .cv-ice-photo:hover img {
        transform: scale(1.035);
        filter: saturate(1.08) contrast(1.03) !important;
    }
}

@media (max-width: 760px) {
    .cv-ice-showcase-clean {
        grid-template-columns: 1fr !important;
        padding: 34px 24px !important;
    }

    .cv-ice-photo {
        min-height: 330px !important;
    }
}

/* Cold drinks correction: only the sky background is full-width. */
.cv-cold-scene {
    background: #dff7f3 !important;
    overflow: hidden !important;
}

.cv-cold-story {
    width: min(100% - 48px, 1420px) !important;
    max-width: 1420px !important;
    margin: 0 auto !important;
    padding: clamp(74px, 7vw, 110px) 0 !important;
}

.cv-cold-showcase-new,
.cv-cold-showcase-clean {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(280px, 0.82fr) minmax(480px, 1.18fr) !important;
    align-items: center !important;
    gap: clamp(34px, 5vw, 78px) !important;
    width: 100% !important;
    max-width: 1420px !important;
    min-height: min(760px, 86svh) !important;
    margin: 0 auto !important;
    padding: clamp(68px, 6vw, 98px) clamp(48px, 6vw, 92px) !important;
    overflow: visible !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.cv-cold-sky-bg {
    position: absolute !important;
    inset: 0 auto 0 50% !important;
    z-index: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    height: 100% !important;
    transform: translateX(-50%) translate3d(0, calc(var(--cv-parallax-y, 0px) * -0.32), 0) scale(1.08) !important;
    transform-origin: center !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 0.58 !important;
    pointer-events: none !important;
}

.cv-cold-copy-new,
.cv-cold-photo,
.cv-cold-showcase-new .cv-float-layer,
.cv-cold-showcase-clean .cv-float-layer {
    position: relative !important;
    z-index: 2 !important;
}

.cv-cold-copy-new {
    max-width: 520px !important;
}

.cv-cold-photo {
    width: min(520px, 38vw) !important;
    max-width: 520px !important;
    justify-self: end !important;
}

.cv-cold-photo img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

@media (max-width: 980px) {
    .cv-cold-story {
        width: 100% !important;
        padding: 58px 22px !important;
    }

    .cv-cold-showcase-new,
    .cv-cold-showcase-clean {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
        padding: 64px 24px !important;
    }

    .cv-cold-photo {
        width: min(360px, 82vw) !important;
        justify-self: center !important;
    }
}

/* Absolute final birthday fix: anchor image from the bottom and make it taller. */
.cv-event-banner {
    min-height: clamp(780px, 88svh, 980px) !important;
    padding-top: clamp(130px, 12vw, 190px) !important;
    padding-bottom: clamp(110px, 11vw, 170px) !important;
}

.cv-event-bg {
    inset: -8% 0 -4% !important;
    height: 112% !important;
    object-position: center bottom !important;
    transform: translate3d(0, calc(var(--cv-parallax-y, 0px) * -0.88), 0) scale(1.12) !important;
}

@media (max-width: 760px) {
    .cv-event-banner {
        min-height: 760px !important;
        padding-top: 118px !important;
        padding-bottom: 120px !important;
    }

    .cv-event-bg {
        inset: -4% 0 -2% !important;
        height: 106% !important;
        object-position: left bottom !important;
        transform: translate3d(0, calc(var(--cv-parallax-y, 0px) * -0.48), 0) scale(1.08) !important;
    }
}

/* True final cold drinks sizing: full-width sky only, no forced full-height layout. */
.cv-cold-scene {
    position: relative !important;
    min-height: 0 !important;
    height: auto !important;
    background: #dff7f3 !important;
    overflow: hidden !important;
    padding: 0 !important;
}

.cv-cold-story {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cv-cold-showcase-new,
.cv-cold-showcase-clean {
    width: min(100% - 96px, 1420px) !important;
    max-width: 1420px !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: clamp(54px, 5vw, 80px) clamp(42px, 5vw, 78px) !important;
    grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1fr) !important;
    align-items: center !important;
    gap: clamp(34px, 4vw, 66px) !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: hidden !important;
}

.cv-cold-sky-bg {
    position: absolute !important;
    inset: 0 auto 0 50% !important;
    z-index: 0 !important;
    width: 100vw !important;
    height: 100% !important;
    max-width: none !important;
    transform: translateX(-50%) translate3d(0, calc(var(--cv-parallax-y, 0px) * -0.38), 0) scale(1.08) !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 0.58 !important;
    pointer-events: none !important;
}

.cv-cold-copy-new,
.cv-cold-photo {
    position: relative !important;
    z-index: 2 !important;
}

.cv-cold-showcase-new .cv-float-layer,
.cv-cold-showcase-clean .cv-float-layer {
    position: absolute !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

.cv-cold-photo {
    width: min(500px, 36vw) !important;
    max-width: 500px !important;
    justify-self: end !important;
}

.cv-cold-photo img {
    display: block !important;
    width: 100% !important;
    max-height: 520px !important;
    height: auto !important;
    object-fit: contain !important;
}

@media (max-width: 980px) {
    .cv-cold-showcase-new,
    .cv-cold-showcase-clean {
        width: min(100% - 36px, 720px) !important;
        grid-template-columns: 1fr !important;
        padding: 52px 22px !important;
    }

    .cv-cold-photo {
        width: min(390px, 84vw) !important;
        justify-self: center !important;
    }
}

/* EOF correction: full-width cold sky, not full-height cold section. */
.cv-section-scene.cv-cold-scene {
    min-height: 0 !important;
    height: auto !important;
}

.cv-cold-showcase-new.cv-cold-showcase-clean {
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
}

.cv-cold-showcase-new.cv-cold-showcase-clean .cv-float-layer {
    z-index: 3 !important;
}

/* EOF correction: full-width cold sky, not full-height cold section. */
.cv-section-scene.cv-cold-scene {
    min-height: 0 !important;
    height: auto !important;
}

.cv-cold-showcase-new.cv-cold-showcase-clean {
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
}

.cv-cold-showcase-new.cv-cold-showcase-clean .cv-float-layer {
    z-index: 3 !important;
}

/* EOF correction: full-width cold sky, not full-height cold section. */
.cv-section-scene.cv-cold-scene {
    min-height: 0 !important;
    height: auto !important;
}

.cv-cold-showcase-new.cv-cold-showcase-clean {
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
}

.cv-cold-showcase-new.cv-cold-showcase-clean .cv-float-layer {
    z-index: 3 !important;
}

/* Final correction: full-width sky does not mean full-height cold section. */
.cv-section-scene.cv-cold-scene {
    min-height: 0 !important;
    height: auto !important;
}

.cv-cold-showcase-new.cv-cold-showcase-clean {
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
}

.cv-cold-showcase-new.cv-cold-showcase-clean .cv-float-layer {
    z-index: 3 !important;
}

/* Absolute final Eis poster slider: show the full readable Caviani posters. */
.cv-ice-slider {
    width: min(620px, 42vw) !important;
    min-height: 0 !important;
    aspect-ratio: 0.78 !important;
    overflow: hidden !important;
    background: #eaf8ff !important;
    border: 0 !important;
    box-shadow: 0 10px 26px rgba(17, 58, 74, 0.12) !important;
}

.cv-ice-slides,
.cv-ice-slide {
    position: absolute !important;
    inset: 0 !important;
}

.cv-ice-slide {
    display: grid !important;
    place-items: center !important;
    padding: 0 !important;
    background: #eaf8ff !important;
}

.cv-ice-slide img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-height: min(760px, 78svh) !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #eaf8ff !important;
}

.cv-ice-slider-controls {
    right: 18px !important;
    bottom: 18px !important;
    background: rgba(234, 248, 255, 0.9) !important;
}

@media (max-width: 980px) {
    .cv-ice-slider {
        width: min(560px, 86vw) !important;
        aspect-ratio: 0.74 !important;
    }
}

@media (max-width: 560px) {
    .cv-ice-slider {
        width: 100% !important;
        aspect-ratio: 0.72 !important;
    }
}

/* Absolute final cold drinks sizing: full-width sky, normal-height composition. */
.cv-cold-scene {
    position: relative !important;
    background: #dff7f3 !important;
    overflow: hidden !important;
}

.cv-cold-story {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cv-cold-showcase-new,
.cv-cold-showcase-clean {
    width: min(100% - 96px, 1420px) !important;
    max-width: 1420px !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: clamp(56px, 5vw, 82px) clamp(42px, 5vw, 78px) !important;
    grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1fr) !important;
    align-items: center !important;
    gap: clamp(34px, 4vw, 66px) !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.cv-cold-sky-bg {
    position: absolute !important;
    inset: 0 auto 0 50% !important;
    width: 100vw !important;
    height: 100% !important;
    max-width: none !important;
    transform: translateX(-50%) translate3d(0, calc(var(--cv-parallax-y, 0px) * -0.38), 0) scale(1.08) !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 0.58 !important;
}

.cv-cold-photo {
    width: min(500px, 36vw) !important;
    max-width: 500px !important;
    justify-self: end !important;
}

.cv-cold-photo img {
    width: 100% !important;
    max-height: 520px !important;
    height: auto !important;
    object-fit: contain !important;
}

@media (max-width: 980px) {
    .cv-cold-showcase-new,
    .cv-cold-showcase-clean {
        width: min(100% - 36px, 720px) !important;
        grid-template-columns: 1fr !important;
        padding: 52px 22px !important;
    }

    .cv-cold-photo {
        width: min(390px, 84vw) !important;
        justify-self: center !important;
    }
}

/* Birthday section correction: bottom of the image matters. */
.cv-event-banner {
    min-height: clamp(780px, 88svh, 980px) !important;
    padding-top: clamp(130px, 12vw, 190px) !important;
    padding-bottom: clamp(110px, 11vw, 170px) !important;
}

.cv-event-bg {
    inset: -8% 0 -4% !important;
    height: 112% !important;
    object-position: center bottom !important;
    transform: translate3d(0, calc(var(--cv-parallax-y, 0px) * -0.88), 0) scale(1.12) !important;
}

@media (max-width: 760px) {
    .cv-event-banner {
        min-height: 760px !important;
        padding-top: 118px !important;
        padding-bottom: 120px !important;
    }

    .cv-event-bg {
        inset: -4% 0 -2% !important;
        height: 106% !important;
        object-position: left bottom !important;
        transform: translate3d(0, calc(var(--cv-parallax-y, 0px) * -0.48), 0) scale(1.08) !important;
    }
}

/* Final width/empty-background correction: section surfaces must be full-width,
   without the large dark spacer bands between them. */
.cv-warm-scene,
.cv-ice-scene,
.cv-event-scene,
.cv-reviews-scene {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    min-height: auto !important;
}

.cv-warm-scene {
    background: #170a06 !important;
}

.cv-ice-scene {
    background: #eaf8ff !important;
}

.cv-event-scene {
    background: transparent !important;
}

.cv-reviews-scene {
    background: #0b0807 !important;
}

.cv-warm-story,
.cv-ice-story,
.cv-reviews-story {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cv-warm-showcase,
.cv-ice-showcase,
.cv-ice-showcase-clean,
.cv-event-banner {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.cv-warm-showcase {
    min-height: 72svh !important;
    overflow: hidden !important;
}

.cv-warm-bg {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 0.42 !important;
}

.cv-warm-copy {
    padding-top: clamp(120px, 13vh, 170px) !important;
    padding-bottom: clamp(58px, 8vh, 96px) !important;
}

.cv-warm-cup-stage {
    min-height: 420px !important;
}

.cv-ice-showcase,
.cv-ice-showcase-clean {
    min-height: 78svh !important;
}

.cv-event-banner {
    min-height: 72svh !important;
}

.cv-reviews-story {
    display: grid !important;
    grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr) !important;
    align-items: center !important;
    gap: clamp(42px, 6vw, 96px) !important;
    padding: clamp(96px, 12vh, 150px) max(28px, calc((100vw - 1420px) / 2 + 40px)) !important;
}

@media (max-width: 980px) {
    .cv-reviews-story {
        grid-template-columns: 1fr !important;
        padding: 82px 24px !important;
    }
}

/* Final Kalte Getraenke correction: sky background must be full viewport width. */
.cv-cold-scene {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    background: #dff7f3 !important;
}

.cv-cold-story {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cv-cold-showcase-new,
.cv-cold-showcase-clean {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #a8ddcf !important;
}

.cv-cold-sky-bg {
    inset: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    object-fit: cover !important;
}

/* Final warm drinks background: coffee beans with a brown fade and stronger parallax. */
.cv-warm-showcase {
    background: #170a06 !important;
}

.cv-warm-bg {
    z-index: 0 !important;
    inset: -9% 0 -9% 0 !important;
    width: 100% !important;
    height: 118% !important;
    object-fit: cover !important;
    object-position: center bottom !important;
    opacity: 0.72 !important;
    filter: saturate(0.82) brightness(0.62) contrast(1.08) !important;
    transform: translate3d(0, calc(var(--cv-parallax-y, 0px) * -0.42), 0) scale(1.05) !important;
}

.cv-warm-showcase::before,
.cv-warm-showcase::after {
    content: "" !important;
    display: block !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

.cv-warm-showcase::before {
    background:
        linear-gradient(90deg, rgba(23, 10, 6, 0.96) 0%, rgba(23, 10, 6, 0.78) 34%, rgba(23, 10, 6, 0.38) 58%, rgba(23, 10, 6, 0.74) 100%),
        linear-gradient(180deg, rgba(23, 10, 6, 0.98) 0%, rgba(23, 10, 6, 0.28) 42%, rgba(23, 10, 6, 0.88) 100%) !important;
}

.cv-warm-showcase::after {
    background: linear-gradient(180deg, #170a06 0%, rgba(23, 10, 6, 0) 18%, rgba(23, 10, 6, 0) 78%, #170a06 100%) !important;
}

.cv-warm-copy,
.cv-warm-cup-stage {
    position: relative !important;
    z-index: 2 !important;
}

/* Final Kuchen product correction: bigger product group, clean images, hover motion. */
.cv-cake-dessert-stage {
    min-height: 560px !important;
    width: min(760px, 52vw) !important;
    align-self: center !important;
    overflow: visible !important;
    isolation: isolate !important;
}

.cv-cake-dessert-stage figure {
    position: absolute !important;
    margin: 0 !important;
    display: block !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    transition: transform 260ms ease, filter 260ms ease !important;
    will-change: transform !important;
}

.cv-cake-dessert-stage figure:hover {
    filter: brightness(1.03) saturate(1.05) !important;
}

.cv-cake-dessert-stage img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 14px 20px rgba(77, 23, 18, 0.14)) !important;
    transition: transform 260ms ease, filter 260ms ease !important;
}

.cv-cake-photo-dessert {
    z-index: 1 !important;
    right: 20% !important;
    bottom: 76px !important;
    width: min(410px, 34vw) !important;
    transform: rotate(-1deg) translate3d(0, calc(var(--cv-parallax-y, 0px) * -0.14), 0) !important;
}

.cv-cake-photo-dessert img {
    border-radius: 0 !important;
    box-shadow: 0 16px 34px rgba(77, 23, 18, 0.13) !important;
}

.cv-cake-main-dessert {
    z-index: 4 !important;
    left: auto !important;
    right: 34% !important;
    bottom: 34px !important;
    width: min(300px, 22vw) !important;
    max-width: none !important;
    transform: translate3d(0, calc(var(--cv-parallax-y, 0px) * 0.18), 0) !important;
}

.cv-cake-chocolate-dessert {
    z-index: 3 !important;
    right: 2% !important;
    bottom: 112px !important;
    width: min(290px, 22vw) !important;
    height: auto !important;
    min-height: 0 !important;
    transform: rotate(2deg) translate3d(0, calc(var(--cv-parallax-y, 0px) * -0.1), 0) !important;
}

.cv-cake-cookie-dessert {
    z-index: 5 !important;
    right: 6% !important;
    bottom: 18px !important;
    width: min(150px, 11vw) !important;
    transform: rotate(8deg) translate3d(0, calc(var(--cv-parallax-y, 0px) * 0.22), 0) !important;
}

.cv-cake-photo-dessert:hover {
    transform: rotate(-1deg) translateY(-10px) scale(1.035) !important;
}

.cv-cake-main-dessert:hover {
    transform: translateY(-12px) scale(1.06) !important;
}

.cv-cake-chocolate-dessert:hover {
    transform: rotate(2deg) translateY(-10px) scale(1.055) !important;
}

.cv-cake-cookie-dessert:hover {
    transform: rotate(8deg) translateY(-12px) scale(1.08) !important;
}

@media (max-width: 980px) {
    .cv-cake-dessert-stage {
        width: 100% !important;
        min-height: 430px !important;
    }

    .cv-cake-photo-dessert {
        right: 14% !important;
        width: min(330px, 70vw) !important;
    }

    .cv-cake-main-dessert {
        right: 42% !important;
        width: min(210px, 42vw) !important;
    }

    .cv-cake-chocolate-dessert {
        right: 4% !important;
        width: min(210px, 42vw) !important;
    }

    .cv-cake-cookie-dessert {
        right: 8% !important;
        width: min(110px, 22vw) !important;
    }
}

/* Cold drinks reset: one clean editorial image, no floating collage system. */
.cv-cold-drink-stage {
    display: none !important;
}

.cv-cold-showcase-clean {
    min-height: min(720px, 84svh) !important;
    display: grid !important;
    grid-template-columns: minmax(300px, 0.78fr) minmax(460px, 1.22fr) !important;
    gap: clamp(28px, 5vw, 86px) !important;
    align-items: center !important;
    overflow: hidden !important;
    padding: clamp(42px, 6vw, 92px) !important;
    color: #f5fff2 !important;
    background: #1f6b42 !important;
}

.cv-cold-showcase-clean .cv-cold-copy-new {
    max-width: 560px !important;
    padding: 0 !important;
}

.cv-cold-showcase-clean .cv-cold-copy-new h2 {
    max-width: 590px !important;
    color: #f5fff2 !important;
    font-size: clamp(34px, 4.2vw, 60px) !important;
    font-weight: 390 !important;
    line-height: 1.06 !important;
}

.cv-cold-showcase-clean .cv-cold-copy-new p {
    max-width: 500px !important;
    color: rgba(245, 255, 242, 0.84) !important;
}

.cv-cold-photo {
    position: relative !important;
    z-index: 3 !important;
    align-self: stretch !important;
    display: block !important;
    min-height: 460px !important;
    margin: 0 !important;
    overflow: hidden !important;
    background: #123f27 !important;
    box-shadow: var(--cv-shadow) !important;
}

.cv-cold-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    filter: saturate(1.04) contrast(1.02) !important;
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1), filter 620ms ease !important;
}

@media (hover: hover) and (pointer: fine) {
    .cv-cold-photo:hover img {
        transform: scale(1.035);
        filter: saturate(1.08) contrast(1.03) !important;
    }
}

@media (max-width: 760px) {
    .cv-cold-showcase-clean {
        grid-template-columns: 1fr !important;
        padding: 34px 24px !important;
    }

    .cv-cold-photo {
        min-height: 330px !important;
    }
}

/* Full-width hero and button hover pass. */
body.caviani-site {
    background: #170a06 !important;
}

.cv-hero-poster {
    width: 100% !important;
    padding: 0 !important;
    background: #170a06 !important;
}

.cv-hero-frame {
    width: 100% !important;
    max-width: none !important;
    min-height: 100svh !important;
    margin: 0 !important;
    background: #170a06 !important;
}

.cv-hero-scene {
    width: min(1500px, calc(100vw - 64px)) !important;
    min-height: 100svh !important;
    margin-inline: auto !important;
    padding-top: 142px !important;
}

.cv-button {
    position: relative !important;
    overflow: hidden !important;
    transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease !important;
}

.cv-button::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background: rgba(255, 255, 255, 0.18) !important;
    transform: translateX(-120%) skewX(-18deg) !important;
    transition: transform 360ms ease !important;
    pointer-events: none !important;
}

.cv-button:hover,
.cv-button:focus-visible {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 22px rgba(10, 6, 4, 0.18) !important;
}

.cv-button:hover::after,
.cv-button:focus-visible::after {
    transform: translateX(120%) skewX(-18deg) !important;
}

.cv-button-primary:hover,
.cv-button-primary:focus-visible {
    color: #120d0a !important;
    background: #ffe08a !important;
}

.cv-button-ghost:hover,
.cv-button-ghost:focus-visible,
.cv-button-text:hover,
.cv-button-text:focus-visible {
    color: #120d0a !important;
    border-color: transparent !important;
    background: var(--cv-gold) !important;
}

@media (max-width: 760px) {
    .cv-hero-scene {
        width: 100% !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

/* Warm drinks full-width cleanup. */
.cv-warm-scene {
    width: 100% !important;
    background: #170a06 !important;
}

.cv-warm-story {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
}

.cv-warm-showcase {
    width: 100% !important;
    min-height: 100svh !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #170a06 !important;
}

.cv-warm-showcase::before,
.cv-warm-showcase::after,
.cv-warm-cup-stage::before {
    content: none !important;
    display: none !important;
}

.cv-warm-copy {
    padding-left: max(28px, calc((100vw - 1500px) / 2 + 48px)) !important;
}

.cv-warm-cup-stage {
    min-height: 520px !important;
    padding-right: max(24px, calc((100vw - 1500px) / 2 + 34px)) !important;
}

.cv-warm-cup {
    width: min(340px, 46%) !important;
}

.cv-warm-leaves {
    width: min(170px, 21%) !important;
    left: 22% !important;
    bottom: 132px !important;
}

@media (max-width: 760px) {
    .cv-warm-showcase {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    .cv-warm-copy {
        padding: 88px 24px 18px !important;
    }

    .cv-warm-cup-stage {
        min-height: 320px !important;
        padding: 0 24px 54px !important;
    }

    .cv-warm-cup {
        width: min(280px, 58%) !important;
    }

    .cv-warm-leaves {
        width: min(130px, 26%) !important;
        left: 18% !important;
        bottom: 48px !important;
    }
}

/* Absolute final polish override. */
html {
    scroll-behavior: auto !important;
}

:root {
    --cv-shadow: 0 9px 24px rgba(10, 6, 4, 0.16) !important;
}

.cv-header,
.cv-hero-photo,
.cv-hero-products article,
.cv-warm-showcase,
.cv-ice-showcase,
.cv-cake-showcase-new,
.cv-cold-showcase-new,
.cv-reviews-panel,
.cv-contact-story,
.cv-map-card,
.cv-error-card,
.cv-ice-hero-products figure,
.cv-cake-dessert-stage figure,
.cv-cold-drink-stage figure,
.cv-scroll-cards article {
    box-shadow: var(--cv-shadow) !important;
}

.cv-warm-cup,
.cv-warm-leaves,
.cv-ice-hero-products img,
.cv-cake-dessert-stage img,
.cv-cold-drink-stage img {
    filter: none !important;
}

.cv-ice-hero-products figure,
.cv-cake-dessert-stage figure,
.cv-cold-drink-stage figure {
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.cv-ice-hero-products img,
.cv-cake-dessert-stage img,
.cv-cold-drink-stage img {
    object-fit: cover !important;
}

.cv-hero-copy h1,
.cv-warm-copy h2,
.cv-ice-copy h2,
.cv-cake-copy-new h2,
.cv-cold-copy-new h2,
.cv-reviews-copy h2,
.cv-contact-copy h2,
.cv-error-copy h1 {
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
    font-weight: 390 !important;
    line-height: 1.06 !important;
}

.cv-menu a,
.cv-button,
.cv-kicker,
.cv-review-stars,
.cv-footer h2,
.cv-reviews-panel cite {
    font-weight: 560 !important;
}

.cv-button {
    margin-top: 12px !important;
}

.cv-warm-copy p,
.cv-ice-copy p,
.cv-cake-copy-new p,
.cv-cold-copy-new p,
.cv-reviews-copy p,
.cv-contact-copy p,
.cv-error-copy p {
    margin-bottom: 28px !important;
}

.cv-footer-bottom {
    display: grid !important;
    grid-template-columns: repeat(3, auto);
    align-items: center;
}

.cv-hero-scene {
    padding-left: clamp(34px, 4.2vw, 76px) !important;
    padding-right: clamp(34px, 4.2vw, 76px) !important;
    padding-bottom: 54px !important;
}

.cv-hero-copy {
    padding-left: 0 !important;
    padding-top: clamp(28px, 3vw, 48px) !important;
}

.cv-hero-copy p {
    margin-top: 24px !important;
}

.cv-hero-products span {
    padding: 12px 14px 14px !important;
}

.cv-actions {
    margin-top: 36px !important;
    gap: 14px !important;
}

.cv-hero-photo,
.cv-hero-products article,
.cv-warm-showcase,
.cv-ice-hero-products figure,
.cv-cake-dessert-stage figure,
.cv-cold-drink-stage figure,
.cv-map-card {
    transition: transform 420ms ease, box-shadow 420ms ease, filter 420ms ease;
}

.cv-hero-photo img,
.cv-hero-products img,
.cv-warm-bg,
.cv-warm-cup,
.cv-ice-hero-products img,
.cv-cake-bg,
.cv-cake-dessert-stage img,
.cv-cold-drink-stage img {
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1), filter 620ms ease;
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .cv-hero-photo:hover,
    .cv-hero-products article:hover,
    .cv-ice-hero-products figure:hover,
    .cv-cake-dessert-stage figure:hover,
    .cv-cold-drink-stage figure:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 34px rgba(10, 6, 4, 0.2) !important;
    }

    .cv-hero-photo:hover img,
    .cv-hero-products article:hover img,
    .cv-warm-showcase:hover .cv-warm-bg,
    .cv-ice-hero-products figure:hover img,
    .cv-cake-showcase-new:hover .cv-cake-bg,
    .cv-cake-dessert-stage figure:hover img,
    .cv-cold-drink-stage figure:hover img {
        transform: scale(1.035);
        filter: saturate(1.04) contrast(1.02);
    }

    .cv-warm-showcase:hover .cv-warm-cup {
        transform: translateY(-6px) scale(1.025);
    }
}

@media (max-width: 620px) {
    .cv-footer-bottom {
        grid-template-columns: 1fr;
    }

    .cv-hero-scene {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

.cv-ice-scene {
    color: #f6fbff !important;
    background: #0f4f7c !important;
}

.cv-ice-showcase {
    color: #f6fbff !important;
    background: #176fa3 !important;
}

.cv-ice-copy .cv-kicker,
.cv-ice-copy h2,
.cv-ice-copy p,
.cv-ice-note h3,
.cv-ice-note p {
    color: #f6fbff !important;
}

.cv-ice-note {
    border-left-color: rgba(255, 240, 205, 0.72) !important;
}

.cv-cold-scene {
    color: #f4fff3 !important;
    background: #164b2d !important;
}

.cv-cold-showcase-new {
    color: #f4fff3 !important;
    background: #247448 !important;
}

.cv-cold-copy-new .cv-kicker,
.cv-cold-copy-new h2,
.cv-cold-copy-new p {
    color: #f4fff3 !important;
}

.cv-cold-drink-stage figure {
    background: rgba(244, 255, 243, 0.16) !important;
}

.cv-error-page {
    min-height: 82svh;
    display: grid;
    align-items: center;
    padding: 150px 0 90px;
    color: #fff4da;
    background: #120d0a;
}

.cv-error-card {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.52fr);
    gap: 28px;
    align-items: end;
    padding: clamp(28px, 5vw, 72px);
    background: #24120c;
    box-shadow: var(--cv-shadow);
}

.cv-error-copy h1 {
    max-width: 760px;
    margin: 0;
    color: #fff8e7;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5.4vw, 76px);
    font-weight: 560;
    line-height: 0.96;
}

.cv-error-copy p {
    max-width: 580px;
    margin: 20px 0 0;
    color: rgba(255, 244, 218, 0.76);
    font-size: 17px;
}

.cv-error-links {
    display: grid;
    gap: 1px;
    background: rgba(255, 240, 205, 0.14);
}

.cv-error-links a {
    padding: 18px 20px;
    color: #fff4da;
    background: rgba(18, 13, 10, 0.62);
    text-decoration: none;
    font-weight: 850;
}

.cv-error-links a:hover {
    color: #180f0a;
    background: var(--cv-gold);
}

@media (max-width: 760px) {
    .cv-error-card {
        grid-template-columns: 1fr;
    }
}

/* Current refinement pass: lighter type, quieter depth, cleaner media, calmer spacing. */
:root {
    --cv-shadow: 0 9px 24px rgba(10, 6, 4, 0.16);
}

body.caviani-site {
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 360;
}

.cv-menu a,
.cv-kicker,
.cv-eyebrow,
.cv-button,
.cv-review-stars,
.cv-footer h2,
.cv-error-links a {
    font-weight: 560 !important;
}

.cv-hero-copy h1,
.cv-board-title h2,
.cv-page-hero h1,
.cv-video-copy h2,
.cv-motion-copy h2,
.cv-seo-copy h2,
.cv-split h2,
.cv-contact h2,
.cv-warm-copy h2,
.cv-ice-copy h2,
.cv-cake-copy-new h2,
.cv-cold-copy-new h2,
.cv-reviews-copy h2,
.cv-contact-copy h2,
.cv-error-copy h1,
.cv-ice-note h3 {
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif !important;
    font-weight: 420 !important;
    letter-spacing: 0 !important;
}

.cv-hero-copy h1 {
    font-size: clamp(38px, 4vw, 62px) !important;
}

.cv-warm-copy h2,
.cv-ice-copy h2,
.cv-cake-copy-new h2,
.cv-cold-copy-new h2 {
    font-size: clamp(34px, 4.2vw, 58px) !important;
    line-height: 1.04 !important;
}

.cv-button {
    margin-top: 10px;
    box-shadow: none !important;
}

.cv-actions {
    margin-top: 34px !important;
    row-gap: 14px;
}

.cv-warm-copy p,
.cv-ice-copy p,
.cv-cake-copy-new p,
.cv-cold-copy-new p,
.cv-reviews-copy p,
.cv-contact-copy p,
.cv-error-copy p {
    margin-bottom: 26px !important;
}

.cv-hero-photo,
.cv-hero-products article,
.cv-warm-showcase,
.cv-ice-showcase,
.cv-cake-showcase-new,
.cv-cold-showcase-new,
.cv-reviews-panel,
.cv-contact-story,
.cv-map-card,
.cv-error-card,
.cv-ice-hero-products figure,
.cv-cake-dessert-stage figure,
.cv-cold-drink-stage figure {
    box-shadow: var(--cv-shadow) !important;
}

.cv-ice-hero-products figure,
.cv-cake-dessert-stage figure,
.cv-cold-drink-stage figure {
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.cv-ice-hero-products img,
.cv-cake-dessert-stage img,
.cv-cold-drink-stage img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    filter: none !important;
}

.cv-warm-cup,
.cv-warm-leaves {
    filter: none !important;
}

.cv-footer-bottom {
    grid-template-columns: repeat(3, auto);
    align-items: center;
}

.cv-cake-dessert-stage figure {
    background: rgba(255, 244, 218, 0.18) !important;
}

.cv-cake-dessert-stage img,
.cv-ice-hero-products img,
.cv-cold-drink-stage img {
    object-fit: contain !important;
}

.cv-reviews-panel blockquote {
    border-left: 4px solid var(--cv-gold) !important;
    padding-left: 18px;
}

.cv-footer-logo {
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

body.home .cv-header.is-scrolled .cv-header-inner {
    min-height: 56px;
    padding-block: 2px;
}

body.home .cv-header.is-scrolled .cv-brand-logo,
.cv-header.is-scrolled .cv-brand-logo {
    height: 46px;
}

@keyframes cv-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes cv-steam-rise {
    0% {
        opacity: 0.52;
        transform: translateY(10px) scale(0.96);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1.04);
    }
    100% {
        opacity: 0.52;
        transform: translateY(10px) scale(0.96);
    }
}

@keyframes cv-warm-drift {
    0% {
        opacity: 0.28;
        transform: translate3d(0, 0, 0);
    }
    50% {
        opacity: 0.78;
        transform: translate3d(12px, -18px, 0);
    }
    100% {
        opacity: 0.28;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes cv-ice-float {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(8px, -16px, 0) scale(1.04);
    }
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes cv-cake-float {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
    50% {
        transform: translate3d(10px, -14px, 0) rotate(4deg);
    }
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}

@keyframes cv-cold-float {
    0% {
        transform: translate3d(0, 0, 0) rotate(18deg);
    }
    50% {
        transform: translate3d(10px, -18px, 0) rotate(26deg);
    }
    100% {
        transform: translate3d(0, 0, 0) rotate(18deg);
    }
}

@media (max-width: 960px) {
    :root {
        --cv-shell: min(100vw - 28px, 760px);
    }

    .cv-header-inner {
        grid-template-columns: 1fr auto;
    }

    body.home .cv-header {
        inset: 0 0 auto;
    }

    body.home .cv-header-inner {
        width: 100%;
        min-height: 86px;
        padding: 0 18px;
        border-radius: 0;
    }

    .cv-brand-logo,
    body.home .cv-brand-logo {
        height: 72px;
    }

    .cv-nav-toggle {
        display: block;
    }

    .cv-nav {
        position: fixed;
        inset: 78px 14px auto;
        display: none;
        padding: 18px;
        color: var(--cv-cream);
        background: rgba(24, 15, 10, 0.96);
        border: 1px solid var(--cv-line);
        border-radius: var(--cv-radius);
        box-shadow: var(--cv-shadow);
    }

    .cv-nav.is-open {
        display: block;
    }

    .cv-menu {
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
    }

    .cv-menu a {
        display: block;
        padding: 12px;
    }

    .cv-hero-scene,
    .cv-hero-stage,
    .cv-warm-showcase,
    .cv-warm-product-grid,
    .cv-ice-showcase,
    .cv-ice-product-grid,
    .cv-cake-showcase-new,
    .cv-cake-product-strip,
    .cv-cold-showcase-new,
    .cv-cold-product-grid,
    .cv-reviews-story,
    .cv-reviews-panel,
    .cv-contact-story,
    .cv-intro-board,
    .cv-scene-grid,
    .cv-ice-layout,
    .cv-cake-layout,
    .cv-cold-layout,
    .cv-event-layout,
    .cv-motion-plan,
    .cv-split,
    .cv-menu-grid,
    .cv-values,
    .cv-contact,
    .cv-legal,
    .cv-footer-grid {
        grid-template-columns: 1fr;
    }

    .cv-hero-poster {
        padding: 18px 0;
    }

    .cv-hero-frame {
        min-height: calc(100svh - 36px);
    }

    .cv-hero-scene {
        gap: 18px;
        padding: 116px 22px 28px;
    }

    .cv-hero-copy h1 {
        max-width: 560px;
        font-size: clamp(38px, 8vw, 62px);
    }

    .cv-hero-photo img {
        min-height: 360px;
        max-height: none;
    }

    .cv-warm-hero-panel,
    .cv-cake-showcase figure img,
    .cv-cold-stack img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .cv-warm-bottom {
        grid-template-columns: 1fr;
    }

    .cv-warm-story {
        padding: 74px 0 84px;
    }

    .cv-warm-showcase {
        min-height: auto;
    }

    .cv-warm-copy {
        padding: 56px 26px 10px;
    }

    .cv-warm-cup-stage {
        min-height: 500px;
        padding: 0 18px 32px;
    }

    .cv-warm-product-grid {
        margin-top: 16px;
        padding: 0;
    }

    .cv-warm-product {
        min-height: 320px;
    }

    .cv-ice-story {
        padding: 78px 0 86px;
    }

    .cv-ice-showcase {
        min-height: auto;
    }

    .cv-ice-copy {
        padding: 58px 26px 0;
    }

    .cv-ice-hero-products {
        min-height: 560px;
    }

    .cv-ice-note {
        max-width: none;
        margin: 0 26px 34px;
    }

    .cv-ice-main-cup {
        left: 24%;
        width: 52%;
        height: 420px;
    }

    .cv-ice-side-cup {
        width: 30%;
        height: 330px;
    }

    .cv-cake-story {
        padding: 78px 0 86px;
    }

    .cv-cake-showcase-new {
        min-height: auto;
    }

    .cv-cake-copy-new {
        padding: 58px 26px 0;
    }

    .cv-cake-dessert-stage {
        min-height: 540px;
    }

    .cv-cake-main-dessert {
        left: 22%;
        width: 56%;
        height: 380px;
    }

    .cv-cake-side-dessert {
        width: 30%;
        height: 285px;
    }

    .cv-cold-story {
        padding: 78px 0 86px;
    }

    .cv-cold-showcase-new {
        min-height: auto;
    }

    .cv-cold-copy-new {
        padding: 58px 26px 0;
    }

    .cv-cold-drink-stage {
        min-height: 540px;
    }

    .cv-cold-main-drink {
        left: 23%;
        width: 54%;
        height: 400px;
    }

    .cv-cold-side-drink {
        width: 30%;
        height: 310px;
    }

    .cv-event-panels,
    .cv-cake-cards,
    .cv-cold-scene .cv-mini-grid {
        grid-template-columns: 1fr;
    }

    .cv-event-panel {
        min-height: 430px;
    }

    .cv-product-worlds {
        grid-template-columns: 1fr;
    }

    .cv-split-worlds {
        grid-template-columns: 1fr;
        padding: 74px 0;
    }

    .cv-world,
    .cv-world:nth-child(3),
    .cv-world:nth-child(4),
    .cv-party-worlds .cv-world,
    .cv-split-worlds .cv-world {
        grid-column: auto;
        min-height: 430px;
    }

    .cv-menu-gallery {
        grid-template-columns: 1fr;
    }

    .cv-menu-gallery img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .cv-scroll-cards {
        left: 14px;
        right: 14px;
        width: auto;
    }
}

@media (max-width: 620px) {
    .cv-header-inner {
        min-height: 76px;
        padding-inline: 14px;
    }

    .cv-brand-logo,
    body.home .cv-brand-logo {
        height: 60px;
    }

    .cv-hero-stage {
        padding-top: 110px;
        padding-bottom: 90px;
    }

    .cv-hero-poster {
        padding: 14px 0;
    }

    .cv-hero-frame {
        border-radius: 20px;
    }

    .cv-hero-copy h1 {
        font-size: 36px;
        line-height: 1.04;
    }

    .cv-hero-copy p {
        font-size: 15px;
    }

    .cv-hero-photo img {
        min-height: 300px;
    }

    .cv-hero-products {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .cv-hero-products img {
        aspect-ratio: 2.4;
    }

    .cv-warm-story {
        padding: 58px 0 68px;
    }

    .cv-warm-copy h2 {
        font-size: 36px;
        line-height: 1.02;
    }

    .cv-warm-copy p {
        font-size: 15px;
    }

    .cv-warm-cup-stage {
        min-height: 390px;
    }

    .cv-warm-steam-line {
        height: 190px;
    }

    .cv-warm-product div {
        padding: 20px;
    }

    .cv-warm-product h3 {
        font-size: 30px;
    }

    .cv-ice-story {
        padding: 62px 0 70px;
    }

    .cv-ice-copy h2 {
        font-size: 38px;
        line-height: 1;
    }

    .cv-ice-copy p {
        font-size: 15px;
    }

    .cv-ice-hero-products {
        min-height: 430px;
    }

    .cv-ice-main-cup {
        left: 18%;
        bottom: 44px;
        width: 64%;
        height: 330px;
    }

    .cv-ice-side-cup {
        width: 34%;
        height: 250px;
    }

    .cv-ice-product-grid img {
        height: 210px;
    }

    .cv-ice-product-grid h3 {
        font-size: 28px;
    }

    .cv-cake-story {
        padding: 62px 0 70px;
    }

    .cv-cake-copy-new h2 {
        font-size: 36px;
        line-height: 1.02;
    }

    .cv-cake-copy-new p {
        font-size: 15px;
    }

    .cv-cake-dessert-stage {
        min-height: 410px;
    }

    .cv-cake-main-dessert {
        left: 18%;
        bottom: 40px;
        width: 64%;
        height: 300px;
        padding: 22px;
    }

    .cv-cake-side-dessert {
        width: 34%;
        height: 220px;
        padding: 18px;
    }

    .cv-cake-product-strip article {
        min-height: 270px;
    }

    .cv-cake-product-strip h3 {
        font-size: 26px;
    }

    .cv-cold-story {
        padding: 62px 0 70px;
    }

    .cv-cold-copy-new h2 {
        font-size: 36px;
        line-height: 1.02;
    }

    .cv-cold-copy-new p {
        font-size: 15px;
    }

    .cv-cold-drink-stage {
        min-height: 410px;
    }

    .cv-cold-main-drink {
        left: 18%;
        bottom: 40px;
        width: 64%;
        height: 310px;
    }

    .cv-cold-side-drink {
        width: 34%;
        height: 230px;
    }

    .cv-cold-product-grid article {
        min-height: 290px;
        grid-template-rows: 190px auto;
    }

    .cv-cold-product-grid img {
        height: 190px;
    }

    .cv-cold-product-grid h3 {
        font-size: 27px;
    }

    .cv-reviews-story {
        padding: 72px 0 82px;
    }

    .cv-reviews-copy h2 {
        font-size: 36px;
        line-height: 1.02;
    }

    .cv-reviews-copy p {
        font-size: 15px;
    }

    .cv-reviews-panel article {
        min-height: 210px;
        padding: 22px;
    }

    .cv-reviews-panel h3 {
        font-size: 27px;
    }

    .cv-contact-story {
        padding: 72px 0 82px;
    }

    .cv-contact-copy h2 {
        font-size: 36px;
        line-height: 1.02;
    }

    .cv-contact-copy p {
        font-size: 15px;
    }

    .cv-map-card,
    .cv-map-card iframe {
        min-height: 360px;
    }

    .cv-board-title h2,
    .cv-page-hero h1,
    .cv-video-copy h2,
    .cv-motion-copy h2,
    .cv-seo-copy h2,
    .cv-split h2,
    .cv-contact h2 {
        font-size: 38px;
    }

    .cv-world {
        min-height: 390px;
    }

    .cv-category-stage {
        min-height: 92svh;
    }

    .cv-stage-copy {
        padding: 118px 0 110px;
    }

    .cv-world div {
        padding: 24px;
    }

    .cv-scene-grid,
    .cv-ice-layout,
    .cv-cake-layout,
    .cv-cold-layout,
    .cv-event-layout {
        padding: 94px 0;
    }

    .cv-scene-copy h2,
    .cv-ice-hero-card h2,
    .cv-cake-copy h2,
    .cv-event-title h2 {
        font-size: 42px;
    }

    .cv-warm-menu {
        grid-template-columns: 1fr;
    }

    .cv-poster-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .cv-warm-hero-copy {
        padding: 42px 24px;
    }

    .cv-motion-steps {
        grid-template-columns: 1fr;
    }

    .cv-page-hero {
        padding-top: 112px;
    }

    .cv-footer-bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Last mobile/remote override for the current Caviani homepage pass. */
.cv-hero-proof,
.cv-warm-steam-line,
.cv-ice-side-right,
.cv-cake-side-dessert {
    display: none !important;
}

body.home .cv-header.is-scrolled .cv-header-inner {
    min-height: 56px !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

body.home .cv-header.is-scrolled .cv-brand-logo,
.cv-header.is-scrolled .cv-brand-logo {
    height: 46px !important;
}

.cv-footer-logo {
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.cv-reviews-panel blockquote {
    border-left: 4px solid var(--cv-gold) !important;
    padding-left: 18px !important;
}

.cv-ice-main-cup {
    left: 30% !important;
    width: 50% !important;
    height: min(480px, 58svh) !important;
}

.cv-ice-side-left {
    left: 3% !important;
    width: 34% !important;
    height: min(390px, 48svh) !important;
}

.cv-cake-showcase-new {
    background: #6f241e !important;
}

.cv-cake-copy-new .cv-kicker,
.cv-cake-copy-new h2,
.cv-cake-copy-new p {
    color: #fff4da !important;
    text-shadow: 0 16px 36px rgba(35, 12, 8, 0.46) !important;
}

.cv-cake-main-dessert {
    left: 50% !important;
    bottom: 46px !important;
    width: min(54%, 430px) !important;
    height: min(430px, 48svh) !important;
    transform: translateX(-50%) !important;
}

/* Absolute final warm-section correction. */
.cv-warm-scene,
.cv-warm-story,
.cv-warm-showcase {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #170a06 !important;
}

.cv-warm-story {
    padding: 0 !important;
}

.cv-warm-showcase {
    min-height: 100svh !important;
}

.cv-warm-showcase::before,
.cv-warm-showcase::after,
.cv-warm-cup-stage::before {
    content: none !important;
    display: none !important;
}

.cv-warm-cup {
    width: min(340px, 46%) !important;
    max-width: 340px !important;
}

.cv-warm-leaves {
    width: min(170px, 21%) !important;
    max-width: 170px !important;
}

/* Eis correction: no dark rear field, icy front panel, dark text. */
.cv-ice-scene {
    background: #f2fbff !important;
}

.cv-ice-scene::before,
.cv-ice-scene::after {
    content: none !important;
    display: none !important;
}

.cv-ice-story {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    background: transparent !important;
}

.cv-ice-showcase,
.cv-ice-showcase-clean {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #eaf8ff !important;
}

.cv-ice-showcase::before,
.cv-ice-showcase::after,
.cv-ice-showcase-clean::before,
.cv-ice-showcase-clean::after {
    content: none !important;
    display: none !important;
}

.cv-ice-copy .cv-kicker,
.cv-ice-copy h2,
.cv-ice-copy p,
.cv-ice-showcase-clean .cv-ice-copy,
.cv-ice-showcase-clean .cv-ice-copy .cv-kicker,
.cv-ice-showcase-clean .cv-ice-copy h2,
.cv-ice-showcase-clean .cv-ice-copy p {
    color: #17313d !important;
    text-shadow: none !important;
}

.cv-ice-copy .cv-kicker,
.cv-ice-showcase-clean .cv-ice-copy .cv-kicker {
    color: #8c5f00 !important;
}

.cv-ice-slider {
    position: relative;
    overflow: hidden;
    align-self: center;
    width: min(620px, 100%);
    min-height: 640px;
    background: #f8fdff;
    box-shadow: 0 18px 42px rgba(23, 49, 61, 0.12);
}

.cv-ice-slides,
.cv-ice-slide {
    position: absolute;
    inset: 0;
}

.cv-ice-slide {
    margin: 0;
    opacity: 0;
    transform: scale(1.025);
    transition: opacity 650ms ease, transform 900ms ease;
}

.cv-ice-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.cv-ice-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cv-ice-slider-controls {
    position: absolute;
    right: 22px;
    bottom: 20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: rgba(248, 253, 255, 0.82);
    backdrop-filter: blur(10px);
}

.cv-slider-arrow,
.cv-slider-dots button {
    border: 0;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.cv-slider-arrow {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: #17313d;
    background: transparent;
    font-size: 30px;
    line-height: 1;
}

.cv-slider-arrow:hover,
.cv-slider-arrow:focus-visible {
    color: #8c5f00;
    transform: translateY(-1px);
}

.cv-slider-dots {
    display: flex;
    gap: 7px;
}

.cv-slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    background: rgba(23, 49, 61, 0.28);
}

.cv-slider-dots button.is-active,
.cv-slider-dots button:hover,
.cv-slider-dots button:focus-visible {
    background: #8c5f00;
    transform: scale(1.2);
}

@media (max-width: 980px) {
    .cv-ice-slider {
        width: min(520px, 100%);
        min-height: 580px;
        margin-inline: auto;
    }
}

@media (max-width: 640px) {
    .cv-ice-slider {
        min-height: 520px;
    }
}

/* Kuchen image additions. */
.cv-cake-scene {
    background: #6f241e !important;
}

.cv-cake-parallax {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: clamp(420px, 72svh, 760px);
    background: #160b09;
}

.cv-cake-parallax img {
    position: absolute;
    inset: -9% 0;
    display: block;
    width: 100%;
    height: 118%;
    object-fit: cover;
    object-position: center;
    transform: translate3d(0, var(--cv-parallax-y, 0px), 0);
    transition: transform 120ms linear;
}

.cv-cake-parallax::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 8, 7, 0.58), rgba(18, 8, 7, 0.08) 48%, rgba(18, 8, 7, 0.38));
    pointer-events: none;
}

.cv-cake-dessert-stage {
    overflow: visible !important;
}

.cv-cake-chocolate-dessert {
    position: absolute;
    right: 8%;
    bottom: 64px;
    z-index: 3;
    width: min(32%, 320px);
    height: min(32vw, 320px);
    min-height: 220px;
    margin: 0;
    background: transparent !important;
    box-shadow: 0 18px 38px rgba(38, 10, 8, 0.18);
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.cv-cake-chocolate-dessert:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(38, 10, 8, 0.24);
}

.cv-cake-chocolate-dessert img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 760px) {
    .cv-cake-parallax {
        height: 420px;
    }

    .cv-cake-parallax img {
        inset: 0;
        height: 100%;
        transform: none !important;
    }

.cv-cake-chocolate-dessert {
        right: 8%;
        bottom: 34px;
        width: 38%;
        height: 190px;
        min-height: 0;
    }
}

/* Kuchen correction: keep pink mood, remove red field and Yazdi frame. */
.cv-cake-scene,
.cv-cake-showcase-new {
    background: #f4c8cf !important;
}

.cv-cake-main-dessert {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.cv-cake-main-dessert img {
    object-fit: cover !important;
}

/* SEO/motion asset pass: restrained parallax alpha layers. */
.cv-warm-showcase,
.cv-cake-showcase-new,
.cv-cold-showcase-new,
.cv-event-banner {
    position: relative !important;
    overflow: hidden !important;
}

.cv-warm-bg,
.cv-cake-bg,
.cv-cold-sky-bg,
.cv-event-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    pointer-events: none !important;
}

.cv-warm-bg {
    opacity: 0.34 !important;
    filter: saturate(0.9) brightness(0.7) !important;
}

.cv-cold-sky-bg {
    opacity: 0.42 !important;
    filter: saturate(0.9) brightness(1.08) !important;
}

.cv-float-layer {
    position: absolute;
    z-index: 4;
    display: block;
    pointer-events: none;
    user-select: none;
    transform: translate3d(0, calc(var(--cv-parallax-y, 0px) * var(--cv-float-depth, 0.95)), 0);
    transition: transform 120ms linear;
}

.cv-float-spices {
    --cv-float-depth: -0.36;
    right: 5%;
    bottom: 2%;
    width: min(270px, 24vw);
    opacity: 0.9;
}

.cv-cake-main-dessert {
    z-index: 4 !important;
    width: min(42%, 360px) !important;
    height: auto !important;
}

.cv-cake-main-dessert img {
    height: auto !important;
    object-fit: contain !important;
}

.cv-float-yazdi-one {
    --cv-float-depth: -0.52;
    left: 7%;
    bottom: 34px;
    width: min(220px, 18vw);
}

.cv-float-yazdi-two {
    --cv-float-depth: 0.34;
    right: 6%;
    top: 18%;
    width: min(190px, 16vw);
}

.cv-float-strawberry {
    --cv-float-depth: -0.52;
    left: 7%;
    top: 10%;
    width: min(190px, 18vw);
}

.cv-float-lemon {
    --cv-float-depth: 0.42;
    right: 8%;
    top: 9%;
    width: min(150px, 14vw);
}

.cv-float-orange {
    --cv-float-depth: -0.28;
    left: 48%;
    bottom: 7%;
    width: min(140px, 13vw);
}

.cv-float-leaf-one {
    --cv-float-depth: 0.6;
    right: 20%;
    bottom: 13%;
    width: min(70px, 7vw);
    transform: translate3d(0, calc(var(--cv-parallax-y, 0px) * var(--cv-float-depth, 0.95)), 0) rotate(-18deg);
}

.cv-float-leaf-two {
    --cv-float-depth: -0.46;
    left: 20%;
    bottom: 17%;
    width: min(72px, 7vw);
    transform: translate3d(0, calc(var(--cv-parallax-y, 0px) * var(--cv-float-depth, 0.95)), 0) rotate(22deg);
}

.cv-float-acai-bowl {
    --cv-float-depth: -0.18;
    right: 5%;
    bottom: 4%;
    width: min(210px, 18vw);
    opacity: 0.92;
}

.cv-float-berries {
    --cv-float-depth: 0.5;
    left: 36%;
    top: 7%;
    width: min(150px, 14vw);
    opacity: 0.9;
}

.cv-cold-copy-new,
.cv-cold-photo,
.cv-event-copy {
    position: relative;
    z-index: 5;
}

.cv-event-scene {
    background: #0e3f2a !important;
}

.cv-event-banner {
    min-height: 72svh;
    display: grid;
    align-items: center;
    padding: 120px max(28px, calc((100vw - 1180px) / 2));
}

.cv-event-bg {
    transform: translate3d(0, calc(var(--cv-parallax-y, 0px) * -0.75), 0) scale(1.16);
    transform-origin: center;
}

.cv-event-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 49, 31, 0.88), rgba(7, 49, 31, 0.42) 48%, rgba(7, 49, 31, 0.04));
}

.cv-event-copy {
    max-width: 590px;
    color: #fff8df;
}

.cv-event-copy .cv-kicker {
    color: var(--cv-gold);
}

.cv-event-copy h2 {
    margin: 0 0 22px;
    color: #fff8df;
    font-size: clamp(42px, 5.2vw, 82px);
    font-weight: 400;
    line-height: 0.98;
}

.cv-event-copy p {
    max-width: 560px;
    margin: 0 0 34px;
    color: rgba(255, 248, 223, 0.86);
    font-size: 19px;
    line-height: 1.7;
}

@media (max-width: 760px) {
    .cv-float-spices,
    .cv-float-yazdi-one,
    .cv-float-yazdi-two,
    .cv-float-strawberry,
    .cv-float-lemon,
    .cv-float-orange,
    .cv-float-leaf-one,
    .cv-float-leaf-two,
    .cv-float-acai-bowl,
    .cv-float-berries {
        opacity: 0.5;
        transform: none !important;
    }

    .cv-event-banner {
        min-height: 620px;
        padding: 108px 24px 72px;
    }

    .cv-event-copy h2 {
        font-size: 42px;
    }
}

/* Kuchen correction: keep dessert visuals human-sized. */
.cv-cake-dessert-stage {
    min-height: 420px !important;
    overflow: visible !important;
}

.cv-cake-main-dessert {
    left: auto !important;
    right: 25% !important;
    bottom: 64px !important;
    width: min(220px, 18vw) !important;
    max-width: 220px !important;
    height: auto !important;
    transform: none !important;
}

.cv-cake-main-dessert img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

/* Final Eis correction: no menu/poster images, no cropping. */
.cv-ice-slider {
    background: #eaf8ff !important;
}

.cv-ice-slide img {
    object-fit: contain !important;
    object-position: center !important;
    background: #eaf8ff !important;
}

/* Eis alignment correction: center the text and poster as one balanced block. */
.cv-ice-showcase,
.cv-ice-showcase-clean {
    display: grid !important;
    grid-template-columns: minmax(420px, 560px) minmax(520px, 620px) !important;
    justify-content: center !important;
    align-items: center !important;
    column-gap: clamp(80px, 7vw, 150px) !important;
    padding: clamp(92px, 10vh, 132px) clamp(64px, 8vw, 150px) !important;
}

.cv-ice-copy,
.cv-ice-showcase-clean .cv-ice-copy {
    padding: 0 !important;
    max-width: 560px !important;
}

.cv-ice-slider {
    justify-self: end !important;
    width: min(620px, 100%) !important;
}

@media (max-width: 980px) {
    .cv-hero-copy {
        padding-top: 0 !important;
    }

    .cv-ice-showcase,
    .cv-ice-showcase-clean {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
        padding: 86px clamp(24px, 7vw, 48px) !important;
    }

    .cv-ice-slider {
        justify-self: center !important;
        width: min(620px, 100%) !important;
    }
}

/* Kuchen text correction: light pink background needs dark readable copy. */
.cv-cake-showcase-new .cv-cake-copy-new,
.cv-cake-showcase-new .cv-cake-copy-new .cv-kicker,
.cv-cake-showcase-new .cv-cake-copy-new h2,
.cv-cake-showcase-new .cv-cake-copy-new p {
    color: #35140f !important;
    text-shadow: none !important;
}

.cv-cake-showcase-new .cv-cake-copy-new .cv-kicker {
    color: #8a4b11 !important;
}

/* Kalte Getraenke correction: remove the dark green outer background. */
.cv-cold-scene {
    color: #123b35 !important;
    background: #dff7f3 !important;
}

.cv-cold-showcase-new,
.cv-cold-showcase-clean {
    color: #123b35 !important;
    background: #a8ddcf !important;
}

.cv-cold-copy-new .cv-kicker,
.cv-cold-copy-new h2,
.cv-cold-copy-new p,
.cv-cold-showcase-clean .cv-cold-copy-new h2,
.cv-cold-showcase-clean .cv-cold-copy-new p {
    color: #123b35 !important;
    text-shadow: none !important;
}

.cv-cold-copy-new .cv-kicker {
    color: #7d5b00 !important;
}

/* Reviews correction: star icons and a Google-flavored action. */
.cv-review-stars {
    display: inline-flex !important;
    gap: 2px !important;
    color: #fbbc04 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
}

.cv-google-button {
    gap: 10px !important;
    color: #202124 !important;
    background: #ffffff !important;
    border: 1px solid rgba(218, 220, 224, 0.95) !important;
    box-shadow: 0 10px 24px rgba(66, 133, 244, 0.1) !important;
}

.cv-google-mark {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc04 0 75%, #ea4335 0);
    font-weight: 760;
    font-size: 15px;
    line-height: 1;
}

.cv-google-button:hover,
.cv-google-button:focus-visible {
    color: #202124 !important;
    background: #ffffff !important;
    border-color: rgba(66, 133, 244, 0.68) !important;
    box-shadow: 0 14px 30px rgba(66, 133, 244, 0.18), 0 0 0 3px rgba(251, 188, 4, 0.16) !important;
}

/* Legal pages correction: readable, calmer typography for Impressum/Datenschutz. */
.cv-page-hero {
    padding-top: 170px !important;
}

.cv-page-hero h1 {
    max-width: 900px !important;
    color: #fff4da !important;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: clamp(42px, 5vw, 72px) !important;
    font-weight: 360 !important;
    line-height: 1.05 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
}

.cv-page-hero p {
    color: rgba(255, 244, 218, 0.78) !important;
    font-size: 18px !important;
    line-height: 1.7 !important;
}

.cv-legal {
    gap: 20px !important;
}

.cv-legal-card {
    padding: 30px !important;
    background: rgba(255, 240, 205, 0.055) !important;
    border-color: rgba(255, 240, 205, 0.16) !important;
    box-shadow: none !important;
}

.cv-legal-card h2 {
    color: #f4bd45 !important;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: clamp(22px, 2.2vw, 34px) !important;
    font-weight: 430 !important;
    line-height: 1.14 !important;
    letter-spacing: 0 !important;
    text-shadow: none !important;
}

.cv-legal-card p {
    color: rgba(255, 244, 218, 0.78) !important;
    font-size: 16px !important;
    line-height: 1.72 !important;
}

.cv-legal-card strong {
    color: #fff4da !important;
    font-weight: 620 !important;
}

.cv-legal-card a {
    color: #ffd36a !important;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.cv-cake-chocolate-dessert {
    right: 8% !important;
    bottom: 86px !important;
    width: min(190px, 15vw) !important;
    height: min(190px, 15vw) !important;
    min-height: 150px !important;
    box-shadow: 0 10px 24px rgba(38, 10, 8, 0.12) !important;
}

.cv-float-yazdi-one,
.cv-float-yazdi-two {
    display: none !important;
}

@media (max-width: 760px) {
    .cv-cake-dessert-stage {
        min-height: 300px !important;
    }

    .cv-cake-main-dessert {
        right: 36% !important;
        bottom: 44px !important;
        width: 150px !important;
    }

    .cv-cake-chocolate-dessert {
        right: 8% !important;
        bottom: 58px !important;
        width: 130px !important;
        height: 130px !important;
        min-height: 0 !important;
    }
}

/* Absolute final cold-drinks fix: sky goes full-width, composition does not. */
.cv-cold-scene {
    background: #dff7f3 !important;
    overflow: hidden !important;
}

.cv-cold-story {
    width: min(100% - 48px, 1420px) !important;
    max-width: 1420px !important;
    margin: 0 auto !important;
    padding: clamp(74px, 7vw, 110px) 0 !important;
}

.cv-cold-showcase-new,
.cv-cold-showcase-clean {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(280px, 0.82fr) minmax(480px, 1.18fr) !important;
    align-items: center !important;
    gap: clamp(34px, 5vw, 78px) !important;
    width: 100% !important;
    max-width: 1420px !important;
    min-height: min(760px, 86svh) !important;
    margin: 0 auto !important;
    padding: clamp(68px, 6vw, 98px) clamp(48px, 6vw, 92px) !important;
    overflow: visible !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.cv-cold-sky-bg {
    position: absolute !important;
    inset: 0 auto 0 50% !important;
    z-index: 0 !important;
    width: 100vw !important;
    max-width: none !important;
    height: 100% !important;
    transform: translateX(-50%) translate3d(0, calc(var(--cv-parallax-y, 0px) * -0.32), 0) scale(1.08) !important;
    transform-origin: center !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 0.58 !important;
    pointer-events: none !important;
}

.cv-cold-copy-new,
.cv-cold-photo,
.cv-cold-showcase-new .cv-float-layer,
.cv-cold-showcase-clean .cv-float-layer {
    position: relative !important;
    z-index: 2 !important;
}

.cv-cold-copy-new {
    max-width: 520px !important;
}

.cv-cold-photo {
    width: min(520px, 38vw) !important;
    max-width: 520px !important;
    justify-self: end !important;
}

.cv-cold-photo img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

@media (max-width: 980px) {
    .cv-cold-story {
        width: 100% !important;
        padding: 58px 22px !important;
    }

    .cv-cold-showcase-new,
    .cv-cold-showcase-clean {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
        padding: 64px 24px !important;
    }

    .cv-cold-photo {
        width: min(360px, 82vw) !important;
        justify-self: center !important;
    }
}

/* Absolute final birthday fix: anchor image from the bottom and make it taller. */
.cv-event-banner {
    min-height: clamp(780px, 88svh, 980px) !important;
    padding-top: clamp(130px, 12vw, 190px) !important;
    padding-bottom: clamp(110px, 11vw, 170px) !important;
}

.cv-event-bg {
    inset: -8% 0 -4% !important;
    height: 112% !important;
    object-position: center bottom !important;
    transform: translate3d(0, calc(var(--cv-parallax-y, 0px) * -0.88), 0) scale(1.12) !important;
}

@media (max-width: 760px) {
    .cv-event-banner {
        min-height: 760px !important;
        padding-top: 118px !important;
        padding-bottom: 120px !important;
    }

    .cv-event-bg {
        inset: -4% 0 -2% !important;
        height: 106% !important;
        object-position: left bottom !important;
        transform: translate3d(0, calc(var(--cv-parallax-y, 0px) * -0.48), 0) scale(1.08) !important;
    }
}
/* EOF final cold drinks sizing: full-width sky only, normal section height. */
.cv-cold-scene {
    position: relative !important;
    min-height: 0 !important;
    height: auto !important;
    background-color: #dff7f3 !important;
    background-image: url("../img/kalte-getraenke/caviani-sommerhimmel-kalte-getraenke-bg.webp") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
    padding: 0 !important;
}

.cv-cold-story {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cv-cold-showcase-new,
.cv-cold-showcase-clean {
    width: min(100% - 96px, 1420px) !important;
    max-width: 1420px !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: clamp(54px, 5vw, 80px) clamp(42px, 5vw, 78px) !important;
    grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1fr) !important;
    align-items: center !important;
    gap: clamp(34px, 4vw, 66px) !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.cv-cold-sky-bg {
    display: none !important;
}

.cv-cold-copy-new,
.cv-cold-photo {
    position: relative !important;
    z-index: 2 !important;
}

.cv-cold-showcase-new .cv-float-layer,
.cv-cold-showcase-clean .cv-float-layer {
    position: absolute !important;
    z-index: 3 !important;
    pointer-events: none !important;
}

.cv-cold-photo {
    width: min(500px, 36vw) !important;
    max-width: 500px !important;
    justify-self: end !important;
}

.cv-cold-photo img {
    display: block !important;
    width: 100% !important;
    max-height: 520px !important;
    height: auto !important;
    object-fit: contain !important;
}

@media (max-width: 980px) {
    .cv-cold-showcase-new,
    .cv-cold-showcase-clean {
        width: min(100% - 36px, 720px) !important;
        grid-template-columns: 1fr !important;
        padding: 52px 22px !important;
    }

    .cv-cold-photo {
        width: min(390px, 84vw) !important;
        justify-self: center !important;
    }
}
