* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background: var(--site-bg);
    font-size: var(--body-size);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: var(--h1-size); margin-bottom: 20px; }
h2 { font-size: var(--h2-size); margin-bottom: 20px; }
h3 { font-size: var(--h3-size); margin-bottom: 20px; }

a { color: var(--primary); text-decoration: none; }

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

:root { --header-h: 84px; }

.site-header {
    background: transparent;
    border-bottom: 1px solid transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    background: var(--header-bg);
    border-bottom-color: #ececec;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Full-bleed photo heroes bleed up under the fixed header so it can float
   transparently over the image; header-scroll.js keeps --header-h accurate. */
.site-main > .hero-overlay:first-child,
.site-main > .hero-diagonal:first-child,
.site-main > .editorial-hero:first-child,
.site-main > .showcase-hero:first-child,
.site-main > .boutique-hero:first-child {
    margin-top: calc(-1 * var(--header-h));
}

.site-header__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo__img { max-height: 48px; }

.site-logo__text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.site-logo__img--scrolled, .site-logo__text--scrolled { display: none; }

.site-header.is-scrolled .site-logo__img--top,
.site-header.is-scrolled .site-logo__text--top { display: none; }

.site-header.is-scrolled .site-logo__img--scrolled { display: block; }
.site-header.is-scrolled .site-logo__text--scrolled { display: inline; }

.site-nav a {
    margin-left: 24px;
    font-weight: 600;
    color: var(--header-text);
}

.site-header.is-scrolled .site-nav a { color: var(--header-text-scrolled); }

.site-nav a:hover { color: var(--primary); }

.site-lang-switch {
    margin-left: 24px;
    display: inline-flex;
    gap: 8px;
}

.site-lang-switch a.flag-icon {
    margin-left: 0;
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    overflow: hidden;
    opacity: 0.45;
    filter: grayscale(60%);
    transition: opacity 0.15s ease, filter 0.15s ease, transform 0.15s ease;
}

.site-lang-switch a.flag-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.site-lang-switch a:hover,
.site-lang-switch a.active {
    opacity: 1;
    filter: none;
}

.site-lang-switch a.flag-icon:hover { transform: scale(1.08); }

.site-main { max-width: 1100px; margin: 0 auto; padding: var(--header-h) 24px 0; }

.site-footer {
    background: var(--text);
    color: #fff;
}

.site-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.site-footer__col img { max-height: 44px; }

.site-footer__sitename { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; }

.site-footer__col p { color: rgba(255, 255, 255, 0.75); margin: 0 0 8px; line-height: 1.6; }

.site-footer__text { color: rgba(255, 255, 255, 0.75); line-height: 1.6; }
.site-footer__text :is(h1, h2, h3, p, li, a) { color: rgba(255, 255, 255, 0.75); }
.site-footer__text p, .site-footer__text ul, .site-footer__text ol { margin: 0 0 8px; line-height: 1.6; }
.site-footer__text :is(h1, h2, h3) { color: #fff; margin: 0 0 8px; }

.site-footer__maps-link {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.site-footer__bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.site-footer__bottom p { color: rgba(255, 255, 255, 0.6); font-size: 0.85rem; }

@media (max-width: 700px) {
    .site-footer__inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
}

/* Hero */
.hero {
    padding: 48px 0 24px;
    text-align: center;
}

.hero h1 { font-size: var(--h1-size); margin-bottom: 12px; }

.hero p { max-width: 640px; margin: 0 auto; color: #555; }

/* Photo gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin: 32px 0;
}

.gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

/* On mobile, photo rows become a one-photo-at-a-time swipeable slider. */
@media (max-width: 700px) {
    .gallery {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        margin: 24px -24px;
        padding: 0 24px;
    }

    .gallery img {
        flex: 0 0 100%;
        width: 100%;
        height: 280px;
        scroll-snap-align: center;
        border-radius: 10px;
    }
}

.empty-state {
    background: #fff;
    border: 1px dashed #ccc;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    color: #888;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--button-bg);
    color: var(--button-text);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn:hover { opacity: 0.9; }

.btn--secondary { background: var(--secondary); }

.btn--light { background: #fff; color: var(--text); }

/* Booking page */
.booking-intro { margin: 32px 0; }

.booking-module {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    margin-top: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* Rooms overview */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.room-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: transform 0.15s ease;
}

.room-card:hover { transform: translateY(-3px); }

.room-card img { width: 100%; height: 190px; object-fit: cover; }

.room-card__body { padding: 16px; }

.room-card__body h3 { margin-bottom: 8px; }

.room-card__body p { color: #555; font-size: 0.95rem; margin-bottom: 12px; }

/* Multi-room layout: Spotlight */
.spotlight-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    margin: 32px 0;
    transition: transform 0.15s ease;
}

.spotlight-card:hover { transform: translateY(-3px); }

.spotlight-card__media { min-height: 320px; background: #eee; }

.spotlight-card__media img { width: 100%; height: 100%; object-fit: cover; }

.spotlight-card__body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-card .eyebrow {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    width: fit-content;
}

.spotlight-card__body h2 { font-size: 1.8rem; margin-bottom: 12px; }

.spotlight-card__body p { color: #555; margin-bottom: 20px; }

@media (max-width: 800px) {
    .spotlight-card { grid-template-columns: 1fr; }
    .spotlight-card__media { min-height: 220px; }
    .spotlight-card__body { padding: 24px; }
}

/* Multi-room layout: Bands */
.room-bands {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.room-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
    transition: transform 0.15s ease;
}

.room-band:hover { transform: translateY(-3px); }

.room-band__media { min-height: 260px; background: #eee; }

.room-band--reverse .room-band__media { order: 2; }

.room-band__media img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }

.room-band__body { padding: 32px 40px; }

.room-band__body h3 { font-size: 1.5rem; margin-bottom: 10px; }

.room-band__body p { color: #555; margin-bottom: 16px; }

.room-band__link { color: var(--primary); font-weight: 600; }

@media (max-width: 800px) {
    .room-band { grid-template-columns: 1fr; }
    .room-band--reverse .room-band__media { order: 0; }
    .room-band__media { min-height: 200px; }
    .room-band__media img { min-height: 200px; }
    .room-band__body { padding: 24px; }
}

/* Multi-room layout: Carousel */
.room-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 8px 4px 24px;
    margin: 32px 0;
    scroll-snap-type: x mandatory;
}

.room-carousel__card {
    flex: 0 0 auto;
    width: 300px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
    transition: transform 0.15s ease;
}

.room-carousel__card:hover { transform: translateY(-4px); }

.room-carousel__card img { width: 100%; height: 210px; object-fit: cover; }

.room-carousel__body { padding: 18px; }

.room-carousel__body h3 { margin-bottom: 8px; }

.room-carousel__body p { color: #555; font-size: 0.92rem; }

/* Multi-room layout: Bento */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 16px;
    margin: 32px 0;
}

.bento-tile {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    display: block;
    background: #eee;
}

.bento-tile img { width: 100%; height: 100%; object-fit: cover; }

.bento-tile--large { grid-column: span 2; grid-row: span 2; }

.bento-tile--wide { grid-column: span 2; grid-row: span 1; }

.bento-tile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.bento-tile__overlay h3 { color: #fff; font-size: 1.1rem; }

.bento-tile--large .bento-tile__overlay h3 { font-size: 1.6rem; }

@media (max-width: 800px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .bento-tile--large, .bento-tile--wide { grid-column: span 1; grid-row: span 1; }
}

/* Multi-room layout: List */
.room-list { margin: 32px 0; border-top: 1px solid #e5e7eb; }

.room-list__row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 8px;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.15s ease;
}

.room-list__row:hover { background: #fafafa; }

.room-list__thumb {
    flex: 0 0 auto;
    width: 88px;
    height: 88px;
    border-radius: 10px;
    overflow: hidden;
    background: #eee;
}

.room-list__thumb img { width: 100%; height: 100%; object-fit: cover; }

.room-list__info { flex: 1; min-width: 0; }

.room-list__info h3 { margin-bottom: 4px; font-size: 1.1rem; }

.room-list__info p {
    color: #555;
    font-size: 0.9rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.room-list__arrow { color: var(--primary); font-size: 1.3rem; flex: 0 0 auto; }

@media (max-width: 600px) {
    .room-list__info p { white-space: normal; }
}

/* Room detail */
.room-detail-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    margin: 24px 0;
}

.room-detail-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }

.room-detail-gallery img:first-child { grid-row: span 2; height: 100%; }

.room-detail-body { margin-top: 24px; }

/* Homepage text blocks */
.homepage-block { margin: 32px 0; }

/* Single-room layout: Split */
.hero-split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 48px 0;
}

.hero-split__media img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.hero-split__content { text-align: left; }

.hero-split__content .homepage-block { margin: 0 0 24px; }

.hero-split__content .homepage-block h1,
.hero-split__content .homepage-block h2,
.hero-split__content .homepage-block h3 { font-size: calc(var(--h1-size) * 0.93); }

.hero-split__content p { max-width: none; margin: 0 0 12px; }

@media (max-width: 800px) {
    .hero-split { grid-template-columns: 1fr; gap: 24px; padding: 24px 0; }
    .hero-split__content { text-align: center; }
    .hero-split__media img { height: 280px; }
}

/* Single-room layout: Overlay */
.hero-overlay {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.hero-overlay img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.6));
}

.hero-overlay--no-image::after { background: rgba(0, 0, 0, 0.15); }

.hero-overlay__content {
    position: relative;
    z-index: 1;
    max-width: 680px;
    text-align: center;
    color: #fff;
    padding: 0 24px;
}

.hero-overlay__content .homepage-block { margin: 0 0 24px; }

.hero-overlay__content .homepage-block h1,
.hero-overlay__content .homepage-block h2,
.hero-overlay__content .homepage-block h3 { color: #fff; font-size: calc(var(--h1-size) * 1.1); }

.hero-overlay__content p { color: rgba(255, 255, 255, 0.92); max-width: none; }

@media (max-width: 800px) {
    .hero-overlay { min-height: 440px; }
    .hero-overlay__content .homepage-block h1,
    .hero-overlay__content .homepage-block h2,
    .hero-overlay__content .homepage-block h3 { font-size: calc(var(--h1-size) * 0.84); }
}

/* Single-room layout: Masonry */
.masonry-gallery {
    column-count: 3;
    column-gap: 16px;
    margin: 32px 0;
}

.masonry-gallery__item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.masonry-gallery__item img { width: 100%; display: block; cursor: zoom-in; }

@media (max-width: 800px) and (min-width: 701px) { .masonry-gallery { column-count: 2; } }

/* On mobile, the masonry mosaic becomes a one-photo-at-a-time swipeable slider too. */
@media (max-width: 700px) {
    .masonry-gallery {
        display: flex;
        column-count: unset;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        margin: 24px -24px;
        padding: 0 24px;
    }

    .masonry-gallery__item {
        flex: 0 0 100%;
        break-inside: unset;
        margin-bottom: 0;
        scroll-snap-align: center;
    }

    .masonry-gallery__item img { width: 100%; height: 280px; object-fit: cover; }
}

/* Single-room layout: Framed */
.hero-framed { text-align: center; padding: 48px 0 16px; }

.hero-framed__frame {
    display: inline-block;
    background: #fff;
    padding: 14px 14px 36px;
    border-radius: 6px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
    transform: rotate(-1.2deg);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-framed__frame img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 2px;
    cursor: zoom-in;
}

.hero-framed__content { max-width: 560px; margin: 0 auto; }

.hero-framed__content .homepage-block { margin: 0 0 20px; }

.filmstrip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 0 32px;
    scroll-snap-type: x mandatory;
}

.filmstrip img {
    flex: 0 0 auto;
    width: 170px;
    height: 115px;
    object-fit: cover;
    border-radius: 8px;
    scroll-snap-align: start;
    cursor: zoom-in;
}

@media (max-width: 600px) {
    .hero-framed__frame { max-width: 90%; }
    .hero-framed__frame img { height: 240px; }
}

/* Single-room layout: Diagonal */
.hero-diagonal {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 540px;
    overflow: hidden;
}

.hero-diagonal__media { position: absolute; inset: 0; background: #ddd; }

.hero-diagonal__media img { width: 100%; height: 100%; object-fit: cover; }

.hero-diagonal__color {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    clip-path: polygon(0 0, 55% 0, 35% 100%, 0 100%);
}

.hero-diagonal__content {
    position: relative;
    z-index: 2;
    max-width: 420px;
    padding: 90px 40px 90px 5vw;
    color: #fff;
}

.hero-diagonal__content .homepage-block { margin: 0 0 24px; }

.hero-diagonal__content .homepage-block h1,
.hero-diagonal__content .homepage-block h2,
.hero-diagonal__content .homepage-block h3 { color: #fff; font-size: calc(var(--h1-size) * 1.1); line-height: 1.15; }

.hero-diagonal__content p { color: rgba(255, 255, 255, 0.92); max-width: none; }

@media (max-width: 800px) {
    .hero-diagonal { min-height: auto; }
    .hero-diagonal__media { position: static; height: 260px; }
    .hero-diagonal__color { display: none; }
    .hero-diagonal__content {
        position: static;
        max-width: none;
        padding: 32px 24px;
        text-align: center;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
    }
}

/* Lightbox */
.js-lightbox { cursor: zoom-in; }

.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 40px;
}

.lightbox-overlay.active { display: flex; }

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 6px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
}

/* Showcase layout: full property/room detail page */
.showcase-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 520px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.showcase-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-hero__button {
    position: absolute;
    right: 24px;
    bottom: 24px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.showcase-header { padding: 40px 0 0; }

.showcase-header .showcase-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.showcase-header h1, .showcase-header h2 { font-size: var(--h1-size); margin-bottom: 16px; }

.spec-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.spec-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 0.95rem;
}

.spec-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); }

.highlight-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--badge-bg);
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--badge-text);
}

.highlight-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    flex-shrink: 0;
}

.highlight-band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 32px 24px;
    display: flex;
    justify-content: center;
}

.highlight-band .highlight-badges {
    justify-content: center;
    margin: 0;
    max-width: 1100px;
}

.showcase-section { margin: 40px 0; }

.showcase-section h2 { font-size: 1.5rem; margin-bottom: 16px; }

.amenities-block {
    column-count: 2;
    column-gap: 40px;
}

.amenities-block p, .amenities-block li { break-inside: avoid; margin-bottom: 10px; }

@media (max-width: 700px) {
    .amenities-block { column-count: 1; }
    .showcase-hero { height: 320px; }
    .showcase-header h1, .showcase-header h2 { font-size: calc(var(--h1-size) * 0.76); }
}

/* Multi-room showcase: each room gets its own rich section */
.showcase-room {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 32px 0;
}

.showcase-room__media img { width: 100%; height: 360px; object-fit: cover; }

.showcase-room__body { padding: 32px 40px; }

.showcase-room__body h2 { font-size: 1.7rem; margin-bottom: 14px; }

.showcase-room__body .spec-row { margin: 14px 0; padding-bottom: 14px; }

.showcase-room__body p.description { color: #555; margin-bottom: 16px; }

@media (max-width: 700px) {
    .showcase-room__media img { height: 220px; }
    .showcase-room__body { padding: 24px; }
}

/* Editorial / magazine layout */
.editorial-title-band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 40px 24px 0;
    text-align: center;
    overflow: hidden;
}

.editorial-title-band h1 {
    font-size: clamp(3.5rem, 13vw, 10rem);
    color: var(--secondary);
    opacity: 0.6;
    line-height: 0.9;
    margin-bottom: clamp(-3rem, -6vw, -1.5rem);
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.editorial-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.editorial-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55));
}

.editorial-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
    color: #fff;
}

.editorial-hero__eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    opacity: 0.85;
    display: block;
    margin-bottom: 6px;
}

.editorial-hero__inner h2 {
    color: #fff;
    font-size: 1.9rem;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 1px;
}

.editorial-hero__text { max-width: 420px; font-size: 0.92rem; color: rgba(255, 255, 255, 0.92); }

.editorial-block {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.editorial-block--reverse .editorial-block__media { order: 2; }

.editorial-block__media {
    background: color-mix(in srgb, var(--secondary) 22%, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.editorial-block__media img {
    width: 100%;
    max-width: 420px;
    height: 340px;
    object-fit: cover;
}

.editorial-block__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 60px;
    max-width: 640px;
}

.editorial-block__content h2 {
    font-size: 1.8rem;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 1px;
    margin-bottom: 16px;
}

.editorial-block__content .editorial-eyebrow {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 8px;
}

.editorial-block__content p { color: #555; margin-bottom: 20px; }

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

.editorial-arrow-link:hover { color: var(--primary); }

.editorial-photo-pair {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.editorial-photo-pair img { width: 100%; height: 380px; object-fit: cover; }

/* Site-wide closing call-to-action band (used on every page) */
.cta-band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--cta-bg);
    text-align: center;
    padding: 56px 24px;
    margin-top: 48px;
}

.cta-band h2 {
    margin-bottom: 20px;
    font-size: var(--h2-size);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 800px) {
    .editorial-block { grid-template-columns: 1fr; }
    .editorial-block--reverse .editorial-block__media { order: -1; }
    .editorial-block__content { padding: 32px 24px; }
    .editorial-photo-pair { grid-template-columns: 1fr; }
    .editorial-hero__inner { flex-direction: column; align-items: flex-start; }
}

/* Boutique layout: full-bleed photo hero, minimal elegant sections, pill buttons */
.boutique-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.boutique-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.boutique-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
}

.boutique-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 0 24px;
    max-width: 800px;
}

.boutique-hero__content h1 {
    color: #fff;
    font-size: clamp(calc(var(--h1-size) * 0.76), 4.5vw, calc(var(--h1-size) * 1.26));
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 32px;
    line-height: 1.3;
}

.boutique-hero__content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-top: -16px;
    margin-bottom: 0;
}

.btn-pill {
    display: inline-block;
    background: var(--button-bg);
    color: var(--button-text);
    padding: 16px 40px;
    border-radius: 999px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.82rem;
    border: none;
}

.btn-pill:hover { opacity: 0.9; }

.boutique-section {
    max-width: 720px;
    margin: 56px auto;
    text-align: center;
}

.boutique-section .homepage-block { text-align: left; }

.boutique-section p { color: #555; }

@media (max-width: 800px) {
    .boutique-hero { min-height: 460px; }
}

.boutique-story-block {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: color-mix(in srgb, var(--primary) 85%, #000);
    color: var(--primary-text);
    text-align: center;
    padding: 80px 24px;
    margin-top: 56px;
    margin-bottom: 56px;
}
.boutique-story-block .homepage-block { max-width: 720px; margin: 0 auto; }
.boutique-story-block .homepage-block :is(h1, h2, h3, p, li) { color: var(--primary-text); }

/* FAQ accordion */
.faq-section { max-width: 800px; margin: 64px auto; padding: 0 24px; }
.faq-section h2 { text-align: center; margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--faq-bg); border: 1px solid #e2e2e2; border-radius: 12px; padding: 0 20px; }
.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    padding: 18px 28px 18px 0;
    list-style: none;
    position: relative;
    color: var(--faq-text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: 16px;
    font-size: 1.4rem;
    color: var(--primary);
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item__answer { padding: 0 0 18px; color: var(--faq-text); opacity: 0.85; line-height: 1.6; }
