/* Homepage redesign: editorial hero, nail tunnel, and studio gallery. */

.home-hero {
    --hero-ink: #2d211c;
    --hero-muted: #6f625a;
    --hero-bronze: #9a7552;
    --hero-line: rgba(91, 65, 47, 0.14);
    position: relative;
    isolation: isolate;
    min-height: min(820px, calc(100vh - 150px));
    overflow: hidden;
    color: var(--hero-ink);
    background:
        radial-gradient(circle at 76% 48%, rgba(255, 255, 255, 0.96) 0 7%, rgba(250, 240, 230, 0.54) 23%, transparent 48%),
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.9), transparent 32%),
        linear-gradient(118deg, #f8f4ef 0%, #f1e9df 50%, #eadbcd 100%);
}

.home-hero::before,
.home-hero::after {
    position: absolute;
    z-index: -1;
    width: 44vw;
    height: 44vw;
    border: 1px solid rgba(132, 96, 68, 0.1);
    border-radius: 50%;
    content: "";
}

.home-hero::before {
    top: -28vw;
    left: -12vw;
}

.home-hero::after {
    right: -18vw;
    bottom: -30vw;
}

.home-hero__ambient {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.home-hero__ambient::before {
    position: absolute;
    top: -25%;
    left: 43%;
    width: 22%;
    height: 140%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
    filter: blur(32px);
    content: "";
    transform: rotate(17deg);
}

.home-hero__layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.84fr) minmax(560px, 1.16fr);
    align-items: center;
    width: min(100% - 72px, 1540px);
    min-height: inherit;
    margin: 0 auto;
}

.home-hero__copy {
    position: relative;
    z-index: 20;
    max-width: 640px;
    padding: 72px 0 88px;
}

.home-hero__eyebrow,
.studio-gallery__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    margin: 0 0 24px;
    padding: 4px 13px;
    border: 1px solid rgba(136, 98, 67, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.44);
    color: #7f5f45;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-transform: uppercase;
}

.home-hero__title {
    max-width: 690px;
    margin: 0;
    color: var(--hero-ink);
    font-family: var(--font-display);
    font-size: clamp(58px, 5.6vw, 92px);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.88;
}

.home-hero__title span,
.home-hero__title em {
    display: block;
}

.home-hero__title em {
    min-height: 1em;
    margin-top: 0.12em;
    color: var(--hero-bronze);
    font-weight: 400;
    transition: opacity 260ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.home-hero__title em.is-exiting {
    opacity: 0;
    transform: translateY(14px);
}

.home-hero__title em.is-entering {
    animation: home-title-in 700ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes home-title-in {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
}

.home-hero__intro {
    max-width: 550px;
    margin: 31px 0 0;
    color: var(--hero-muted);
    font-family: var(--font-ui);
    font-size: clamp(15px, 1.2vw, 18px);
    font-weight: 400;
    line-height: 1.65;
}

.home-hero__actions {
    display: flex;
    align-items: center;
    gap: 10px 24px;
    margin-top: 30px;
}

.home-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    min-height: 52px;
    border-radius: 999px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.home-hero__button:hover {
    transform: translateY(-2px);
}

.home-hero__button--primary {
    padding: 0 15px 0 22px;
    background: var(--hero-ink);
    color: #fff;
    box-shadow: 0 14px 28px rgba(46, 31, 24, 0.16);
}

.home-hero__button--primary > span:last-child {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.home-hero__button--primary:hover {
    color: #fff;
    background: #4a352a;
}

.home-hero__button--text {
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid rgba(59, 42, 34, 0.25);
    background: rgba(255, 252, 248, 0.48);
    color: var(--hero-ink);
}

.home-hero__button--text:hover {
    border-color: var(--hero-ink);
    color: #fff;
    background: var(--hero-ink);
}

.home-hero__button:active {
    transform: translateY(1px) scale(0.985);
}

.home-hero__details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 31px 0 0;
    padding: 0;
    color: #756a62;
    font-family: var(--font-ui);
    font-size: 11px;
    list-style: none;
}

.home-hero__details li {
    display: flex;
    align-items: center;
}

.home-hero__details li > span:first-child {
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: #b89569;
    box-shadow: 0 0 0 4px rgba(184, 149, 105, 0.1);
}

.image-tunnel {
    position: relative;
    align-self: stretch;
    min-width: 0;
    min-height: 680px;
}

.image-tunnel__rings {
    position: absolute;
    inset: 7% -6% 11% 0;
    background:
        radial-gradient(circle at center, transparent 0 18%, rgba(144, 106, 77, 0.1) 18.15% 18.35%, transparent 18.5% 34%, rgba(144, 106, 77, 0.09) 34.15% 34.35%, transparent 34.5% 50%, rgba(144, 106, 77, 0.08) 50.15% 50.35%, transparent 50.5% 66%, rgba(144, 106, 77, 0.07) 66.15% 66.35%, transparent 66.5%);
    pointer-events: none;
}

.image-tunnel__rings::after {
    position: absolute;
    inset: 10%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 250, 244, 0.98), rgba(246, 224, 209, 0.35) 36%, transparent 70%);
    filter: blur(18px);
    content: "";
}

.image-tunnel__viewport {
    position: absolute;
    inset: 5% -2% 11% -2%;
    overflow: hidden;
    perspective: 900px;
    perspective-origin: 50% 50%;
    clip-path: ellipse(50% 48% at 50% 50%);
    -webkit-mask-image: radial-gradient(ellipse 50% 48% at 50% 50%, #000 0 68%, rgba(0, 0, 0, 0.88) 80%, rgba(0, 0, 0, 0.28) 93%, transparent 100%);
    mask-image: radial-gradient(ellipse 50% 48% at 50% 50%, #000 0 68%, rgba(0, 0, 0, 0.88) 80%, rgba(0, 0, 0, 0.28) 93%, transparent 100%);
}

.image-tunnel__scene {
    --tunnel-rx: 0deg;
    --tunnel-ry: 0deg;
    position: absolute;
    inset: 0;
    transform: rotateX(var(--tunnel-rx)) rotateY(var(--tunnel-ry));
    transform-style: preserve-3d;
    transition: transform 110ms linear;
}

.tunnel-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(118px, 10vw, 164px);
    aspect-ratio: 1.12 / 1;
    margin: 0;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.86);
    border-radius: 19px;
    background: #e5d7cd;
    box-shadow: 0 22px 45px rgba(58, 40, 31, 0.21), 0 4px 12px rgba(58, 40, 31, 0.12);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform-origin: center;
    will-change: transform, opacity, filter;
}

.tunnel-card--portrait {
    width: clamp(105px, 8.6vw, 142px);
    aspect-ratio: 0.76 / 1;
}

.tunnel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-tunnel__core {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 140;
    display: grid;
    width: clamp(118px, 9.3vw, 146px);
    aspect-ratio: 1;
    place-items: center;
    padding: 14px;
    border: 1px solid rgba(142, 105, 76, 0.18);
    border-radius: 50%;
    background: rgba(255, 252, 247, 0.94);
    box-shadow: 0 20px 65px rgba(82, 52, 36, 0.2), inset 0 0 0 8px rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%);
}

.image-tunnel__core::before {
    position: absolute;
    inset: -44%;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 246, 220, 0.95), rgba(212, 169, 134, 0.22) 42%, transparent 69%);
    filter: blur(6px);
    content: "";
    animation: tunnel-halo 4.5s ease-in-out infinite;
}

@keyframes tunnel-halo {
    50% {
        opacity: 0.62;
        transform: scale(1.12);
    }
}

.image-tunnel__core img {
    width: 86%;
    height: 86%;
    object-fit: contain;
    /* Transparent monogram sits cleanly on cream circular badge */
    filter: drop-shadow(0 2px 6px rgba(100, 70, 40, 0.12));
}

.image-tunnel__core small {
    position: absolute;
    top: calc(100% + 13px);
    width: max-content;
    color: #8a6b55;
    font-family: var(--font-ui);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.image-tunnel__footer {
    position: absolute;
    right: 4%;
    bottom: 4%;
    left: 5%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.image-tunnel__footer a,
.image-tunnel__toggle {
    color: #4a3a30;
}

.image-tunnel__footer a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}

.image-tunnel__toggle {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 7px 0;
    border: 0;
    background: transparent;
    font: inherit;
    letter-spacing: inherit;
    cursor: pointer;
}

.image-tunnel__toggle > span {
    width: 8px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-left: 2px solid currentColor;
}

.image-tunnel__toggle[aria-pressed="true"] > span {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-right: 0;
    border-bottom: 5px solid transparent;
    border-left: 8px solid currentColor;
}

.image-tunnel__toggle b {
    font: inherit;
}

.home-hero a:focus-visible,
.home-hero button:focus-visible {
    outline: 2px solid #6d4935;
    outline-offset: 5px;
}

/* Studio image grid replacing the former homepage services section. */
.studio-gallery {
    width: min(100% - 72px, 1440px);
    margin: 0 auto;
    padding: clamp(92px, 9vw, 150px) 0;
}

.studio-gallery__heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.62fr);
    gap: 56px;
    align-items: end;
    margin-bottom: 46px;
}

.studio-gallery__heading h2 {
    max-width: 850px;
    margin: 0;
    color: #3b2a22;
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.studio-gallery__heading > p {
    max-width: 440px;
    margin: 0 0 7px;
    color: #75675e;
    font-family: var(--font-ui);
    font-size: 14px;
    line-height: 1.75;
}

.studio-gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(3, clamp(190px, 17vw, 260px));
    gap: 12px;
}

.studio-gallery__item {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #ddcec2;
}

.studio-gallery__item:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
}

.studio-gallery__item:nth-child(2) {
    grid-column: 7 / 10;
    grid-row: 1 / 3;
}

.studio-gallery__item:nth-child(3) {
    grid-column: 10 / 13;
    grid-row: 1 / 3;
}

.studio-gallery__item:nth-child(4) {
    grid-column: 1 / 8;
    grid-row: 3;
}

.studio-gallery__item:nth-child(5) {
    grid-column: 8 / 13;
    grid-row: 3;
}

.studio-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

.studio-gallery__item:hover img {
    transform: scale(1.035);
}

.studio-gallery__item::after {
    position: absolute;
    inset: 50% 0 0;
    background: linear-gradient(transparent, rgba(39, 27, 21, 0.6));
    content: "";
    pointer-events: none;
}

.studio-gallery__item figcaption {
    position: absolute;
    right: 20px;
    bottom: 17px;
    left: 20px;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    color: #fff;
    font-family: var(--font-ui);
}

.studio-gallery__item figcaption span {
    font-size: 9px;
    letter-spacing: 0.15em;
    opacity: 0.72;
}

.studio-gallery__item figcaption b {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: right;
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .home-hero__layout {
        grid-template-columns: minmax(330px, 0.78fr) minmax(490px, 1.22fr);
        width: min(100% - 48px, 1180px);
    }

    .home-hero__title {
        font-size: clamp(54px, 6.2vw, 76px);
    }

    .home-hero__details {
        gap: 10px 15px;
    }
}

@media (max-width: 991px) {
    .home-hero {
        min-height: 1050px;
    }

    .home-hero__layout {
        display: block;
        width: 100%;
    }

    .home-hero__copy {
        max-width: 720px;
        margin: 0 auto;
        padding: 68px 32px 0;
        text-align: center;
    }

    .home-hero__title {
        max-width: 720px;
        font-size: clamp(56px, 9.3vw, 82px);
    }

    .home-hero__intro {
        margin-right: auto;
        margin-left: auto;
    }

    .home-hero__actions,
    .home-hero__details {
        justify-content: center;
    }

    .image-tunnel {
        min-height: 590px;
        margin-top: -10px;
    }

    .image-tunnel__viewport {
        inset: 1% 0 11%;
    }

    .image-tunnel__rings {
        inset: 0 -8% 8%;
    }

    .studio-gallery {
        width: min(100% - 40px, 920px);
    }

    .studio-gallery__heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 575px) {
    .home-hero {
        min-height: 890px;
    }

    .home-hero__copy {
        padding: 40px 20px 0;
    }

    .home-hero__eyebrow {
        margin-bottom: 18px;
    }

    .home-hero__title {
        font-size: clamp(42px, 11.8vw, 52px);
        line-height: 0.91;
    }

    .home-hero__intro {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.55;
    }

    .home-hero__actions {
        gap: 12px;
        margin-top: 22px;
    }

    .home-hero__button--primary {
        min-height: 48px;
        padding-left: 17px;
        font-size: 11px;
    }

    .home-hero__button--text {
        display: none;
    }

    .home-hero__details {
        gap: 9px 16px;
        margin-top: 20px;
        font-size: 9px;
    }

    .home-hero__details li:last-child {
        display: none;
    }

    .image-tunnel {
        min-height: 430px;
        margin-top: 0;
    }

    .image-tunnel__viewport {
        inset: -2% -9% 10%;
        clip-path: ellipse(56% 48% at 50% 50%);
        -webkit-mask-image: radial-gradient(ellipse 56% 48% at 50% 50%, #000 0 68%, rgba(0, 0, 0, 0.88) 80%, rgba(0, 0, 0, 0.28) 93%, transparent 100%);
        mask-image: radial-gradient(ellipse 56% 48% at 50% 50%, #000 0 68%, rgba(0, 0, 0, 0.88) 80%, rgba(0, 0, 0, 0.28) 93%, transparent 100%);
        perspective: 760px;
    }

    .image-tunnel__rings {
        inset: -6% -24% 3%;
    }

    .tunnel-card {
        width: 94px;
        border-width: 2px;
        border-radius: 14px;
    }

    .tunnel-card--portrait {
        width: 78px;
    }

    .image-tunnel__core {
        width: 92px;
        padding: 11px;
    }

    .image-tunnel__core small {
        top: calc(100% + 9px);
        font-size: 6px;
    }

    .image-tunnel__footer {
        right: 18px;
        bottom: 10px;
        left: 18px;
        font-size: 8px;
    }

    .studio-gallery {
        width: calc(100% - 28px);
        padding: 80px 0;
    }

    .studio-gallery__heading {
        margin-bottom: 28px;
    }

    .studio-gallery__heading h2 {
        font-size: clamp(39px, 11.5vw, 54px);
    }

    .studio-gallery__heading > p {
        font-size: 13px;
    }

    .studio-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 250px 300px 180px;
        gap: 8px;
    }

    .studio-gallery__item {
        border-radius: 12px;
    }

    .studio-gallery__item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .studio-gallery__item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .studio-gallery__item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .studio-gallery__item:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }

    .studio-gallery__item:nth-child(5) {
        grid-column: 2;
        grid-row: 3;
    }

    .studio-gallery__item figcaption {
        right: 12px;
        bottom: 11px;
        left: 12px;
    }

    .studio-gallery__item figcaption b {
        font-size: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__title em,
    .tunnel-card,
    .image-tunnel__scene,
    .image-tunnel__core::before,
    .studio-gallery__item img {
        animation: none !important;
        transition: none !important;
    }
}

/* Home story and compact 8-image gallery composition. */
.home-story > .section-divider-line {
    display: none;
}

.editorial-gallery.blanc-gallery-zone {
    padding: clamp(96px, 9vw, 144px) 0 clamp(100px, 10vw, 160px);
}

.editorial-gallery .blanc-gallery-head {
    grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 0.55fr);
    justify-content: space-between;
    margin-bottom: clamp(42px, 5vw, 72px);
}

.editorial-gallery .blanc-gallery-title {
    font-size: clamp(58px, 7vw, 108px) !important;
    letter-spacing: -0.045em !important;
    line-height: 0.88 !important;
}

.editorial-gallery .blanc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(3, clamp(210px, 21vw, 310px));
    gap: clamp(10px, 1vw, 16px);
}

.editorial-gallery .blanc-gallery-card:nth-child(1) { grid-area: 1 / 1 / 3 / 6; }
.editorial-gallery .blanc-gallery-card:nth-child(2) { grid-area: 1 / 6 / 2 / 10; }
.editorial-gallery .blanc-gallery-card:nth-child(3) { grid-area: 1 / 10 / 2 / 13; }
.editorial-gallery .blanc-gallery-card:nth-child(4) { grid-area: 2 / 6 / 3 / 9; }
.editorial-gallery .blanc-gallery-card:nth-child(5) { grid-area: 2 / 9 / 3 / 13; }
.editorial-gallery .blanc-gallery-card:nth-child(6) { grid-area: 3 / 1 / 4 / 4; }
.editorial-gallery .blanc-gallery-card:nth-child(7) { grid-area: 3 / 4 / 4 / 9; }
.editorial-gallery .blanc-gallery-card:nth-child(8) { grid-area: 3 / 9 / 4 / 13; }

@media (max-width: 960px) {
    .editorial-gallery .blanc-gallery-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-template-rows: repeat(5, minmax(190px, 30vw));
    }

    .editorial-gallery .blanc-gallery-card:nth-child(1) { grid-area: 1 / 1 / 3 / 4; }
    .editorial-gallery .blanc-gallery-card:nth-child(2) { grid-area: 1 / 4 / 2 / 7; }
    .editorial-gallery .blanc-gallery-card:nth-child(3) { grid-area: 2 / 4 / 3 / 7; }
    .editorial-gallery .blanc-gallery-card:nth-child(4) { grid-area: 3 / 1 / 4 / 3; }
    .editorial-gallery .blanc-gallery-card:nth-child(5) { grid-area: 3 / 3 / 4 / 7; }
    .editorial-gallery .blanc-gallery-card:nth-child(6) { grid-area: 4 / 1 / 5 / 4; }
    .editorial-gallery .blanc-gallery-card:nth-child(7) { grid-area: 4 / 4 / 5 / 7; }
    .editorial-gallery .blanc-gallery-card:nth-child(8) { grid-area: 5 / 2 / 6 / 6; }
}

@media (max-width: 600px) {
    .editorial-gallery .blanc-gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 8px;
    }

    .editorial-gallery .blanc-gallery-card,
    .editorial-gallery .blanc-gallery-card:nth-child(n) {
        grid-area: auto;
        width: auto;
        height: 230px;
        align-self: auto;
    }

    .editorial-gallery .blanc-gallery-card:nth-child(1),
    .editorial-gallery .blanc-gallery-card:nth-child(6) {
        grid-column: 1 / 3;
        height: 360px;
    }
}

/* Salon overview — editorial interlude between services and rituals. */
.home-overview {
    --overview-ink: #352923;
    --overview-muted: #76685f;
    --overview-line: rgba(92, 69, 55, 0.22);
    scroll-margin-top: 110px;
    padding: clamp(88px, 10vw, 150px) clamp(20px, 5vw, 76px);
    background: rgba(246, 241, 235, 0.82);
    color: var(--overview-ink);
}

.home-overview__shell {
    width: min(1380px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: clamp(48px, 7vw, 112px);
    align-items: center;
}

.home-overview__visual {
    position: relative;
    min-height: clamp(620px, 61vw, 820px);
    margin: 0;
    overflow: hidden;
    background: #d8cbc0;
}

.home-overview__visual::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    pointer-events: none;
}

.home-overview__visual img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.home-overview__visual:hover img {
    transform: scale(1.025);
}

.home-overview__visual figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    padding: 14px 20px;
    background: rgba(250, 247, 242, 0.94);
    color: #604e43;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-overview__eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 0 0 24px;
    color: #9a765e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.home-overview__eyebrow::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.home-overview__content h2 {
    max-width: 670px;
    margin: 0 0 30px;
    font-family: var(--font-section, "Cormorant Garamond", serif);
    font-size: clamp(54px, 5.7vw, 92px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.94;
}

.home-overview__lead {
    max-width: 650px;
    margin: 0 0 17px;
    color: #4b3d35;
    font-size: clamp(18px, 1.55vw, 23px);
    line-height: 1.55;
}

.home-overview__body {
    max-width: 620px;
    margin: 0 0 44px;
    color: var(--overview-muted);
    font-size: 15px;
    line-height: 1.8;
}

.home-overview__proofs {
    border-top: 1px solid var(--overview-line);
}

.home-overview__proofs article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--overview-line);
}

.home-overview__proofs article > span {
    padding-top: 3px;
    color: #af8b71;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.home-overview__proofs h3 {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.home-overview__proofs p {
    margin: 0;
    color: var(--overview-muted);
    font-size: 13px;
    line-height: 1.55;
}

.home-overview__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 36px;
}

.home-overview__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    min-height: 49px;
    color: var(--overview-ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.home-overview__actions a:first-child {
    padding: 0 22px;
    background: var(--overview-ink);
    color: #fffaf5;
}

.home-overview__actions a:last-child {
    border-bottom: 1px solid currentColor;
}

@media (max-width: 960px) {
    .home-overview__shell {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .home-overview__visual {
        min-height: min(760px, 105vw);
    }

    .home-overview__content {
        max-width: 720px;
    }
}

@media (max-width: 600px) {
    .home-overview {
        scroll-margin-top: 82px;
        padding: 74px 18px 84px;
    }

    .home-overview__shell {
        gap: 42px;
    }

    .home-overview__visual {
        min-height: 510px;
    }

    .home-overview__visual::after {
        inset: 10px;
    }

    .home-overview__content h2 {
        font-size: clamp(48px, 15vw, 67px);
    }

    .home-overview__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 17px;
    }

    .home-overview__actions a:last-child {
        align-self: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-overview__visual img {
        transition: none;
    }
}

/* API-driven team — clean editorial portraits, no nested card styling. */
.team-showcase {
    padding: clamp(92px, 11vw, 160px) clamp(20px, 5vw, 76px);
    background: rgba(239, 230, 220, 0.84);
    color: #352923;
}

.team-showcase__shell {
    width: min(1380px, 100%);
    margin: 0 auto;
}

.team-showcase__header {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
    gap: clamp(40px, 8vw, 130px);
    align-items: end;
}

.team-showcase .section-pre-head {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 23px;
    color: #9a765e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.team-showcase .section-pre-head::before {
    content: "";
    width: 38px;
    height: 1px;
    background: currentColor;
}

.team-showcase .blanc-story-title {
    max-width: 800px;
    margin: 0;
    font-family: var(--font-section, "Cormorant Garamond", serif);
    font-size: clamp(60px, 7.4vw, 112px);
    font-weight: 400;
    letter-spacing: -0.052em;
    line-height: 0.83;
}

.team-showcase .blanc-story-text {
    max-width: 540px;
    margin: 0;
    color: #6f6057;
    font-size: clamp(15px, 1.25vw, 18px);
    line-height: 1.75;
}

.team-showcase__rule {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: clamp(52px, 6vw, 82px) 0 28px;
    color: #a17c64;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.team-showcase__rule::before,
.team-showcase__rule::after {
    content: "";
    height: 1px;
    background: rgba(91, 68, 54, 0.24);
}

.team-showcase__rule::before { width: 52px; }
.team-showcase__rule::after { flex: 1; }

.team-showcase .staff-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 30px);
}

.team-showcase .staff-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: start;
    min-width: 0;
    padding: clamp(22px, 2vw, 30px);
    overflow: visible;
    border: 1px solid rgba(91, 68, 54, 0.14);
    border-radius: 0;
    background: rgba(252, 248, 243, 0.92);
    box-shadow: none;
    transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.team-showcase .staff-card::before {
    display: none;
}

.team-showcase .staff-card:hover {
    transform: translateY(-7px);
    border-color: transparent;
    box-shadow: none;
}

.staff-card__portrait {
    position: relative;
    width: 88px;
    height: 88px;
    margin: 0;
    overflow: hidden;
    border-radius: 50%;
    background: #dccbc0;
}

.staff-card__portrait::after {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: inherit;
    pointer-events: none;
}

.staff-card__portrait img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.staff-card:hover .staff-card__portrait img {
    transform: scale(1.035);
}

.staff-card__portrait figcaption {
    display: none;
}

.team-showcase .staff-card__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2px 0 0;
}

.staff-card__role {
    margin: 0 0 9px;
    color: #a17c64;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.team-showcase .staff-card__content h3 {
    margin: 0 0 15px;
    color: #352923;
    font-family: var(--font-section, "Cormorant Garamond", serif);
    font-size: clamp(31px, 3vw, 45px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1;
}

.staff-card__description {
    flex: 1;
    margin: 0 0 27px;
    color: #74655c;
    font-size: 14px;
    line-height: 1.7;
}

.team-showcase .staff-card__book {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    padding-top: 17px;
    border-top: 1px solid rgba(91, 68, 54, 0.2);
    color: #3d3029;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
}

.team-showcase .staff-card__book b {
    font: inherit;
}

.team-showcase .staff-card__book > span:last-child {
    margin-left: auto;
    font-size: 17px;
    transition: transform 250ms ease;
}

.team-showcase .staff-card__book:hover > span:last-child {
    transform: translate(3px, -3px);
}

.team-showcase__loading,
.team-showcase__empty {
    margin: 35px 0 0;
    color: #74655c;
    font-size: 15px;
}

@media (max-width: 960px) {
    .team-showcase__header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-showcase .staff-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .team-showcase {
        padding: 78px 18px 86px;
    }

    .team-showcase .blanc-story-title {
        max-width: 340px;
        font-size: clamp(57px, 18vw, 76px);
        line-height: 0.87;
    }

    .team-showcase__rule {
        margin: 46px 0 18px;
    }

    .team-showcase .staff-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .team-showcase .staff-card {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 17px;
        padding: 20px;
    }

    .staff-card__portrait {
        width: 72px;
        height: 72px;
        min-height: 0;
    }

    .staff-card__portrait::after {
        inset: 8px;
    }

    .staff-card__portrait figcaption {
        right: 8px;
        bottom: 8px;
        width: 34px;
        height: 34px;
    }

    .team-showcase .staff-card__content {
        padding: 1px 0 0;
    }

    .team-showcase .staff-card__content h3 {
        font-size: clamp(29px, 9vw, 38px);
    }

    .staff-card__description {
        margin-bottom: 19px;
        font-size: 12.5px;
        line-height: 1.55;
    }

    .team-showcase .staff-card__book {
        align-items: flex-start;
        flex-wrap: wrap;
        font-size: 9px;
        line-height: 1.45;
    }
}

@media (max-width: 390px) {
    .team-showcase .staff-card {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 14px;
        padding: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .team-showcase .staff-card,
    .staff-card__portrait img,
    .team-showcase .staff-card__book > span:last-child {
        transition: none;
    }
}

/* Most requested services — five live API categories, presented as an image-led menu. */
.local-services__mosaic {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, clamp(250px, 25vw, 360px));
    gap: clamp(8px, 0.9vw, 14px);
}

.local-services__tile {
    position: relative;
    grid-column: span 3;
    min-width: 0;
    overflow: hidden;
    background: #c9c4c1;
    color: #f8f4f0;
    text-decoration: none;
    isolation: isolate;
}

.local-services__tile--featured {
    grid-column: span 6;
    grid-row: span 2;
}

.local-services__tile img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 500ms ease;
}

.local-services__tile::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(35, 31, 29, 0.08) 35%, rgba(35, 31, 29, 0.78) 100%);
    content: "";
    transition: background-color 350ms ease;
}

.local-services__tile:hover img,
.local-services__tile:focus-visible img {
    filter: saturate(0.9);
    transform: scale(1.045);
}

.local-services__tile:focus-visible {
    outline: 2px solid #9a715f;
    outline-offset: 4px;
}

.local-services__tile-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    opacity: 0.82;
}

.local-services__tile-copy {
    position: absolute;
    right: 54px;
    bottom: 24px;
    left: 20px;
}

.local-services__tile-copy p {
    margin: 0 0 7px;
    color: inherit;
    font-family: var(--font-ui);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
    line-height: 1.4;
    text-transform: uppercase;
    opacity: 0.76;
}

.local-services__tile-copy h3 {
    max-width: 430px;
    margin: 0;
    color: inherit;
    font-family: var(--font-section, "OnglesSection", Georgia, serif);
    font-size: clamp(28px, 2.8vw, 46px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.local-services__tile:not(.local-services__tile--featured) .local-services__tile-copy h3 {
    font-size: clamp(25px, 2.25vw, 36px);
}

.local-services__tile-copy > span {
    display: block;
    max-width: 480px;
    margin-top: 12px;
    font-family: var(--font-ui);
    font-size: 11px;
    line-height: 1.65;
    opacity: 0.82;
}

.local-services__tile > b {
    position: absolute;
    right: 20px;
    bottom: 22px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 400;
    transition: color 250ms ease, background-color 250ms ease, transform 250ms ease;
}

.local-services__tile:hover > b,
.local-services__tile:focus-visible > b {
    color: #302824;
    background: #f8f4f0;
    transform: translate3d(2px, -2px, 0);
}

@media (max-width: 900px) {
    .local-services__mosaic {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 520px repeat(2, 300px);
    }

    .local-services__tile,
    .local-services__tile--featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .local-services__tile--featured {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .local-services__mosaic {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 8px;
    }

    .local-services__tile,
    .local-services__tile--featured {
        grid-column: auto;
        width: 100%;
        height: 340px;
    }

    .local-services__tile--featured {
        height: 470px;
    }

    .local-services__tile-copy h3,
    .local-services__tile:not(.local-services__tile--featured) .local-services__tile-copy h3 {
        font-size: clamp(30px, 10vw, 42px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .local-services__tile img,
    .local-services__tile > b {
        transition: none;
    }
}

/* Gallery motion: a quiet, one-time editorial reveal. */
@media (prefers-reduced-motion: no-preference) {
    .editorial-gallery.gallery-motion-ready .blanc-gallery-head {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
        transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
            transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
    }

    .editorial-gallery.gallery-motion-ready .blanc-gallery-card {
        opacity: 0;
        transform: translate3d(0, 22px, 0) scale(0.985);
        transition: opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
            transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
        transition-delay: calc(var(--gallery-index, 0) * 55ms + 100ms);
        will-change: transform, opacity;
    }

    .editorial-gallery.gallery-motion-visible .blanc-gallery-head,
    .editorial-gallery.gallery-motion-visible .blanc-gallery-card {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }

    .editorial-gallery.gallery-motion-visible .blanc-gallery-card {
        will-change: auto;
    }

}

@media (prefers-reduced-motion: reduce) {
    .editorial-gallery .blanc-gallery-card,
    .editorial-gallery .blanc-gallery-head {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Editorial home gallery: a composed lookbook, not a plugin-style masonry grid. */
.editorial-gallery.blanc-gallery-zone {
    padding: clamp(96px, 10vw, 160px) 0 clamp(110px, 11vw, 180px);
    background: #f2ede8;
}

.editorial-gallery .blanc-gallery-shell {
    width: min(100% - 72px, 1480px);
    max-width: none;
}

.editorial-gallery .blanc-gallery-head {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: clamp(52px, 8vw, 130px);
    align-items: end;
    margin: 0 0 clamp(54px, 7vw, 100px);
    text-align: left;
}

.editorial-gallery .section-pre-head {
    display: block;
    margin-bottom: 18px;
    color: #8b6a51;
    font-size: 10px;
    letter-spacing: 0.24em;
}

.editorial-gallery .blanc-gallery-title {
    color: #2c2420;
    font-size: clamp(72px, 11vw, 172px);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.75;
    text-transform: none;
}

.editorial-gallery__intro {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(55, 42, 34, 0.28);
}

.editorial-gallery__count {
    color: #84634c;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.13em;
}

.editorial-gallery__intro p {
    max-width: 440px;
    margin: 0;
    color: #625750;
    font-family: var(--font-ui);
    font-size: 14px;
    line-height: 1.75;
}

.editorial-gallery .blanc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(14, minmax(0, 1fr));
    grid-template-rows: repeat(14, minmax(48px, 5vw));
    gap: clamp(8px, 0.85vw, 14px);
    align-items: stretch;
}

.editorial-gallery .blanc-gallery-card {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    border-radius: 0;
    background: #d7cec6;
    box-shadow: none;
    color: #fff;
}

.editorial-gallery .blanc-gallery-card:nth-child(1) { grid-area: 1 / 1 / 8 / 8; }
.editorial-gallery .blanc-gallery-card:nth-child(2) { grid-area: 1 / 10 / 5 / 15; }
.editorial-gallery .blanc-gallery-card:nth-child(3) { grid-area: 5 / 9 / 10 / 13; }
.editorial-gallery .blanc-gallery-card:nth-child(4) { grid-area: 6 / 13 / 9 / 15; }
.editorial-gallery .blanc-gallery-card:nth-child(5) { grid-area: 9 / 1 / 14 / 5; }
.editorial-gallery .blanc-gallery-card:nth-child(6) { grid-area: 8 / 5 / 12 / 9; }
.editorial-gallery .blanc-gallery-card:nth-child(7) { grid-area: 11 / 10 / 15 / 15; }

.editorial-gallery .blanc-gallery-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(25, 20, 17, 0.04), transparent 58%, rgba(25, 20, 17, 0.42));
    content: "";
    opacity: 0.8;
    transition: opacity 350ms ease;
}

.editorial-gallery .blanc-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9) contrast(0.98);
    transition: filter 500ms ease, transform 750ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.editorial-gallery .blanc-gallery-card:hover img {
    filter: saturate(1.04) contrast(1);
    transform: scale(1.035);
}

.editorial-gallery .blanc-gallery-card:hover::after {
    opacity: 0.52;
}

.blanc-gallery-card__number,
.blanc-gallery-card__view {
    position: absolute;
    z-index: 2;
    bottom: 16px;
    color: #fff;
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-shadow: 0 1px 16px rgba(20, 16, 13, 0.4);
}

.blanc-gallery-card__number {
    left: 16px;
}

.blanc-gallery-card__view {
    right: 16px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 260ms ease, transform 360ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.editorial-gallery .blanc-gallery-card:hover .blanc-gallery-card__view,
.editorial-gallery .blanc-gallery-card:focus-visible .blanc-gallery-card__view {
    opacity: 1;
    transform: translateY(0);
}

.editorial-gallery .blanc-gallery-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: clamp(48px, 6vw, 82px);
    padding-top: 20px;
    border-top: 1px solid rgba(55, 42, 34, 0.25);
    text-align: left;
}

.editorial-gallery .blanc-gallery-action > span {
    color: #766960;
    font-family: var(--font-ui);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.editorial-gallery .blanc-gallery-btn {
    display: inline-flex;
    gap: 34px;
    min-width: 0;
    padding: 8px 0 10px;
    border: 0;
    border-bottom: 1px solid #30251f;
    border-radius: 0;
    background: transparent;
    color: #30251f;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.editorial-gallery .blanc-gallery-btn:hover {
    border-color: #8b6a51;
    background: transparent;
    color: #8b6a51;
}

@media (max-width: 960px) {
    .editorial-gallery .blanc-gallery-head {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .editorial-gallery .blanc-gallery-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        grid-template-rows: repeat(16, minmax(54px, 8vw));
    }

    .editorial-gallery .blanc-gallery-card:nth-child(1) { grid-area: 1 / 1 / 6 / 6; }
    .editorial-gallery .blanc-gallery-card:nth-child(2) { grid-area: 1 / 6 / 5 / 9; }
    .editorial-gallery .blanc-gallery-card:nth-child(3) { grid-area: 6 / 2 / 10 / 5; }
    .editorial-gallery .blanc-gallery-card:nth-child(4) { grid-area: 5 / 5 / 8 / 9; }
    .editorial-gallery .blanc-gallery-card:nth-child(5) { grid-area: 10 / 1 / 14 / 4; }
    .editorial-gallery .blanc-gallery-card:nth-child(6) { grid-area: 9 / 4 / 13 / 7; }
    .editorial-gallery .blanc-gallery-card:nth-child(7) { grid-area: 13 / 5 / 17 / 9; }
}

@media (max-width: 600px) {
    .editorial-gallery.blanc-gallery-zone {
        padding: 84px 0 100px;
    }

    .editorial-gallery .blanc-gallery-shell {
        width: min(100% - 28px, 1480px);
    }

    .editorial-gallery .blanc-gallery-title {
        font-size: clamp(68px, 25vw, 104px);
    }

    .editorial-gallery__intro {
        grid-template-columns: 58px 1fr;
    }

    .editorial-gallery .blanc-gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .editorial-gallery .blanc-gallery-card {
        width: 82%;
        height: 360px;
    }

    .editorial-gallery .blanc-gallery-card:nth-child(even) {
        align-self: flex-end;
    }

    .editorial-gallery .blanc-gallery-card:nth-child(1),
    .editorial-gallery .blanc-gallery-card:nth-child(4),
    .editorial-gallery .blanc-gallery-card:nth-child(7) {
        width: 100%;
        height: 440px;
    }

    .editorial-gallery .blanc-gallery-action {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .blanc-gallery-card__view {
        opacity: 1;
        transform: none;
    }
}

/* Automatic gallery drift — no pointer interaction required. */
@media (prefers-reduced-motion: no-preference) {
    .editorial-gallery.gallery-motion-visible .blanc-gallery-card img {
        animation: gallery-drift-a 14s ease-in-out infinite alternate;
        animation-delay: -2s;
        will-change: transform;
    }

    .editorial-gallery.gallery-motion-visible .blanc-gallery-card:nth-child(2n) img {
        animation-name: gallery-drift-b;
        animation-duration: 16s;
        animation-delay: -7s;
    }

    .editorial-gallery.gallery-motion-visible .blanc-gallery-card:nth-child(3n) img {
        animation-duration: 18s;
        animation-delay: -11s;
    }

    @keyframes gallery-drift-a {
        from { transform: scale(1.035) translate3d(-0.7%, -0.35%, 0); }
        to { transform: scale(1.075) translate3d(0.8%, 0.45%, 0); }
    }

    @keyframes gallery-drift-b {
        from { transform: scale(1.07) translate3d(0.7%, -0.45%, 0); }
        to { transform: scale(1.035) translate3d(-0.8%, 0.35%, 0); }
    }
}

@media (prefers-reduced-motion: reduce) {
    .editorial-gallery .blanc-gallery-card img {
        animation: none;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .editorial-gallery .blanc-gallery-card img,
    .blanc-gallery-card__view {
        transition: none;
    }
}

/* July 2026 refinement: compact hero, lighter studio story, crawlable services. */
.home-hero {
    min-height: min(760px, calc(100dvh - 88px));
}

.home-hero__layout {
    grid-template-columns: minmax(490px, 0.96fr) minmax(520px, 1.04fr);
}

.home-hero__copy {
    max-width: 720px;
}

.home-hero__title {
    max-width: none;
    font-size: clamp(54px, 5.1vw, 82px);
}

.home-hero__title em {
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
    font-size: 0.88em;
    letter-spacing: -0.06em;
}

.image-tunnel {
    min-height: 620px;
}

.studio-gallery {
    padding: clamp(76px, 7vw, 112px) 0 clamp(84px, 8vw, 128px);
}

.studio-gallery__heading {
    margin-bottom: 34px;
}

.studio-gallery__content {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(330px, 0.65fr);
    gap: clamp(26px, 4vw, 64px);
    align-items: stretch;
}

.studio-gallery__grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(180px, 0.68fr);
    grid-template-rows: repeat(2, clamp(190px, 17vw, 250px));
    gap: 10px;
}

.studio-gallery__item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
}

.studio-gallery__item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.studio-gallery__item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

.studio-gallery__item:nth-child(n+4) {
    display: none;
}

.studio-gallery__story {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 3.2vw, 52px);
    border: 1px solid rgba(122, 92, 62, 0.16);
    border-radius: 4px 28px 4px 4px;
    background:
        radial-gradient(circle at 100% 0, rgba(218, 193, 168, 0.25), transparent 38%),
        rgba(255, 252, 248, 0.56);
}

.studio-gallery__kicker,
.local-services__eyebrow {
    margin: 0 0 15px;
    color: #8a674c;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.studio-gallery__story h3 {
    margin: 0;
    color: #3b2a22;
    font-family: var(--font-display);
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.02;
    text-wrap: balance;
}

.studio-gallery__story > p:not(.studio-gallery__kicker) {
    margin: 24px 0 0;
    color: #6f625a;
    font-family: var(--font-ui);
    font-size: 13px;
    line-height: 1.75;
}

.studio-gallery__story ul {
    margin: 24px 0 0;
    padding: 0;
    color: #4d4038;
    font-family: var(--font-ui);
    font-size: 12px;
    list-style: none;
}

.studio-gallery__story li {
    position: relative;
    padding: 10px 0 10px 21px;
    border-top: 1px solid rgba(90, 67, 52, 0.11);
    line-height: 1.55;
}

.studio-gallery__story li::before {
    position: absolute;
    top: 17px;
    left: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b89569;
    content: "";
}

.studio-gallery__links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 28px;
}

.studio-gallery__links a {
    color: #3b2a22;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
}

.studio-gallery__links a:first-child {
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
}

.studio-gallery__links a:hover {
    color: #9a7552;
}

.local-services {
    width: min(100% - 72px, 1440px);
    margin: 0 auto;
    padding: clamp(88px, 8vw, 132px) 0;
}

.local-services__header {
    display: grid;
    grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1.1fr);
    gap: clamp(30px, 6vw, 100px);
    align-items: start;
    padding-bottom: 42px;
}

.local-services__header h2 {
    max-width: 980px;
    margin: 0;
    color: #3b2a22;
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 70px);
    font-weight: 400;
    letter-spacing: -0.05em;
    line-height: 0.98;
    text-wrap: balance;
}

.local-services__header > div > p {
    max-width: 680px;
    margin: 24px 0 0;
    color: #72645b;
    font-family: var(--font-ui);
    font-size: 14px;
    line-height: 1.75;
}

.local-services__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(91, 65, 47, 0.18);
}

.local-services__list article {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 34px;
    gap: 16px;
    align-items: start;
    min-height: 170px;
    padding: 28px 28px 30px 0;
    border-bottom: 1px solid rgba(91, 65, 47, 0.18);
}

.local-services__list article:nth-child(even) {
    padding-right: 0;
    padding-left: 28px;
    border-left: 1px solid rgba(91, 65, 47, 0.18);
}

.local-services__list article > span {
    padding-top: 4px;
    color: #a58870;
    font-family: var(--font-ui);
    font-size: 9px;
    letter-spacing: 0.12em;
}

.local-services__list h3 {
    margin: 0;
    color: #3b2a22;
    font-family: var(--font-display);
    font-size: clamp(25px, 2vw, 34px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.local-services__list p {
    max-width: 540px;
    margin: 12px 0 0;
    color: #72645b;
    font-family: var(--font-ui);
    font-size: 12px;
    line-height: 1.7;
}

.local-services__list article > a {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(91, 65, 47, 0.22);
    border-radius: 50%;
    color: #3b2a22;
    font-size: 13px;
    text-decoration: none;
    transition: color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.local-services__list article > a:hover {
    color: #fff;
    background: #3b2a22;
    transform: translateY(-2px);
}

.local-services__action {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 32px;
}

.local-services__action a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 1px solid rgba(59, 42, 34, 0.28);
    border-radius: 999px;
    color: #3b2a22;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
}

.local-services__action a:last-child {
    border-color: #3b2a22;
    background: #3b2a22;
    color: #fff;
}

@media (max-width: 1199px) {
    .home-hero__layout {
        grid-template-columns: minmax(430px, 0.9fr) minmax(440px, 1.1fr);
    }

    .home-hero__title {
        font-size: clamp(50px, 5.6vw, 68px);
    }

    .home-hero__title em {
        font-size: 0.72em;
    }

    .studio-gallery__content {
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
        gap: 28px;
    }
}

@media (max-width: 991px) {
    .home-hero {
        min-height: 980px;
    }

    .home-hero__layout {
        display: block;
    }

    .home-hero__title {
        max-width: none;
        font-size: clamp(52px, 8.6vw, 76px);
    }

    .home-hero__title em {
        margin-right: auto;
        margin-left: auto;
    }

    .image-tunnel {
        min-height: 520px;
    }

    .studio-gallery__content {
        grid-template-columns: 1fr;
    }

    .studio-gallery__story {
        max-width: none;
    }

    .local-services {
        width: min(100% - 40px, 920px);
    }

    .local-services__header {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 575px) {
    .home-hero {
        min-height: 785px;
    }

    .home-hero__copy {
        padding-top: 34px;
    }

    .home-hero__title {
        font-size: clamp(39px, 11vw, 48px);
        line-height: 0.94;
    }

    .home-hero__title em {
        font-size: 0.72em;
        letter-spacing: -0.055em;
    }

    .home-hero__actions {
        width: 100%;
    }

    .home-hero__button--primary {
        width: min(100%, 310px);
        justify-content: space-between;
    }

    .image-tunnel {
        min-height: 345px;
    }

    .studio-gallery {
        padding: 70px 0 78px;
    }

    .studio-gallery__heading h2 {
        font-size: clamp(36px, 10.5vw, 48px);
    }

    .studio-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 220px 150px;
    }

    .studio-gallery__item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .studio-gallery__item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .studio-gallery__item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .studio-gallery__story {
        padding: 28px 22px 30px;
        border-radius: 3px 22px 3px 3px;
    }

    .studio-gallery__story h3 {
        font-size: 34px;
    }

    .local-services {
        width: calc(100% - 28px);
        padding: 72px 0 82px;
    }

    .local-services__header {
        padding-bottom: 28px;
    }

    .local-services__header h2 {
        font-size: clamp(36px, 10.5vw, 48px);
    }

    .local-services__header > div > p {
        margin-top: 18px;
        font-size: 13px;
    }

    .local-services__list {
        grid-template-columns: 1fr;
    }

    .local-services__list article,
    .local-services__list article:nth-child(even) {
        min-height: 0;
        padding: 24px 0 26px;
        border-left: 0;
    }

    .local-services__list h3 {
        font-size: 28px;
    }

    .local-services__action {
        flex-direction: column;
    }

    .local-services__action a {
        width: 100%;
    }
}

/* Viewport hero refinement: navbar + hero form the complete first screen. */
.home-page .preloader {
    display: none !important;
}

.home-hero {
    min-height: calc(100svh - 96px);
    min-height: calc(100dvh - 96px);
}

.home-hero__layout,
.image-tunnel {
    min-height: inherit;
}

@media (max-width: 991px) and (min-width: 769px) {
    .home-hero {
        min-height: calc(100svh - 96px);
        min-height: calc(100dvh - 96px);
    }
}

@media (max-width: 768px) {
    .home-hero {
        height: calc(100svh - 82px);
        height: calc(100dvh - 82px);
        min-height: 620px;
    }

    .home-hero__layout {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        min-height: 0;
    }

    .home-hero__copy {
        position: absolute;
        inset: 0;
        z-index: 30;
        display: flex;
        width: 100%;
        max-width: none;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 54px 20px 0;
        text-align: center;
        pointer-events: none;
    }

    .home-hero__eyebrow {
        position: static;
        width: max-content;
        max-width: calc(100% - 32px);
        margin: 0;
        transform: none;
    }

    .home-hero__title {
        position: absolute;
        top: 55%;
        left: 50%;
        z-index: 40;
        width: 100%;
        max-width: 430px;
        margin: 0;
        font-size: clamp(44px, 12.4vw, 64px);
        line-height: 0.9;
        text-align: center;
        text-shadow: 0 2px 24px rgba(255, 252, 248, 0.92), 0 0 56px rgba(255, 252, 248, 0.95);
        transform: translate(-50%, -50%);
        isolation: isolate;
    }

    .home-hero__title::before {
        position: absolute;
        inset: -38px 3%;
        z-index: -1;
        border-radius: 50%;
        background: radial-gradient(ellipse, rgba(255, 252, 248, 0.9) 0 34%, rgba(255, 249, 242, 0.44) 52%, transparent 72%);
        filter: blur(5px);
        content: "";
    }

    .home-hero__title em {
        width: max-content;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        font-size: 0.68em;
        transition-duration: 180ms, 420ms;
    }

    .home-hero__title em.is-entering {
        animation-duration: 440ms;
    }

    .home-hero__intro {
        max-width: 330px;
        margin-top: 16px;
        color: #5f5149;
        font-size: 13px;
        line-height: 1.55;
        text-shadow: 0 1px 20px rgba(255, 252, 248, 0.98);
    }

    .home-hero__actions,
    .home-hero__details {
        display: none;
    }

    .image-tunnel {
        position: absolute;
        inset: 0;
        z-index: 5;
        min-height: 0;
        margin: 0;
        opacity: 0.96;
    }

    .image-tunnel__rings {
        inset: 15% -24% -3%;
    }

    .image-tunnel__viewport {
        inset: 19% -12% 9%;
        clip-path: ellipse(64% 49% at 50% 50%);
        -webkit-mask-image: radial-gradient(ellipse 64% 49% at 50% 50%, #000 0 66%, rgba(0, 0, 0, 0.86) 78%, rgba(0, 0, 0, 0.24) 92%, transparent 100%);
        mask-image: radial-gradient(ellipse 64% 49% at 50% 50%, #000 0 66%, rgba(0, 0, 0, 0.86) 78%, rgba(0, 0, 0, 0.24) 92%, transparent 100%);
        perspective: 660px;
        transform: none;
    }

    .image-tunnel__footer {
        display: none;
    }

    .tunnel-card {
        width: clamp(78px, 21vw, 100px);
        border-color: rgba(255, 255, 255, 0.92);
        box-shadow: 0 24px 46px rgba(58, 40, 31, 0.25), 0 5px 14px rgba(58, 40, 31, 0.16);
    }

    .tunnel-card:nth-child(n + 11) {
        display: none;
    }

    .tunnel-card--portrait {
        width: clamp(66px, 18vw, 86px);
    }

    .image-tunnel__core {
        display: none;
    }
}

@media (max-width: 420px) {
    .home-hero__copy {
        padding: 48px 17px 0;
    }

    .home-hero__eyebrow {
        font-size: 8px;
    }

    .home-hero__title {
        font-size: clamp(42px, 12.2vw, 52px);
    }

    .home-hero__intro {
        max-width: 300px;
        font-size: 12px;
    }
}

/* Beauty rituals: an editorial bridge from nail care to spa and facial services. */
.home-promotions {
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 4vw, 62px) 0 clamp(62px, 7vw, 108px);
    background: #f7f1ea;
}

.home-promotions[hidden] {
    display: none;
}

.home-promotions__shell {
    width: min(100% - 72px, 1540px);
    margin: 0 auto;
}

.home-promotions__heading {
    display: grid;
    grid-template-columns: minmax(180px, 0.4fr) minmax(480px, 1fr);
    gap: 40px;
    align-items: end;
    margin-bottom: 30px;
}

.home-promotions__heading p {
    margin: 0;
    color: #927052;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.home-promotions__heading h2 {
    max-width: 790px;
    margin: 0;
    color: #2d211c;
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
}

.home-promotions__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.home-promotions__grid.is-multiple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-promotions__grid.is-multiple .home-promotion-card:first-child:nth-last-child(3),
.home-promotions__grid.is-multiple .home-promotion-card:first-child:nth-last-child(3) ~ .home-promotion-card {
    min-height: 450px;
}

.home-promotion-card {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: clamp(380px, 35vw, 520px);
    overflow: hidden;
    background: #d9c5b2;
}

.home-promotion-card__image,
.home-promotion-card__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-promotion-card__image {
    z-index: -2;
    object-fit: cover;
    transition: transform 900ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.home-promotion-card__veil {
    z-index: -1;
    background: linear-gradient(90deg, rgba(37, 29, 24, 0.94) 0%, rgba(37, 29, 24, 0.84) 37%, rgba(37, 29, 24, 0.24) 68%, rgba(37, 29, 24, 0.08) 100%);
}

.home-promotion-card:hover .home-promotion-card__image {
    transform: scale(1.025);
}

.home-promotion-card__content {
    width: min(60%, 720px);
    padding: clamp(34px, 5vw, 76px);
    color: #fffaf6;
}

.home-promotion-card__index {
    margin: 0 0 24px;
    color: #d6b89d;
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
}

.home-promotion-card h3 {
    margin: 0;
    color: #fffaf6;
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 76px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.95;
}

.home-promotion-card__description {
    max-width: 590px;
    margin: 22px 0 0;
    color: #e1d7cf;
    font-family: var(--font-ui);
    font-size: 14px;
    line-height: 1.7;
}

.home-promotion-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-top: 22px;
    color: #cbbdb2;
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.home-promotion-card__meta b {
    color: #fffaf6;
    font-weight: 600;
}

.home-promotion-card__cta {
    display: inline-flex;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    margin-top: 30px;
    padding: 13px 20px;
    background: #f3ddca;
    color: #2d211c;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: background 220ms ease, transform 220ms ease;
}

.home-promotion-card__cta:hover {
    background: #fffaf6;
    color: #2d211c;
}

.home-promotion-card__cta:active {
    transform: translateY(1px);
}

.home-promotion-card__offer {
    position: absolute;
    top: 32px;
    right: clamp(24px, 4vw, 64px);
    display: grid;
    width: clamp(118px, 12vw, 176px);
    aspect-ratio: 1;
    place-content: center;
    border: 1px solid rgba(69, 47, 34, 0.22);
    border-radius: 50%;
    background: rgba(255, 248, 240, 0.88);
    box-shadow: 0 18px 48px rgba(65, 40, 26, 0.18);
    color: #34231a;
    text-align: center;
    backdrop-filter: blur(8px);
    animation: promotion-off-float 3.2s ease-in-out infinite;
}

.home-promotion-card__offer::before,
.home-promotion-card__offer::after {
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(255, 250, 246, 0.65);
    border-radius: inherit;
    content: "";
    animation: promotion-off-ring 2.4s ease-out infinite;
}

.home-promotion-card__offer::after {
    animation-delay: 1.2s;
}

.home-promotion-card__offer span {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 68px);
    letter-spacing: -0.08em;
    line-height: 0.8;
}

.home-promotion-card__offer sup {
    margin-left: 5px;
    font-family: var(--font-ui);
    font-size: 0.34em;
    letter-spacing: 0;
    vertical-align: top;
}

.home-promotion-card__offer b {
    margin-top: 8px;
    color: #8f6548;
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 0.32em;
}

.home-promotions__grid.is-multiple .home-promotion-card__content {
    width: 76%;
    padding: clamp(30px, 4vw, 56px);
}

.home-promotions__grid.is-multiple .home-promotion-card h3 {
    font-size: clamp(36px, 4vw, 58px);
}

.home-promotions__grid.is-multiple .home-promotion-card__offer {
    top: 20px;
    right: 20px;
    width: 108px;
}

.home-promotions__grid.is-multiple .home-promotion-card__offer span {
    font-size: 44px;
}

@keyframes promotion-off-float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-9px) rotate(2deg); }
}

@keyframes promotion-off-ring {
    0% { opacity: 0.7; transform: scale(0.94); }
    70%, 100% { opacity: 0; transform: scale(1.14); }
}

@media (max-width: 900px) {
    .home-promotions__heading {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-promotions__grid.is-multiple {
        grid-template-columns: 1fr;
    }

    .home-promotion-card__content,
    .home-promotions__grid.is-multiple .home-promotion-card__content {
        width: 72%;
    }
}

@media (max-width: 600px) {
    .home-promotions {
        padding: 28px 0 70px;
    }

    .home-promotions__shell {
        width: min(100% - 28px, 1540px);
    }

    .home-promotion-card {
        align-items: flex-end;
        min-height: 520px;
    }

    .home-promotion-card__image {
        object-position: 66% center;
    }

    .home-promotion-card__veil {
        background: linear-gradient(0deg, rgba(37, 29, 24, 0.97) 0%, rgba(37, 29, 24, 0.82) 48%, rgba(37, 29, 24, 0.08) 86%);
    }

    .home-promotion-card__content,
    .home-promotions__grid.is-multiple .home-promotion-card__content {
        width: 100%;
        padding: 34px 24px;
    }

    .home-promotion-card h3,
    .home-promotions__grid.is-multiple .home-promotion-card h3 {
        font-size: clamp(40px, 13vw, 56px);
    }

    .home-promotion-card__offer,
    .home-promotions__grid.is-multiple .home-promotion-card__offer {
        top: 18px;
        right: 18px;
        width: 104px;
    }

    .home-promotion-card__offer span,
    .home-promotions__grid.is-multiple .home-promotion-card__offer span {
        font-size: 42px;
    }

    .home-promotion-card__cta {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-promotion-card__offer,
    .home-promotion-card__offer::before,
    .home-promotion-card__offer::after {
        animation: none;
    }

    .home-promotion-card__image,
    .home-promotion-card__cta {
        transition: none;
    }
}

.beauty-rituals {
    overflow: hidden;
    padding: clamp(96px, 11vw, 170px) 0;
    background: #25201d;
    color: #f8f2ec;
}

.beauty-rituals__shell {
    display: grid;
    grid-template-columns: minmax(420px, 0.92fr) minmax(460px, 1.08fr);
    gap: clamp(64px, 8vw, 136px);
    align-items: center;
    width: min(100% - 72px, 1420px);
    margin: 0 auto;
}

.beauty-rituals__visuals {
    position: relative;
    min-height: 700px;
}

.beauty-rituals__image {
    position: absolute;
    overflow: hidden;
    margin: 0;
    background: #3a322d;
}

.beauty-rituals__image--main {
    inset: 0 18% 8% 0;
}

.beauty-rituals__image--detail {
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 45%;
    aspect-ratio: 0.88;
    border: 10px solid #25201d;
}

.beauty-rituals__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.beauty-rituals__image--main img {
    object-position: 50% 55%;
}

.beauty-rituals__image:hover img {
    transform: scale(1.025);
}

.beauty-rituals__image::after {
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(transparent, rgba(25, 20, 17, 0.72));
    content: "";
}

.beauty-rituals__image figcaption {
    position: absolute;
    right: 22px;
    bottom: 18px;
    left: 22px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    color: #fffaf5;
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.beauty-rituals__monogram {
    position: absolute;
    top: 4%;
    right: -3%;
    color: rgba(255, 255, 255, 0.055);
    font-family: var(--font-display);
    font-size: clamp(110px, 12vw, 190px);
    line-height: 1;
}

.beauty-rituals__eyebrow {
    margin: 0 0 22px;
    color: #c6a98e;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.beauty-rituals__content h2 {
    max-width: 760px;
    margin: 0;
    color: #fffaf6;
    font-family: var(--font-display);
    font-size: clamp(48px, 5vw, 78px);
    font-weight: 400;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.beauty-rituals__intro {
    max-width: 620px;
    margin: 32px 0 52px;
    color: #cfc4bc;
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.8;
}

.beauty-rituals__list {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.beauty-rituals__list article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding: 26px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.beauty-rituals__list article > span {
    padding-top: 4px;
    color: #a88a70;
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 0.14em;
}

.beauty-rituals__list h3 {
    margin: 0 0 8px;
    color: #fffaf6;
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 400;
}

.beauty-rituals__list p {
    max-width: 620px;
    margin: 0;
    color: #bdb1a9;
    font-family: var(--font-ui);
    font-size: 14px;
    line-height: 1.7;
}

.beauty-rituals__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 42px;
}

.beauty-rituals__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 13px 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fffaf6;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.beauty-rituals__actions a:last-child {
    gap: 18px;
    border-color: #d8b99d;
    background: #d8b99d;
    color: #2a211c;
}

.beauty-rituals__actions a:hover {
    background: #fffaf6;
    color: #2a211c;
}

.beauty-rituals__actions a:active {
    transform: translateY(1px);
}

@media (max-width: 990px) {
    .beauty-rituals__shell {
        grid-template-columns: 1fr;
    }

    .beauty-rituals__visuals {
        min-height: 620px;
    }

    .beauty-rituals__content {
        max-width: 760px;
    }
}

@media (max-width: 600px) {
    .beauty-rituals {
        padding: 82px 0;
    }

    .beauty-rituals__shell {
        gap: 62px;
        width: min(100% - 36px, 1420px);
    }

    .beauty-rituals__visuals {
        min-height: 470px;
    }

    .beauty-rituals__image--main {
        right: 12%;
    }

    .beauty-rituals__image--detail {
        width: 47%;
        border-width: 7px;
    }

    .beauty-rituals__content h2 {
        font-size: clamp(42px, 12.5vw, 58px);
    }

    .beauty-rituals__intro {
        margin: 24px 0 38px;
    }

    .beauty-rituals__actions {
        flex-direction: column;
    }

    .beauty-rituals__actions a {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .beauty-rituals__image img,
    .beauty-rituals__actions a {
        transition: none;
    }
}

/* Final cascade for the compact eight-image gallery. */
.editorial-gallery .blanc-gallery-title {
    font-size: clamp(58px, 7vw, 108px) !important;
    letter-spacing: -0.045em !important;
    line-height: 0.88 !important;
}

.editorial-gallery .blanc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(3, clamp(210px, 21vw, 310px));
    gap: clamp(10px, 1vw, 16px);
}

.editorial-gallery .blanc-gallery-card:nth-child(1) { grid-area: 1 / 1 / 3 / 6; }
.editorial-gallery .blanc-gallery-card:nth-child(2) { grid-area: 1 / 6 / 2 / 10; }
.editorial-gallery .blanc-gallery-card:nth-child(3) { grid-area: 1 / 10 / 2 / 13; }
.editorial-gallery .blanc-gallery-card:nth-child(4) { grid-area: 2 / 6 / 3 / 9; }
.editorial-gallery .blanc-gallery-card:nth-child(5) { grid-area: 2 / 9 / 3 / 13; }
.editorial-gallery .blanc-gallery-card:nth-child(6) { grid-area: 3 / 1 / 4 / 4; }
.editorial-gallery .blanc-gallery-card:nth-child(7) { grid-area: 3 / 4 / 4 / 9; }
.editorial-gallery .blanc-gallery-card:nth-child(8) { grid-area: 3 / 9 / 4 / 13; }

@media (max-width: 960px) {
    .editorial-gallery .blanc-gallery-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-template-rows: repeat(5, minmax(190px, 30vw));
    }

    .editorial-gallery .blanc-gallery-card:nth-child(1) { grid-area: 1 / 1 / 3 / 4; }
    .editorial-gallery .blanc-gallery-card:nth-child(2) { grid-area: 1 / 4 / 2 / 7; }
    .editorial-gallery .blanc-gallery-card:nth-child(3) { grid-area: 2 / 4 / 3 / 7; }
    .editorial-gallery .blanc-gallery-card:nth-child(4) { grid-area: 3 / 1 / 4 / 3; }
    .editorial-gallery .blanc-gallery-card:nth-child(5) { grid-area: 3 / 3 / 4 / 7; }
    .editorial-gallery .blanc-gallery-card:nth-child(6) { grid-area: 4 / 1 / 5 / 4; }
    .editorial-gallery .blanc-gallery-card:nth-child(7) { grid-area: 4 / 4 / 5 / 7; }
    .editorial-gallery .blanc-gallery-card:nth-child(8) { grid-area: 5 / 2 / 6 / 6; }
}

@media (max-width: 600px) {
    .editorial-gallery .blanc-gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 8px;
    }

    .editorial-gallery .blanc-gallery-card,
    .editorial-gallery .blanc-gallery-card:nth-child(n) {
        grid-area: auto;
        width: auto;
        height: 230px;
        align-self: auto;
    }

    .editorial-gallery .blanc-gallery-card:nth-child(1),
    .editorial-gallery .blanc-gallery-card:nth-child(6) {
        grid-column: 1 / 3;
        height: 360px;
    }
}
