*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Josefin Sans', 'Segoe UI', sans-serif;
    background: #fff;
    color: #2b2b2b;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-top: var(--header-height);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

:root {
    --header-height: 72px;
    --brand-red: #910000;
    --cream: #f8f4ef;
    --font-syne: 'Syne', sans-serif;
    --font-josefin: 'Josefin Sans', sans-serif;
    --font-playfair: 'Playfair Display', serif;
    --font-script: 'Dancing Script', cursive;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: rgba(145, 0, 0, 0.16);
    color: #1a1a1a;
}

body {
    animation: page-in 0.55s ease;
}

@keyframes page-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    height: 3px;
    background: transparent;
    pointer-events: none;
}

.scroll-progress__bar {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--brand-red), #c41e1e);
    box-shadow: 0 0 12px rgba(145, 0, 0, 0.35);
    transition: width 0.08s linear;
}

/* Back To Top */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 28px;
    z-index: 190;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.25s ease, visibility 0.3s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--brand-red);
}

.back-to-top svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    width: 100%;
    flex-shrink: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #ececec;
    isolation: isolate;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

.site-header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.site-header.is-scrolled .header-inner {
    background-color: transparent;
}

.header-inner {
    max-width: 1440px;
    height: var(--header-height);
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "nav logo actions";
    align-items: center;
    gap: 24px;
    background-color: #ffffff;
}

.header-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 4px;
}

.header-toggle__bar {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: #2b2b2b;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.header-nav {
    grid-area: nav;
    display: flex;
    align-items: center;
    gap: 36px;
}

.header-nav a {
    position: relative;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #3a3a3a;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.header-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1.5px;
    background: var(--brand-red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.header-nav a:hover::after,
.header-nav a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-nav a:hover,
.header-nav a.active {
    color: #1a1a1a;
}

.header-nav a.active {
    font-weight: 600;
}

.header-logo {
    grid-area: logo;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
}

.header-logo img {
    height: 64px;
    width: auto;
    max-width: 180px;
    display: block;
    object-fit: contain;
}

.header-actions {
    grid-area: actions;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.header-action {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #2b2b2b;
    background: transparent;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.header-action:hover,
.header-action.is-active {
    background: rgba(145, 0, 0, 0.08);
    color: var(--brand-red);
}

.header-action__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-action__icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-action__badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--brand-red);
    color: #fff;
    font-family: var(--font-syne);
    font-size: 9px;
    font-weight: 700;
    line-height: 17px;
    text-align: center;
}

.header-search {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 240;
    padding: 18px 24px 22px;
    background: rgba(248, 244, 239, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    animation: headerPanelIn 0.28s ease;
}

.header-search[hidden],
.header-panel[hidden],
.header-panel-backdrop[hidden] {
    display: none !important;
}

.header-search__inner {
    max-width: 720px;
    margin: 0 auto;
}

.header-search__form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
}

.header-search__form input {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    background: #fff;
    font-family: var(--font-josefin);
    font-size: 15px;
    color: #1a1a1a;
}

.header-search__form input:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(145, 0, 0, 0.1);
}

.header-search__form button {
    height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--brand-red);
    color: #fff;
    font-family: var(--font-syne);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.header-search__results {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}

.header-search__result {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 14px;
    background: #fff;
    color: #1a1a1a;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-search__result:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.header-search__result img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
}

.header-search__result span {
    font-family: var(--font-josefin);
    font-size: 14px;
}

.header-search__result strong {
    font-family: var(--font-syne);
    font-size: 12px;
    color: var(--brand-red);
}

.header-search__empty,
.header-search__hint {
    margin-top: 12px;
    font-family: var(--font-josefin);
    font-size: 13px;
    color: #777;
}

.header-panel {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 250;
    width: min(420px, 100vw);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    background: #f8f4ef;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
    animation: headerDrawerIn 0.32s ease;
}

.header-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: calc(var(--header-height) + 18px) 24px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

.header-panel__eyebrow {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-josefin);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #888;
}

.header-panel__head h2 {
    font-family: var(--font-syne);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a1a;
}

.header-panel__head h2 em {
    font-family: var(--font-script);
    font-style: normal;
    font-weight: 600;
    color: var(--brand-red);
}

.header-panel__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f3efe9;
    color: #333;
    font-size: 24px;
    line-height: 1;
}

.header-panel__body {
    flex: 1;
    overflow-y: auto;
    padding: 18px 20px;
}

.header-panel__card {
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header-panel__card p {
    margin-bottom: 16px;
    font-family: var(--font-josefin);
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.header-panel__card--muted {
    margin-bottom: 14px;
    background: #f8f4ef;
    border: 1px solid rgba(145, 0, 0, 0.12);
}

.header-panel__btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--brand-red);
    color: #fff;
    font-family: var(--font-syne);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.header-panel__btn--ghost {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.header-panel__links {
    display: grid;
    gap: 2px;
    margin-top: 18px;
}

.header-panel__links a {
    padding: 14px 16px;
    border-radius: 12px;
    font-family: var(--font-josefin);
    font-size: 15px;
    color: #333;
    transition: background 0.2s ease;
}

.header-panel__links a:hover {
    background: rgba(145, 0, 0, 0.06);
    color: var(--brand-red);
}

.header-panel__logout {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.header-panel__logout form {
    margin: 0;
}

.header-panel__logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(145, 0, 0, 0.22);
    border-radius: 999px;
    background: #fff;
    color: var(--brand-red);
    font-family: var(--font-syne);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-panel__logout-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-panel__logout-btn:hover {
    background: rgba(145, 0, 0, 0.06);
    border-color: rgba(145, 0, 0, 0.4);
}

.header-panel__logout-btn:active {
    transform: scale(0.98);
}

.header-panel__empty {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding: 48px 24px;
    text-align: center;
}

.header-panel__empty[hidden],
.header-panel__footer[hidden] {
    display: none !important;
}

.header-panel__empty-icon {
    font-size: 34px;
    line-height: 1;
}

.header-panel__empty p {
    font-family: var(--font-josefin);
    font-size: 15px;
    color: #666;
}

.header-panel-item {
    display: grid;
    grid-template-columns: 78px 1fr;
    gap: 14px;
    padding: 14px;
    margin-bottom: 10px;
    border-radius: 16px;
    background: #fff;
}

.header-panel-item__media img {
    width: 78px;
    height: 96px;
    border-radius: 12px;
    object-fit: cover;
}

.header-panel-item__info a {
    display: block;
    margin-bottom: 4px;
    font-family: var(--font-syne);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.header-panel-item__info p {
    margin-bottom: 10px;
    font-family: var(--font-josefin);
    font-size: 14px;
    color: var(--brand-red);
}

.header-panel-item__info button,
.header-panel-item__qty button {
    font-family: var(--font-josefin);
    font-size: 12px;
    color: #777;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.header-panel-item__qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-panel-item__qty span {
    min-width: 18px;
    text-align: center;
    font-family: var(--font-syne);
    font-size: 13px;
}

.header-panel-item__qty button[data-cart-inc],
.header-panel-item__qty button[data-cart-dec] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f3efe9;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
}

.header-panel__footer {
    padding: 18px 20px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

.header-panel__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    font-family: var(--font-josefin);
    font-size: 14px;
}

.header-panel__total strong {
    font-family: var(--font-syne);
    font-size: 18px;
    color: #1a1a1a;
}

.header-panel__note {
    margin-top: 10px;
    font-family: var(--font-josefin);
    font-size: 12px;
    text-align: center;
    color: #888;
}

.header-panel-backdrop {
    position: fixed;
    inset: 0;
    z-index: 230;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(2px);
}

.header-toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 300;
    padding: 12px 20px;
    border-radius: 999px;
    background: #1a1a1a;
    color: #fff;
    font-family: var(--font-josefin);
    font-size: 13px;
    transform: translate(-50%, 120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
}

.header-toast.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

.store-toast-stack {
    position: fixed;
    top: calc(var(--header-height) + 16px);
    right: 20px;
    z-index: 320;
    display: grid;
    gap: 10px;
    width: min(360px, calc(100vw - 32px));
    pointer-events: none;
}

.store-toast {
    position: relative;
    overflow: hidden;
    padding: 14px 42px 14px 16px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
    font-family: var(--font-josefin);
    font-size: 14px;
    color: #1a1a1a;
    transform: translateX(110%);
    opacity: 0;
    transition: transform 0.32s ease, opacity 0.32s ease;
    pointer-events: auto;
}

.store-toast.is-visible {
    transform: translateX(0);
    opacity: 1;
}

.store-toast--success {
    border-left: 4px solid var(--brand-red);
}

.store-toast--error {
    border-left: 4px solid #b42318;
}

.store-toast__close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 24px;
    height: 24px;
    font-size: 18px;
    line-height: 1;
    color: #888;
}

.store-toast__progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: rgba(145, 0, 0, 0.15);
    transform-origin: left;
    animation: store-toast-progress 5s linear forwards;
}

.store-toast--error .store-toast__progress {
    background: rgba(180, 35, 24, 0.15);
}

@keyframes store-toast-progress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes headerPanelIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes headerDrawerIn {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

.header-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 210;
}

body.no-scroll {
    overflow: hidden;
}

/* Tablet & Mobile - hamburger menu */
@media (max-width: 1024px) {
    :root {
        --header-height: 68px;
    }

    .header-inner {
        padding: 0 24px;
        grid-template-columns: 40px 1fr auto;
        grid-template-areas: "toggle logo actions";
        gap: 14px;
    }

    .header-toggle {
        display: flex;
        grid-area: toggle;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: min(300px, 85vw);
        height: 100dvh;
        padding: calc(var(--header-height) + 24px) 28px 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: #ffffff;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 220;
        overflow-y: auto;
    }

    .header-nav a {
        width: 100%;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid #f0f0f0;
    }

    .site-header.is-menu-open .header-nav {
        transform: translateX(0);
    }

    .site-header.is-menu-open .header-toggle__bar:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }

    .site-header.is-menu-open .header-toggle__bar:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-menu-open .header-toggle__bar:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }
}

/* Mobile */
@media (max-width: 640px) {
    :root {
        --header-height: 64px;
    }

    .header-inner {
        padding: 0 16px;
        gap: 12px;
    }

    .header-logo img {
        height: 48px;
        max-width: 120px;
    }

    .header-actions {
        gap: 4px;
    }

    .header-action {
        width: 38px;
        height: 38px;
    }

    .header-action__icon svg {
        width: 18px;
        height: 18px;
    }

    .header-search {
        padding: 14px 16px 18px;
    }

    .header-panel {
        width: 100vw;
    }
}

/* Small mobile */
@media (max-width: 380px) {
    :root {
        --header-height: 60px;
    }

    .header-logo img {
        height: 42px;
        max-width: 100px;
    }

    .header-actions {
        gap: 10px;
    }
}

main {
    width: 100%;
    flex: 1;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    z-index: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    flex-shrink: 0;
    background: #111;
}

.hero-slider__viewport {
    width: 100%;
    overflow: hidden;
}

.hero-slider__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-slide {
    position: relative;
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    height: clamp(460px, calc(100dvh - var(--header-height)), 820px);
}

.hero-slide > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.45) 100%
    );
    pointer-events: none;
}

.hero-slide--media-only .hero-slide__overlay {
    display: none;
}

.hero-slide__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    padding: 24px 32px 88px;
    text-align: center;
    pointer-events: none;
}

.hero-slide__content a {
    pointer-events: auto;
}

.hero-slide__title {
    max-width: 760px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.hero-slide__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 12px 28px;
    border: 1.5px solid #fff;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.hero-slide__btn:hover {
    background: #fff;
    color: #1a1a1a;
}

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease, background 0.2s ease;
}

.hero-slider:hover .hero-slider__arrow {
    opacity: 1;
}

.hero-slider__arrow:hover {
    background: #fff;
}

.hero-slider__arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-slider__arrow--prev {
    left: 24px;
}

.hero-slider__arrow--next {
    right: 24px;
}

.hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-slider__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero-slider__dot.is-active {
    background: #fff;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-slide {
        height: clamp(380px, calc(100dvh - var(--header-height)), 600px);
    }

    .hero-slide > img {
        object-fit: cover;
        object-position: center center;
    }

    .hero-slide__content {
        gap: 22px;
        padding: 20px 20px 72px;
    }

    .hero-slide__btn {
        min-width: 130px;
        padding: 10px 22px;
        font-size: 12px;
    }

    .hero-slider__arrow {
        opacity: 1;
        width: 36px;
        height: 36px;
    }

    .hero-slider__arrow--prev {
        left: 12px;
    }

    .hero-slider__arrow--next {
        right: 12px;
    }

    .hero-slider__dots {
        bottom: 20px;
    }

    .catalog-card__image,
    .product-card__images img,
    .flow-card__media img {
        object-fit: cover;
        object-position: center center;
    }

    .story-video__media {
        object-fit: cover;
        object-position: center center;
    }
}

@media (max-width: 480px) {
    .hero-slide {
        height: clamp(320px, calc(100dvh - var(--header-height)), 500px);
    }
}

/* New Arrivals */
.new-arrivals {
    width: 100%;
    padding: 56px 0 64px;
    background: #fff;
}

.new-arrivals__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}

.product-slider {
    position: relative;
}

.product-slider__viewport {
    overflow: hidden;
    width: 100%;
}

.product-slider__track {
    display: flex;
    gap: 20px;
    will-change: transform;
}

.product-card {
    flex: 0 0 auto;
    min-width: 0;
    transition: transform 0.35s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card__media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f3f3f3;
    transition: box-shadow 0.35s ease;
}

.product-card:hover .product-card__media {
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.product-card__image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card__images {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: opacity 0.45s ease;
}

.product-card__img--hover {
    opacity: 0;
}

.product-card__media:hover .product-card__img--primary {
    opacity: 0;
}

.product-card__media:hover .product-card__img--hover {
    opacity: 1;
}

.product-card__wishlist {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    background: transparent;
}

.product-card__wishlist svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.product-card__wishlist.is-active,
.catalog-card__heart.is-active,
.product-detail__wish.is-active {
    color: var(--brand-red);
}

.product-card__wishlist.is-active svg,
.catalog-card__heart.is-active svg,
.product-detail__wish.is-active svg {
    fill: var(--brand-red);
    stroke: var(--brand-red);
}

.product-card__cart {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.product-card__media:hover .product-card__cart {
    opacity: 1;
    transform: translateY(0);
}

.product-card__cart svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-card__info {
    padding: 16px 4px 0;
    text-align: center;
}

.product-card__name {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #222;
    margin-bottom: 6px;
    line-height: 1.4;
}

.product-card__price {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #444;
    letter-spacing: 0.02em;
}

.price-display {
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px 8px;
    line-height: 1.2;
}

.price-display__offer {
    color: #1a1a1a;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.price-display--deal .price-display__offer {
    color: #910000;
}

.price-display__sale {
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    text-decoration-color: rgba(0, 0, 0, 0.55);
    color: #666;
    font-weight: 500;
    font-size: 0.92em;
}

.price-display__from {
    font-weight: 500;
    color: #777;
    font-size: 0.85em;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-right: 2px;
}

.price-display__off {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 2px;
    background: rgba(145, 0, 0, 0.08);
    color: #910000;
    font-size: 0.78em;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.catalog-card__price .price-display,
.product-card__price .price-display {
    font-size: inherit;
}

.product-detail__price .price-display {
    align-items: baseline;
    gap: 10px 12px;
}

.product-detail__price .price-display__sale {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.52em;
    font-weight: 500;
}

.product-detail__price .price-display__offer {
    font-family: inherit;
    font-weight: 600;
}

.product-detail__price .price-display__off {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.38em;
    vertical-align: middle;
}

.product-sizes__price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    line-height: 1.2;
}

.product-sizes__price .price-display__sale {
    font-size: 10px;
}

.product-sizes__price .price-display__offer {
    font-size: 11px;
    font-weight: 600;
    color: #910000;
}

.product-slider__arrow {
    position: absolute;
    top: 42%;
    z-index: 3;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    transition: background 0.2s ease;
}

.product-slider__arrow:hover {
    background: #fff;
}

.product-slider__arrow svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.product-slider__arrow--prev {
    left: -12px;
}

.product-slider__arrow--next {
    right: -12px;
}

@media (max-width: 1024px) {
    .new-arrivals {
        padding: 44px 0 52px;
    }

    .new-arrivals__inner {
        padding: 0 24px;
    }

    .section-head {
        margin-bottom: 32px;
    }

    .product-slider__arrow--prev {
        left: 4px;
    }

    .product-slider__arrow--next {
        right: 4px;
    }
}

@media (max-width: 768px) {
    .new-arrivals {
        padding: 36px 0 44px;
    }

    .new-arrivals__inner {
        padding: 0 16px;
    }

    .section-head {
        margin-bottom: 28px;
    }

    .product-card__cart {
        opacity: 1;
        transform: translateY(0);
    }

    .product-card__name,
    .product-card__price {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .product-slider__arrow {
        width: 32px;
        height: 32px;
    }
}

/* Dual Banners */
.dual-banners {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #000;
}

.dual-banners__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.dual-banner {
    position: relative;
    display: block;
    width: 100%;
    height: clamp(520px, 50vw, 720px);
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: #fff;
    line-height: 0;
}

.dual-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease;
}

.dual-banner:hover img {
    transform: scale(1.04);
}

.dual-banner__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 45%,
        rgba(0, 0, 0, 0.3) 72%,
        rgba(0, 0, 0, 0.55) 100%
    );
    pointer-events: none;
}

.dual-banner__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 0 48px 52px;
    text-align: left;
    line-height: normal;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.dual-banner:hover .dual-banner__content {
    transform: translateY(-6px);
}

.dual-banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.dual-banner__eyebrow::before {
    content: '';
    width: 36px;
    height: 2px;
    background: #910000;
    flex-shrink: 0;
}

.dual-banner__title {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 20px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.dual-banner__title-main {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-transform: lowercase;
    color: #fff;
}

.dual-banner__title-accent {
    font-family: var(--font-script);
    font-size: clamp(2.8rem, 5.4vw, 4.8rem);
    font-weight: 600;
    font-style: normal;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #fff;
    padding-left: 4px;
}

.dual-banner__text {
    position: relative;
    max-width: 340px;
    padding-left: 18px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.dual-banner__text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: linear-gradient(180deg, #910000 0%, rgba(255, 255, 255, 0.45) 100%);
}

@media (max-width: 768px) {
    .dual-banners__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .dual-banner {
        height: auto;
        aspect-ratio: 3 / 4;
        min-height: 480px;
    }

    .dual-banner img {
        object-fit: cover;
        object-position: center top;
    }

    .dual-banner__content {
        padding: 0 32px 40px;
    }

    .dual-banner__title-main {
        font-size: clamp(2.2rem, 9vw, 3rem);
    }

    .dual-banner__title-accent {
        font-size: clamp(2.4rem, 9.5vw, 3.2rem);
    }
}

@media (max-width: 480px) {
    .dual-banner {
        height: auto;
        aspect-ratio: 3 / 4;
        min-height: 520px;
    }

    .dual-banner img {
        object-fit: cover;
        object-position: center 8%;
    }

    .dual-banner__content {
        padding: 0 22px 32px;
    }

    .dual-banner__eyebrow {
        margin-bottom: 14px;
        font-size: 9px;
        letter-spacing: 0.3em;
    }

    .dual-banner__title-main {
        font-size: 2rem;
    }

    .dual-banner__title-accent {
        font-size: 2.15rem;
    }

    .dual-banner__text {
        max-width: 100%;
        font-size: 10px;
        letter-spacing: 0.12em;
    }
}

/* Pick Your Vibe */
.pick-vibe {
    width: 100%;
    padding: 56px 0 72px;
    background: #fff;
}

.pick-vibe__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
}

.vibe-card {
    position: relative;
    display: block;
    height: clamp(380px, 32vw, 520px);
    overflow: hidden;
    color: #fff;
    text-decoration: none;
}

.vibe-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 8%;
    filter: grayscale(100%) brightness(0.48);
    transform: scale(1.15);
    pointer-events: none;
}

.vibe-card__photo-wrap {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 58%;
    height: 58%;
    z-index: 2;
    overflow: hidden;
}

.vibe-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.vibe-card:hover .vibe-card__photo {
    transform: scale(1.03);
}

.vibe-card__label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 0 16px 28px;
    text-align: center;
    pointer-events: none;
}

.vibe-card__name {
    font-family: var(--font-script);
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.02em;
    color: #fff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.vibe-card__sub {
    margin-top: 4px;
    font-family: var(--font-script);
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
    .pick-vibe__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vibe-card {
        height: clamp(340px, 45vw, 440px);
    }
}

@media (max-width: 768px) {
    .pick-vibe {
        padding: 44px 0 56px;
    }

    .section-head {
        margin-bottom: 28px;
    }

    .vibe-card {
        height: clamp(400px, 58vw, 480px);
    }

    .vibe-card__photo-wrap {
        top: 12%;
        width: 72%;
        height: 64%;
    }

    .vibe-card__photo {
        object-fit: cover;
        object-position: center top;
    }

    .vibe-card__bg {
        object-position: center top;
    }

    .vibe-card__label {
        padding-bottom: 22px;
    }
}

@media (max-width: 480px) {
    .pick-vibe__grid {
        grid-template-columns: 1fr;
    }

    .vibe-card {
        height: clamp(460px, 120vw, 560px);
    }

    .vibe-card__photo-wrap {
        top: 10%;
        width: 78%;
        height: 68%;
    }

    .vibe-card__photo {
        object-fit: cover;
        object-position: center top;
    }
}

/* Story Video Banner */
.story-video {
    position: relative;
    width: calc(100% - clamp(48px, 8vw, 112px));
    height: clamp(420px, 52vw, 620px);
    margin: 0 auto;
    overflow: hidden;
    background: #111;
    border-radius: 2px;
}

.story-video__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.story-video__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.5) 100%
    );
    pointer-events: none;
}

.story-video__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 32px 24px;
    text-align: center;
}

.story-video__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.story-video__eyebrow::before,
.story-video__eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}

.story-video__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    max-width: 900px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.story-video__title-main {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: lowercase;
    color: #fff;
}

.story-video__title-accent {
    font-family: var(--font-script);
    font-size: clamp(2.4rem, 5.4vw, 4.4rem);
    font-weight: 600;
    font-style: normal;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #fff;
}

.story-video__text {
    max-width: 520px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.story-video__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    margin-top: 8px;
    padding: 12px 30px;
    border: 1.5px solid #fff;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.story-video__btn:hover {
    background: #fff;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .story-video {
        width: calc(100% - 32px);
        height: clamp(360px, 65vw, 480px);
    }

    .story-video__content {
        gap: 16px;
        padding: 24px 20px;
    }

    .story-video__title-main {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .story-video__title-accent {
        font-size: clamp(2rem, 8.5vw, 2.6rem);
    }

    .story-video__text {
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    .story-video__btn {
        min-width: 130px;
        padding: 10px 24px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .story-video {
        width: calc(100% - 24px);
        height: clamp(320px, 70vw, 420px);
    }
}

/* Find Your Flow */
.find-flow {
    width: 100%;
    padding: 56px 0 64px;
    background: #fff;
}

.flow-slider {
    position: relative;
    width: 100%;
}

.flow-slider__viewport {
    width: 100%;
    overflow: hidden;
}

.flow-slider__track {
    display: flex;
    gap: 0;
    will-change: transform;
}

.flow-card {
    flex: 0 0 auto;
    min-width: 0;
}

.flow-card__media {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 450px;
    overflow: hidden;
    background: #f2f2f2;
}

.flow-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.45s ease;
}

.flow-card__media:hover img {
    transform: scale(1.04);
}

.flow-card__label {
    padding: 16px 12px 0;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: #222;
}

.flow-slider__arrow {
    position: absolute;
    top: 42%;
    z-index: 3;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    transition: background 0.2s ease;
}

.flow-slider__arrow:hover {
    background: #fff;
}

.flow-slider__arrow svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.flow-slider__arrow--prev {
    left: 16px;
}

.flow-slider__arrow--next {
    right: 16px;
}

@media (max-width: 992px) {
    .find-flow {
        padding: 44px 0 52px;
    }
}

@media (max-width: 576px) {
    .find-flow {
        padding: 36px 0 44px;
    }

    .flow-card__label {
        font-size: 13px;
        padding-top: 12px;
    }

    .flow-slider__arrow {
        width: 34px;
        height: 34px;
    }

    .flow-slider__arrow--prev {
        left: 10px;
    }

    .flow-slider__arrow--next {
        right: 10px;
    }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.4, 0, 0.2, 1), transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Section Headings */
.section-head {
    text-align: center;
    margin-bottom: 40px;
}

.section-head__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.section-head__eyebrow::before,
.section-head__eyebrow::after {
    content: '';
    width: 28px;
    height: 1px;
    background: rgba(145, 0, 0, 0.35);
}

.section-head__title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.9rem, 3.8vw, 2.75rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.section-head__title em {
    font-family: var(--font-script);
    font-weight: 600;
    font-style: normal;
    color: var(--brand-red);
}

.pick-vibe .section-head,
.find-flow .section-head {
    padding: 0 24px;
}

/* Live Offer Bar */
.live-offer-bar {
    padding: 14px 16px 18px;
    background: var(--cream, #f8f4ef);
}

.live-offer-bar__list {
    display: grid;
    gap: 10px;
    max-width: 1180px;
    margin: 0 auto;
}

.live-offer-bar__ticket {
    position: relative;
    display: grid;
    grid-template-columns: auto 12px 1fr auto;
    align-items: stretch;
    min-height: 68px;
    border: 1px solid rgba(145, 0, 0, 0.14);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(145, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.live-offer-bar__ticket::before,
.live-offer-bar__ticket::after {
    content: '';
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--cream, #f8f4ef);
    border: 1px solid rgba(145, 0, 0, 0.12);
    transform: translateY(-50%);
}

.live-offer-bar__ticket::before {
    left: 108px;
}

.live-offer-bar__ticket::after {
    right: -8px;
    display: none;
}

.live-offer-bar__ticket:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(145, 0, 0, 0.1);
}

.live-offer-bar__sticker {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-width: 118px;
    padding: 12px 14px 12px 16px;
    background: linear-gradient(145deg, #a80000 0%, var(--brand-red, #910000) 55%, #7a0000 100%);
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 92% 50%, 100% 100%, 0 100%);
}

.live-offer-bar__sticker::after {
    content: '';
    position: absolute;
    inset: 6px 14px 6px 6px;
    border: 1px dashed rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    pointer-events: none;
}

.live-offer-bar__sticker-tag {
    font-family: var(--font-syne);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.9;
}

.live-offer-bar__sticker-value {
    font-family: var(--font-syne);
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.live-offer-bar__sticker-sub {
    font-family: var(--font-josefin);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0.92;
}

.live-offer-bar__tear {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 8px 0;
    background: repeating-linear-gradient(
        to bottom,
        #f3ece4 0,
        #f3ece4 4px,
        transparent 4px,
        transparent 8px
    );
}

.live-offer-bar__tear span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cream, #f8f4ef);
    border: 1px solid rgba(145, 0, 0, 0.1);
}

.live-offer-bar__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 18px 10px 8px;
    min-width: 0;
}

.live-offer-bar__copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.live-offer-bar__title {
    font-family: var(--font-syne);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-offer-bar__desc {
    font-family: var(--font-josefin);
    font-size: 12px;
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-offer-bar__code-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 7px 12px;
    border: 1.5px dashed rgba(145, 0, 0, 0.35);
    border-radius: 10px;
    background: rgba(145, 0, 0, 0.04);
}

.live-offer-bar__code-label {
    font-family: var(--font-josefin);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
}

.live-offer-bar__code {
    font-family: var(--font-syne);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: var(--brand-red, #910000);
}

.live-offer-bar__tail {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    padding: 10px 16px 10px 12px;
    border-left: 1px dashed rgba(145, 0, 0, 0.12);
    background: linear-gradient(90deg, #fff 0%, #fdf9f6 100%);
}

.live-offer-bar__valid {
    font-family: var(--font-josefin);
    font-size: 11px;
    color: #888;
    white-space: nowrap;
}

.live-offer-bar__cta {
    font-family: var(--font-syne);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-red, #910000);
}

@media (max-width: 900px) {
    .live-offer-bar__ticket {
        grid-template-columns: auto 10px 1fr;
        grid-template-rows: auto auto;
    }

    .live-offer-bar__ticket::before {
        left: 102px;
    }

    .live-offer-bar__tail {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        border-left: 0;
        border-top: 1px dashed rgba(145, 0, 0, 0.12);
        padding: 8px 14px;
    }

    .live-offer-bar__body {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding-right: 14px;
    }

    .live-offer-bar__code-chip {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .live-offer-bar {
        padding-inline: 12px;
    }

    .live-offer-bar__sticker {
        min-width: 96px;
        padding-inline: 12px;
    }

    .live-offer-bar__sticker-value {
        font-size: 22px;
    }

    .live-offer-bar__ticket::before {
        left: 88px;
    }
}

/* Marquee Ticker */
.marquee-ticker {
    width: 100%;
    overflow: hidden;
    background: #111;
    border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.marquee-ticker__track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 28s linear infinite;
}

.marquee-ticker__group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee-ticker__item {
    padding: 14px 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
}

.marquee-ticker__dot {
    width: 5px;
    height: 5px;
    margin: 0 28px;
    border-radius: 50%;
    background: var(--brand-red);
    flex-shrink: 0;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Editorial Spotlight */
.editorial {
    width: 100%;
    padding: 0;
    background: var(--cream);
}

.editorial__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    min-height: clamp(480px, 52vw, 640px);
}

.editorial__media {
    position: relative;
    overflow: hidden;
}

.editorial__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s ease;
}

.editorial:hover .editorial__media img {
    transform: scale(1.03);
}

.editorial__badge {
    position: absolute;
    top: 28px;
    left: 28px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.editorial__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 80px) clamp(32px, 6vw, 72px);
}

.editorial__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: #888;
}

.editorial__eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--brand-red);
}

.editorial__title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 22px;
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.editorial__title em {
    font-family: var(--font-script);
    font-size: 1.08em;
    font-weight: 600;
    font-style: normal;
    color: var(--brand-red);
}

.editorial__text {
    max-width: 460px;
    margin-bottom: 32px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: #555;
}

.editorial__stats {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 28px 40px;
    margin-bottom: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.editorial__stats li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.editorial__stats strong {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.editorial__stats span {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
}

.editorial__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-width: 180px;
    padding: 14px 32px;
    background: var(--brand-red);
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.25s ease;
}

.editorial__btn:hover {
    background: #7a0000;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
    width: 100%;
    padding: 72px 24px 80px;
    background: #fff;
}

.testimonials__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials__header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.testimonials__title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.testimonials__title em {
    font-family: var(--font-script);
    font-weight: 600;
    font-style: normal;
    color: var(--brand-red);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    position: relative;
    padding: 32px 28px 28px;
    background: var(--cream);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    animation-delay: var(--delay, 0s);
}

.reveal.is-visible .testimonial-card {
    animation: card-rise 0.6s ease both;
    animation-delay: var(--delay, 0s);
}

@keyframes card-rise {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.testimonial-card__quote {
    display: block;
    margin-bottom: 8px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--brand-red);
    opacity: 0.35;
}

.testimonial-card__text {
    margin-bottom: 24px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #444;
    font-style: normal;
}

.testimonial-card__footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-red);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.testimonial-card__footer cite {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-style: normal;
}

.testimonial-card__footer strong {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.testimonial-card__footer span {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: #999;
    letter-spacing: 0.06em;
}

/* Newsletter CTA */
.newsletter-cta {
    width: 100%;
    padding: 0 24px 72px;
    background: #fff;
}

.newsletter-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: clamp(40px, 6vw, 64px) clamp(32px, 5vw, 56px);
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1515 55%, var(--brand-red) 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.newsletter-cta__inner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.newsletter-cta__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-cta__title {
    margin-bottom: 14px;
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.newsletter-cta__title em {
    font-family: var(--font-script);
    font-weight: 600;
    font-style: normal;
}

.newsletter-cta__text {
    max-width: 380px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}

.newsletter-cta__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.newsletter-cta__form input {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 0.04em;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.newsletter-cta__form input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.newsletter-cta__form input:focus {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.12);
}

.newsletter-cta__form button {
    width: 100%;
    padding: 16px 18px;
    background: #fff;
    color: var(--brand-red);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.newsletter-cta__form button:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

@media (max-width: 992px) {
    .editorial__grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .editorial__media {
        aspect-ratio: 4 / 3;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .newsletter-cta__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .newsletter-cta__text {
        max-width: none;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .marquee-ticker__item {
        font-size: 10px;
        letter-spacing: 0.28em;
    }

    .marquee-ticker__dot {
        margin: 0 20px;
    }

    .editorial__body {
        padding: 36px 24px 44px;
    }

    .editorial__stats {
        gap: 20px 28px;
    }

    .testimonials {
        padding: 52px 16px 60px;
    }

    .newsletter-cta {
        padding: 0 16px 52px;
    }

    .newsletter-cta__inner {
        padding: 36px 24px;
    }
}

/* Instagram Feed */
.instagram-feed {
    width: 100%;
    padding: 56px 24px 64px;
    background: #fff;
}

.instagram-feed__header {
    margin-bottom: 32px;
}

.instagram-feed__handle {
    margin-top: 12px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #777;
    letter-spacing: 0.02em;
}

.instagram-feed__handle a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}

.instagram-feed__handle a:hover {
    color: #1a1a1a;
}

.instagram-feed__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.instagram-feed__item {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f3f3f3;
}

.instagram-feed__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.45s ease;
}

.instagram-feed__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.instagram-feed__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: scale(0.85);
    transition: transform 0.35s ease, background 0.35s ease;
}

.instagram-feed__icon svg {
    width: 26px;
    height: 26px;
}

.instagram-feed__item:hover img {
    transform: scale(1.06);
}

.instagram-feed__item:hover .instagram-feed__overlay {
    opacity: 1;
}

.instagram-feed__item:hover .instagram-feed__icon {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.22);
}

@media (max-width: 992px) {
    .instagram-feed__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .instagram-feed {
        padding: 44px 16px 52px;
    }

    .instagram-feed__header {
        margin-bottom: 24px;
    }

    .instagram-feed__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .instagram-feed__handle {
        font-size: 13px;
    }

    .back-to-top {
        right: 16px;
        bottom: 20px;
        width: 42px;
        height: 42px;
    }

    .instagram-feed__overlay {
        opacity: 1;
        background: rgba(0, 0, 0, 0.28);
    }

    .instagram-feed__icon {
        width: 44px;
        height: 44px;
        transform: scale(1);
    }

    .instagram-feed__icon svg {
        width: 22px;
        height: 22px;
    }
}

/* Footer */
.site-footer {
    width: 100%;
    margin-top: auto;
    --footer-brand: #910000;
    --footer-brand-dark: #6e0000;
    --footer-cream: #faf7f5;
}

.footer-values {
    background: var(--footer-cream);
    padding: 52px 32px;
}

.footer-values__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px 24px;
    text-align: center;
}

.footer-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transition: transform 0.3s ease;
}

.footer-value:hover {
    transform: translateY(-3px);
}

.footer-value__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff 0%, rgba(145, 0, 0, 0.08) 100%);
    border: 1px solid rgba(145, 0, 0, 0.14);
    box-shadow: 0 6px 18px rgba(145, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.footer-value__icon::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    border: 1px solid rgba(145, 0, 0, 0.08);
    pointer-events: none;
}

.footer-value:hover .footer-value__icon {
    transform: scale(1.06);
    background: linear-gradient(145deg, #fff 0%, rgba(145, 0, 0, 0.14) 100%);
    box-shadow: 0 10px 28px rgba(145, 0, 0, 0.14);
}

.footer-value__icon img {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
    filter: brightness(0) saturate(100%) invert(10%) sepia(86%) saturate(5082%) hue-rotate(358deg) brightness(93%) contrast(108%);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.footer-value:hover .footer-value__icon img {
    transform: scale(1.08);
    filter: brightness(0) saturate(100%) invert(8%) sepia(100%) saturate(6200%) hue-rotate(358deg) brightness(88%) contrast(112%);
}

.footer-value__text {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.05rem, 1.5vw, 1.35rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    text-transform: lowercase;
    max-width: 180px;
}

.footer-value__text em {
    display: block;
    margin-top: 2px;
    font-family: var(--font-script);
    font-size: 1.2em;
    font-weight: 600;
    font-style: normal;
    letter-spacing: -0.02em;
    color: var(--brand-red);
}

.footer-main {
    background: var(--footer-brand);
    color: #fff;
    padding: 48px 24px;
}

.footer-main__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-col h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col li,
.footer-col a {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.footer-col a:hover {
    color: #fff;
    opacity: 0.85;
}

.footer-subscribe {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 4px;
}

.footer-subscribe input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: transparent;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    outline: none;
}

.footer-subscribe input::placeholder {
    color: rgba(255, 255, 255, 0.65);
}

.footer-subscribe button {
    width: 100%;
    padding: 12px 14px;
    background: #fff;
    color: var(--footer-brand);
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.footer-subscribe button:hover {
    opacity: 0.9;
}

.footer-bottom {
    background: var(--footer-brand);
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding: 18px 24px 24px;
}

.footer-bottom__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom__links a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #fff;
    transition: opacity 0.2s ease;
}

.footer-credit {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-credit__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.footer-credit__line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.footer-credit__text {
    margin: 0;
    display: inline-flex;
    align-items: baseline;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.footer-credit__label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.footer-credit__brand {
    font-family: var(--font-script);
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-credit__brand::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1px;
    background: rgba(255, 255, 255, 0.55);
    transform: scaleX(0.35);
    transform-origin: center;
    transition: transform 0.25s ease, background 0.25s ease;
}

.footer-credit__brand:hover {
    color: #ffe8e8;
}

.footer-credit__brand:hover::after {
    transform: scaleX(1);
    background: #fff;
}

.footer-social a:hover {
    opacity: 0.75;
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .footer-values__inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 20px;
    }

    .footer-value__icon {
        width: 76px;
        height: 76px;
    }

    .footer-value__icon img {
        width: 40px;
        height: 40px;
    }

    .footer-value__text {
        font-size: 1.05rem;
        max-width: 150px;
    }

    .footer-value__text em {
        font-size: 1.15em;
    }

    .footer-main__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 576px) {
    .footer-values {
        padding: 40px 20px;
    }

    .footer-values__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }

    .footer-value__icon {
        width: 72px;
        height: 72px;
    }

    .footer-value__icon img {
        width: 36px;
        height: 36px;
    }

    .footer-value__text {
        font-size: 0.95rem;
        max-width: 130px;
    }

    .footer-main {
        padding: 36px 16px;
    }

    .footer-main__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        padding: 16px;
    }

    .footer-bottom__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-credit__inner {
        gap: 12px;
    }

    .footer-credit__line {
        max-width: 48px;
    }

    .footer-credit__text {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
}

/* Catalog & Product Pages */
.shop-page,
.product-page {
    width: 100%;
    background: #fff;
}

.shop-breadcrumb {
    max-width: 1440px;
    margin: 0 auto;
    padding: 22px 48px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #999;
}

.shop-breadcrumb a {
    color: #555;
}

.shop-breadcrumb a:hover {
    color: var(--brand-red);
}

.shop-page__header {
    padding: 44px 24px 36px;
    text-align: center;
    background: var(--cream);
}

.shop-page__header h1 {
    margin-bottom: 12px;
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: #1a1a1a;
}

.shop-page__header p {
    font-size: 14px;
    font-weight: 300;
    color: #777;
}

.shop-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 22px 32px;
    overflow-x: auto;
    border-bottom: 1px solid #ececec;
    scrollbar-width: none;
}

.shop-categories::-webkit-scrollbar {
    display: none;
}

.shop-categories a {
    position: relative;
    padding: 5px 0;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #666;
}

.shop-categories a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1px;
    background: var(--brand-red);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.shop-categories a:hover,
.shop-categories a.is-active {
    color: var(--brand-red);
}

.shop-categories a:hover::after,
.shop-categories a.is-active::after {
    transform: scaleX(1);
}

.shop-subcategories {
    max-width: 1440px;
    margin: 0 auto 8px;
    padding: 0 48px 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shop-subcategories a {
    display: inline-flex;
    padding: 8px 14px;
    border: 1px solid rgba(145, 0, 0, 0.12);
    border-radius: 999px;
    font-family: var(--font-josefin);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: #666;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.shop-subcategories a:hover,
.shop-subcategories a.is-active {
    border-color: rgba(145, 0, 0, 0.35);
    color: var(--brand-red);
    background: rgba(145, 0, 0, 0.04);
}

.shop-toolbar {
    max-width: 1440px;
    margin: 0 auto;
    min-height: 68px;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #ececec;
}

.shop-toolbar__filter {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.shop-toolbar__filter svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
}

.shop-toolbar__count {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
}

.shop-toolbar__sort {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-toolbar__sort label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
}

.shop-toolbar__sort select {
    padding: 8px 28px 8px 10px;
    border: 0;
    background: #fff;
    font-family: inherit;
    font-size: 12px;
    color: #222;
    outline: none;
    cursor: pointer;
}

.catalog-grid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 32px 72px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px 12px;
}

.catalog-card {
    position: relative;
    min-width: 0;
}

.catalog-card__media {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f2f1ef;
}

.catalog-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: opacity 0.45s ease, transform 0.6s ease;
}

.catalog-card__image--hover {
    opacity: 0;
}

.catalog-card:hover .catalog-card__image--primary {
    opacity: 0;
}

.catalog-card:hover .catalog-card__image--hover {
    opacity: 1;
    transform: scale(1.025);
}

.catalog-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    padding: 6px 9px;
    background: #fff;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.catalog-card__quick {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 3;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1a1a1a;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.catalog-card:hover .catalog-card__quick {
    opacity: 1;
    transform: translateY(0);
}

.catalog-card__heart {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(6px);
}

.catalog-card__heart svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: #222;
    stroke-width: 1.5;
}

.catalog-card__info {
    padding: 15px 4px 0;
    text-align: center;
}

.catalog-card__info h3 {
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #222;
}

.catalog-card__info h3 a:hover {
    color: var(--brand-red);
}

.catalog-card__info p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 14px;
    color: #555;
}

.shop-empty {
    padding: 90px 24px 120px;
    text-align: center;
}

.shop-empty h2 {
    margin-bottom: 10px;
    font-family: 'Syne', sans-serif;
}

.shop-empty p {
    margin-bottom: 24px;
    color: #777;
}

.shop-empty a {
    display: inline-flex;
    padding: 13px 26px;
    background: var(--brand-red);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Product Detail */
.product-page {
    background:
        linear-gradient(180deg, #faf7f3 0%, #fff 180px);
}

.product-page__breadcrumb {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 40px 8px;
}

.product-detail {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 40px 72px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    align-items: start;
    gap: 28px 40px;
}

.product-detail__media {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-gallery__item {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #f3f0ec;
    opacity: 0.72;
    cursor: pointer;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.product-gallery__item.is-active {
    opacity: 1;
    border-color: var(--brand-red);
}

.product-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.product-gallery__main {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 640px;
    overflow: hidden;
    background: #f3f0ec;
}

.product-gallery__main > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: opacity 0.2s ease, transform 0.5s ease;
}

.product-gallery__main:hover > img {
    transform: scale(1.02);
}

.product-gallery__main > img.is-switching {
    opacity: 0;
}

.product-detail__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 7px 12px;
    background: #fff;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.product-detail__info {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    padding: 4px 0 8px;
    max-width: 480px;
}

.product-detail__eyebrow {
    display: block;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.product-detail__info h1 {
    margin: 0 0 14px;
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.02em;
    text-transform: none;
    color: #1a1a1a;
}

.product-detail__price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.product-detail__price {
    margin: 0;
    font-family: var(--font-script);
    font-size: clamp(1.7rem, 2.2vw, 2.1rem);
    font-weight: 600;
    line-height: 1;
    color: #1a1a1a;
}

.product-detail__tax {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #999;
}

.product-detail__description {
    margin: 0 0 22px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
}

.product-sizes {
    border: 0;
    margin: 0 0 22px;
    padding: 0;
}

.product-sizes__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.product-sizes legend {
    padding: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-sizes__head button,
.product-sizes__guide {
    font-size: 11px;
    color: var(--brand-red);
    text-decoration: underline;
    text-underline-offset: 3px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
}

.product-sizes__guide:hover {
    color: #760000;
}

.size-guide-modal[hidden] {
    display: none !important;
}

.size-guide-modal {
    position: fixed;
    inset: 0;
    z-index: 1210;
    display: grid;
    place-items: center;
    padding: 20px;
}

.size-guide-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 14, 14, 0.58);
    backdrop-filter: blur(3px);
}

.size-guide-modal__dialog {
    position: relative;
    width: min(100%, 720px);
    max-height: calc(100vh - 40px);
    overflow: auto;
    padding: 28px 28px 24px;
    background: linear-gradient(180deg, #fff 0%, #faf7f3 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.size-guide-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    font-size: 26px;
    line-height: 1;
    color: #444;
    cursor: pointer;
}

.size-guide-modal__head {
    margin-bottom: 20px;
    padding-right: 36px;
}

.size-guide-modal__eyebrow {
    display: block;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.size-guide-modal__head h2 {
    margin: 0 0 8px;
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #1a1a1a;
}

.size-guide-modal__head p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #666;
}

.size-guide-modal__table-wrap {
    overflow-x: auto;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
}

.size-guide-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 520px;
}

.size-guide-table th,
.size-guide-table td {
    padding: 12px 14px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 13px;
}

.size-guide-table th {
    background: #1a1a1a;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.size-guide-table td:first-child {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    color: var(--brand-red);
}

.size-guide-table tbody tr:nth-child(even) {
    background: #faf7f3;
}

.size-guide-table tbody tr:hover {
    background: rgba(145, 0, 0, 0.05);
}

.size-guide-modal__tips {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 14px;
}

.size-guide-modal__tips article {
    padding: 14px 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.size-guide-modal__tips h3 {
    margin: 0 0 8px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.size-guide-modal__tips ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.size-guide-measure li {
    display: grid;
    gap: 2px;
}

.size-guide-measure strong {
    color: #1a1a1a;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.size-guide-measure span {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

.size-guide-modal__tips li,
.size-guide-modal__tips p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #555;
}

.size-guide-modal__note {
    border-color: rgba(145, 0, 0, 0.22);
    background: rgba(145, 0, 0, 0.04);
}

.size-guide-modal__tips em {
    font-style: normal;
    font-weight: 700;
    color: var(--brand-red);
}

@media (max-width: 640px) {
    .size-guide-modal__dialog {
        padding: 22px 16px 18px;
    }

    .size-guide-modal__tips {
        grid-template-columns: 1fr;
    }
}

.product-sizes__options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-sizes__options label {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.product-sizes__options input {
    position: absolute;
    opacity: 0;
}

.product-sizes__options span {
    min-width: 52px;
    height: 46px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8d2cb;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.product-sizes__options small {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    color: #777;
}

.product-sizes__options input:checked + span {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.product-sizes__options label:hover span {
    border-color: #1a1a1a;
}

.product-sizes__error {
    margin-top: 10px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    color: var(--brand-red);
}

.product-sizes__error[hidden],
.product-size-alert[hidden] {
    display: none !important;
}

.product-sizes.has-error legend {
    color: var(--brand-red);
}

.product-sizes.has-error .product-sizes__options {
    animation: sizeShake 0.45s ease;
}

.product-sizes.has-error .product-sizes__options span {
    border-color: rgba(145, 0, 0, 0.45);
}

.product-size-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #fdeeee;
    border: 1px solid rgba(145, 0, 0, 0.18);
    animation: alertIn 0.28s ease;
}

.product-size-alert.is-visible {
    display: flex;
}

.product-size-alert__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand-red);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 28px;
    text-align: center;
}

.product-size-alert strong {
    display: block;
    margin-bottom: 4px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    color: var(--brand-red);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-size-alert p {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #7a2b2b;
}

.product-customize__intro,
.product-customize__hint {
    margin: 10px 0 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #6c5a5a;
}

.product-customize__fields {
    margin-top: 16px;
    display: grid;
    gap: 14px;
}

.product-customize__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.product-customize__fields label,
.product-customize__full {
    display: grid;
    gap: 7px;
}

.product-customize__fields span {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #493d3d;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-customize__fields input,
.product-customize__fields select,
.product-customize__fields textarea {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 14px;
    background: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 15px;
    color: #1a1a1a;
}

.product-customize__fields textarea {
    min-height: 110px;
    padding: 12px 14px;
    resize: vertical;
}

.product-customize-modal[hidden] {
    display: none !important;
}

.product-customize-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 24px;
    isolation: isolate;
}

.product-customize-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 14, 14, 0.62);
    backdrop-filter: blur(4px);
}

.product-customize-modal__dialog {
    position: relative;
    width: min(100%, 520px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, #fff, #fdf9f5);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.24);
}

.product-customize-modal.is-form-open .product-customize-modal__dialog {
    width: min(100%, 960px);
}

.product-customize-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #fff;
    font-size: 28px;
    line-height: 1;
    color: #444;
    z-index: 2;
}

.product-customize-modal__hero {
    display: grid;
    grid-template-columns: 1fr;
}

.product-customize-modal.is-form-open .product-customize-modal__hero {
    grid-template-columns: 0.95fr 1.05fr;
}

.product-customize-modal__summary {
    padding: 30px;
    background:
        radial-gradient(circle at top left, rgba(145, 0, 0, 0.08), transparent 42%),
        linear-gradient(180deg, rgba(145, 0, 0, 0.04), rgba(248, 244, 239, 0.95));
}

.product-customize-modal__eyebrow {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.product-customize-modal h3 {
    margin: 0;
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    line-height: 1.1;
}

.product-customize-modal__product {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    margin-top: 22px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(145, 0, 0, 0.1);
}

.product-customize-modal__product img {
    width: 92px;
    height: 112px;
    border-radius: 14px;
    object-fit: cover;
}

.product-customize-modal__product strong {
    display: block;
    margin-bottom: 6px;
    font-family: 'Syne', sans-serif;
    font-size: 16px;
}

.product-customize-modal__product span,
.product-customize-modal__product p {
    margin: 0 0 4px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    color: #6a5959;
}

.product-customize-modal__intro {
    margin: 12px 0 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #5f4e4e;
}

.product-customize-modal__benefits {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.product-customize-modal__benefits div {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.product-customize-modal__benefits strong {
    display: block;
    margin-bottom: 5px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
}

.product-customize-modal__benefits span {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #6a5959;
}

.product-customize-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.product-customize-modal__actions > * {
    flex: 1 1 220px;
}

.product-customize-modal__primary,
.product-customize-modal__secondary {
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-customize-modal__primary {
    background: var(--brand-red);
    color: #fff;
}

.product-customize-modal__secondary {
    border: 1px solid #1a1a1a;
    background: #fff;
    color: #1a1a1a;
}

.product-customize-modal__form {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.product-customize-modal__form-card {
    padding: 28px 30px 24px;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
}

.product-customize-modal__form-head {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.product-customize-modal__form-head span {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.product-customize-modal__form-head h4 {
    margin: 0;
    font-family: 'Syne', sans-serif;
    font-size: 22px;
    line-height: 1.15;
}

.product-customize-modal__form-head p {
    margin: 8px 0 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #6b5b5b;
}

.customize-form {
    display: grid;
    gap: 20px;
}

.customize-form__section {
    display: grid;
    gap: 12px;
}

.customize-form__title {
    margin: 0;
    font-family: 'Syne', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1a1a;
}

.customize-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.customize-field {
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--cream, #f8f4ef);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.customize-field:focus-within {
    border-color: rgba(145, 0, 0, 0.35);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(145, 0, 0, 0.07);
}

.customize-field label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a6868;
}

.customize-field input,
.customize-field select,
.customize-field textarea {
    width: 100%;
    min-height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 15px;
    color: #1a1a1a;
    outline: none;
}

.customize-field select {
    appearance: none;
    padding-right: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23910000' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    cursor: pointer;
}

.customize-field input::placeholder,
.customize-field textarea::placeholder {
    color: #a89898;
    font-weight: 300;
}

.customize-field--textarea {
    padding-bottom: 16px;
}

.customize-field--textarea textarea {
    min-height: 96px;
    padding-top: 4px;
    resize: vertical;
    line-height: 1.55;
}

.customize-form__note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(145, 0, 0, 0.06);
    border: 1px solid rgba(145, 0, 0, 0.12);
}

.customize-form__note-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--brand-red);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
}

.customize-form__note p {
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    line-height: 1.55;
    color: #6b4545;
}

.customize-form__footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 4px;
}

.customize-form__btn {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 14px;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.customize-form__btn:active {
    transform: scale(0.98);
}

.customize-form__btn--ghost {
    border: 1px solid rgba(0, 0, 0, 0.14);
    background: #fff;
    color: #444;
}

.customize-form__btn--ghost:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.customize-form__btn--primary {
    border: 1px solid var(--brand-red);
    background: var(--brand-red);
    color: #fff;
}

.customize-form__btn--primary:hover {
    background: #760000;
    border-color: #760000;
}

.customize-upload {
    display: grid;
    gap: 12px;
}

.customize-upload__trigger {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px dashed rgba(145, 0, 0, 0.28);
    background: rgba(248, 244, 239, 0.9);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.customize-upload__trigger:hover {
    border-color: var(--brand-red);
    background: #fff;
}

.customize-upload.has-file .customize-upload__trigger,
.customize-upload.is-uploading .customize-upload__trigger {
    display: none;
}

.customize-upload__icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand-red);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    line-height: 42px;
    text-align: center;
}

.customize-upload__trigger strong {
    display: block;
    margin-bottom: 4px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
}

.customize-upload__trigger small {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    color: #7a6868;
}

.customize-upload__preview {
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(145, 0, 0, 0.14);
    background: #fff;
}

.customize-upload__preview img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    border-radius: 12px;
    background: #faf7f3;
}

.customize-upload__file {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    background: rgba(145, 0, 0, 0.06);
}

.customize-upload__file span {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--brand-red);
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 42px;
    text-align: center;
}

.customize-upload__file strong,
.customize-upload__preview strong {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
}

.customize-upload__remove {
    justify-self: start;
    padding: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    color: var(--brand-red);
    text-decoration: underline;
}

.customize-upload__status {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    color: #5f7a5f;
}

.customize-upload__status.is-error {
    color: var(--brand-red);
}

.has-product-modal {
    overflow: hidden;
}

.header-toast--error {
    background: var(--brand-red);
    color: #fff;
}

.header-toast--success {
    background: #1a1a1a;
    color: #fff;
}

.header-toast__link {
    color: #fff;
    text-decoration: underline;
    margin-left: 8px;
}

@keyframes sizeShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

@keyframes alertIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-detail__actions {
    display: grid;
    grid-template-columns: 1fr 1fr 52px;
    gap: 10px;
    margin-top: 4px;
}

.product-detail__add {
    min-height: 52px;
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.product-detail__add:hover {
    background: #1a1a1a;
    color: #fff;
}

.product-detail__buy {
    min-height: 52px;
    background: var(--brand-red);
    color: #fff;
    border: 1px solid var(--brand-red);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.25s ease;
}

.product-detail__buy:hover {
    background: #760000;
    border-color: #760000;
}

.product-detail__wish {
    min-height: 52px;
    border: 1px solid #d8d2cb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.product-detail__wish:hover {
    border-color: var(--brand-red);
    background: #faf7f3;
}

.product-detail__wish svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #222;
    stroke-width: 1.5;
}

.product-detail__perks {
    margin: 18px 0 22px;
    display: grid;
    gap: 8px;
    padding: 14px 16px;
    background: #faf7f3;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-detail__perks span {
    position: relative;
    padding-left: 14px;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: #666;
}

.product-detail__perks span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand-red);
    transform: translateY(-50%);
}

.product-accordions {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.product-accordions details {
    border-bottom: 1px solid #ddd;
}

.product-accordions summary {
    position: relative;
    padding: 18px 26px 18px 0;
    list-style: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
}

.product-accordions summary::-webkit-details-marker {
    display: none;
}

.product-accordions summary::after {
    content: '+';
    position: absolute;
    right: 2px;
    top: 50%;
    font-size: 18px;
    font-weight: 300;
    transform: translateY(-50%);
}

.product-accordions details[open] summary::after {
    content: '−';
}

.product-accordions p,
.product-accordions ul {
    padding: 0 0 18px;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
}

.product-accordions ul {
    padding-left: 18px;
}

.related-products {
    padding: 64px 0 0;
    background: var(--cream);
}

.catalog-grid--related {
    padding-top: 0;
}

@media (max-width: 1100px) {
    .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-detail {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
        gap: 24px 28px;
        padding-inline: 28px;
    }

    .product-detail__media {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 12px;
    }
}

@media (max-width: 820px) {
    .shop-breadcrumb {
        padding-inline: 20px;
    }

    .shop-toolbar {
        padding-inline: 20px;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-inline: 16px;
        gap: 28px 10px;
    }

    .product-detail {
        grid-template-columns: 1fr;
        padding: 0 20px 56px;
        gap: 18px;
    }

    .product-detail__media {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-gallery {
        order: 2;
        flex-direction: row;
    }

    .product-gallery__main {
        order: 1;
        max-height: none;
        width: 100%;
        aspect-ratio: 3 / 4;
        background: #f3f0ec;
    }

    .product-gallery__main > img {
        object-fit: contain;
        object-position: center center;
    }

    .product-gallery__item img {
        object-fit: cover;
        object-position: center center;
    }

    .product-detail__info {
        position: static;
        max-width: none;
        padding-top: 4px;
    }
}

@media (max-width: 576px) {
    .shop-page__header {
        padding: 36px 18px 30px;
    }

    .shop-categories {
        justify-content: flex-start;
        gap: 22px;
        padding-inline: 18px;
    }

    .shop-toolbar {
        grid-template-columns: 1fr 1fr;
        min-height: 60px;
        padding-inline: 16px;
    }

    .shop-toolbar__count {
        display: none;
    }

    .shop-toolbar__sort label {
        display: none;
    }

    .shop-toolbar__sort select {
        max-width: 145px;
    }

    .catalog-grid {
        padding-top: 14px;
        padding-bottom: 52px;
    }

    .catalog-card__quick {
        display: none;
    }

    .catalog-card__heart {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
    }

    .catalog-card__badge {
        top: 8px;
        left: 8px;
    }

    .catalog-card__info {
        padding-top: 11px;
    }

    .catalog-card__info h3 {
        font-size: 9px;
        line-height: 1.4;
    }

    .product-page__breadcrumb {
        padding-inline: 16px;
        overflow: hidden;
        white-space: nowrap;
    }

    .product-detail {
        padding-inline: 16px;
        gap: 14px;
    }

    .product-gallery__item {
        width: 64px;
        flex-shrink: 0;
    }

    .product-gallery__main {
        max-height: none;
        aspect-ratio: 3 / 4;
        width: 100%;
    }

    .product-gallery__main > img {
        object-fit: contain;
        object-position: center center;
    }

    .catalog-card__media,
    .flow-card__media {
        aspect-ratio: 3 / 4;
    }

    .catalog-card__image {
        object-fit: cover;
        object-position: center center;
    }

    .product-detail__info h1 {
        font-size: 1.3rem;
    }

    .product-detail__actions {
        grid-template-columns: 1fr 1fr;
    }

    .product-detail__wish {
        grid-column: 1 / -1;
    }

    .product-sizes__options {
        gap: 8px;
    }

    .product-sizes__options span {
        min-width: 48px;
        height: 44px;
    }

    .product-customize__grid {
        grid-template-columns: 1fr;
    }

    .product-customize-modal {
        padding: 14px;
    }

    .product-customize-modal__hero {
        grid-template-columns: 1fr;
    }

    .product-customize-modal__dialog {
        border-radius: 20px;
    }

    .product-customize-modal__summary,
    .product-customize-modal__form-card {
        padding: 22px 18px;
    }

    .product-customize-modal__form-card {
        border-left: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    .customize-form__grid,
    .customize-form__footer {
        grid-template-columns: 1fr;
    }

    .product-customize-modal__product {
        grid-template-columns: 72px 1fr;
    }

    .product-customize-modal__product img {
        width: 72px;
        height: 90px;
    }

    .related-products {
        padding-top: 48px;
    }
}

/* Static Pages — Our Story & Contact */
.page-hero--legal {
    background:
        radial-gradient(circle at top right, rgba(145, 0, 0, 0.08), transparent 40%),
        linear-gradient(180deg, #faf7f3 0%, #fff 100%);
}

.legal-page {
    padding: 10px 24px 80px;
    background: #fff;
}

.legal-page__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 36px;
    align-items: start;
}

.legal-page__nav {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    padding: 18px 16px;
    background: #faf7f3;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.legal-page__nav-title {
    display: block;
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.legal-page__nav ul {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.legal-page__nav a {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
    color: #555;
    transition: background 0.2s ease, color 0.2s ease;
}

.legal-page__nav a:hover,
.legal-page__nav a.is-active {
    background: #fff;
    color: var(--brand-red);
}

.legal-page__content {
    padding-bottom: 20px;
}

.legal-block {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.legal-block:last-of-type {
    border-bottom: 0;
}

.legal-block h2 {
    margin: 0 0 10px;
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-block p {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    color: #555;
}

.legal-page__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 10px;
}

.legal-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    background: var(--brand-red);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.legal-page__btn:hover {
    background: #760000;
}

.legal-page__link {
    font-size: 13px;
    color: #666;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 820px) {
    .legal-page__inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .legal-page__nav {
        position: static;
    }

    .legal-page__nav ul {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
}

.page-hero {
    width: 100%;
    background: var(--cream);
}

.page-hero .shop-breadcrumb {
    padding-bottom: 0;
}

.page-hero__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 28px 24px 64px;
    text-align: center;
}

.page-hero__inner h1 {
    margin-bottom: 14px;
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.05em;
    text-transform: lowercase;
    color: #1a1a1a;
}

.page-hero__inner h1 em {
    font-family: var(--font-script);
    font-weight: 600;
    font-style: normal;
    color: var(--brand-red);
}

.page-hero__inner p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
}

/* Our Story */
.story-intro {
    width: 100%;
    padding: 72px 48px;
    background: #fff;
}

.story-intro__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}

.story-intro__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.story-intro__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.story-intro__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.story-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.story-intro__eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--brand-red);
}

.story-intro__copy h2 {
    margin-bottom: 22px;
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.story-intro__copy h2 em {
    font-family: var(--font-script);
    font-weight: 600;
    font-style: normal;
    color: var(--brand-red);
}

.story-intro__copy p {
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: #555;
}

.story-values {
    padding: 72px 48px 80px;
    background: var(--cream);
}

.story-values__grid {
    max-width: 1200px;
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.story-value-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.story-value-card__num {
    display: block;
    margin-bottom: 16px;
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(145, 0, 0, 0.25);
}

.story-value-card h3 {
    margin-bottom: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

.story-value-card p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
    color: #666;
}

.story-quote {
    padding: 80px 48px;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}

.story-quote blockquote {
    max-width: 820px;
    margin: 0 auto;
}

.story-quote p {
    margin-bottom: 20px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
}

.story-quote cite {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-style: normal;
}

.story-cta {
    padding: 72px 48px 88px;
    background: #fff;
}

.story-cta__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.story-cta__eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.story-cta__inner h2 {
    margin-bottom: 28px;
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.story-cta__inner h2 em {
    font-family: var(--font-script);
    font-weight: 600;
    font-style: normal;
    color: var(--brand-red);
}

.story-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 15px 32px;
    background: var(--brand-red);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: background 0.25s ease, transform 0.25s ease;
}

.story-cta__btn:hover {
    background: #760000;
    transform: translateY(-2px);
}

/* Contact Page */
.contact-page {
    padding: 72px 48px 88px;
    background: #fff;
}

.contact-page__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.contact-info__eyebrow,
.contact-form__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.contact-info__eyebrow::before,
.contact-form__eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--brand-red);
}

.contact-info h2,
.contact-form-wrap h2 {
    margin-bottom: 14px;
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #1a1a1a;
}

.contact-info h2 em,
.contact-form-wrap h2 em {
    font-family: var(--font-script);
    font-weight: 600;
    font-style: normal;
    color: var(--brand-red);
}

.contact-info > p {
    margin-bottom: 28px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: #666;
}

.contact-cards {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: var(--cream);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(145, 0, 0, 0.08);
    color: var(--brand-red);
    flex-shrink: 0;
}

.contact-card__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #888;
}

.contact-card a,
.contact-card span {
    font-size: 14px;
    font-weight: 400;
    color: #333;
}

.contact-card a:hover {
    color: var(--brand-red);
}

.contact-hours {
    padding: 22px 24px;
    background: #1a1a1a;
    color: #fff;
}

.contact-hours h3 {
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-hours p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
}

.contact-form-wrap {
    padding: 36px 32px;
    background: var(--cream);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0dcd6;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    color: #222;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(145, 0, 0, 0.08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form__submit {
    margin-top: 8px;
    min-height: 52px;
    background: var(--brand-red);
    color: #fff;
    border: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease;
}

.contact-form__submit:hover {
    background: #760000;
}

@media (max-width: 992px) {
    .story-intro,
    .story-values,
    .story-quote,
    .story-cta,
    .contact-page {
        padding-inline: 24px;
    }

    .story-intro__grid,
    .contact-page__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .story-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-intro__media {
        max-height: 480px;
        aspect-ratio: auto;
    }
}

@media (max-width: 576px) {
    .page-hero__inner {
        padding-bottom: 48px;
    }

    .story-values__grid {
        grid-template-columns: 1fr;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .story-intro,
    .story-values,
    .story-quote,
    .story-cta,
    .contact-page {
        padding-inline: 16px;
    }
}
