:root {
    --ivory: #fdf6e3;
    --paper: #fffdf7;
    --ink: #0f3d27;
    --muted: #5b6b60;
    --gold: #f5a800;
    --gold-soft: #ffd873;
    --line: rgba(15, 61, 39, 0.16);
    --display: "Bodoni MT", Didot, Baskerville, "Times New Roman", serif;
    --sans: "Avenir Next", "Century Gothic", Futura, sans-serif;
    --shell: min(92vw, 1440px);
    --header-h: 100px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--gold) var(--ivory);
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
}

::selection {
    background: var(--gold);
    color: var(--ink);
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    padding: 10px 16px;
    transform: translateY(-160%);
    background: var(--ink);
    color: var(--paper);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    margin: 0 0 20px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.2;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.94;
}

h1 em,
h2 em {
    color: var(--gold);
    font-weight: inherit;
}

.scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 99;
    height: 2px;
    background: transparent;
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: left;
    background: var(--gold);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 60;
    height: var(--header-h);
    border-bottom: 1px solid transparent;
    transition: background 300ms ease, border-color 300ms ease, height 300ms ease;
}

.site-header.is-scrolled {
    height: 80px;
    border-bottom-color: var(--line);
    background: rgba(253, 246, 227, 0.95);
    backdrop-filter: blur(12px);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    position: relative;
    z-index: 2;
    display: flex;
    width: auto;
    height: 92px;
    flex: 0 0 auto;
    align-items: center;
    aspect-ratio: 479 / 456;
    transition: height 300ms var(--ease), transform 300ms var(--ease);
}

.brand img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-header.is-scrolled .brand {
    height: 76px;
}

.brand:hover {
    transform: translateY(-2px);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(26px, 3vw, 54px);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.desktop-nav a {
    position: relative;
    padding: 8px 0;
    font-weight: 700;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 350ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.menu-toggle {
    position: relative;
    z-index: 2;
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 8px;
    width: 28px;
    height: 1px;
    background: var(--ink);
    transition: transform 300ms var(--ease), top 300ms var(--ease);
}

.menu-toggle span:first-child {
    top: 17px;
}

.menu-toggle span:last-child {
    top: 27px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    top: 22px;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
    top: 22px;
    transform: rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: none;
    align-content: center;
    padding: 120px 7vw 60px;
    background: var(--ivory);
    opacity: 0;
    visibility: hidden;
    transition: opacity 350ms ease, visibility 350ms ease;
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(2.3rem, 10vw, 4rem);
    line-height: 1;
}

.mobile-nav a span {
    color: var(--gold);
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
}

.hero {
    position: relative;
    min-height: 780px;
    height: max(780px, 94svh);
    overflow: hidden;
    background: var(--ivory);
    isolation: isolate;
}

.hero__picture,
.hero__picture img,
.hero__wash,
.hero__glow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__picture img {
    object-fit: cover;
    object-position: center;
}

.hero__wash {
    z-index: 1;
    background: linear-gradient(90deg, rgba(253, 246, 227, 0.96) 0%, rgba(253, 246, 227, 0.82) 31%, rgba(253, 246, 227, 0.04) 59%);
}

.hero__glow {
    z-index: 2;
    pointer-events: none;
    opacity: 0.36;
    background: radial-gradient(circle 280px at var(--hero-x, 70%) var(--hero-y, 42%), rgba(255, 255, 255, 0.44), transparent 75%);
}

.hero__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    padding-top: var(--header-h);
}

.hero__content>* {
    max-width: 650px;
}

.hero h1 {
    max-width: 700px;
    margin: 0 0 28px;
    font-size: clamp(4.7rem, 9vw, 9rem);
}

.hero__lede {
    max-width: 490px;
    margin-bottom: 36px;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.24rem);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 32px;
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 230px;
    gap: 36px;
    padding: 17px 19px;
    border: 1px solid var(--ink);
    overflow: hidden;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 350ms ease, border-color 350ms ease;
}

.button::before {
    position: absolute;
    inset: 0;
    content: "";
    background: var(--gold);
    transform: translateX(-102%);
    transition: transform 500ms var(--ease);
}

.button>* {
    position: relative;
    z-index: 1;
}

.button i {
    font-size: 1rem;
    transition: transform 350ms var(--ease);
}

.button:hover::before,
.button:focus-visible::before {
    transform: translateX(0);
}

.button:hover i,
.button:focus-visible i {
    transform: translate(3px, -3px);
}

.button--dark {
    background: var(--ink);
    color: var(--paper);
}

.button--dark:hover,
.button--dark:focus-visible {
    border-color: var(--gold);
    color: var(--ink);
}

.text-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--ink);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 250ms ease, border-color 250ms ease;
}

.text-link span {
    transition: transform 250ms var(--ease);
}

.text-link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.text-link:hover span {
    transform: translateX(4px);
}

.ticker {
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: var(--paper);
}

.ticker__track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: ticker 34s linear infinite;
    font-family: var(--display);
    font-size: clamp(1.1rem, 2vw, 1.65rem);
    white-space: nowrap;
    will-change: transform;
}

.ticker__group {
    display: flex;
    min-width: 100vw;
    flex-shrink: 0;
    align-items: center;
    justify-content: space-around;
    gap: clamp(24px, 2.6vw, 42px);
    padding: 15px clamp(18px, 2vw, 34px);
}

.ticker__group span {
    font-style: italic;
}

.ticker__group i {
    flex: 0 0 auto;
    color: var(--gold);
    font-size: 0.5rem;
}

@keyframes ticker {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

.section {
    padding: clamp(100px, 12vw, 180px) 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.7fr;
    align-items: end;
    gap: 8vw;
    margin-bottom: 78px;
}

.section-heading h2,
.story h2 {
    margin: 0;
    font-size: clamp(3.5rem, 7vw, 7rem);
}

.section-heading>p {
    max-width: 460px;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 1.03rem;
    line-height: 1.8;
}

.deals {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.deals:not(:empty) {
    margin-bottom: clamp(76px, 8vw, 118px);
}

.deal-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(360px, 0.68fr);
    min-height: 650px;
    overflow: hidden;
    border: 1px solid rgba(245, 168, 0, 0.52);
    background: var(--ink);
    box-shadow: 0 28px 70px rgba(15, 61, 39, 0.12);
    color: var(--paper);
}

.deal-card::after {
    position: absolute;
    inset: 12px;
    z-index: 2;
    border: 1px solid rgba(245, 168, 0, 0.2);
    content: "";
    pointer-events: none;
}

.deal-card__visual {
    position: relative;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    background: var(--ivory);
}

.deal-card__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 74%, rgba(15, 61, 39, 0.16));
    content: "";
    pointer-events: none;
}

.deal-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 900ms var(--ease), filter 500ms ease;
}

.deal-card:hover .deal-card__visual img {
    transform: scale(1.025);
    filter: saturate(1.025) contrast(1.01);
}

.deal-card__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(46px, 4.3vw, 72px) clamp(38px, 3.8vw, 64px);
}

.deal-card__intro {
    min-width: 0;
}

.deal-card__content .eyebrow {
    margin-bottom: 18px;
    color: var(--gold);
}

.deal-card__content h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(4.2rem, 5.4vw, 6.4rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.82;
}

.deal-card__lead {
    margin: 25px 0 0;
    color: var(--paper);
    font-family: var(--display);
    font-size: clamp(1.35rem, 1.9vw, 1.95rem);
    font-style: italic;
    line-height: 1.2;
}

.deal-card__description {
    max-width: 550px;
    margin: 18px 0 0;
    color: rgba(253, 246, 227, 0.68);
    font-size: 0.9rem;
    line-height: 1.75;
}

.deal-card__contents {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 32px 0 0;
    padding: 0;
    border-top: 1px solid rgba(253, 246, 227, 0.16);
    border-left: 1px solid rgba(253, 246, 227, 0.16);
    list-style: none;
}

.deal-card__contents li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 12px 11px;
    border-right: 1px solid rgba(253, 246, 227, 0.16);
    border-bottom: 1px solid rgba(253, 246, 227, 0.16);
}

.deal-card__contents strong {
    color: var(--gold);
    font-family: var(--display);
    font-size: 1.35rem;
    font-weight: 400;
}

.deal-card__contents span {
    color: rgba(253, 246, 227, 0.76);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    line-height: 1.35;
}

.deal-card__offer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 26px;
    margin-top: 32px;
}

.deal-card__price {
    display: flex;
    align-items: baseline;
    gap: 9px;
    white-space: nowrap;
}

.deal-card__price span {
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.deal-card__price strong {
    font-family: var(--display);
    font-size: clamp(3rem, 4vw, 4.6rem);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 0.78;
}

.deal-card__delivery {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 8px;
    padding-bottom: 2px;
}

.deal-card__delivery>span {
    display: grid;
    width: 24px;
    height: 24px;
    grid-row: 1 / 3;
    place-items: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 900;
}

.deal-card__delivery strong {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.deal-card__delivery small {
    margin-top: 2px;
    color: rgba(253, 246, 227, 0.5);
    font-size: 0.66rem;
}

.deal-card__order {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 27px;
    padding: 18px 20px;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 300ms ease, color 300ms ease;
}

.deal-card__order span {
    font-size: 1rem;
    transition: transform 300ms var(--ease);
}

.deal-card__order:hover,
.deal-card__order:focus-visible {
    background: var(--paper);
}

.deal-card__order:hover span,
.deal-card__order:focus-visible span {
    transform: translate(4px, -4px);
}

.menu-tabs {
    display: flex;
    gap: clamp(10px, 2vw, 30px);
    margin-bottom: 48px;
    border-bottom: 1px solid var(--line);
}

.menu-tabs__tab {
    position: relative;
    padding: 14px 4px 18px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 250ms ease;
}

.menu-tabs__tab::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 350ms var(--ease);
}

.menu-tabs__tab:hover,
.menu-tabs__tab:focus-visible,
.menu-tabs__tab[aria-selected="true"] {
    color: var(--ink);
}

.menu-tabs__tab[aria-selected="true"]::after {
    transform: scaleX(1);
}

.menu-panel {
    animation: menu-panel-in 400ms var(--ease);
}

@keyframes menu-panel-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-panel__note {
    margin: 0 0 28px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.menu-status {
    margin: 0;
    padding: 60px 0;
    color: var(--muted);
    font-size: 0.95rem;
    text-align: center;
}

.menu-status--error {
    color: #b3261e;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 0 44px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.product-card {
    --rx: 0deg;
    --ry: 0deg;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 26px 24px 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry));
    transform-style: preserve-3d;
    transition: transform 260ms ease, background 350ms ease;
}

.product-card:hover {
    background: rgba(255, 253, 247, 0.7);
}

.product-card__number {
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.product-card__visual {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #fff;
}

.product-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms var(--ease), filter 500ms ease;
}

.product-card:hover .product-card__visual img {
    transform: scale(1.045);
    filter: saturate(1.04) contrast(1.02);
}

.product-card__note {
    position: absolute;
    right: 13px;
    bottom: 13px;
    padding: 8px 10px;
    background: rgba(15, 61, 39, 0.92);
    color: var(--paper);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: translateY(6px);
    opacity: 0;
    transition: transform 350ms var(--ease), opacity 350ms ease;
}

.product-card:hover .product-card__note {
    transform: translateY(0);
    opacity: 1;
}

.product-card__body {
    display: grid;
    flex: 1;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 20px;
    padding: 28px 0 24px;
}

.product-card h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(1.5rem, 1.9vw, 2rem);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.product-card__price {
    text-align: right;
    white-space: nowrap;
}

.product-card__price span,
.product-card__price small {
    display: block;
}

.product-card__price span {
    font-size: 1.08rem;
    font-weight: 700;
}

.product-card__price small {
    margin-top: 5px;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.025em;
}

.product-card__actions {
    display: grid;
    width: calc(100% + 48px);
    grid-template-columns: 1fr 1fr;
    margin-top: auto;
    margin-left: -24px;
    border-top: 1px solid var(--line);
}

.product-card__button,
.product-card__order {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 16px 14px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 0.61rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 300ms ease, color 300ms ease;
}

.product-card__button {
    border-right: 1px solid var(--line);
}

.product-card__order {
    background: var(--ink);
    color: var(--paper);
}

.product-card__button span,
.product-card__order span {
    flex: 0 0 auto;
    transition: transform 300ms var(--ease);
}

.product-card__button:hover,
.product-card__button:focus-visible {
    background: rgba(245, 168, 0, 0.16);
}

.product-card__order:hover,
.product-card__order:focus-visible {
    background: var(--gold);
    color: var(--ink);
}

.product-card__button:hover span,
.product-card__order:hover span {
    transform: translate(3px, -3px);
}

.delivery-note {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 14px;
    margin: 42px auto 0;
    padding: 12px 16px;
    border: 1px solid rgba(245, 168, 0, 0.42);
    background: rgba(245, 168, 0, 0.09);
    color: var(--muted);
    font-size: 0.9rem;
}

.delivery-note strong {
    color: var(--ink);
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.delivery-note span {
    font-weight: 700;
}

.story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 820px;
    background: var(--paper);
}

.story__media {
    position: relative;
    min-height: 680px;
    overflow: hidden;
}

.story__media picture,
.story__media img {
    width: 100%;
    height: 100%;
}

.story__media img {
    object-fit: cover;
    transform: scale(1.04);
}

.story__stamp {
    position: absolute;
    right: 26px;
    bottom: 26px;
    display: grid;
    width: 128px;
    aspect-ratio: 1;
    place-content: center;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 50%;
    background: rgba(15, 61, 39, 0.9);
    color: var(--paper);
    text-align: center;
    animation: stamp-spin 20s linear infinite;
}

.story__stamp span,
.story__stamp b {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.story__stamp b {
    color: var(--gold);
}

@keyframes stamp-spin {
    to {
        transform: rotate(360deg);
    }
}

.story__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(70px, 9vw, 150px);
    background-image: linear-gradient(140deg, transparent 74%, rgba(245, 168, 0, 0.13) 74.1% 74.35%, transparent 74.45%);
}

.story__copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin: 44px 0 58px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.75;
}

.story__facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid var(--line);
}

.story__facts div {
    padding: 18px 14px 18px 0;
    border-right: 1px solid var(--line);
}

.story__facts div:not(:first-child) {
    padding-left: 18px;
}

.story__facts div:last-child {
    border-right: 0;
}

.story__facts strong,
.story__facts span {
    display: block;
}

.story__facts strong {
    margin-bottom: 4px;
    color: var(--gold);
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
}

.story__facts span {
    color: var(--muted);
    font-size: 0.66rem;
    line-height: 1.4;
}

.closing-line {
    padding: clamp(50px, 6vw, 80px) 0;
    overflow: hidden;
    border-top: 1px solid var(--line);
}

.closing-line__track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: ticker 30s linear infinite;
    will-change: transform;
}

.closing-line__group {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
    padding-right: clamp(28px, 4vw, 56px);
}

.closing-line__group p {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(2.4rem, 5.6vw, 6rem);
    letter-spacing: -0.04em;
    line-height: 1;
    white-space: nowrap;
}

.closing-line__icon {
    display: flex;
    flex: 0 0 auto;
    width: clamp(38px, 4.2vw, 58px);
    height: clamp(38px, 4.2vw, 58px);
    color: var(--gold);
}

.closing-line__icon svg,
.closing-line__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 10vw, 150px) 0 26px;
    background: var(--ink);
    color: var(--paper);
    isolation: isolate;
}

.site-footer__shape {
    position: absolute;
    z-index: -1;
    top: 40px;
    right: -120px;
    width: min(50vw, 670px);
    aspect-ratio: 0.9;
    opacity: 0.45;
    transform: rotate(-2deg);
}

.site-footer__shape::before,
.site-footer__shape::after,
.site-footer__shape i {
    position: absolute;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.65);
}

.site-footer__shape::before {
    inset: 0 25% 20% 5%;
    transform: skew(-22deg);
}

.site-footer__shape::after {
    right: 25%;
    bottom: 20%;
    width: 34%;
    height: 35%;
    border-color: var(--gold);
    border-left: 0;
    transform: skewY(-26deg);
}

.site-footer__shape i {
    inset: 13% 6% 3% 33%;
    border-left: 0;
    transform: skew(16deg);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(520px, 1fr);
    gap: clamp(56px, 8vw, 140px);
}

.footer-lead h2 {
    margin: 0;
    font-size: clamp(3.7rem, 6.2vw, 7rem);
}

.footer-lead__copy {
    max-width: 680px;
    margin: 34px 0 0;
    color: rgba(255, 253, 247, 0.62);
    font-size: clamp(1rem, 1.25vw, 1.22rem);
    line-height: 1.75;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: end;
    gap: clamp(28px, 4vw, 58px);
}

.footer-links h3 {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    width: fit-content;
    margin: 9px 0;
    color: rgba(255, 255, 255, .7);
    font-size: 0.94rem;
    line-height: 1.5;
    transition: color 200ms ease, transform 250ms var(--ease);
}

.footer-links a:hover {
    color: var(--paper);
    transform: translateX(4px);
}

.footer-bottom {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: end;
    gap: 20px;
    margin-top: 70px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.footer-bottom__logo {
    display: flex;
    width: 150px;
    height: 140px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: #fff;
    border-radius: 58% 42% 65% 35% / 45% 58% 42% 55%;
}

.footer-bottom img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: 0.76rem;
}

.footer-bottom a {
    justify-self: end;
}

.footer-bottom a span {
    display: inline-block;
    margin-left: 6px;
    color: var(--gold);
    transition: transform 250ms var(--ease);
}

.footer-bottom a:hover span {
    transform: translateY(-4px);
}

.floating-whatsapp {
    position: fixed;
    right: clamp(18px, 2.4vw, 36px);
    bottom: clamp(18px, 2.4vw, 36px);
    z-index: 70;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    opacity: 1;
    box-shadow: 0 14px 36px rgba(15, 81, 42, 0.3);
    transition: transform 250ms var(--ease), background 250ms ease, box-shadow 250ms ease, opacity 250ms ease;
}

body.menu-open .floating-whatsapp {
    opacity: 0;
    pointer-events: none;
}

.floating-whatsapp img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.floating-whatsapp>span {
    position: absolute;
    right: calc(100% + 12px);
    width: max-content;
    padding: 9px 12px;
    border-radius: 2px;
    background: var(--ink);
    color: var(--paper);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    opacity: 0;
    pointer-events: none;
    text-transform: uppercase;
    transform: translateX(6px);
    transition: opacity 200ms ease, transform 250ms var(--ease);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
    background: #20bd5a;
    box-shadow: 0 18px 42px rgba(15, 81, 42, 0.4);
    transform: translateY(-3px) scale(1.04);
}

.floating-whatsapp:hover>span,
.floating-whatsapp:focus-visible>span {
    opacity: 1;
    transform: translateX(0);
}

.product-dialog {
    width: min(980px, 92vw);
    max-height: 90svh;
    padding: 0;
    border: 0;
    background: var(--ivory);
    color: var(--ink);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .28);
}

.product-dialog::backdrop {
    background: rgba(15, 61, 39, .72);
    backdrop-filter: blur(5px);
}

.product-dialog[open] {
    animation: dialog-in 450ms var(--ease);
}

@keyframes dialog-in {
    from {
        opacity: 0;
        transform: translateY(28px) scale(.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.product-dialog__close {
    position: absolute;
    z-index: 2;
    top: 14px;
    right: 14px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 253, 247, .9);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: background 200ms ease, color 200ms ease, transform 250ms var(--ease);
}

.product-dialog__close:hover {
    background: var(--ink);
    color: var(--paper);
    transform: rotate(90deg);
}

.product-dialog__grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
}

.product-dialog__media {
    min-height: 610px;
    background: #fff;
}

.product-dialog__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-dialog__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px 58px;
}

.product-dialog__content h2 {
    margin: 0 0 22px;
    font-size: clamp(3rem, 6vw, 5.6rem);
}

.product-dialog__content>p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.75;
}

.product-dialog__price {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin: 28px 0;
}

.product-dialog__price strong {
    font-family: var(--display);
    font-size: 2.4rem;
    font-weight: 400;
}

.product-dialog__price span {
    padding: 5px 8px;
    border: 1px solid rgba(245, 168, 0, 0.45);
    background: rgba(245, 168, 0, 0.1);
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 700;
}

.product-dialog__content small {
    display: block;
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.65rem;
    line-height: 1.5;
}

@media (max-width: 1100px) {
    .hero__wash {
        background: linear-gradient(90deg, rgba(253, 246, 227, .97), rgba(253, 246, 227, .78) 42%, rgba(253, 246, 227, .1) 67%);
    }
    .hero__content>* {
        max-width: 54vw;
    }
    .story__content {
        padding: 8vw 6vw;
    }
    .story__copy {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .site-footer__inner {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-column: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .deal-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }
    .deal-card__visual {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }
    .deal-card__visual::after {
        background: linear-gradient(180deg, transparent 80%, rgba(15, 61, 39, 0.12));
    }
    .deal-card__content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
        padding-inline: 38px;
    }
    .deal-card__intro {
        grid-column: 1 / -1;
        grid-row: 1;
    }
    .deal-card__contents {
        grid-column: 1;
        grid-row: 2 / 4;
        grid-template-columns: 1fr;
    }
    .deal-card__offer {
        grid-column: 2;
        grid-row: 2;
    }
    .deal-card__order {
        grid-column: 2;
        grid-row: 3;
    }
}

@media (max-width: 840px) {
    :root {
        --header-h: 84px;
    }
    .desktop-nav {
        display: none;
    }
    .menu-toggle,
    .mobile-nav {
        display: grid;
    }
    .brand {
        width: auto;
        height: 76px;
    }
    .site-header.is-scrolled .brand {
        height: 68px;
    }
    .hero {
        height: auto;
        min-height: 0;
        padding-top: 0;
    }
    .hero__picture {
        position: relative;
        display: block;
        height: 58svh;
        min-height: 430px;
        margin-top: 0;
    }
    .hero__picture img {
        object-position: 72% center;
    }
    .hero__wash {
        background: linear-gradient(180deg, rgba(253, 246, 227, .92) 0%, rgba(253, 246, 227, 0) 32%, rgba(253, 246, 227, .18) 100%);
    }
    .hero__glow {
        display: none;
    }
    .hero__content {
        min-height: auto;
        padding: 120px 0 64px;
    }
    .hero__content>* {
        max-width: 680px;
    }
    .hero h1 {
        font-size: clamp(4.4rem, 17vw, 7.4rem);
    }
    .section-heading {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .deal-card__content {
        display: flex;
        flex-direction: column;
        padding: 54px 42px 46px;
    }
    .deal-card__contents {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .menu-tabs {
        gap: 22px;
    }
    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        border: 0;
    }
    .product-card {
        border: 1px solid var(--line);
        padding: 18px 18px 0;
    }
    .product-card__actions {
        width: calc(100% + 36px);
        margin-left: -18px;
    }
    .product-dialog__grid {
        grid-template-columns: 1fr;
    }
    .product-dialog__media {
        min-height: 300px;
        max-height: 45svh;
    }
    .product-dialog__content {
        padding: 46px 30px;
    }
    .story {
        grid-template-columns: 1fr;
    }
    .story__media {
        min-height: 80vw;
    }
    .story__content {
        padding: 100px 6vw;
    }
    .site-footer__inner {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-column: auto;
    }
    .footer-bottom {
        grid-template-columns: 1fr auto;
    }
    .footer-bottom p {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    .site-footer__shape {
        right: -30vw;
        width: 90vw;
    }
}

@media (max-width: 560px) {
    :root {
        --shell: min(90vw, 1440px);
    }
    .hero__content {
        padding-top: 110px;
    }
    .hero h1 {
        font-size: clamp(4rem, 19vw, 6rem);
    }
    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }
    .button {
        width: 100%;
    }
    .floating-whatsapp {
        width: 56px;
        height: 56px;
    }
    .deal-card {
        margin-inline: -5vw;
        border-inline: 0;
    }
    .deal-card::after {
        inset: 8px;
    }
    .deal-card__content {
        padding: 46px 26px 34px;
    }
    .deal-card__content h3 {
        font-size: clamp(3.8rem, 20vw, 5.2rem);
    }
    .deal-card__contents {
        grid-template-columns: 1fr;
    }
    .deal-card__offer {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }
    .deal-card__price strong {
        font-size: 4rem;
    }
    .floating-whatsapp img {
        width: 31px;
        height: 31px;
    }
    .product-dialog {
        width: 96vw;
    }
    .product-dialog__content h2 {
        font-size: 3.2rem;
    }
    .delivery-note {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
    .story__copy,
    .story__facts {
        grid-template-columns: 1fr;
    }
    .story__facts div,
    .story__facts div:not(:first-child) {
        padding: 14px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }
    .story__facts div:last-child {
        border-bottom: 0;
    }
    .closing-line p {
        font-size: 2.5rem;
    }
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        margin-top: 34px;
    }
    .footer-bottom__logo {
        width: 124px;
        height: 116px;
        padding: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .ticker__track,
    .closing-line__track {
        animation: none;
        transform: none;
    }
    .story__media img {
        transform: scale(1.02);
    }
}