:root {
    --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
    --color-ink: #111111;
    --color-ink-soft: #5d554a;
    --color-ink-deep: #050505;
    --color-primary: #c8a35d;
    --color-primary-soft: #e1c07e;
    --color-accent: #d6b06b;
    --color-accent-soft: #f6ead3;
    --gold-deep: #9d702d;
    --gold-base: #c79e53;
    --gold-soft: #e5c47d;
    --gold-light: #f4dfad;
    --color-surface: #ffffff;
    --color-surface-alt: #faf7f1;
    --color-surface-muted: #f6f1e8;
    --color-border: rgba(17, 17, 17, 0.12);
    --color-white: #ffffff;
    --section-space: clamp(72px, 7vw, 108px);
    --section-space-tight: clamp(34px, 4vw, 54px);
    --copy-width: 64ch;
    --shadow-soft: 0 18px 44px rgba(5, 5, 5, 0.08);
    --shadow-panel: 0 28px 70px rgba(5, 5, 5, 0.14);
    --radius-large: 32px;
    --radius-medium: 22px;
    --radius-small: 16px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    color-scheme: only light;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-ink);
    background:
        radial-gradient(circle at top left, rgba(200, 163, 93, 0.18), transparent 36%),
        radial-gradient(circle at bottom right, rgba(17, 17, 17, 0.08), transparent 34%),
        linear-gradient(180deg, #fffdf9 0%, #ffffff 28%, #f8f4ec 100%);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(200, 163, 93, 0.42);
    outline-offset: 3px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.wrap {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}

.page-builder .wp-block-group:is(
    .hero-section,
    .metrics-band,
    .content-section,
    .cta-banner,
    .quote-panel,
    .page-hero,
    .wrap,
    .hero-section__grid,
    .split-layout,
    .card-grid,
    .timeline-grid,
    .metrics-band__grid,
    .contact-grid,
    .hero-visual,
    .hero-visual__cards,
    .info-stack,
    .stat-stack,
    .contact-process,
    .cta-banner__grid,
    .section-heading,
    .page-hero__inner,
    .contact-details-panel,
    .about-story
) > .wp-block-group__inner-container {
    display: contents;
}

.site-main {
    position: relative;
    z-index: 1;
    overflow: clip;
}

.site-main:focus {
    outline: none;
}

.skip-link {
    position: absolute;
    left: 18px;
    top: 12px;
    z-index: 120;
    padding: 10px 14px;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 0.18s ease;
}

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

.home-hero-gallery {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
    min-height: 100%;
    max-height: none;
    overflow: hidden;
    pointer-events: none;
    background: #0f0d09;
}

.home-hero-gallery::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(6, 6, 6, 0.4) 0%, rgba(8, 8, 8, 0.62) 38%, rgba(10, 10, 10, 0.78) 100%),
        rgba(10, 10, 10, 0.5);
}

.home-hero-gallery__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    transform: scale(1.02);
    transform-origin: center center;
    filter: saturate(0.94) brightness(0.82);
    transition:
        opacity 2.6s cubic-bezier(0.19, 1, 0.22, 1),
        transform 3.2s cubic-bezier(0.19, 1, 0.22, 1),
        filter 2.6s ease;
    will-change: opacity, transform, filter;
}

.home-hero-gallery__slide.is-active {
    opacity: 1;
    transform: scale(1.1);
    filter: saturate(1.02) brightness(0.95);
}

@media (min-width: 1081px) {
    :root {
        --container: min(90vw, 1600px);
    }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    -webkit-backdrop-filter: blur(16px) saturate(115%);
    backdrop-filter: blur(16px) saturate(115%);
    background-color: var(--gold-base);
    background-image: linear-gradient(118deg, var(--gold-deep) 0%, var(--gold-base) 18%, var(--gold-light) 46%, #c08e40 68%, #f2dfb3 100%);
    border-bottom: 1px solid rgba(122, 86, 25, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.42),
        0 16px 34px rgba(116, 83, 25, 0.14);
}

.site-header__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 88px;
}

.brand {
    position: relative;
    z-index: 2;
}

.brand__link {
    position: relative;
    display: block;
    width: clamp(170px, 19vw, 250px);
    padding-bottom: 14px;
    text-decoration: none;
}

.brand__logo {
    display: block;
    width: 100%;
    line-height: 0;
}

.brand__image {
    width: 100%;
    height: auto;
    display: block;
    transform: translateY(5px);
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(122, 86, 25, 0.24);
    border-radius: 18px;
    background-color: var(--gold-soft);
    background-image: linear-gradient(135deg, #f6e7c1 0%, var(--gold-soft) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.45),
        0 10px 22px rgba(126, 90, 27, 0.14);
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--color-ink);
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav .menu {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    text-decoration: none;
}

.main-nav .menu a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    color: var(--color-ink);
    transition:
        background-color 0.24s ease,
        color 0.24s ease,
        transform 0.24s ease;
}

.main-nav .menu a:hover,
.main-nav .menu a:focus-visible,
.main-nav .current-menu-item a {
    background: rgba(255, 248, 226, 0.34);
    color: var(--color-ink);
}

.main-nav__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border-radius: 999px;
    border: 1px solid rgba(122, 86, 25, 0.22);
    background: rgba(255, 248, 226, 0.22);
    color: var(--color-ink-deep);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
    transition:
        transform 0.24s ease,
        background-color 0.24s ease,
        box-shadow 0.24s ease;
}

.main-nav__social:hover,
.main-nav__social:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 248, 226, 0.44);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.48),
        0 14px 24px rgba(122, 86, 25, 0.16);
}

.main-nav__socials {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.main-nav__social-icon {
    width: 22px;
    height: 22px;
}

.main-nav__social-label {
    display: none;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    border: 1px solid #a87b33;
    background-color: var(--gold-base);
    background-image: linear-gradient(135deg, #b89147 0%, var(--gold-soft) 58%, #f0d59f 100%);
    color: var(--color-ink-deep);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease,
        background-color 0.24s ease;
    box-shadow: 0 16px 30px rgba(184, 145, 71, 0.22);
}

.wp-block-button.button,
.wp-block-button.button--ghost,
.wp-block-button.button--ghost-light,
.wp-block-button.button--outline {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
}

.wp-block-button.button .wp-block-button__link,
.wp-block-button.button--ghost .wp-block-button__link,
.wp-block-button.button--ghost-light .wp-block-button__link,
.wp-block-button.button--outline .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease,
        background-color 0.24s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 20px 34px rgba(184, 145, 71, 0.28);
}

.wp-block-button.button .wp-block-button__link:hover,
.wp-block-button.button .wp-block-button__link:focus-visible,
.wp-block-button.button--ghost .wp-block-button__link:hover,
.wp-block-button.button--ghost .wp-block-button__link:focus-visible,
.wp-block-button.button--ghost-light .wp-block-button__link:hover,
.wp-block-button.button--ghost-light .wp-block-button__link:focus-visible,
.wp-block-button.button--outline .wp-block-button__link:hover,
.wp-block-button.button--outline .wp-block-button__link:focus-visible {
    transform: translateY(-1px);
}

.button--small {
    min-height: 46px;
    padding: 0 22px;
}

.button--ghost {
    background: transparent;
    color: var(--color-ink);
    border-color: rgba(17, 17, 17, 0.16);
    box-shadow: none;
}

.wp-block-button.button .wp-block-button__link {
    background-color: var(--gold-base);
    background-image: linear-gradient(135deg, #b89147 0%, var(--gold-soft) 58%, #f0d59f 100%);
    color: var(--color-ink-deep);
    border-color: #a87b33;
    box-shadow: 0 16px 30px rgba(184, 145, 71, 0.22);
}

.wp-block-button.button .wp-block-button__link:hover,
.wp-block-button.button .wp-block-button__link:focus-visible {
    box-shadow: 0 20px 34px rgba(184, 145, 71, 0.28);
}

.wp-block-button.button--ghost .wp-block-button__link {
    background: transparent;
    color: var(--color-ink);
    border-color: rgba(17, 17, 17, 0.16);
    box-shadow: none;
}

.button--ghost-light {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(200, 163, 93, 0.48);
    box-shadow: none;
}

.wp-block-button.button--ghost-light .wp-block-button__link {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(200, 163, 93, 0.48);
    box-shadow: none;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}

.text-link::after {
    content: "+";
    font-size: 1rem;
}

.page-builder [id],
.page-hero,
.content-section,
.cta-banner,
.quote-panel {
    scroll-margin-top: 116px;
}

.hero-section {
    position: relative;
    padding: 86px 0 76px;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 34px auto auto 6%;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(200, 163, 93, 0.16);
    filter: blur(4px);
}

.hero-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    gap: 42px;
    align-items: center;
}

.page-builder--front {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.page-builder--front > * {
    position: relative;
    z-index: 1;
}

.page-builder--front > .hero-section {
    order: 0;
}

.page-builder--front > .content-section--brands {
    order: 1;
}

.page-builder--front > *:not(.hero-section):not(.content-section--brands) {
    order: 2;
}

.page-builder--front > *:not(.hero-section) {
    background: var(--color-surface);
}

.page-builder--front .hero-section {
    display: flex;
    align-items: flex-start;
    min-height: 100svh;
    padding: clamp(24px, 4.2vw, 52px) 0 clamp(88px, 10vw, 118px);
    background: transparent;
}

.page-builder--front .hero-section > .wp-block-group__inner-container {
    display: flex;
    width: 100%;
    min-height: 100%;
    position: relative;
    z-index: 1;
}

.page-builder--front .hero-section::before {
    display: none;
}

.page-builder--front .hero-section__grid {
    align-items: start;
}

.page-builder--front .hero-section__content {
    align-self: start;
    padding-top: 0;
}

.page-builder--front .hero-section .section-eyebrow,
.page-builder--front .hero-section h1,
.page-builder--front .hero-visual__panel h2,
.page-builder--front .hero-visual__cards p,
.page-builder--front .hero-visual__cards strong {
    color: var(--color-white);
}

.page-builder--front .hero-section h1 {
    font-size: clamp(3.7rem, 6.2vw, 6.7rem);
    max-width: 10ch;
    color: #e3c070;
    background: linear-gradient(90deg, #b8873c 0%, #f3dc99 50%, #bf8d44 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .page-builder--front .hero-section h1 {
        background: none;
        -webkit-text-fill-color: currentColor;
    }
}

.page-builder--front .hero-section__lead {
    margin-top: clamp(18px, 2vw, 28px);
    max-width: 15ch;
    font-family: var(--font-display);
    font-size: clamp(1.72rem, 2.3vw, 2.45rem);
    line-height: 1.03;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.92);
    text-wrap: balance;
}

.page-builder--front .hero-visual__label {
    color: rgba(255, 255, 255, 0.84);
}

.page-builder--front .hero-section .section-eyebrow::before,
.page-builder--front .hero-visual__label::before {
    background: rgba(255, 255, 255, 0.34);
}

.page-builder--front .hero-section__highlights li {
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
    backdrop-filter: blur(18px);
}

.page-builder--front .hero-visual {
    min-height: 0;
}

.page-builder--front .hero-visual__panel {
    align-self: start;
    justify-self: end;
    background: linear-gradient(160deg, rgba(10, 10, 10, 0.56) 0%, rgba(36, 26, 10, 0.72) 100%);
    border-color: rgba(200, 163, 93, 0.36);
    box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(22px);
}

.page-builder--front .hero-visual__cards > .wp-block-group,
.page-builder--front .hero-visual__cards article {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.page-builder--front .hero-visual__cards span {
    color: rgba(255, 255, 255, 0.76);
}

.page-builder--front .hero-visual__lens {
    display: none;
}

.page-builder--front .hero-section__content,
.page-builder--front .hero-section__content > .wp-block-group__inner-container {
    position: relative;
    z-index: 2;
}

.page-builder--front a.button--ghost,
.page-builder--front .wp-block-button.button--ghost .wp-block-button__link {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: none;
    backdrop-filter: blur(16px);
}

.section-eyebrow,
.hero-visual__label,
.info-card__eyebrow,
.contact-card__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: var(--color-primary);
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-eyebrow::before,
.hero-visual__label::before,
.info-card__eyebrow::before,
.contact-card__label::before {
    content: "";
    width: 38px;
    height: 1px;
    background: rgba(200, 163, 93, 0.78);
}

@media (min-width: 681px) {
    .page-builder--front .hero-section {
        align-items: flex-start;
        min-height: 100svh;
        padding-top: clamp(24px, 4.2vw, 52px);
        padding-bottom: clamp(88px, 10vw, 118px);
        overflow: visible;
    }

    .page-builder--front .hero-section__grid {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
        gap: 42px;
        align-items: start;
    }

    .page-builder--front .hero-section__content {
        display: block;
        align-self: start;
        overflow: visible;
    }

    .page-builder--front .hero-section__content > .wp-block-group__inner-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        min-height: 0;
        text-align: left;
        padding-top: 0;
        padding-bottom: 0;
        overflow: visible;
    }

    .page-builder--front .hero-section .section-eyebrow {
        display: inline-flex;
    }

    .page-builder--front .hero-section h1 {
        display: block !important;
        width: auto;
        max-width: 10ch;
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
        padding-inline: 0;
        text-align: left;
        white-space: normal;
        color: #e3c070;
        background: linear-gradient(90deg, #b8873c 0%, #f3dc99 50%, #bf8d44 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .page-builder--front .hero-section__lead {
        display: block !important;
        width: auto;
        max-width: 15ch;
        margin-top: clamp(18px, 2vw, 28px);
        margin-left: 0;
        margin-right: 0;
        padding-inline: 0;
        text-align: left;
        color: rgba(255, 255, 255, 0.92);
    }

    .page-builder--front .hero-section__lead::after {
        content: none;
        display: none;
    }

    .page-builder--front .hero-section__dock {
        display: block;
        position: static;
        width: 100%;
        margin-top: 34px;
    }

    .page-builder--front .hero-section__highlights {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        width: 100%;
        margin: 0;
    }

    .page-builder--front .hero-section__highlights li {
        display: block !important;
    }

    .page-builder--front .hero-section__actions--desktop {
        display: flex !important;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 30px;
    }

    .page-builder--front .hero-section__actions--desktop .wp-block-button,
    .page-builder--front .hero-section__actions--desktop .wp-block-button.button,
    .page-builder--front .hero-section__actions--desktop .wp-block-button.button--ghost,
    .page-builder--front .hero-section__actions--desktop .wp-block-button .wp-block-button__link {
        display: inline-flex !important;
    }
}

.hero-section h1,
.page-hero h1,
.section-heading h2,
.split-layout h2,
.cta-banner h2,
.quote-panel__text {
    font-family: var(--font-display);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-section h1 {
    margin: 0;
    font-size: clamp(3.1rem, 5vw, 5.5rem);
    max-width: 12ch;
}

.hero-section__lead {
    margin: 24px 0 0;
    max-width: 60ch;
    color: var(--color-ink-soft);
    font-size: 1.08rem;
}

.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-section__actions--desktop {
    display: flex;
}

.hero-section__dock {
    display: block;
}

.hero-section__dock > .wp-block-group__inner-container {
    display: contents;
}

.hero-section__cta {
    width: 100%;
}

.hero-section__cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 999px;
    border: 1px solid #a87b33;
    background-color: var(--gold-base);
    background-image: linear-gradient(135deg, #b89147 0%, var(--gold-soft) 58%, #f0d59f 100%);
    color: var(--color-ink-deep);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 16px 30px rgba(184, 145, 71, 0.22);
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease,
        background-color 0.24s ease;
}

.hero-section__cta-link:hover,
.hero-section__cta-link:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 20px 34px rgba(184, 145, 71, 0.28);
}

.hero-section__contact {
    margin: 14px 0 0 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
}

.hero-section__contact a {
    color: var(--color-white);
    font-weight: 700;
    text-decoration: none;
}

.hero-section__contact a:hover,
.hero-section__contact a:focus-visible {
    color: var(--color-primary-soft);
}

.hero-section__highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 34px 0 0;
}

.hero-section__highlights li {
    padding: 16px 18px;
    border-radius: var(--radius-small);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--shadow-soft);
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.hero-visual__panel {
    position: relative;
    z-index: 2;
    width: min(100%, 460px);
    padding: 34px;
    border-radius: var(--radius-large);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 234, 211, 0.88) 100%);
    border: 1px solid rgba(17, 17, 17, 0.1);
    box-shadow: var(--shadow-panel);
}

.hero-visual__label,
.info-card__eyebrow,
.contact-card__label,
.feature-card__index {
    margin: 0 0 10px;
    color: var(--color-primary);
    font-size: 0.83rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-visual__panel h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    line-height: 1.05;
}

.hero-visual__cards {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.hero-visual__cards article {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border-radius: var(--radius-small);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.hero-visual__cards > .wp-block-group {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border-radius: var(--radius-small);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 17, 17, 0.08);
}

.hero-visual__cards strong {
    font-size: 1.25rem;
}

.hero-visual__cards span {
    color: var(--color-ink-soft);
}

.hero-visual__lens {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(17, 17, 17, 0.12);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(200, 163, 93, 0.12));
    box-shadow: 0 24px 48px rgba(17, 17, 17, 0.12);
}

.hero-visual__lens--large {
    inset: 48px auto auto 10px;
    width: 190px;
    height: 190px;
    animation: floatLens 7s ease-in-out infinite;
}

.hero-visual__lens--small {
    inset: auto 18px 44px auto;
    width: 138px;
    height: 138px;
    animation: floatLens 6s ease-in-out infinite reverse;
}

.metrics-band {
    padding-bottom: 16px;
}

.metrics-band__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.metrics-band__grid article {
    padding: 26px;
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.metrics-band__grid > .wp-block-group {
    padding: 26px;
    border-radius: var(--radius-medium);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-soft);
}

.metrics-band__grid strong,
.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
}

.metrics-band__grid span,
.stat-card span,
.info-card p,
.timeline-step p,
.contact-card p,
.site-footer p,
.site-footer li,
.feature-card p {
    color: var(--color-ink-soft);
}

.content-section {
    padding: var(--section-space) 0;
}

.page-builder--front .content-section {
    padding: clamp(28px, 3.6vw, 46px) 0;
}

.page-builder--front > .metrics-band,
.page-builder--front > .cta-banner,
.page-builder--front > .quote-panel {
    padding-top: clamp(22px, 3vw, 40px);
    padding-bottom: clamp(28px, 3.8vw, 44px);
}

.page-builder--front > .content-section + .content-section,
.page-builder--front > .content-section + .cta-banner,
.page-builder--front > .cta-banner + .content-section,
.page-builder--front > .metrics-band + .content-section,
.page-builder--front > .quote-panel + .content-section,
.page-builder--front > .content-section + .quote-panel {
    padding-top: clamp(16px, 2vw, 24px);
}

.content-section--soft {
    background: linear-gradient(180deg, rgba(246, 241, 232, 0.72) 0%, rgba(255, 255, 255, 0.68) 100%);
}

.content-section--brands {
    padding-top: var(--section-space-tight);
}

.page-builder--front .content-section--brands {
    padding-top: 18px;
    padding-bottom: 6px;
}

.page-builder--front .content-section--brands + .content-section {
    padding-top: 8px;
}

.content-section--split {
    padding-top: calc(var(--section-space-tight) + 4px);
}

.content-section--brands .section-heading {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
}

.content-section--brands .section-heading .section-eyebrow {
    grid-column: 1 / -1;
}

.content-section--brands .section-heading h2,
.content-section--brands .section-heading p:last-child {
    max-width: none;
    margin-top: 0;
}

.content-section--brands .section-heading h2 {
    max-width: none;
    text-wrap: balance;
}

.content-section--brands .section-heading p:last-child {
    max-width: min(74ch, 100%);
    align-self: end;
}

.section-heading {
    max-width: 760px;
    margin-bottom: clamp(24px, 3vw, 38px);
}

.page-builder--front .section-heading {
    margin-bottom: clamp(16px, 1.8vw, 24px);
}

.section-heading h2,
.split-layout h2,
.cta-banner h2,
.page-hero h1 {
    margin: 0;
    font-size: clamp(2.4rem, 3.8vw, 4.3rem);
}

.section-heading p:last-child,
.split-layout__content > p,
.page-hero__lead {
    margin-top: 20px;
    font-size: 1.05rem;
    color: var(--color-ink-soft);
    max-width: var(--copy-width);
}

.hero-section__lead,
.cta-banner__grid > div > p {
    max-width: var(--copy-width);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 24px);
}

.card-grid--services {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 24px);
}

.feature-card,
.info-card,
.contact-card,
.form-shell,
.timeline-step,
.stat-card,
.quote-panel__inner,
.testimonial-card,
.about-story {
    border-radius: var(--radius-medium);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
}

.feature-card {
    min-height: 100%;
    padding: 26px;
}

.card-grid--services {
    counter-reset: feature-card-step;
}

.card-grid--services .feature-card {
    counter-increment: feature-card-step;
}

.card-grid--services .feature-card .feature-card__index {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

.card-grid--services .feature-card h3 {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: #c79e53;
    background: linear-gradient(90deg, #b8873c 0%, #f3dc99 50%, #bf8d44 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-grid--services .feature-card h3::before {
    content: counter(feature-card-step) ".";
    flex: 0 0 auto;
    color: #c79e53;
    background: none;
    -webkit-text-fill-color: currentColor;
}

.feature-card h3,
.timeline-step h3,
.info-card h3,
.contact-card h2 {
    margin: 0 0 14px;
    font-size: 1.4rem;
    line-height: 1.2;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.95fr);
    gap: clamp(28px, 3vw, 42px);
    align-items: start;
}

.split-layout--balanced {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.split-layout--contact {
    align-items: stretch;
}

.split-layout--contact-map {
    align-items: center;
}

.split-layout__content,
.split-layout__panel {
    min-width: 0;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 16px;
}

.check-list li {
    position: relative;
    padding-left: 30px;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c8a35d 0%, #e1c07e 100%);
    box-shadow: 0 0 0 8px rgba(200, 163, 93, 0.12);
}

.info-stack,
.stat-stack {
    display: grid;
    gap: 18px;
}

.about-story {
    display: grid;
    gap: 18px;
    padding: 28px;
    margin-top: 22px;
}

.about-story p {
    margin: 0;
}

.info-card,
.stat-card {
    padding: 28px;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    counter-reset: timeline-step;
}

.brand-chip-list,
.brand-showcase-card__detail {
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
}

.brand-chip-list__link {
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 0;
    border-radius: inherit;
    color: inherit;
    text-decoration: none;
}

.brand-chip-list__label {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.brand-chip-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    min-height: 42px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--shadow-soft);
    font-weight: 600;
}

.brand-chip-list__logo-image {
    display: block;
    width: var(--brand-chip-logo-width, 168px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-chip-list__logo-image--prada,
.brand-chip-list__logo-image--gucci,
.brand-chip-list__logo-image--chloe {
    --brand-chip-logo-width: 180px;
}

.brand-chip-list__logo-image--ray-ban,
.brand-chip-list__logo-image--oakley {
    --brand-chip-logo-width: 192px;
}

.brand-chip-list__logo-image--maui-jim,
.brand-chip-list__logo-image--persol,
.brand-chip-list__logo-image--vogue {
    --brand-chip-logo-width: 204px;
}

.brand-chip-list__logo-image--versace {
    --brand-chip-logo-width: 220px;
}

.brand-chip-list__logo-image--tiffany,
.brand-chip-list__logo-image--eva-minge,
.brand-chip-list__logo-image--prada-sport {
    --brand-chip-logo-width: 270px;
}

.brand-chip-list__logo-image--bottega-veneta,
.brand-chip-list__logo-image--dolce-gabbana,
.brand-chip-list__logo-image--ysl {
    --brand-chip-logo-width: 316px;
}

.brand-chip-list__logo-image--emporio-armani,
.brand-chip-list__logo-image--albert-imstein {
    --brand-chip-logo-width: 336px;
}

.brand-rail {
    margin-bottom: 34px;
    overflow: hidden;
}

.page-builder--front .brand-rail {
    margin-bottom: 8px;
}

.brand-rail[data-brand-gallery-paused="true"] {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    touch-action: pan-x;
}

.brand-rail[data-brand-gallery-paused="true"]::-webkit-scrollbar {
    display: none;
}

.brand-rail[data-brand-gallery-paused="true"].is-dragging {
    cursor: grabbing;
    user-select: none;
}

.brand-rail__track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 6px 4px 16px;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.brand-rail[data-brand-gallery-ready="true"] .brand-rail__track {
    animation: brandRailMarquee var(--brand-rail-duration, 42s) linear infinite;
    animation-delay: var(--brand-rail-delay, 0s);
}

.brand-rail[data-brand-gallery-paused="true"] .brand-rail__track {
    animation: none !important;
    transform: none !important;
    will-change: auto;
}

@keyframes brandRailMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(calc(-1 * var(--brand-rail-loop-width, 0px)), 0, 0);
    }
}

.brand-rail-card {
    --brand-bg-start: #111111;
    --brand-bg-end: #2d261c;
    --brand-orb: rgba(255, 255, 255, 0.12);
    --brand-stroke: rgba(255, 255, 255, 0.72);
    --brand-lens: rgba(240, 228, 205, 0.2);
    display: grid;
    grid-template-rows: auto auto auto;
    flex: 0 0 clamp(350px, 27vw, 430px);
    width: clamp(350px, 27vw, 430px);
    min-height: 100%;
    border-radius: calc(var(--radius-large) + 4px);
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.brand-rail-card__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    padding: 14px 12px 8px;
}

.brand-rail-card__logo-image {
    display: block;
    width: var(--brand-rail-logo-width, 324px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.brand-rail-card--prada {
    --brand-rail-logo-width: 294px;
}

.brand-rail-card--gucci,
.brand-rail-card--chloe {
    --brand-rail-logo-width: 294px;
}

.brand-rail-card--ray-ban,
.brand-rail-card--oakley {
    --brand-rail-logo-width: 314px;
}

.brand-rail-card--maui-jim {
    --brand-rail-logo-width: 342px;
}

.brand-rail-card--persol,
.brand-rail-card--vogue {
    --brand-rail-logo-width: 330px;
}

.brand-rail-card--versace {
    --brand-rail-logo-width: 362px;
}

.brand-rail-card--tiffany,
.brand-rail-card--eva-minge,
.brand-rail-card--prada-sport {
    --brand-rail-logo-width: 438px;
}

.brand-rail-card--bottega-veneta,
.brand-rail-card--dolce-gabbana,
.brand-rail-card--ysl {
    --brand-rail-logo-width: 492px;
}

.brand-rail-card--emporio-armani,
.brand-rail-card--albert-imstein {
    --brand-rail-logo-width: 512px;
}

.brand-rail-card__wordmark {
    display: inline-block;
    color: var(--color-ink);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.brand-rail-card__wordmark--gucci {
    letter-spacing: 0.16em;
}

.brand-rail-card__wordmark--tiffany {
    letter-spacing: 0.12em;
}

.brand-rail-card__wordmark--ray-ban,
.brand-rail-card__wordmark--maui-jim {
    text-transform: none;
    letter-spacing: 0.06em;
}

.brand-rail-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    margin: 0 18px;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(145deg, var(--brand-bg-start) 0%, var(--brand-bg-end) 100%);
}

.brand-rail-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.brand-rail-card__visual {
    position: relative;
    display: grid;
    height: 100%;
    padding: 24px;
    color: rgba(255, 255, 255, 0.92);
    background: linear-gradient(145deg, var(--brand-bg-start) 0%, var(--brand-bg-end) 100%);
}

.brand-rail-card__visual::before {
    content: "";
    position: absolute;
    top: -36px;
    right: -22px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: var(--brand-orb);
    filter: blur(12px);
}

.brand-rail-card__collection,
.brand-rail-card__eyebrow {
    margin: 0;
    color: var(--color-primary);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-rail-card__collection {
    position: relative;
    z-index: 1;
    align-self: start;
    color: rgba(255, 255, 255, 0.86);
}

.brand-rail-card__glasses {
    position: relative;
    z-index: 1;
    width: min(100%, 220px);
    height: 110px;
    margin: auto;
}

.brand-rail-card__glasses span,
.brand-rail-card__glasses i {
    position: absolute;
    display: block;
}

.brand-rail-card__glasses span {
    top: 18px;
    width: 82px;
    height: 82px;
    border-radius: 52% 48% 48% 52%;
    border: 2px solid var(--brand-stroke);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), var(--brand-lens));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.brand-rail-card__glasses span:first-child {
    left: 16px;
}

.brand-rail-card__glasses span:last-child {
    right: 16px;
}

.brand-rail-card__glasses i {
    top: 50px;
    left: 50%;
    width: 36px;
    height: 2px;
    transform: translateX(-50%);
    background: var(--brand-stroke);
}

.brand-rail-card__visual p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2vw, 2.3rem);
    line-height: 1;
}

.brand-rail-card__body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 88px;
    padding: 18px;
}

.brand-rail-card__body h3 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.08;
}

.brand-rail-card__body p {
    margin: 0;
    color: var(--color-ink-soft);
}

.brand-rail-card__meta {
    font-size: 0.95rem;
}

.brand-rail-card__action {
    margin-top: auto;
    width: 100%;
    white-space: nowrap;
}

@media (min-width: 681px) {
    .content-section--brands .brand-rail {
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }

    .content-section--brands .brand-rail__track {
        padding-left: clamp(20px, 4vw, 52px);
        padding-right: clamp(20px, 4vw, 52px);
    }

    .content-section--brands .brand-rail__track {
        width: max-content;
    }
}

.brand-page-hero,
.brand-page-panel,
.brand-model-card,
.brand-page-visual {
    --brand-bg-start: #111111;
    --brand-bg-end: #2d261c;
    --brand-orb: rgba(255, 255, 255, 0.12);
    --brand-stroke: rgba(255, 255, 255, 0.72);
    --brand-lens: rgba(240, 228, 205, 0.2);
}

.brand-page-hero {
    position: relative;
    padding: 40px 0 16px;
    overflow: hidden;
}

.brand-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(200, 163, 93, 0.18), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(17, 17, 17, 0.08), transparent 28%);
    pointer-events: none;
}

.brand-page-hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 32px;
    align-items: center;
}

.brand-page-hero__content {
    display: grid;
    gap: 18px;
}

.brand-page-hero__logo {
    display: block;
    width: 220px;
    height: 48px;
    max-width: 100%;
    object-fit: contain;
}

.brand-page-hero__wordmark {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-ink);
}

.brand-page-hero h1 {
    margin: 0;
}

.brand-page-hero__lead {
    margin: 0;
    max-width: 58ch;
    color: var(--color-ink-soft);
}

.brand-page-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.brand-page-hero__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.08);
    box-shadow: var(--shadow-soft);
    color: var(--color-ink);
}

.brand-page-hero__media {
    overflow: hidden;
    min-height: 520px;
    border-radius: calc(var(--radius-large) + 4px);
    background: linear-gradient(145deg, var(--brand-bg-start) 0%, var(--brand-bg-end) 100%);
    box-shadow: var(--shadow-soft);
}

.brand-page-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-page-visual {
    position: relative;
    display: grid;
    height: 100%;
    min-height: 520px;
    padding: 32px;
    color: rgba(255, 255, 255, 0.92);
    background: linear-gradient(145deg, var(--brand-bg-start) 0%, var(--brand-bg-end) 100%);
}

.brand-page-visual::before {
    content: "";
    position: absolute;
    top: -42px;
    right: -28px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--brand-orb);
    filter: blur(14px);
}

.brand-page-visual__collection {
    position: relative;
    z-index: 1;
    align-self: start;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-page-visual__glasses {
    position: relative;
    z-index: 1;
    width: min(100%, 280px);
    height: 132px;
    margin: auto;
}

.brand-page-visual__glasses span,
.brand-page-visual__glasses i {
    position: absolute;
    display: block;
}

.brand-page-visual__glasses span {
    top: 18px;
    width: 98px;
    height: 98px;
    border-radius: 52% 48% 48% 52%;
    border: 2px solid var(--brand-stroke);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), var(--brand-lens));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.brand-page-visual__glasses span:first-child {
    left: 20px;
}

.brand-page-visual__glasses span:last-child {
    right: 20px;
}

.brand-page-visual__glasses i {
    top: 57px;
    left: 50%;
    width: 46px;
    height: 2px;
    transform: translateX(-50%);
    background: var(--brand-stroke);
}

.brand-page-visual p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2rem, 2.4vw, 2.8rem);
    line-height: 1;
}

.brand-page-panel {
    padding: 30px;
    border-radius: calc(var(--radius-large) + 2px);
    color: rgba(255, 255, 255, 0.92);
    background: linear-gradient(145deg, var(--brand-bg-start) 0%, var(--brand-bg-end) 100%);
    box-shadow: var(--shadow-soft);
}

.brand-page-panel__eyebrow {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-page-list {
    display: grid;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.brand-page-list li {
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-page-panel__note {
    display: grid;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-page-panel__note strong {
    color: #fff;
}

.brand-page-panel__note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.brand-page-gallery-section {
    display: grid;
    gap: clamp(20px, 2.6vw, 30px);
}

.brand-page-gallery-section__heading {
    max-width: min(940px, 100%);
    margin-bottom: 0;
}

.brand-page-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 22px;
    align-items: stretch;
}

.brand-page-gallery__card {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 16px;
    border-radius: calc(var(--radius-large) + 2px);
    border: 1px solid rgba(17, 17, 17, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 244, 236, 0.92) 100%);
    box-shadow: var(--shadow-soft);
}

.brand-page-gallery__card--hero {
    grid-row: 1 / span 2;
}

.brand-page-gallery__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    border-radius: calc(var(--radius-medium) - 2px);
    object-fit: cover;
    background: rgba(246, 241, 232, 0.9);
    transition: transform 0.36s ease, filter 0.36s ease;
}

.brand-page-gallery__card:hover .brand-page-gallery__image,
.brand-page-gallery__card:focus-within .brand-page-gallery__image {
    transform: scale(1.012);
    filter: saturate(1.04);
}

.brand-page-gallery__card--hero .brand-page-gallery__image {
    aspect-ratio: 5 / 6;
}

.brand-page-gallery__card--stack .brand-page-gallery__image {
    aspect-ratio: 5 / 4;
}

.brand-page-gallery__image--focus-top {
    object-position: center 18%;
}

.brand-page-gallery__image--focus-center {
    object-position: center center;
}

.brand-page-gallery__image--focus-bottom {
    object-position: center 78%;
}

.brand-page-gallery__caption {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--color-ink-soft);
}

.salon-gallery-section {
    padding: 0 0 var(--section-space);
}

.salon-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.salon-gallery__card {
    margin: 0;
    overflow: hidden;
    border-radius: calc(var(--radius-large) - 4px);
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
}

.salon-gallery__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: rgba(246, 241, 232, 0.9);
    transition: transform 0.36s ease, filter 0.36s ease;
}

.salon-gallery__card:hover .salon-gallery__image,
.salon-gallery__card:focus-within .salon-gallery__image {
    transform: scale(1.015);
    filter: saturate(1.04);
}

.brand-note-grid {
    align-items: stretch;
}

.brand-model-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.brand-model-card {
    min-height: 100%;
    padding: 28px;
    border-radius: var(--radius-large);
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.brand-model-card__eyebrow {
    margin: 0 0 12px;
    color: var(--color-primary);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-model-card h3 {
    margin: 0 0 12px;
    font-size: 1.45rem;
    line-height: 1.08;
}

.brand-model-card p {
    margin: 0;
    color: var(--color-ink-soft);
}

.brand-showcase {
    display: grid;
    gap: 30px;
}

.brand-chip-list--showcase {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 10px;
}

.brand-chip-list--showcase li {
    min-height: 72px;
    padding: 0;
    border-radius: 18px;
}

.brand-chip-list--showcase .brand-chip-list__link {
    min-height: 72px;
    padding: 10px 12px;
}

.brand-chip-list--showcase .brand-chip-list__logo-image {
    width: auto;
    height: 38px;
    max-width: 100%;
}

.brand-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.brand-showcase-card {
    --brand-bg-start: #111111;
    --brand-bg-end: #2d261c;
    --brand-orb: rgba(255, 255, 255, 0.12);
    --brand-stroke: rgba(255, 255, 255, 0.7);
    --brand-lens: rgba(240, 228, 205, 0.18);
    overflow: hidden;
    border-radius: var(--radius-large);
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.brand-showcase-card__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.brand-showcase-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-showcase-card__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
}

.brand-showcase-card__logo-image {
    display: block;
    width: var(--brand-showcase-logo-width, 220px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-showcase-card--prada,
.brand-showcase-card--gucci,
.brand-showcase-card--chloe {
    --brand-showcase-logo-width: 206px;
}

.brand-showcase-card--ray-ban,
.brand-showcase-card--oakley {
    --brand-showcase-logo-width: 220px;
}

.brand-showcase-card--maui-jim,
.brand-showcase-card--persol,
.brand-showcase-card--vogue {
    --brand-showcase-logo-width: 232px;
}

.brand-showcase-card--versace {
    --brand-showcase-logo-width: 248px;
}

.brand-showcase-card--tiffany,
.brand-showcase-card--eva-minge,
.brand-showcase-card--prada-sport {
    --brand-showcase-logo-width: 286px;
}

.brand-showcase-card--bottega-veneta,
.brand-showcase-card--dolce-gabbana,
.brand-showcase-card--ysl {
    --brand-showcase-logo-width: 332px;
}

.brand-showcase-card--emporio-armani,
.brand-showcase-card--albert-imstein {
    --brand-showcase-logo-width: 350px;
}

.brand-showcase-card__wordmark {
    display: inline-block;
    color: var(--color-ink);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.brand-showcase-card__visual {
    position: relative;
    display: grid;
    height: 100%;
    padding: 22px;
    background: linear-gradient(145deg, var(--brand-bg-start) 0%, var(--brand-bg-end) 100%);
    color: rgba(255, 255, 255, 0.92);
}

.brand-showcase-card__visual::before {
    content: "";
    position: absolute;
    top: -42px;
    right: -28px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--brand-orb);
    filter: blur(10px);
}

.brand-showcase-card__badge,
.brand-showcase-card__collection {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--color-primary);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-showcase-card__badge {
    position: relative;
    z-index: 1;
    align-self: start;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.14);
    letter-spacing: 0.08em;
}

.brand-showcase-card__glasses {
    position: relative;
    z-index: 1;
    width: min(100%, 240px);
    height: 110px;
    margin: auto;
}

.brand-showcase-card__glasses span,
.brand-showcase-card__glasses i {
    position: absolute;
    display: block;
}

.brand-showcase-card__glasses span {
    top: 16px;
    width: 84px;
    height: 84px;
    border-radius: 52% 48% 48% 52%;
    border: 2px solid var(--brand-stroke);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22), var(--brand-lens));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.brand-showcase-card__glasses span:first-child {
    left: 18px;
}

.brand-showcase-card__glasses span:last-child {
    right: 18px;
}

.brand-showcase-card__glasses i {
    top: 50px;
    left: 50%;
    width: 38px;
    height: 2px;
    transform: translateX(-50%);
    background: var(--brand-stroke);
}

.brand-showcase-card__visual p {
    position: relative;
    z-index: 1;
    margin: 0;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
}

.brand-showcase-card__body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 26px;
}

.brand-showcase-card__body h3 {
    margin: 0;
    font-size: 1.52rem;
    line-height: 1.1;
}

.brand-showcase-card__body > p {
    margin: 0;
    color: var(--color-ink-soft);
}

.brand-showcase-card__detail strong {
    color: var(--color-ink);
}

.brand-showcase-card__detail {
    display: grid;
    gap: 8px;
}

.brand-showcase-card__action {
    width: 100%;
    margin-top: auto;
}

.brand-rail-card--prada,
.brand-showcase-card--prada,
.brand-page-hero--prada,
.brand-page-panel--prada,
.brand-model-card--prada,
.brand-page-visual--prada {
    --brand-bg-start: #0b0b0d;
    --brand-bg-end: #4e432f;
    --brand-orb: rgba(196, 164, 109, 0.18);
}

.brand-rail-card--gucci,
.brand-showcase-card--gucci,
.brand-page-hero--gucci,
.brand-page-panel--gucci,
.brand-model-card--gucci,
.brand-page-visual--gucci {
    --brand-bg-start: #201614;
    --brand-bg-end: #61422b;
    --brand-orb: rgba(215, 170, 124, 0.16);
}

.brand-rail-card--dolce-gabbana,
.brand-showcase-card--dolce-gabbana,
.brand-page-hero--dolce-gabbana,
.brand-page-panel--dolce-gabbana,
.brand-model-card--dolce-gabbana,
.brand-page-visual--dolce-gabbana {
    --brand-bg-start: #161111;
    --brand-bg-end: #6f4a37;
    --brand-orb: rgba(255, 215, 174, 0.12);
}

.brand-rail-card--chloe,
.brand-showcase-card--chloe,
.brand-page-hero--chloe,
.brand-page-panel--chloe,
.brand-model-card--chloe,
.brand-page-visual--chloe {
    --brand-bg-start: #171112;
    --brand-bg-end: #8b6e61;
    --brand-orb: rgba(243, 212, 197, 0.16);
}

.brand-rail-card--tiffany,
.brand-showcase-card--tiffany,
.brand-page-hero--tiffany,
.brand-page-panel--tiffany,
.brand-model-card--tiffany,
.brand-page-visual--tiffany {
    --brand-bg-start: #0b1718;
    --brand-bg-end: #4d6a61;
    --brand-orb: rgba(141, 212, 200, 0.16);
}

.brand-rail-card--bottega-veneta,
.brand-showcase-card--bottega-veneta,
.brand-page-hero--bottega-veneta,
.brand-page-panel--bottega-veneta,
.brand-model-card--bottega-veneta,
.brand-page-visual--bottega-veneta {
    --brand-bg-start: #111312;
    --brand-bg-end: #3e4b3e;
    --brand-orb: rgba(157, 192, 140, 0.16);
}

.brand-rail-card--ray-ban,
.brand-showcase-card--ray-ban,
.brand-page-hero--ray-ban,
.brand-page-panel--ray-ban,
.brand-model-card--ray-ban,
.brand-page-visual--ray-ban {
    --brand-bg-start: #130d0c;
    --brand-bg-end: #663624;
    --brand-orb: rgba(232, 124, 92, 0.14);
}

.brand-rail-card--maui-jim,
.brand-showcase-card--maui-jim,
.brand-page-hero--maui-jim,
.brand-page-panel--maui-jim,
.brand-model-card--maui-jim,
.brand-page-visual--maui-jim {
    --brand-bg-start: #0b1821;
    --brand-bg-end: #295265;
    --brand-orb: rgba(93, 176, 205, 0.14);
}

.brand-rail-card--persol,
.brand-showcase-card--persol,
.brand-page-hero--persol,
.brand-page-panel--persol,
.brand-model-card--persol,
.brand-page-visual--persol {
    --brand-bg-start: #12100f;
    --brand-bg-end: #6a4b35;
    --brand-orb: rgba(216, 173, 126, 0.18);
}

.brand-rail-card--versace,
.brand-showcase-card--versace,
.brand-page-hero--versace,
.brand-page-panel--versace,
.brand-model-card--versace,
.brand-page-visual--versace {
    --brand-bg-start: #0d0b0b;
    --brand-bg-end: #5f4630;
    --brand-orb: rgba(218, 180, 121, 0.16);
}

.brand-rail-card--ysl,
.brand-showcase-card--ysl,
.brand-page-hero--ysl,
.brand-page-panel--ysl,
.brand-model-card--ysl,
.brand-page-visual--ysl {
    --brand-bg-start: #111214;
    --brand-bg-end: #3c4148;
    --brand-orb: rgba(199, 199, 199, 0.14);
}

.brand-rail-card--vogue,
.brand-showcase-card--vogue,
.brand-page-hero--vogue,
.brand-page-panel--vogue,
.brand-model-card--vogue,
.brand-page-visual--vogue {
    --brand-bg-start: #1a1216;
    --brand-bg-end: #8c6172;
    --brand-orb: rgba(244, 191, 213, 0.18);
}

.brand-rail-card--eva-minge,
.brand-showcase-card--eva-minge,
.brand-page-hero--eva-minge,
.brand-page-panel--eva-minge,
.brand-model-card--eva-minge,
.brand-page-visual--eva-minge {
    --brand-bg-start: #140d11;
    --brand-bg-end: #7a4258;
    --brand-orb: rgba(239, 164, 194, 0.16);
}

.brand-rail-card--albert-imstein,
.brand-showcase-card--albert-imstein,
.brand-page-hero--albert-imstein,
.brand-page-panel--albert-imstein,
.brand-model-card--albert-imstein,
.brand-page-visual--albert-imstein {
    --brand-bg-start: #111111;
    --brand-bg-end: #5c544a;
    --brand-orb: rgba(220, 197, 162, 0.14);
}

.brand-rail-card--prada-sport,
.brand-showcase-card--prada-sport,
.brand-page-hero--prada-sport,
.brand-page-panel--prada-sport,
.brand-model-card--prada-sport,
.brand-page-visual--prada-sport {
    --brand-bg-start: #0b0b0d;
    --brand-bg-end: #3d3030;
    --brand-orb: rgba(185, 94, 94, 0.18);
}

.brand-rail-card--emporio-armani,
.brand-showcase-card--emporio-armani,
.brand-page-hero--emporio-armani,
.brand-page-panel--emporio-armani,
.brand-model-card--emporio-armani,
.brand-page-visual--emporio-armani {
    --brand-bg-start: #101214;
    --brand-bg-end: #48515b;
    --brand-orb: rgba(160, 173, 191, 0.14);
}

.brand-rail-card--oakley,
.brand-showcase-card--oakley,
.brand-page-hero--oakley,
.brand-page-panel--oakley,
.brand-model-card--oakley,
.brand-page-visual--oakley {
    --brand-bg-start: #0b1216;
    --brand-bg-end: #385766;
    --brand-orb: rgba(117, 188, 220, 0.14);
}

.timeline-step {
    padding: 28px;
}

.testimonial-card {
    display: grid;
    gap: 18px;
    min-height: 100%;
    padding: 26px;
}

.testimonial-card__stars {
    color: var(--color-primary);
    letter-spacing: 0.18em;
    font-size: 1rem;
}

.testimonial-card__text {
    margin: 0;
    color: var(--color-ink-soft);
}

.testimonial-card__profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: rgba(17, 17, 17, 0.04);
}

.testimonial-card__meta {
    display: grid;
    gap: 4px;
}

.testimonial-card__author {
    margin: 0;
    font-weight: 700;
    color: var(--color-ink);
}

.testimonial-card__source {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-ink-soft);
}

.testimonial-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.timeline-step span,
.timeline-step .timeline-step__number,
.contact-process span,
.contact-process .contact-process__number {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 14px;
    background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
    color: var(--color-primary-soft);
    font-weight: 700;
}

.timeline-step {
    counter-increment: timeline-step;
}

.timeline-step .timeline-step__number {
    display: none;
}

.timeline-step > .timeline-step__number,
.timeline-step span.timeline-step__number,
.timeline-step p.timeline-step__number {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
    overflow: hidden !important;
}

.timeline-step h3 {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: #c79e53;
    background: linear-gradient(90deg, #b8873c 0%, #f3dc99 50%, #bf8d44 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline-step h3::before {
    content: counter(timeline-step) ".";
    flex: 0 0 auto;
    color: #c79e53;
    background: none;
    -webkit-text-fill-color: currentColor;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
    .card-grid--services .feature-card h3,
    .timeline-step h3 {
        color: #c79e53;
        background: none;
        -webkit-text-fill-color: currentColor;
    }
}

.cta-banner {
    padding: 20px 0 var(--section-space);
}

.cta-banner__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) auto;
    gap: 28px;
    align-items: center;
    padding: 36px;
    border-radius: calc(var(--radius-large) + 4px);
    background: linear-gradient(135deg, #050505 0%, #111111 68%, #1f1a12 100%);
    color: var(--color-white);
    box-shadow: 0 28px 56px rgba(5, 5, 5, 0.24);
}

.cta-banner__grid p {
    color: rgba(255, 255, 255, 0.76);
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

.cta-banner__actions .button {
    box-shadow: none;
}

.cta-banner__actions .wp-block-button.button .wp-block-button__link,
.cta-banner__actions .wp-block-button.button--ghost-light .wp-block-button__link,
.cta-banner__actions .wp-block-button.button--outline .wp-block-button__link {
    box-shadow: none;
}

.cta-banner__actions .button:first-child {
    background: transparent;
    color: inherit;
}

.cta-banner__actions .wp-block-button.button:first-child .wp-block-button__link {
    background-color: var(--gold-base);
    background-image: linear-gradient(135deg, #b89147 0%, var(--gold-soft) 58%, #f0d59f 100%);
    color: var(--color-ink-deep);
    border-color: #a87b33;
}

.cta-banner--compact {
    padding-top: 0;
}

.page-hero {
    padding: clamp(60px, 6vw, 84px) 0 clamp(20px, 3vw, 34px);
}

.page-hero__inner {
    max-width: 820px;
}

@media (min-width: 981px) {
    .page-builder:not(.page-builder--front) > * > .wrap,
    .page-builder:not(.page-builder--front) > * > .wp-block-group__inner-container > .wrap {
        width: min(100% - 40px, 90vw);
        max-width: 1680px;
    }

    .page-builder:not(.page-builder--front) .page-hero__inner {
        max-width: none;
    }

    .page-builder:not(.page-builder--front) .page-hero__lead,
    .page-builder:not(.page-builder--front) .brand-page-hero__lead {
        max-width: 72ch;
    }
}

.quote-panel {
    padding: 0 0 var(--section-space);
}

.quote-panel__inner {
    padding: 38px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(246, 234, 211, 0.78) 100%);
}

.quote-panel__text {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
}

.quote-panel__author {
    margin: 18px 0 0;
    color: var(--color-primary);
    font-weight: 600;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 22px);
}

.contact-card {
    padding: 24px;
}

.contact-card h2 a {
    text-decoration: none;
}

.contact-card__hours,
.site-footer__hours,
.site-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-card__hours li,
.site-footer__hours li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.contact-card__hours li:last-child,
.site-footer__hours li:last-child {
    border-bottom: 0;
}

.form-shell {
    padding: 30px;
}

.contact-details-panel,
.map-embed {
    border-radius: var(--radius-medium);
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
}

.contact-details-panel {
    display: grid;
    gap: 20px;
    padding: 30px;
}

.contact-details-panel p,
.contact-details-panel div {
    margin: 0;
}

.contact-details-panel a {
    text-decoration: none;
}

.contact-details-panel__hours {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.contact-details-panel__hours li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.contact-details-panel__hours li:last-child {
    border-bottom: 0;
}

.button--outline {
    background: rgba(255, 255, 255, 0.94);
    color: var(--color-ink);
    border-color: #b38841;
    box-shadow: none;
}

.wp-block-button.button--outline .wp-block-button__link {
    background: rgba(255, 255, 255, 0.94);
    color: var(--color-ink);
    border-color: #b38841;
    box-shadow: none;
}

.map-embed {
    overflow: hidden;
    min-height: 100%;
}

.map-embed iframe {
    display: block;
    width: 100%;
    min-height: 520px;
    border: 0;
}

.form-notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 0.95rem;
}

.form-notice--success {
    background: rgba(200, 163, 93, 0.18);
    color: #6f5522;
}

.form-notice--error {
    background: rgba(17, 17, 17, 0.08);
    color: #111111;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    font-size: 0.92rem;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    padding: 15px 16px;
    font: inherit;
    color: var(--color-ink);
    transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: rgba(200, 163, 93, 0.5);
    box-shadow: 0 0 0 4px rgba(200, 163, 93, 0.12);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-process {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.contact-process article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.contact-process > .wp-block-group {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
}

.contact-process span,
.contact-process .contact-process__number {
    margin-bottom: 0;
}

.narrow-content {
    max-width: 760px;
}

.page-polityka-prywatnosci .page-hero__inner,
.page-regulamin-serwisu .page-hero__inner,
.page-polityka-prywatnosci .narrow-content,
.page-regulamin-serwisu .narrow-content {
    max-width: none;
}

.page-polityka-prywatnosci .page-hero__lead,
.page-regulamin-serwisu .page-hero__lead {
    max-width: none;
}

.prose-content h2,
.prose-content h3 {
    font-family: var(--font-display);
    line-height: 1.1;
}

.prose-content a {
    color: var(--color-primary);
}

.blog-listing {
    padding: 80px 0;
}

.blog-listing article {
    padding: 28px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.blog-listing h2 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: 2rem;
}

.site-footer {
    position: relative;
    z-index: 6;
    display: block;
    isolation: isolate;
    clear: both;
    padding: 22px 0 36px;
}

.site-footer .wrap {
    padding: 34px;
    border-radius: calc(var(--radius-large) + 4px);
    background: rgba(5, 5, 5, 0.97);
    color: rgba(255, 255, 255, 0.86);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
    align-items: start;
}

.site-footer__grid > div {
    min-width: 0;
}

.site-footer__eyebrow {
    margin: 0 0 14px;
    color: rgba(200, 163, 93, 0.92);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.site-footer__brand {
    display: inline-block;
    margin-bottom: 0;
}

.site-footer__logo {
    width: min(100%, 220px);
    height: auto;
    display: block;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(200, 163, 93, 0.34);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    font-weight: 600;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
    background: rgba(200, 163, 93, 0.12);
    border-color: rgba(200, 163, 93, 0.5);
}

.site-footer__socials {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer__social-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.site-footer__phone-link {
    display: inline-flex;
    align-items: center;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--color-white) !important;
    -webkit-text-fill-color: var(--color-white);
    text-decoration: none;
}

.site-footer__phone-link:hover,
.site-footer__phone-link:focus-visible {
    background: transparent !important;
    color: var(--color-white) !important;
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 14px;
    color: var(--color-white);
}

.site-footer h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.05;
}

.site-footer__links {
    display: grid;
    gap: 10px;
}

.site-footer__links li,
.site-footer__grid p {
    margin: 0;
}

.site-footer__links a,
.site-footer a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--color-white);
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(200, 163, 93, 0.16);
    font-size: 0.92rem;
}

.site-footer__bottom p {
    margin: 0;
}

.site-footer__hours li span {
    flex: 1 1 auto;
    min-width: 0;
}

.site-footer__hours li strong {
    flex: 0 0 auto;
    white-space: nowrap;
    text-align: right;
}

body.has-motion [data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

body.has-motion [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatLens {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 1080px) {
    .hero-section__grid,
    .split-layout,
    .cta-banner__grid,
    .site-footer__grid,
    .brand-page-hero__grid {
        grid-template-columns: 1fr;
    }

    .card-grid--services,
    .card-grid,
    .timeline-grid,
    .brand-showcase-grid,
    .brand-model-grid,
    .testimonial-grid,
    .contact-grid,
    .metrics-band__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-section__highlights {
        grid-template-columns: 1fr;
    }

    .brand-page-hero__media,
    .brand-page-visual {
        min-height: 420px;
    }

    .brand-page-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .salon-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .brand-page-gallery__card--hero {
        grid-row: auto;
        grid-column: 1 / -1;
    }

    .brand-page-gallery__card--hero .brand-page-gallery__image {
        aspect-ratio: 16 / 10;
    }

    .cta-banner__actions,
    .site-footer__bottom {
        justify-content: flex-start;
    }

    .brand-chip-list--showcase {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .content-section--brands .section-heading {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .content-section--brands .section-heading p:last-child {
        margin-top: 0;
    }
}

@media (max-width: 900px) {
    .site-header {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        background-color: #d2ad67;
        background-image: linear-gradient(102deg, #c3984d 0%, #ecd393 100%);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.34),
            0 12px 24px rgba(101, 72, 21, 0.14);
    }

    .site-header__bar {
        min-height: 78px;
    }

    .brand__link {
        padding-bottom: 0;
    }

    .nav-toggle {
        display: block;
        background-color: #edd7a4;
        background-image: linear-gradient(135deg, #f2e1b8 0%, #ddbf79 100%);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            0 10px 22px rgba(101, 72, 21, 0.14);
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 20px;
        left: 20px;
        display: grid;
        gap: 10px;
        padding: 22px;
        border-radius: 24px;
        background-color: #d8b46f;
        background-image: linear-gradient(102deg, #ecd393 0%, #c69a4e 100%);
        border: 1px solid rgba(122, 86, 25, 0.2);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.38),
            var(--shadow-panel);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition:
            opacity 0.24s ease,
            visibility 0.24s ease,
            transform 0.24s ease;
    }

    .site-header.is-open .main-nav {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .site-header.is-open .nav-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .site-header.is-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-open .nav-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav .menu {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav .menu a {
        width: 100%;
        justify-content: center;
        min-height: 50px;
        padding: 0 18px;
        background: rgba(255, 248, 226, 0.58);
        font-weight: 600;
    }

    .main-nav__social {
        width: 46px;
        height: 46px;
        min-height: 46px;
        padding: 0;
        margin-inline: 0;
        gap: 0;
        background: rgba(255, 248, 226, 0.58);
        border: 1px solid rgba(122, 86, 25, 0.2);
        box-shadow: none;
    }

    .main-nav__socials {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 12px;
        margin-top: 6px;
    }

    .main-nav__social-icon {
        display: block;
        width: 20px;
        height: 20px;
    }

    .main-nav__social-label {
        display: none;
    }

    .main-nav .button {
        width: 100%;
    }

    .button,
    .wp-block-button.button .wp-block-button__link {
        background-color: #d2ad67;
        background-image: linear-gradient(135deg, #c19448 0%, #e6cb86 100%);
        box-shadow: 0 12px 26px rgba(122, 86, 25, 0.22);
    }

    .hero-section {
        padding-top: 64px;
    }

    .page-builder--front .hero-section {
        min-height: 100svh;
        padding-top: 94px;
        padding-bottom: 80px;
    }

    .hero-visual {
        min-height: 420px;
    }

    .brand-chip-list--showcase {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    body {
        font-size: 14px;
        line-height: 1.5;
    }

    .wrap {
        width: min(100% - 22px, var(--container));
    }

    .site-header__bar {
        min-height: 72px;
    }

    .brand__link {
        width: clamp(136px, 42vw, 178px);
        padding-bottom: 8px;
    }

    .hero-section h1,
    .page-hero h1,
    .section-heading h2,
    .split-layout h2,
    .cta-banner h2 {
        font-size: clamp(1.58rem, 6.6vw, 2.12rem);
        line-height: 1.06;
        letter-spacing: -0.03em;
    }

    .content-section {
        padding: clamp(50px, 11vw, 64px) 0;
    }

    .page-builder--front .content-section {
        padding: clamp(24px, 7vw, 36px) 0;
    }

    .page-builder--front > .metrics-band,
    .page-builder--front > .cta-banner,
    .page-builder--front > .quote-panel {
        padding-top: 18px;
        padding-bottom: 28px;
    }

    .content-section--brands {
        padding-top: 24px;
    }

    .page-builder--front .content-section--brands {
        padding-top: 10px;
        padding-bottom: 4px;
    }

    .page-builder--front .content-section--brands + .content-section {
        padding-top: 8px;
    }

    .content-section--split {
        padding-top: 30px;
    }

    .section-heading {
        margin-bottom: 22px;
    }

    .page-builder--front .section-heading {
        margin-bottom: 14px;
    }

    .hero-section__lead,
    .page-hero__lead,
    .section-heading p:last-child,
    .split-layout__content > p {
        margin-top: 12px;
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .page-builder--front .hero-section__lead {
        margin-top: 12px;
        max-width: 15ch;
        font-size: clamp(0.98rem, 4.2vw, 1.22rem);
        line-height: 1.18;
    }

    .page-builder--front .hero-section h1 {
        font-size: clamp(1.86rem, 7vw, 2.42rem);
        max-width: 8.5ch;
    }

    .page-builder--front .hero-visual,
    .page-builder--front > .metrics-band,
    .page-builder--front > .content-section--split {
        display: none;
    }

    .page-builder--front .hero-section__actions .wp-block-button.button--ghost,
    .page-builder--front .hero-section__actions .button--ghost {
        display: none;
    }

    .page-builder--front .hero-section__actions {
        display: none;
    }

    .page-builder--front .section-heading p:last-child,
    .page-builder--front .cta-banner__grid > div > p {
        display: none;
    }

    .hero-section__actions {
        gap: 8px;
        margin-top: 18px;
    }

    .hero-section__contact {
        margin-top: 8px;
        font-size: 0.82rem;
    }

    .hero-section__highlights {
        gap: 8px;
        margin-top: 18px;
    }

    .hero-section__highlights li,
    .page-builder--front .hero-section__highlights li {
        padding: 10px 12px;
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .page-builder--front .hero-section__highlights {
        display: none;
    }

    .page-builder--front .hero-section__highlights li:nth-child(n + 3),
    .page-builder--front .testimonial-grid > *:nth-child(n + 3) {
        display: none;
    }

    .hero-visual {
        min-height: 0;
    }

    .hero-visual__panel,
    .hero-visual__cards article,
    .hero-visual__cards > .wp-block-group,
    .feature-card,
    .info-card,
    .contact-card,
    .form-shell,
    .timeline-step,
    .stat-card,
    .quote-panel__inner,
    .testimonial-card,
    .about-story,
    .metrics-band__grid article,
    .metrics-band__grid > .wp-block-group,
    .site-footer .wrap,
    .cta-banner__grid,
    .brand-page-panel,
    .brand-model-card {
        padding: 16px;
    }

    .feature-card h3,
    .timeline-step h3,
    .info-card h3,
    .contact-card h2 {
        margin-bottom: 8px;
        font-size: 1rem;
        line-height: 1.25;
    }

    .metrics-band__grid strong,
    .stat-card strong {
        font-size: 1.34rem;
    }

    .metrics-band__grid,
    .card-grid--services,
    .card-grid,
    .timeline-grid,
    .brand-showcase-grid,
    .brand-model-grid,
    .testimonial-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .split-layout,
    .cta-banner__grid,
    .brand-page-hero__grid {
        gap: 18px;
    }

    .card-grid,
    .timeline-grid,
    .testimonial-grid,
    .contact-grid,
    .metrics-band__grid,
    .info-stack,
    .stat-stack,
    .about-story {
        gap: 12px;
    }

    .section-eyebrow,
    .hero-visual__label,
    .info-card__eyebrow,
    .contact-card__label {
        gap: 10px;
        margin-bottom: 12px;
        font-size: 0.74rem;
        letter-spacing: 0.16em;
    }

    .section-eyebrow::before,
    .hero-visual__label::before,
    .info-card__eyebrow::before,
    .contact-card__label::before {
        width: 24px;
    }

    .check-list {
        gap: 12px;
        margin-top: 18px;
    }

    .check-list li {
        padding-left: 24px;
        font-size: 0.88rem;
    }

    .check-list li::before {
        top: 8px;
        width: 10px;
        height: 10px;
        box-shadow: 0 0 0 6px rgba(200, 163, 93, 0.12);
    }

    .about-story,
    .info-card,
    .stat-card,
    .feature-card,
    .timeline-step,
    .contact-card {
        gap: 12px;
    }

    .page-builder--front .feature-card p,
    .page-builder--front .timeline-step p,
    .page-builder--front .testimonial-card__text {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .page-builder--front .feature-card p,
    .page-builder--front .timeline-step p {
        -webkit-line-clamp: 3;
    }

    .page-builder--front .testimonial-card__text {
        -webkit-line-clamp: 4;
    }

    .brand-chip-list--showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-section--brands .brand-rail {
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }

    .brand-rail {
        margin-bottom: 24px;
    }

    .brand-rail__track {
        display: flex;
        width: max-content;
        gap: 12px;
        padding: 4px 11px 10px;
        will-change: transform;
        backface-visibility: hidden;
    }

    .brand-rail-card {
        flex: 0 0 clamp(166px, calc((100vw - 34px) / 2), 228px);
        width: clamp(166px, calc((100vw - 34px) / 2), 228px);
        border-radius: 24px;
    }

    .brand-rail-card__brand {
        min-height: 78px;
        padding: 8px 4px 6px;
    }

    .brand-rail-card__media {
        margin: 0 12px;
        border-radius: 20px;
    }

    .brand-rail-card__visual {
        padding: 14px;
    }

    .brand-rail-card__collection,
    .brand-rail-card__eyebrow {
        font-size: 0.64rem;
        letter-spacing: 0.12em;
    }

    .brand-rail-card__glasses {
        width: min(100%, 128px);
        height: 64px;
    }

    .brand-rail-card__glasses span {
        top: 10px;
        width: 48px;
        height: 48px;
    }

    .brand-rail-card__glasses span:first-child {
        left: 8px;
    }

    .brand-rail-card__glasses span:last-child {
        right: 8px;
    }

    .brand-rail-card__glasses i {
        top: 28px;
        width: 20px;
    }

    .brand-rail-card__visual p {
        font-size: clamp(1rem, 4.8vw, 1.3rem);
    }

    .brand-rail-card__body {
        min-height: 78px;
        padding: 14px 12px;
    }

    .brand-rail-card__body h3 {
        font-size: 1.08rem;
    }

    .page-builder--front .brand-rail-card__body {
        min-height: auto;
        gap: 6px;
    }

    .brand-rail-card__body p,
    .brand-rail-card__meta {
        font-size: 0.84rem;
    }

    .page-builder--front .brand-rail-card__body p,
    .page-builder--front .brand-rail-card__meta {
        display: none;
    }

    .brand-rail-card__action {
        min-height: 42px;
        padding: 0 12px;
        font-size: 0.84rem;
        letter-spacing: 0;
    }

    .brand-page-hero {
        padding: 22px 0 10px;
    }

    .brand-page-hero__content {
        gap: 12px;
    }

    .brand-page-hero__logo {
        width: 180px;
        height: 40px;
    }

    .brand-page-hero__lead {
        font-size: 0.88rem;
        line-height: 1.55;
        max-width: none;
    }

    .brand-page-hero__meta {
        gap: 10px;
    }

    .brand-page-hero__meta span {
        font-size: 0.78rem;
    }

    .brand-page-panel p,
    .brand-page-gallery__caption,
    .brand-model-card p,
    .testimonial-card p,
    .contact-card p,
    .info-card p,
    .feature-card p,
    .timeline-step p {
        font-size: 0.87rem;
        line-height: 1.55;
    }

    .quote-panel__text {
        font-size: clamp(1.24rem, 5.4vw, 1.58rem);
        line-height: 1.18;
    }

    .quote-panel__author {
        font-size: 0.84rem;
    }

    .cta-banner__grid {
        gap: 14px;
    }

    .cta-banner__actions {
        gap: 8px;
    }

    .page-builder--front .cta-banner__actions .wp-block-button.button--ghost-light,
    .page-builder--front .cta-banner__actions .wp-block-button.button--outline,
    .page-builder--front .cta-banner__actions .button--ghost-light,
    .page-builder--front .cta-banner__actions .button--outline {
        display: none;
    }

    .button,
    .button--small,
    .wp-block-button .wp-block-button__link {
        font-size: 0.88rem;
    }

    .hero-section__actions,
    .cta-banner__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .button,
    .button--small {
        width: 100%;
        min-height: 44px;
    }

    .page-builder--front .hero-section {
        height: calc(100svh - 72px);
        min-height: calc(100svh - 72px);
        max-height: calc(100svh - 72px);
        padding-top: 10px;
        padding-bottom: max(8px, env(safe-area-inset-bottom));
        align-items: stretch;
        overflow: hidden;
    }

    .page-builder--front .hero-section .wrap {
        width: min(100% - 16px, var(--container));
    }

    .home-hero-gallery {
        height: 100%;
        min-height: 100%;
        max-height: none;
    }

    .page-builder--front .hero-section > .wp-block-group__inner-container,
    .page-builder--front .hero-section__grid {
        display: flex;
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        height: 100%;
        min-height: 100%;
        align-items: stretch;
    }

    .page-builder--front .hero-section__grid {
        display: grid;
    }

    .page-builder--front .hero-section__content {
        display: flex;
        height: 100%;
        min-height: 100%;
        width: 100%;
        max-width: 100%;
        align-self: stretch;
        overflow: hidden;
    }

    .page-builder--front .hero-section__content > .wp-block-group__inner-container {
        display: flex;
        flex-direction: column;
        position: relative;
        flex: 1 1 auto;
        height: 100%;
        min-height: 100%;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding-top: calc(96px + 5svh);
        padding-bottom: calc(154px + env(safe-area-inset-bottom));
        overflow-x: clip;
    }

    .page-builder--front .hero-section .section-eyebrow {
        display: none;
    }

    .page-builder--front .hero-section h1,
    .page-builder--front .hero-section__lead {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .page-builder--front .hero-section h1 {
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        padding-inline: 6px;
        font-size: clamp(1.72rem, 6.8vw, 2.28rem);
        line-height: 0.9;
        white-space: nowrap;
        color: #e3c070;
        background: linear-gradient(90deg, #b8873c 0%, #f3dc99 50%, #bf8d44 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        overflow-wrap: normal;
        word-break: normal;
        text-wrap: nowrap;
    }

    .page-builder--front .hero-section__lead {
        margin-top: 6px;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
        padding-inline: 6px;
        font-size: clamp(0.96rem, 4.1vw, 1.12rem);
        line-height: 1.24;
        color: rgba(255, 255, 255, 0.94);
        text-wrap: pretty;
    }

    .page-builder--front .hero-section__lead::after {
        content: "26 lat doświadczenia w dobieraniu okularów do indywidualnych potrzeb i stylu klienta";
        display: block;
        width: 100%;
        max-width: 100%;
        margin-top: clamp(118px, 55svh, 340px);
        padding: 12px 14px;
        border: 1px solid rgba(200, 163, 93, 0.34);
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(20, 18, 14, 0.72) 0%, rgba(33, 28, 22, 0.52) 100%);
        box-shadow:
            0 14px 28px rgba(7, 7, 7, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.05);
        color: rgba(255, 249, 239, 0.92);
        font-size: 0.88rem;
        line-height: 1.35;
        text-align: center;
        text-wrap: balance;
    }

    .page-builder--front .hero-section__dock {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
        position: absolute;
        left: 0;
        right: 0;
        bottom: max(10px, env(safe-area-inset-bottom));
        margin: 0;
    }

    .page-builder--front .hero-section__highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .page-builder--front .hero-section__contact {
        display: none;
    }

    .page-builder--front .hero-section__highlights li {
        min-width: 0;
        padding: 10px 12px;
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .page-builder--front .hero-section__highlights li:nth-child(n + 3),
    .page-builder--front .hero-section__actions .wp-block-button:nth-child(n + 2) {
        display: none;
    }

    .page-builder--front .hero-section__cta-link {
        width: 100%;
        min-height: 42px;
        font-size: 0.92rem;
    }

    .brand-page-hero__meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-page-hero__media,
    .brand-page-visual {
        min-height: 320px;
    }

    .brand-page-panel,
    .brand-model-card,
    .brand-page-gallery__card {
        padding: 16px;
    }

    .brand-page-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .salon-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .salon-gallery__image {
        aspect-ratio: 4 / 4.7;
    }

    .brand-page-gallery__card--hero .brand-page-gallery__image,
    .brand-page-gallery__card--stack .brand-page-gallery__image {
        min-height: 240px;
        aspect-ratio: 4 / 3;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-footer__social-link {
        width: 100%;
    }

    .site-footer__socials {
        display: grid;
        width: 100%;
        gap: 10px;
    }

    .site-footer__grid {
        gap: 18px;
    }

    .site-footer h4 {
        margin-bottom: 10px;
        font-size: 0.94rem;
    }

    .site-footer p,
    .site-footer li,
    .site-footer a {
        font-size: 0.86rem;
        line-height: 1.5;
    }

    .site-footer__bottom .site-footer__social-link {
        width: 100%;
    }

    body,
    .site-main {
        overflow-x: hidden;
    }
}

@media (max-width: 420px) {
    .wrap {
        width: min(100% - 18px, var(--container));
    }

    .site-header__bar {
        min-height: 68px;
    }

    .brand__link {
        width: clamp(124px, 40vw, 162px);
    }

    .hero-section h1,
    .page-hero h1,
    .section-heading h2,
    .split-layout h2,
    .cta-banner h2 {
        font-size: clamp(1.44rem, 7.4vw, 1.9rem);
    }

    .page-builder--front .hero-section {
        height: calc(100svh - 68px);
        min-height: calc(100svh - 68px);
        max-height: calc(100svh - 68px);
        padding-top: 8px;
        padding-bottom: max(6px, env(safe-area-inset-bottom));
    }

    .page-builder--front .hero-section .wrap {
        width: min(100% - 12px, var(--container));
    }

    .home-hero-gallery {
        height: 100%;
        min-height: 100%;
        max-height: none;
    }

    .page-builder--front .hero-section > .wp-block-group__inner-container,
    .page-builder--front .hero-section__grid,
    .page-builder--front .hero-section__content,
    .page-builder--front .hero-section__content > .wp-block-group__inner-container {
        height: 100%;
        min-height: 100%;
    }

    .page-builder--front .hero-section__content > .wp-block-group__inner-container {
        padding-top: calc(78px + 5svh);
        padding-bottom: calc(150px + env(safe-area-inset-bottom));
    }

    .page-builder--front .hero-section h1 {
        font-size: clamp(1.5rem, 6.1vw, 1.86rem);
        line-height: 0.92;
        white-space: nowrap;
    }

    .page-builder--front .hero-section__lead {
        font-size: clamp(0.88rem, 3.8vw, 1rem);
        line-height: 1.2;
    }

    .page-builder--front .hero-section__lead::after {
        margin-top: clamp(102px, 53svh, 280px);
        padding: 10px 12px;
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .page-builder--front .hero-section__dock {
        gap: 0;
        bottom: max(8px, env(safe-area-inset-bottom));
    }

    .page-builder--front .hero-section__highlights {
        display: none;
    }

    .page-builder--front .hero-section__highlights li {
        padding: 10px 8px;
        font-size: 0.74rem;
        line-height: 1.3;
    }

    .page-builder--front .hero-section__cta-link {
        min-height: 40px;
        font-size: 0.88rem;
    }

    @supports not ((-webkit-background-clip: text) or (background-clip: text)) {
        .page-builder--front .hero-section h1 {
            color: #e3c070;
        }
    }

    .salon-gallery__image {
        aspect-ratio: 4 / 4.9;
    }

    .hero-visual__panel,
    .hero-visual__cards article,
    .hero-visual__cards > .wp-block-group,
    .feature-card,
    .info-card,
    .contact-card,
    .timeline-step,
    .stat-card,
    .quote-panel__inner,
    .testimonial-card,
    .about-story,
    .metrics-band__grid article,
    .metrics-band__grid > .wp-block-group,
    .site-footer .wrap,
    .cta-banner__grid,
    .brand-page-panel,
    .brand-model-card,
    .brand-page-gallery__card {
        padding: 14px;
    }

    .brand-rail-card {
        flex-basis: clamp(156px, calc((100vw - 28px) / 2), 210px);
        width: clamp(156px, calc((100vw - 28px) / 2), 210px);
    }

    .brand-page-gallery__card--hero .brand-page-gallery__image,
    .brand-page-gallery__card--stack .brand-page-gallery__image {
        min-height: 212px;
    }

    .brand-rail-card__action {
        font-size: 0.76rem;
    }

}
