/* Theme: wellness */
.site-wellness {
    --wellness-bg: #f5efe4;
    --wellness-surface: #fbf7f0;
    --wellness-surface-strong: #efe4d3;
    --wellness-text: #252526;
    --wellness-muted: #6f665d;
    --wellness-accent: #c69a68;
    --wellness-accent-dark: #6f4a2d;
    --wellness-line: rgba(110, 82, 52, 0.16);
    --eyebrow-color: var(--wellness-accent-dark);
    --eyebrow-letter-spacing: 0.16em;
    --eyebrow-font-size: 0.76rem;
    --eyebrow-font-weight: 700;
    background: radial-gradient(circle at top left, rgba(168, 131, 93, 0.1), transparent 30%), linear-gradient(180deg, #f7f1e7 0%, #f1e7d7 100%);
    color: var(--wellness-text);
}

.site-wellness .brand {
    letter-spacing: -0.02em;
    font-size: 1.9rem;
    color: var(--wellness-accent-dark);
}

.site-wellness .site-header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 1301;
}

.site-wellness .navbar {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
    z-index: 1450;
    background: rgba(251, 247, 240, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--wellness-line);
    box-shadow: 0 0 24px rgba(48, 33, 23, 0.05);
}

.site-wellness :is(.nav__link, .nav__action) {
    color: var(--wellness-text);
}

.site-wellness .nav__form {
    margin: 0;
}

.site-wellness .nav__link.is-active {
    color: var(--wellness-accent-dark);
}

.site-wellness .button.button-primary {
    background: var(--wellness-accent-dark);
    border-color: var(--wellness-accent-dark);
    color: #fff;
}

.site-wellness .button.button-primary:is(:hover, :focus-visible) {
    background: var(--wellness-accent);
    border-color: var(--wellness-accent);
    color: #fff;
    box-shadow: 0 0 38px rgba(198, 154, 104, 0.2);
}

.site-wellness .button.button-secondary {
    background: transparent;
    border-color: rgba(198, 154, 104, 0.34);
    color: var(--wellness-accent-dark);
}

.site-wellness .button.button-secondary:is(:hover, :focus-visible) {
    background: rgba(198, 154, 104, 0.1);
    border-color: var(--wellness-accent);
    color: var(--wellness-accent-dark);
    box-shadow: 0 0 32px rgba(198, 154, 104, 0.16);
}

.site-wellness .button.button-whatsapp {
    background: #24543d;
    border-color: #24543d;
    color: #f5efe4;
}

.site-wellness .button.button-whatsapp:is(:hover, :focus-visible) {
    background: #1d4532;
    border-color: #1d4532;
    color: #f5efe4;
    box-shadow: 0 0 36px rgba(29, 69, 50, 0.22);
}

.floating-whatsapp {
    position: fixed;
    right: clamp(1rem, 2vw, 1.75rem);
    bottom: clamp(1rem, 2vw, 1.75rem);
    z-index: 1500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    min-height: 0;
    padding: 0;
    border: 1px solid rgba(198, 154, 104, 0.42);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #07111f;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(7, 17, 31, 0.2);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:is(:hover, :focus-visible) {
    border-color: rgba(198, 154, 104, 0.72);
    box-shadow: 0 18px 40px rgba(7, 17, 31, 0.25);
}

.floating-whatsapp__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(7, 17, 31, 0.14);
    flex: 0 0 auto;
}

.floating-whatsapp__icon img {
    width: 2.15rem;
    height: 2.15rem;
    object-fit: contain;
}

.wellness-shell {
    max-width: 1240px;
}

.wellness-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wellness-grid-sm {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wellness-panel {
    background: rgba(251, 247, 240, 0.78);
    border: 1px solid var(--wellness-line);
    border-radius: 28px;
    box-shadow: 0 0 5px rgba(48, 33, 23, 0.12);
    padding: 0;
}

.wellness-catalog-layout {
    align-items: start;
}

.wellness-product-grid {
    --wellness-product-card-min: 18rem;
    --wellness-product-card-max: 24rem;
}

.wellness-product-grid > * {
    flex: 1 1 var(--wellness-product-card-min);
    width: 100%;
    min-width: min(100%, var(--wellness-product-card-min));
    max-width: min(100%, var(--wellness-product-card-max));
}

.wellness-product-grid > .wellness-empty-state {
    flex-basis: 100%;
    max-width: none;
}

.wellness-product-grid--related {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 20rem));
    gap: 1.15rem;
    align-items: stretch;
    justify-content: start;
}

.wellness-product-grid--related > * {
    width: auto;
    min-width: 0;
    max-width: 20rem;
}

.wellness-product-grid--catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, var(--wellness-product-card-min)), 1fr));
    gap: 1.15rem;
    align-items: stretch;
}

.wellness-product-grid--catalog > * {
    width: auto;
    min-width: 0;
    max-width: none;
}

.wellness-product-grid--catalog > .wellness-empty-state {
    grid-column: 1 / -1;
}

.wellness-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.wellness-tags > * {
    flex: 0 1 auto;
}

.wellness-card {
    background: rgba(251, 247, 240, 0.92);
    display: block;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: all 360ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.wellness-card:is(:hover, :focus-visible) {
    box-shadow: 0 0 14px rgb(48 33 23 / 56%);
}

.wellness-card:focus-visible {
    outline: none;
    box-shadow: 0 0 60px rgba(48, 33, 23, 0.12), 0 0 0 3px rgba(198, 154, 104, 0.16), 0 0 0 1px rgba(198, 154, 104, 0.22);
}

.wellness-filter-panel {
    padding: 1.25rem;
}

.wellness-filter-panel-slot,
.wellness-filter-panel-slot > .wellness-filter-panel {
    width: 100%;
}

.wellness-info-card {
    background: rgba(251, 247, 240, 0.84);
    padding: 1.25rem;
}

.wellness-hero-copy,
.wellness-muted-copy {
    color: var(--wellness-muted);
    line-height: 1.7;
}

.wellness-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 28px 28px 0 0;
}

.wellness-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin: 1.5rem 0 0;
}

.wellness-section {
    padding: 2rem 0 2rem;
}

.wellness-section--alt .container {
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255, 250, 244, 0.68);
    border: 1px solid var(--wellness-line);
    box-shadow: 0 0 60px rgba(48, 33, 23, 0.12);
}

:is(.wellness-catalog-hero .container, .wellness-catalog-layout) {
    width: min(1500px, calc(100% - 2rem));
}

.wellness-catalog-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at top right, rgba(202, 171, 136, 0.16), transparent 24%), linear-gradient(90deg, rgba(39, 26, 18, 0.92) 0%, rgba(50, 34, 24, 0.84) 42%, rgba(72, 51, 37, 0.72) 100%), linear-gradient(180deg, rgba(24, 16, 11, 0.2), rgba(24, 16, 11, 0.34)), url("../../img/home/home-hero-wellness-large.webp") center center / cover no-repeat;
}

.wellness-catalog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 22%, rgba(244, 231, 214, 0.08), transparent 26%), linear-gradient(180deg, rgba(24, 16, 11, 0.08), rgba(24, 16, 11, 0.2));
    pointer-events: none;
}

.wellness-catalog-hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(100%, 58rem);
    min-height: 31rem;
    padding: 4.5rem 0 4rem;
    color: #fff8ef;
}

.wellness-catalog-hero h1 {
    margin: 0.6rem 0 1rem;
    color: #fff;
    font-size: 4.4rem;
    line-height: 0.94;
    letter-spacing: -0.02em;
    text-shadow: 0 10px 28px rgba(12, 8, 6, 0.28);
}

.wellness-catalog-hero p {
    color: rgba(252, 248, 242, 0.9);
}

.wellness-section__head {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.wellness-catalog-results__head {
    gap: 0.55rem;
    margin-bottom: 1.7rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(198, 154, 104, 0.14);
}

.wellness-catalog-layout__head {
    width: 100%;
}

.wellness-catalog-results__copy {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
}

.wellness-catalog-results__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem 1rem;
}

.wellness-catalog-results__copy h2 {
    margin: 0;
    font-size: 2.85rem;
    line-height: 1.04;
    letter-spacing: -0.02em;
}

.wellness-catalog-results__count {
    display: inline-flex;
    align-items: baseline;
    gap: 0.32rem;
    margin: 0;
    color: rgba(44, 34, 27, 0.72);
    font-size: 0.98rem;
    white-space: nowrap;
}

.wellness-catalog-results__count strong {
    font-size: 1.28rem;
    line-height: 1;
}

.wellness-catalog-results {
    scroll-margin-top: calc(var(--sticky-nav-offset, 4.75rem) + 1rem);
}

.wellness-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
}

.wellness-card__body {
    padding: 1.25rem;
}

.wellness-card h3 {
    margin: 0.4rem 0 0.7rem;
    font-size: 2.55rem;
    line-height: 1.04;
    letter-spacing: -0.02em;
}

.wellness-tags span,
.wellness-tags a {
    padding: 0.78rem 1rem;
    border-radius: 999px;
    background: rgba(198, 154, 104, 0.1);
    color: var(--wellness-accent-dark);
    text-align: center;
    border: 1px solid rgba(198, 154, 104, 0.16);
    text-decoration: none;
    transition: all 360ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.wellness-tags a:is(:hover, :focus-visible) {
    background: rgba(198, 154, 104, 0.16);
    border-color: rgba(198, 154, 104, 0.26);
    box-shadow: 0 0 22px rgba(48, 33, 23, 0.08);
    outline: none;
}

.wellness-filter-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    color: var(--wellness-text);
    border: 1px solid var(--wellness-line);
    background: rgba(255, 255, 255, 0.46);
}

.wellness-filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.wellness-filter-link.is-active {
    background: rgba(198, 154, 104, 0.12);
    border-color: rgba(198, 154, 104, 0.26);
}

.wellness-filter-panel__cta {
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--wellness-line);
}

.wellness-gallery-head {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.wellness-gallery-head h2 {
    margin: 0.2rem 0 0;
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

.wellness-gallery-head p {
    max-width: 34ch;
    margin: 0;
    color: var(--wellness-muted);
}

.wellness-gallery-tile {
    position: relative;
    display: block;
    margin: 0;
    width: 100%;
    min-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 28px;
    background: linear-gradient(135deg, #d8c7b2, #f2e8db);
    box-shadow: 0 0 60px rgba(48, 33, 23, 0.12);
    cursor: pointer;
    appearance: none;
    text-align: left;
}

.wellness-gallery-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(28, 20, 15, 0) 35%, rgba(28, 20, 15, 0.82) 100%);
    z-index: 1;
    pointer-events: none;
}

.wellness-gallery-tile img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all 360ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.wellness-gallery-tile:is(:hover, :focus-within) img {
    transform: scale(1.04);
    filter: saturate(1.04);
}

.wellness-gallery-tile:focus-within {
    box-shadow: var(--focus-ring), 0 0 60px rgba(48, 33, 23, 0.12);
}

.wellness-gallery-tile--hidden {
    display: none;
}

.wellness-gallery-tile__overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: end;
    gap: 0.8rem;
}

.wellness-portfolio-carousel__trigger {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    border-radius: inherit;
    background: transparent;
    cursor: pointer;
    appearance: none;
}

.wellness-portfolio-carousel__trigger:focus-visible {
    outline: none;
}

.wellness-gallery-tile__copy {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.wellness-gallery-tile__copy strong {
    color: #fff;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.08;
}

.wellness-gallery-tile__copy small {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
}

.modal--gallery .modal__dialog--gallery {
    width: 100%;
    max-width: none;
    height: 100dvh;
    min-height: 100dvh;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #100d0a;
    box-shadow: none;
}

.modal--dark .modal__dialog--gallery .modal__close {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    min-width: 2.75rem;
    height: 2.75rem;
    min-height: 2.75rem;
    margin: 1rem 1rem 0 0;
    padding: 0;
    border: 1px solid rgba(255, 248, 239, 0.82);
    border-radius: 999px;
    background: rgba(255, 248, 239, 0.98);
    color: #2f2218;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.modal--dark .modal__dialog--gallery .modal__close:hover,
.modal--dark .modal__dialog--gallery .modal__close:focus-visible {
    background: #fff;
    border-color: #fff;
    color: #241912;
}

.modal--gallery .modal__stage {
    flex: 1 1 auto;
    padding: 0;
}

.modal--gallery .modal__image {
    max-width: 100%;
    max-height: calc(100dvh - 4rem);
    width: auto;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.modal--gallery .modal__meta {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 0 0.25rem 0.25rem;
}

.modal--gallery .modal__meta--captionless {
    gap: 0;
}

.modal--gallery .modal__meta strong {
    color: #fff;
    font-size: 1.05rem;
}

.modal--gallery .modal__nav {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    box-shadow: none;
}

.modal--gallery .modal__nav:is(:hover, :focus-visible) {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
}

.wellness-richtext {
    white-space: pre-line;
}

.wellness-empty-state {
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.48);
    border: 1px dashed var(--wellness-line);
}

.contact-page-section {
    padding-top: 1.5rem;
    padding-bottom: 2.5rem;
}

.wellness-contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(1420px, calc(100% - 1rem));
    margin: 0 auto;
    gap: 1.6rem;
    padding: 1.5rem 1.2rem 1.2rem;
    background: linear-gradient(180deg, rgba(251, 247, 240, 0.98), rgba(247, 239, 227, 0.96));
    border: 1px solid rgba(198, 154, 104, 0.12);
    border-radius: 30px;
    box-shadow: 0 24px 56px rgba(48, 33, 23, 0.1);
    overflow: hidden;
    position: relative;
}

.wellness-contact-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(198, 154, 104, 0.35), rgba(198, 154, 104, 0));
}

.wellness-contact-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.9rem;
    max-width: none;
    padding-top: 0.2rem;
    color: var(--wellness-text);
}

.wellness-contact-copy h1 {
    margin: 0;
    font-size: 3.5rem;
    line-height: 0.94;
    letter-spacing: -0.02em;
    color: var(--wellness-accent-dark);
}

.wellness-contact-copy__lead {
    margin: 0;
    font-size: 1.05rem;
    color: var(--wellness-text);
}

.wellness-contact-copy > p:last-of-type {
    max-width: none;
    margin: 0;
    color: var(--wellness-muted);
    line-height: 1.8;
}

.wellness-contact-meta {
    display: grid;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.wellness-contact-meta__item {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    border: 1px solid rgba(198, 154, 104, 0.12);
    background: rgba(255, 255, 255, 0.46);
}

.wellness-contact-meta__item span {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(198, 154, 104, 0.64);
}

.wellness-contact-meta__item a,
.wellness-contact-meta__item p {
    margin: 0;
    color: var(--wellness-text);
    text-decoration: none;
    line-height: 1.7;
}

.wellness-contact-form.wellness-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    position: relative;
    isolation: isolate;
}

.wellness-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.wellness-field span,
.wellness-checkbox {
    color: var(--wellness-accent-dark);
    font-size: 0.77rem;
    letter-spacing: 0.04em;
}

.wellness-contact-form .wellness-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
}

.wellness-contact-form :is(.wellness-field--full, .wellness-checkbox, .wellness-contact-actions) {
    grid-column: 1 / -1;
}

.wellness-contact-panel__overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(247, 239, 227, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 300ms ease, visibility 300ms ease, transform 300ms ease;
}

.wellness-contact-panel__overlay.is-visible,
.wellness-contact-panel.is-submitting .wellness-contact-panel__overlay--loading {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wellness-contact-panel__overlay-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    width: min(100%, 22rem);
    padding: 1.5rem 1.35rem;
    border-radius: 24px;
    border: 1px solid rgba(198, 154, 104, 0.16);
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(248, 241, 231, 0.96));
    box-shadow: 0 26px 52px rgba(48, 33, 23, 0.12);
    text-align: center;
    transform: translateY(0.9rem) scale(0.985);
    transition: transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.wellness-contact-panel__overlay.is-visible .wellness-contact-panel__overlay-card,
.wellness-contact-panel.is-submitting .wellness-contact-panel__overlay--loading .wellness-contact-panel__overlay-card {
    transform: translateY(0) scale(1);
}

.wellness-contact-panel__overlay-card strong {
    color: var(--wellness-accent-dark);
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.wellness-contact-panel__overlay-card p {
    margin: 0;
    color: var(--wellness-muted);
    line-height: 1.6;
}

.wellness-contact-panel__spinner {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 3px solid rgba(198, 154, 104, 0.16);
    border-top-color: var(--wellness-accent-dark);
    animation: wellnessContactSpin 900ms linear infinite;
}

.wellness-contact-panel__overlay--status .wellness-contact-panel__overlay-card {
    gap: 0.8rem;
}

.wellness-contact-panel__overlay--success .wellness-contact-panel__overlay-card {
    border-color: rgba(58, 130, 88, 0.2);
    background: linear-gradient(180deg, rgba(236, 248, 239, 0.98), rgba(227, 243, 232, 0.96));
}

.wellness-contact-panel__overlay--error .wellness-contact-panel__overlay-card {
    border-color: rgba(161, 82, 52, 0.22);
    background: linear-gradient(180deg, rgba(252, 238, 232, 0.98), rgba(248, 229, 221, 0.96));
}

.wellness-contact-panel__status-icon {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    flex: 0 0 54px;
    background: linear-gradient(180deg, #3b8b5c, #2e6f49);
    box-shadow: 0 14px 28px rgba(43, 95, 63, 0.2);
}

.wellness-contact-panel__overlay--error .wellness-contact-panel__status-icon {
    background: linear-gradient(180deg, #b35a39, #8d4126);
    box-shadow: 0 14px 28px rgba(122, 55, 31, 0.18);
}

.wellness-contact-panel__status-icon::before,
.wellness-contact-panel__status-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
}

.wellness-contact-panel__overlay--success .wellness-contact-panel__status-icon::before {
    width: 18px;
    height: 10px;
    border-left: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translate(-50%, -58%) rotate(-45deg);
}

.wellness-contact-panel__overlay--success .wellness-contact-panel__status-icon::after {
    display: none;
}

.wellness-contact-panel__overlay--error .wellness-contact-panel__status-icon::before,
.wellness-contact-panel__overlay--error .wellness-contact-panel__status-icon::after {
    width: 22px;
    height: 3px;
    background: #fff;
    border-radius: 999px;
}

.wellness-contact-panel__overlay--error .wellness-contact-panel__status-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.wellness-contact-panel__overlay--error .wellness-contact-panel__status-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.wellness-contact-panel__status-copy {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
}

.wellness-contact-panel__overlay--success .wellness-contact-panel__overlay-card strong {
    color: #25523a;
}

.wellness-contact-panel__overlay--error .wellness-contact-panel__overlay-card strong {
    color: #7d3820;
}

.wellness-contact-panel__overlay--success .wellness-contact-panel__status-copy p {
    color: rgba(37, 82, 58, 0.82);
}

.wellness-contact-panel__overlay--error .wellness-contact-panel__status-copy p {
    color: rgba(104, 47, 28, 0.88);
}

@keyframes wellnessContactSpin {
    to {
        transform: rotate(360deg);
    }
}

.wellness-field textarea {
    min-height: 196px;
    resize: vertical;
}

.wellness-checkbox {
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 0.2rem 0;
    border: 0;
    background: transparent;
    font-size: 0.82rem;
    line-height: 1.6;
}

.wellness-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 20px;
    height: 20px;
    margin: 0;
}

.wellness-checkbox__box {
    width: 20px;
    height: 20px;
    margin-top: 0.15rem;
    flex: 0 0 20px;
    border-radius: 2px;
    border: 1px solid rgba(71, 52, 39, 0.28);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: none;
    transition: all 360ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.wellness-checkbox:hover .wellness-checkbox__box {
    border-color: rgba(198, 154, 104, 0.34);
}

.wellness-checkbox input:focus-visible + .wellness-checkbox__box {
    box-shadow: 0 0 0 3px rgba(198, 154, 104, 0.14);
}

.wellness-checkbox input:checked + .wellness-checkbox__box {
    border-color: var(--wellness-accent-dark);
    background-color: var(--wellness-accent-dark);
    box-shadow: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23f8efe2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3.5 8.5 6.5 11.5 12.5 4.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 13px 13px;
}

.wellness-checkbox__label {
    color: var(--wellness-text);
}

.wellness-checkbox__label a {
    color: var(--wellness-accent-dark);
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.wellness-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
    justify-content: flex-start;
}

.wellness-file-portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.wellness-portfolio-page .container {
    width: min(1340px, calc(100% - 1rem));
}

.wellness-file-work-card {
    min-width: 0;
}

.wellness-file-work-card__link {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    text-decoration: none;
    padding: 0 0 0.65rem;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(252, 248, 242, 0.98), rgba(246, 238, 226, 0.96));
    border: 1px solid rgba(198, 154, 104, 0.12);
    box-shadow: 0 24px 56px rgba(46, 31, 22, 0.1);
    overflow: hidden;
    transition: transform 360ms cubic-bezier(0.45, 0.05, 0.55, 0.95),
    box-shadow 360ms cubic-bezier(0.45, 0.05, 0.55, 0.95),
    border-color 360ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.wellness-file-work-card__image {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 6 / 5;
    min-height: 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(80, 56, 40, 0.16), rgba(80, 56, 40, 0.04));
}

.wellness-file-work-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 16, 11, 0.02), rgba(24, 16, 11, 0.26));
    pointer-events: none;
    transition: opacity 360ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.wellness-file-work-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 360ms cubic-bezier(0.45, 0.05, 0.55, 0.95),
    filter 360ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.wellness-file-work-card__body {
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin: -0.7rem 0.7rem 0;
    padding: 0.85rem 0.9rem 0.95rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 251, 245, 0.98), rgba(247, 239, 227, 0.98));
    border: 1px solid rgba(198, 154, 104, 0.12);
    box-shadow: 0 18px 36px rgba(46, 31, 22, 0.08);
}

.wellness-file-work-card__title {
    max-width: 720px;
    font-size: 1.62rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.wellness-file-work-card__summary {
    max-width: 520px;
    color: var(--wellness-muted);
    line-height: 1.55;
}

.wellness-file-work-card__eyebrow {
    width: fit-content;
    padding: 0;
    color: rgba(75, 54, 39, 0.92);
    text-shadow: none;
}

.wellness-file-work-card__link:is(:hover, :focus-visible) {
    border-color: rgba(198, 154, 104, 0.22);
    box-shadow: 0 30px 64px rgba(46, 31, 22, 0.18);
}

.wellness-file-work-card__link:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(198, 154, 104, 0.16), 0 20px 52px rgba(46, 31, 22, 0.16);
}

.wellness-file-work-card__link:is(:hover, :focus-visible) img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.055);
}

.wellness-file-work-card__link:is(:hover, :focus-visible) .wellness-file-work-card__image::after {
    opacity: 0.62;
}

.wellness-portfolio-empty {
    max-width: 760px;
    padding-block: 4.5rem;
}

.wellness-portfolio-empty h2 {
    margin: 0.5rem 0 1rem;
    font-size: 3.8rem;
    line-height: 0.98;
    letter-spacing: -0.02em;
}

.wellness-portfolio-hero {
    padding: 3.25rem 0 2.5rem;
    background: radial-gradient(circle at top right, rgba(202, 171, 136, 0.16), transparent 24%),
    linear-gradient(90deg, rgba(39, 26, 18, 0.92) 0%, rgba(50, 34, 24, 0.84) 42%, rgba(72, 51, 37, 0.72) 100%),
    linear-gradient(180deg, rgba(24, 16, 11, 0.2), rgba(24, 16, 11, 0.34)),
    var(--portfolio-cover-image, url("../../img/home/home-hero-wellness-large.webp")) center center / cover no-repeat;
}

.wellness-portfolio-hero .wellness-shell {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
    max-width: 780px;
    min-height: 530px;
    margin: 0 auto;
    padding-block: 3rem;
    text-align: center;
    align-items: center;
}

.wellness-portfolio-hero .wellness-shell p {
    max-width: 56ch;
    margin-bottom: 0;
}

.wellness-portfolio-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.wellness-portfolio-hero__meta li {
    min-width: 132px;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(114, 77, 48, 0.1);
}

.wellness-portfolio-hero__meta span {
    color: var(--wellness-muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wellness-portfolio-hero__meta strong {
    color: var(--wellness-accent-dark);
    font-size: 1rem;
    line-height: 1.2;
}

.wellness-portfolio-detail {
    padding-top: 1.62rem;
}

.wellness-portfolio-story {
    padding-top: 0;
}

:is(.wellness-portfolio-gallery, .wellness-portfolio-content) {
    border: 1px solid rgba(114, 77, 48, 0.12);
    border-radius: 24px;
}

.wellness-portfolio-gallery-card {
    background: linear-gradient(180deg, rgba(251, 247, 240, 0.94), rgba(246, 238, 228, 0.9));
    padding: 1rem;
    box-shadow: 0 0 80px rgba(45, 28, 15, 0.1);
}

.wellness-portfolio-gallery__head {
    margin-bottom: 1.5rem;
}

.wellness-portfolio-gallery__intro {
    max-width: 44rem;
}

.wellness-portfolio-gallery__summary {
    max-width: 32rem;
}

.wellness-portfolio-carousel {
    position: relative;
}

.wellness-portfolio-carousel__viewport {
    position: relative;
    min-width: 0;
}

.wellness-portfolio-carousel__main,
.wellness-portfolio-carousel__main-track {
    position: relative;
}

.wellness-portfolio-carousel__sidebar {
    display: none;
}

.wellness-portfolio-carousel__slide {
    height: auto;
    aspect-ratio: 16 / 10;
    min-height: clamp(300px, 54vw, 620px);
    border-radius: 24px;
    box-shadow: 0 20px 44px rgba(48, 33, 23, 0.1);
}

.wellness-portfolio-carousel__slide.is-active {
    display: block;
    animation: wellnessPortfolioCarouselReveal 320ms cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.wellness-portfolio-carousel__overlay {
    padding: clamp(1rem, 2vw, 1.25rem);
}

.wellness-portfolio-carousel__caption {
    gap: 0.2rem;
}

.wellness-portfolio-carousel__caption-title {
    max-width: 24ch;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.wellness-portfolio-carousel__caption-subtitle {
    font-size: 0.92rem;
}

.wellness-portfolio-carousel__arrow {
    --portfolio-carousel-arrow-offset: 0.85rem;
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(35, 112, 196, 0.14);
    color: #2a84d8;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    box-shadow: 0 12px 26px rgba(22, 36, 54, 0.16);
    backdrop-filter: blur(10px);
}

.wellness-portfolio-carousel__arrow--prev {
    left: var(--portfolio-carousel-arrow-offset);
}

.wellness-portfolio-carousel__arrow--next {
    right: var(--portfolio-carousel-arrow-offset);
}

.wellness-portfolio-carousel__arrow:is(:hover, :focus-visible) {
    background: #fff;
    border-color: rgba(35, 112, 196, 0.22);
    color: #1d6fbf;
}

@keyframes wellnessPortfolioCarouselReveal {
    from {
        opacity: 0;
        transform: scale(0.985);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.wellness-portfolio-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
    align-items: start;
}

:is(.wellness-portfolio-gallery, .wellness-portfolio-content, .wellness-portfolio-meta) {
    min-width: 0;
}

.wellness-portfolio-content {
    background: linear-gradient(180deg, rgba(252, 248, 241, 0.98), rgba(247, 239, 228, 0.96));
    padding: 2.25rem;
    border: 1px solid rgba(114, 77, 48, 0.1);
    border-radius: 36px;
    box-shadow: 0 28px 64px rgba(45, 28, 15, 0.08);
}

.wellness-portfolio-detail__intro {
    display: flex;
    flex-direction: column;
    gap: 1.42rem;
    align-items: start;
    padding: 0 0 1.85rem;
    border-bottom: 1px solid rgba(198, 154, 104, 0.16);
}

.wellness-portfolio-detail__intro > div {
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.wellness-portfolio-detail__intro h2 {
    max-width: none;
    margin: 0.35rem 0 0;
    font-size: 4.15rem;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.wellness-portfolio-copy {
    color: var(--wellness-muted);
    line-height: 1.72;
}

.wellness-portfolio-copy--compact {
    max-width: 36ch;
    margin: 0;
}

.wellness-portfolio-copy--large {
    font-size: 1.16rem;
    line-height: 1.8;
}

.wellness-portfolio-detail__body {
    width: 100%;
    max-width: none;
    padding: 1.9rem 0 0;
}

.wellness-portfolio-detail__body > :first-child {
    margin-top: 0;
}

.wellness-portfolio-detail__body p {
    margin: 0 0 1.35rem;
}

.wellness-portfolio-detail__intro .wellness-portfolio-copy--compact,
.wellness-portfolio-detail__body .wellness-richtext,
.wellness-portfolio-detail__body .wellness-richtext p {
    width: 100%;
    max-width: none;
}

.wellness-portfolio-detail__intro .wellness-portfolio-copy,
.wellness-portfolio-detail__body .wellness-richtext p {
    color: #5f5047;
    font-size: clamp(1.03rem, 1.18vw, 1.18rem);
    line-height: 1.86;
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
}

.wellness-portfolio-detail__body h3,
.wellness-portfolio-detail__body h4 {
    margin: 1.6rem 0 0.8rem;
    color: var(--wellness-accent-dark);
    letter-spacing: -0.02em;
}

.wellness-portfolio-detail__body :is(ul, ol) {
    padding-left: 1.2rem;
}

.wellness-portfolio-detail__body .wellness-tags {
    margin-top: 1.5rem;
}

.wellness-portfolio-meta {
    position: relative;
    align-self: start;
    width: 100%;
    align-content: start;
}

.wellness-portfolio-meta .wellness-info-card strong {
    display: block;
    color: var(--wellness-accent-dark);
    font-size: 1.45rem;
    line-height: 1.15;
}

.wellness-portfolio-meta__cta {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    padding: 1.45rem;
    border: 1px solid rgba(114, 77, 48, 0.1);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(252, 248, 241, 0.98), rgba(247, 239, 228, 0.96));
    box-shadow: 0 24px 54px rgba(45, 28, 15, 0.08);
}

.wellness-portfolio-meta__cta p {
    margin: 0;
}

.wellness-offer-pricing {
    display: grid;
    gap: 0.7rem;
    margin-top: 0.15rem;
}

.wellness-offer-pricing__item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(114, 77, 48, 0.1);
}

.wellness-offer-pricing__item span {
    color: var(--wellness-muted);
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wellness-offer-pricing__item strong {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1;
}

.wellness-offer-pricing__item--list strong {
    color: var(--wellness-muted);
    text-decoration: line-through;
}

.wellness-offer-pricing__item--offer {
    background: rgba(198, 154, 104, 0.08);
    border-color: rgba(198, 154, 104, 0.18);
}

.wellness-portfolio-meta__downloads {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 0.25rem;
}

.wellness-portfolio-meta__download {
    max-width: none;
}

.wellness-portfolio-meta__download-button {
    margin-top: 0;
}

.wellness-portfolio-meta__cta .button {
    margin-top: 0.65rem;
    width: 100%;
    justify-content: center;
}

/* Utilities */

.u-shell {
    width: min(1380px, calc(100% - 2rem));
    margin-inline: auto;
}

.u-cluster {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.75rem;
}

.u-split {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

:is(.u-visually-hidden, .sr-only) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile Defaults */
.contact-page-main {
    margin: 0;
    min-height: auto;
    padding-top: 0.75rem;
}

section.contact-page-section {
    padding-top: 1rem;
    padding-bottom: 0;
    padding-inline: 0;
}

.contact-page-footer {
    margin-top: 0;
}

.contact-page-panel {
    width: 100%;
    max-width: none;
    margin: 0;
    scroll-margin-top: 6.5rem;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
}

.wellness-catalog-results__head,
.wellness-catalog-results__copy {
    align-items: center;
    text-align: center;
}

.wellness-catalog-results__meta {
    justify-content: center;
}

.nav-inner {
    position: relative;
    min-width: 0;
}

.brand,
.nav-toggle {
    position: relative;
    z-index: 21;
}

.nav__panel {
    position: fixed;
    inset: 0;
    z-index: 20;
    width: 100%;
    max-width: 100%;
    height: 100dvh;
    padding: 6.25rem 1.5rem 2rem;
    flex-basis: auto;
    background: rgba(245, 239, 228, 0.98);
    overflow-y: auto;
    transform: none;
}

.nav__list {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.nav__panel.is-open .nav__list {
    padding: 0;
}

.nav__item {
    width: auto;
    max-width: 100%;
}

:is(.nav__link, .nav__action) {
    justify-content: center;
    text-align: center;
    font-size: 1.12rem;
}

.wellness-catalog-layout > .wellness-filter-panel-slot {
    position: static;
    align-self: start;
}

.wellness-catalog-layout > .wellness-filter-panel-slot > .wellness-filter-panel {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-height: none;
    overflow: visible;
}

/* Flexbox layout normalization */

.surface--panel dl {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav__panel {
    max-height: 0;
}

.nav__panel.is-open {
    max-height: var(--nav-overlay-max-height);
}

.stats-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.stats-list > .wellness-empty-state {
    flex-basis: 100%;
    max-width: none;
}

.archive-post-card__footer {
    margin-top: auto;
}

.wellness-contact-form {
    align-items: stretch;
}

.wellness-checkbox {
    flex-direction: row;
}

.wellness-checkbox__label {
    flex: 1 1 0;
    min-width: 0;
}

.wellness-actions .button {
    flex: 1 1 12.5rem;
}

.wellness-file-portfolio-grid {
    flex-wrap: wrap;
}

.wellness-file-work-card {
    flex: 1 1 100%;
    min-width: 0;
}

.wellness-file-work-card__body {
    flex: 1 1 auto;
}

/* Mobile-first responsive defaults */
.modal--dark .modal__dialog--gallery {
    width: 100%;
    max-width: none;
    height: 100svh;
    min-height: 100svh;
    margin: 0;
    border: 0;
    border-radius: 0;
}

.wellness-portfolio-hero {
    padding: 1.75rem 0 1.5rem;
}

.wellness-portfolio-hero .wellness-shell {
    min-height: 0;
    padding-block: 2.2rem 1.6rem;
    gap: 1rem;
}

.wellness-catalog-hero h1 {
    margin: 0;
    max-width: 100%;
    font-size: clamp(2.9rem, 12vw, 4rem);
    line-height: 0.92;
}

.wellness-portfolio-hero .wellness-shell p {
    max-width: 24ch;
}

.wellness-portfolio-hero__meta {
    justify-content: center;
    margin-top: 1rem;
}

.wellness-portfolio-gallery__intro {
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.wellness-gallery-head h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3rem);
    line-height: 0.94;
}

.wellness-portfolio-content {
    padding: 1.6rem;
    border-radius: 30px;
}

.wellness-portfolio-detail__intro {
    gap: 1rem;
    padding-bottom: 1.45rem;
}

.wellness-portfolio-detail__intro h2 {
    max-width: none;
    font-size: clamp(2.75rem, 13vw, 3.35rem);
    line-height: 0.93;
}

.wellness-portfolio-copy--large {
    font-size: 1.02rem;
    line-height: 1.72;
}

@media (max-width: 768px) {
    .wellness-catalog-hero {
        min-height: 28rem;
        padding-block: 1.5rem 2rem;
    }

    .wellness-catalog-hero .container {
        padding: 4.2rem 1.15rem 2rem;
    }

    .wellness-catalog-hero p {
        max-width: 28rem;
        line-height: 1.6;
    }
}

@media (min-width: 480px) {
    :is(.header-strip, .nav-inner) {
        gap: 1rem;
        padding: 0.85rem 0;
    }

    .header-strip__lead {
        width: auto;
        flex-basis: auto;
    }

    .password-field input {
        padding-right: 3.35rem;
    }

    .password-toggle {
        right: 0.55rem;
        width: 2.15rem;
        height: 2.15rem;
    }

    .results-meta {
        width: fit-content;
        max-width: min(100%, 42rem);
        gap: 0.5rem 0.85rem;
        margin: 0 0 1.15rem auto;
        text-align: right;
    }

    .results-meta__value {
        font-size: 1.2rem;
    }

    .results-meta__divider {
        width: 1.7rem;
    }

    .results-meta__label {
        font-size: 0.72rem;
    }

}

@media (min-width: 768px) {
    .contact-page-section {
        padding-top: 3.25rem;
        padding-bottom: 4rem;
    }

    .wellness-contact-panel {
        width: min(1420px, calc(100% - 2rem));
        gap: 1.9rem;
        padding: 1.5rem;
    }

    .wellness-contact-copy {
        gap: 1rem;
    }

    .wellness-contact-copy h1 {
        font-size: 3.9rem;
    }

    .wellness-contact-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .container {
        width: min(1180px, calc(100% - 4rem));
    }

    .modal--dark .modal__dialog--gallery {
        width: 100%;
        max-width: none;
        height: 100dvh;
        min-height: 100dvh;
        margin: 0;
        border: 0;
        border-radius: 0;
    }

    .wellness-catalog-hero h1 {
        margin: 0.6rem 0 1rem;
        font-size: 4.4rem;
        line-height: 0.94;
    }

    .wellness-gallery-head h2 {
        margin: 0.2rem 0 0;
        font-size: 2.8rem;
        line-height: normal;
    }

    .wellness-portfolio-hero {
        padding: 3.25rem 0 2.5rem;
    }

    .wellness-portfolio-hero .wellness-shell {
        min-height: 530px;
        padding-block: 3rem;
        gap: 0.75rem;
    }

    .wellness-portfolio-hero .wellness-shell p {
        max-width: 56ch;
    }

    .wellness-portfolio-hero__meta {
        justify-content: flex-start;
        margin-top: 1.4rem;
    }

    .wellness-portfolio-gallery__intro {
        width: auto;
        max-width: 44rem;
    }

    .wellness-portfolio-detail__intro {
        gap: 1.42rem;
        padding-bottom: 1.85rem;
    }

    .wellness-portfolio-detail__intro h2 {
        max-width: none;
        font-size: 4.15rem;
        line-height: 0.95;
    }

    .search-bar-form {
        flex-direction: row;
        align-items: center;
    }

    .place-breadcrumbs,
    .place-breadcrumbs__list {
        justify-content: flex-end;
        margin-left: auto;
    }

    .place-intro-line {
        gap: 0.85rem;
    }

    .search-map-canvas {
        min-height: 380px;
    }

    .wellness-filter-panel {
        padding: 1.5rem;
    }

    .wellness-info-card {
        padding: 1.4rem;
    }

    .wellness-product-gallery-card {
        border-radius: 32px;
        padding: 1.5rem;
    }

    .wellness-portfolio-gallery-card {
        border-radius: 36px;
        padding: 1.4rem;
    }

    .wellness-portfolio-content {
        border-radius: 34px;
        padding: 1.95rem;
    }

    .wellness-catalog-hero {
        min-height: 52svh;
        padding-block: 2rem;
    }

    .wellness-catalog-results {
        padding: 0 1.5rem 1.5rem;
    }

    .wellness-file-work-card {
        min-height: 310px;
    }

    .wellness-portfolio-page .container {
        width: min(1340px, calc(100% - 1.5rem));
    }

    .wellness-file-portfolio-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.95rem;
    }

    .wellness-file-work-card {
        grid-column: span 1;
    }

    .wellness-file-work-card__image {
        aspect-ratio: 5 / 4;
    }
}

@media (min-width: 1024px) {
    .container {
        width: min(1180px, calc(100% - 2rem));
    }

    .contact-page-main {
        margin: 0;
        min-height: calc(100vh - 220px);
        padding-top: 0;
    }

    section.contact-page-section {
        padding-top: 3.25rem;
        padding-bottom: 4rem;
    }

    .contact-page-footer {
        margin-top: 4rem;
    }

    .contact-page-panel {
        margin: 0 auto;
        scroll-margin-top: 0;
        border-left: 1px solid rgba(198, 154, 104, 0.12);
        border-right: 1px solid rgba(198, 154, 104, 0.12);
        border-radius: 30px;
        box-shadow: 0 24px 56px rgba(48, 33, 23, 0.1);
    }

    .wellness-catalog-results__head,
    .wellness-catalog-results__copy {
        align-items: flex-start;
        text-align: left;
    }

    .wellness-catalog-results__meta {
        justify-content: flex-start;
    }

    .wellness-catalog-hero .container {
        width: min(100%, 58rem);
    }

    .wellness-contact-panel {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        align-items: stretch;
        gap: 3.25rem;
        padding: 3rem;
    }

    .wellness-contact-copy {
        height: 100%;
        max-width: 28rem;
        gap: 1rem;
        padding-top: 4rem;
    }

    .wellness-contact-copy h1 {
        font-size: 4.6rem;
    }

    .wellness-contact-copy > p:last-of-type {
        max-width: 30ch;
    }

    .wellness-contact-meta {
        grid-template-columns: minmax(0, 1fr);
        margin-top: auto;
    }

    .wellness-contact-form {
        padding-top: 0.25rem;
    }

    .wellness-contact-form.wellness-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wellness-contact-form .wellness-field--full {
        grid-column: 1 / -1;
    }

    .wellness-contact-actions {
        justify-content: flex-end;
    }

    .wellness-file-portfolio-grid {
        flex-direction: row;
    }

    .wellness-file-work-card {
        flex-basis: calc(50% - 0.8rem);
    }

    .nav-toggle {
        display: none;
    }

    .nav__panel {
        display: flex;
        align-items: center;
        position: static;
        inset: auto;
        z-index: auto;
        height: auto;
        padding: 0;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
        background: transparent;
        overflow: visible;
        max-height: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .nav__list {
        min-height: auto;
        width: auto;
        overflow: visible;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        gap: 1rem;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    :is(.nav__link, .nav__action) {
        justify-content: flex-start;
        text-align: left;
    }

    .nav__panel.is-open .nav__list {
        padding-top: 0;
    }

    .nav-inner {
        flex-wrap: nowrap;
        row-gap: 0;
    }

    .wellness-catalog-layout {
        display: grid;
        grid-template-columns: 320px minmax(0, 1fr);
        grid-template-areas:
            ". head"
            "filters results";
        column-gap: 1rem;
        row-gap: 1rem;
        align-items: flex-start;
    }

    .wellness-catalog-layout > .wellness-catalog-layout__head {
        grid-area: head;
    }

    .wellness-catalog-layout > .wellness-filter-panel-slot {
        grid-area: filters;
        position: sticky;
        top: calc(var(--sticky-nav-offset, 4.75rem) + 1rem);
        align-self: start;
        width: 100%;
        max-width: 320px;
    }

    .wellness-catalog-layout > .wellness-catalog-results {
        grid-area: results;
    }

    .wellness-catalog-layout > :not(.wellness-filter-panel-slot) {
        min-width: 0;
    }

    .wellness-portfolio-layout {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
        gap: 1.25rem;
        align-items: start;
    }

    .wellness-portfolio-content {
        grid-column: auto;
    }

    .wellness-portfolio-meta {
        position: sticky;
        top: calc(var(--sticky-nav-offset, 4.75rem) + 1rem);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .archive-hero {
        flex-direction: row;
    }

    .archive-breadcrumbs {
        width: auto;
        margin-left: auto;
    }

    .archive-breadcrumbs__list {
        justify-content: flex-end;
    }

    .archive-post-card {
        flex-direction: row;
        align-items: stretch;
        min-height: 258px;
        height: 258px;
    }

    .archive-post-card__media {
        flex: 0 0 280px;
    }

    .archive-post-card__content {
        flex: 1 1 0;
        min-width: 0;
        height: 100%;
        padding: 0.25rem 0.2rem 0.25rem 0;
    }

    .wellness-file-portfolio-grid {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-auto-flow: dense;
        align-items: start;
    }

    .wellness-file-work-card {
        grid-column: span 4;
        min-height: 0;
    }

    .wellness-file-work-card--layout-sm {
        grid-column: span 3;
    }

    .wellness-file-work-card__image {
        aspect-ratio: 4 / 3;
    }

    .modal--gallery .modal__stage {
        flex: 1 1 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal--gallery .modal__meta {
        margin-top: auto;
    }
}

.wellness-portfolio-carousel__meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(20, 29, 45, 0.84);
    color: #fff;
    font-weight: 800;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.wellness-portfolio-carousel__meta--progress {
    min-width: 60px;
    padding: 0.45rem 0.7rem;
    font-size: 0.98rem;
    background: rgba(28, 42, 66, 0.92);
    box-shadow: 0 12px 24px rgba(16, 25, 39, 0.18);
}

.wellness-portfolio-carousel__meta--more {
    padding: 0.7rem 1rem;
    font-size: clamp(1.2rem, 2vw, 1.9rem);
    background: transparent;
    box-shadow: none;
}

@media (min-width: 1024px) {
    .wellness-portfolio-gallery__head {
        display: none;
    }

    .wellness-portfolio-carousel__viewport--split {
        --portfolio-preview-width: 240px;
        --portfolio-carousel-gap: 0.18rem;
        display: grid;
        grid-template-columns: minmax(0, 1fr) var(--portfolio-preview-width);
        gap: var(--portfolio-carousel-gap);
    }

    .wellness-portfolio-carousel__main--split {
        height: 460px;
        overflow: hidden;
        border-radius: 24px;
    }

    .wellness-portfolio-carousel__main-track--split {
        height: 100%;
        min-height: 0;
    }

    .wellness-portfolio-carousel__slide--split {
        position: absolute;
        inset: 0;
        height: 100%;
        min-height: 0;
        aspect-ratio: auto;
    }

    .wellness-portfolio-carousel__slide--split.is-active::before {
        background: linear-gradient(180deg, rgba(18, 22, 30, 0) 62%, rgba(18, 22, 30, 0.18) 100%);
    }

    .wellness-portfolio-carousel__caption--split {
        display: none;
    }

    .wellness-portfolio-carousel__overlay--split {
        padding: 1rem;
    }

    .wellness-portfolio-carousel__meta--split-progress {
        margin-left: auto;
    }

    .wellness-portfolio-carousel__sidebar--split {
        display: flex;
        flex-direction: column;
        gap: var(--portfolio-carousel-gap);
    }

    .wellness-portfolio-carousel__sidebar-card {
        flex: 1 1 0;
        height: 100%;
        min-height: 0;
        border-radius: 24px;
    }

    .wellness-portfolio-carousel__sidebar-card--single {
        flex: 1 1 100%;
    }

    .wellness-portfolio-carousel__sidebar-card::before {
        background: linear-gradient(180deg, rgba(18, 22, 30, 0.02) 42%, rgba(18, 22, 30, 0.82) 100%);
    }

    .wellness-portfolio-carousel__caption-title--sidebar {
        display: inline-flex;
        align-items: center;
        max-width: min(100%, 18ch);
        font-weight: 600;
        font-size: 0.98rem;
        padding: 0.55rem 0.85rem;
        border-radius: 1rem;
        background: rgba(43, 36, 32, 0.68);
        line-height: 1.25;
        box-shadow: 0 12px 28px rgba(18, 14, 12, 0.18);
        backdrop-filter: blur(10px);
    }

    .wellness-portfolio-carousel__sidebar-card--more::before {
        background: linear-gradient(180deg, rgba(10, 16, 24, 0.42) 0%, rgba(10, 16, 24, 0.9) 100%);
    }

    .wellness-portfolio-carousel__overlay--more {
        justify-content: center;
        align-items: center;
        padding: 1.2rem;
    }

    .wellness-portfolio-carousel__image--more {
        filter: saturate(0.72) brightness(0.48);
    }
}

@media (max-width: 768px) {
    .site-wellness .navbar {
        background: rgba(251, 247, 240, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .site-wellness .nav-inner {
        padding: 1.15rem 0;
    }

    .site-wellness .brand {
        font-size: 1.2rem;
        letter-spacing: -0.03em;
    }

    .site-wellness .nav-toggle {
        width: 2.5rem;
        height: 2.5rem;
        color: #765235;
    }

    .site-wellness .nav-toggle svg {
        width: 1.8rem;
        height: 1.8rem;
        stroke-width: 2.1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wellness-portfolio-carousel__slide.is-active {
        animation: none;
    }
}

.site-wellness {
    --wellness-viewport-section-min-height: 100svh;
}

@media (max-aspect-ratio: 1 / 1) {
    .site-wellness {
        --wellness-viewport-section-min-height: clamp(32rem, calc((100svh + 100vw) / 2), 100svh);
    }
}

/* Luxury editorial refresh */
.site-wellness {
    --lux-ink: #202327;
    --lux-muted: #716962;
    --lux-paper: #f4f0eb;
    --lux-paper-soft: #ebe4dc;
    --lux-stone: #d8cbc0;
    --lux-bronze: #c69a68;
    --lux-bronze-dark: #765235;
    --lux-navy: #07111f;
    --lux-line: rgba(93, 70, 46, 0.16);
    background: #f4f0eb;
    color: var(--lux-ink);
}

.page-home .site-main {
    margin: 0;
    min-height: 0;
    padding: 0;
}

.lux-container {
    width: min(1320px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-wellness .navbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1450;
    background: rgba(7, 17, 31, 0.94);
    border-bottom: 1px solid rgba(232, 194, 145, 0.18);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-wellness .nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 78px;
    padding: 0.6rem 1rem;
    flex-wrap: nowrap;
    gap: 1.2rem;
}

.site-wellness .brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 0;
    min-width: 0;
    color: #fff8ef;
    font-size: 1.12rem;
    letter-spacing: 0;
}

.brand__logo {
    display: block;
    width: clamp(8.75rem, 12vw, 12rem);
    height: auto;
    max-height: 3.75rem;
    object-fit: contain;
}

.site-wellness .nav__panel {
    position: absolute;
    inset: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    pointer-events: none;
}

.site-wellness .nav__list {
    width: auto;
    align-items: center;
    justify-content: center;
    gap: clamp(0.25rem, 0.7vw, 0.8rem);
    pointer-events: auto;
}

.site-wellness .nav__item {
    width: auto;
}

.site-wellness :is(.nav__link, .nav__action, .nav__cta) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.78rem 0.92rem;
    border-radius: 0;
    color: rgba(255, 248, 240, 0.88);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.site-wellness .nav__link::after {
    left: 0.92rem;
    right: 0.92rem;
    bottom: 0.35rem;
    height: 1px;
    background: rgba(232, 194, 145, 0.92);
}

.site-wellness :is(.nav__link, .nav__action):is(:hover, :focus-visible, .is-active, [aria-current="page"]) {
    background: transparent;
    color: #fff8ef;
}

.site-wellness .nav__cta {
    margin-left: clamp(0.65rem, 1vw, 1rem);
    padding-inline: 1.25rem;
    border: 1px solid rgba(232, 194, 145, 0.52);
    color: #fff8ef;
}

.site-wellness .nav__cta:is(:hover, :focus-visible) {
    background: rgba(232, 194, 145, 0.12);
    border-color: rgba(232, 194, 145, 0.78);
}

.site-wellness .nav__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.58rem;
    min-height: 3rem;
    margin-left: 0;
    padding: 0.35rem 1.05rem 0.35rem 0.42rem;
    border: 1px solid rgba(232, 194, 145, 0.58);
    border-radius: 999px;
    background: rgba(232, 194, 145, 0.08);
    color: #fff8ef;
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.055em;
    white-space: nowrap;
    box-shadow: inset 0 0 0 1px rgba(255, 248, 240, 0.03);
}

.site-wellness .nav__item--phone {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-left: 0;
}

.site-wellness .nav__phone:is(:hover, :focus-visible) {
    border-color: rgba(232, 194, 145, 0.9);
    background: rgba(232, 194, 145, 0.16);
    color: #fff8ef;
}

.site-wellness .nav__phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 999px;
    background: #e2ba84;
    color: #07111f;
    flex: 0 0 auto;
}

.site-wellness .nav__phone-icon svg {
    width: 1rem;
    height: 1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lux-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    background:
        linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.82) 36%, rgba(49, 27, 18, 0.38) 70%, rgba(7, 17, 31, 0.74) 100%),
        linear-gradient(135deg, rgba(242, 215, 164, 0.18) 0 1px, transparent 1px 24px),
        url("../../img/home/home-hero-wellness-large.webp") center center / cover no-repeat;
    color: #fff8ef;
}

.lux-hero__overlay {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 7rem 0 4.8rem;
}

.lux-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    transform: translateY(-4vh);
}

.lux-hero__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: clamp(1.5rem, 4vw, 4rem);
}

.lux-hero__copy {
    flex: 0 1 650px;
    width: min(100%, 650px);
}

.lux-hero__details {
    width: min(100%, 44rem);
}

.lux-hero__eyebrow {
    margin: 0 0 1.5em;
    color: #e8c291;
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.lux-hero__logo {
    display: block;
    flex: 0 0 auto;
    width: clamp(280px, 24vw, 440px);
    height: auto;
    margin: 0 0 clamp(0.5rem, 3vh, 2.2rem) auto;
    transform: translateY(3.2rem);
    filter: drop-shadow(0 1.1rem 2.2rem rgba(0, 0, 0, 0.36));
}

.lux-hero h1,
.lux-section-copy h2,
.lux-cta h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: 0;
}

.lux-hero h1 {
    max-width: 12.5ch;
    font-size: clamp(3.4rem, 4.8vw, 5rem);
    line-height: 1.01;
    color: #fffaf3;
    text-wrap: balance;
    text-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.42);
}

.lux-hero__rule {
    display: block;
    width: 4rem;
    height: 2px;
    margin: 0.45rem 0 1.5rem;
    background: #e2ba84;
}

.lux-hero p {
    max-width: 33rem;
    margin: 0;
    color: rgba(255, 248, 240, 0.86);
    line-height: 1.72;
}

.lux-hero .lux-hero__eyebrow {
    max-width: none;
}

.lux-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.25rem;
}

.lux-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.35rem;
    min-height: 58px;
    min-width: 13.5rem;
    padding: 0.1rem 1.4rem 0;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.lux-button__arrow {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
}

.lux-button--primary {
    background: #e2ba84;
    border-color: #e2ba84;
    color: #111826;
}

.lux-button--primary:is(:hover, :focus-visible) {
    background: #f0cf9f;
    border-color: #f0cf9f;
    color: #07111f;
}

.lux-button--ghost {
    border-color: rgba(255, 248, 240, 0.54);
    color: #fff8ef;
    background: rgba(20, 12, 8, 0.16);
}

.lux-button--ghost:is(:hover, :focus-visible) {
    background: rgba(255, 248, 240, 0.1);
    border-color: rgba(255, 248, 240, 0.82);
}

.lux-button--line {
    color: var(--lux-bronze-dark);
    border-color: rgba(111, 79, 61, 0.28);
    background: transparent;
}

.lux-button--line:is(:hover, :focus-visible) {
    border-color: var(--lux-bronze);
    background: rgba(168, 121, 88, 0.08);
}

.lux-service-band,
.lux-section {
    border-bottom: 1px solid var(--lux-line);
    background: var(--lux-paper);
}

.lux-service-band {
    border-top: 1px solid rgba(255, 248, 240, 0.12);
}

.lux-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lux-service {
    display: grid;
    grid-template-columns: 3.2rem minmax(0, 1fr);
    gap: 1.1rem;
    min-height: 124px;
    padding: 1.6rem 1.5rem;
    border-left: 1px solid var(--lux-line);
}

.lux-service:last-child {
    border-right: 1px solid var(--lux-line);
}

.lux-service h2,
.lux-step h3,
.lux-architects__features h3,
.lux-showroom__note h3 {
    margin: 0;
    color: var(--lux-ink);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lux-service p,
.lux-step p,
.lux-architects__features p,
.lux-showroom__note p,
.lux-review-list p,
.lux-section-copy p,
.lux-cta p {
    margin: 0;
    color: var(--lux-muted);
    font-size: 0.88rem;
    line-height: 1.66;
}

.lux-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.55rem;
    height: 2.55rem;
    color: var(--lux-bronze);
}

.lux-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.lux-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.lux-mini-icon::before {
    content: "";
    position: absolute;
    border: 1.5px solid currentColor;
}

.lux-section {
    padding: 2.2rem 0;
}

.lux-about {
    padding-block: 0;
}

.lux-about__grid,
.lux-projects__grid,
.lux-method__grid,
.lux-materials__grid,
.lux-architects__grid,
.lux-showroom__grid,
.lux-testimonials__grid {
    display: grid;
    gap: 2rem;
}

.lux-about__grid {
    grid-template-columns: minmax(300px, 440px) minmax(0, 1fr) minmax(170px, 220px);
    align-items: stretch;
}

.lux-about__image {
    overflow: hidden;
    min-height: 22rem;
    aspect-ratio: auto;
}

.lux-about .lux-section-copy,
.lux-about .lux-stats {
    align-self: center;
}

.lux-about__image img,
.lux-project-card img,
.lux-material-strip img,
.lux-architects__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lux-section-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}

.lux-section-copy--side {
    align-self: start;
}

.lux-kicker {
    color: var(--lux-bronze-dark);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lux-section-copy h2 {
    max-width: 13ch;
    color: var(--lux-ink);
    font-size: 2rem;
    line-height: 1.08;
}

.lux-section-copy p {
    max-width: 38rem;
}

.lux-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--lux-bronze-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lux-link::after {
    content: "";
    width: 1.5rem;
    height: 1px;
    background: currentColor;
}

.lux-stats {
    display: grid;
    gap: 1.25rem;
    color: var(--lux-bronze);
}

.lux-stats div {
    display: grid;
    gap: 0.15rem;
}

.lux-stats strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}

.lux-stats span {
    color: var(--lux-muted);
    font-size: 0.82rem;
}

.lux-projects__grid,
.lux-materials__grid,
.lux-testimonials__grid {
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: start;
}

.lux-materials {
    padding-block: clamp(3.2rem, 5vw, 5.6rem);
}

.lux-materials__grid {
    grid-template-columns: minmax(250px, 320px) minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3.2rem);
}

.lux-project-carousel {
    position: relative;
    display: grid;
    min-width: 0;
    overflow: hidden;
}

.lux-project-carousel__controls {
    position: absolute;
    inset: 50% 0.8rem auto;
    z-index: 6;
    display: flex;
    justify-content: space-between;
    gap: 0.55rem;
    pointer-events: none;
    transform: translateY(-50%);
}

.lux-project-carousel__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    padding: 0;
    border: 1px solid rgba(72, 56, 44, 0.22);
    border-radius: 50%;
    background: rgba(255, 252, 248, 0.62);
    color: var(--lux-bronze-dark);
    font-size: 1.85rem;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 0.8rem 2rem rgba(7, 17, 31, 0.22);
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.lux-project-carousel__button:is(:hover, :focus-visible) {
    border-color: var(--lux-bronze);
    background: var(--lux-bronze);
    color: #fff8ef;
}

.lux-project-list {
    display: flex;
    width: 100%;
    min-width: 0;
    gap: 0.9rem;
    overflow: visible;
    transform: translate3d(0, 0, 0);
}

.lux-project-card {
    position: relative;
    display: block;
    flex: 0 0 clamp(17rem, 24vw, 21rem);
    height: clamp(17.5rem, 24vw, 21rem);
    min-height: 0;
    overflow: hidden;
    color: inherit;
    isolation: isolate;
}

.lux-project-card:first-child {
    grid-row: auto;
}

.lux-project-card:nth-child(4) {
    grid-column: auto;
}

.lux-project-card img {
    display: block;
    aspect-ratio: auto;
    background: var(--lux-stone);
    transform: scale(1.01);
    transition: transform 650ms ease, filter 650ms ease;
}

.lux-project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(7, 17, 31, 0) 44%, rgba(7, 17, 31, 0.78) 100%),
        linear-gradient(135deg, rgba(198, 154, 104, 0.16), rgba(7, 17, 31, 0) 54%);
    opacity: 0.92;
    pointer-events: none;
}

.lux-project-card:is(:hover, :focus-visible) img {
    transform: scale(1.055);
    filter: saturate(1.07) contrast(1.04);
}

.lux-project-card strong {
    position: absolute;
    inset: auto 1rem 2.05rem;
    z-index: 2;
    color: #fff8ef;
    font-size: clamp(1rem, 1.25vw, 1.28rem);
    font-weight: 600;
    line-height: 1.2;
    text-shadow: 0 0.5rem 1.4rem rgba(0, 0, 0, 0.42);
}

.lux-project-card span {
    position: absolute;
    inset: auto 1rem 1rem;
    z-index: 2;
    color: rgba(255, 248, 239, 0.78);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-shadow: 0 0.5rem 1.4rem rgba(0, 0, 0, 0.42);
}

.lux-method {
    background: linear-gradient(180deg, #f1ece7, #eae2da);
}

.lux-method__grid {
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: center;
}

.lux-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    position: relative;
}

.lux-timeline::before {
    content: "";
    position: absolute;
    left: 2.5rem;
    right: 2.5rem;
    top: 1.45rem;
    height: 1px;
    background: rgba(111, 79, 61, 0.24);
}

.lux-step {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 0.5rem;
    padding: 0 0.7rem;
    text-align: center;
}

.lux-step > span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border: 1px solid rgba(111, 79, 61, 0.28);
    border-radius: 50%;
    background: #f4f0eb;
    color: var(--lux-bronze-dark);
    font-size: 0.72rem;
    font-weight: 800;
}

.lux-step h3 {
    font-size: 0.7rem;
}

.lux-step p {
    max-width: 12rem;
    font-size: 0.74rem;
    line-height: 1.45;
}

.lux-material-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.lux-material-card {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 3px;
    background: var(--lux-stone);
    box-shadow: 0 1rem 2.6rem rgba(48, 33, 23, 0.11);
    isolation: isolate;
}

.lux-material-card img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1.42 / 1;
    min-height: 0;
    object-fit: cover;
    transition: transform 560ms ease, filter 560ms ease;
}

.lux-material-card__overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    color: #fff8ef;
    background:
        linear-gradient(180deg, rgba(7, 17, 31, 0), rgba(7, 17, 31, 0.86) 34%),
        rgba(7, 17, 31, 0.58);
    opacity: 0;
    transition: opacity 280ms ease;
}

.lux-material-card__overlay strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.08rem;
    font-weight: 400;
    line-height: 1.14;
}

.lux-material-card__overlay span {
    color: rgba(255, 248, 239, 0.82);
    font-size: 0.82rem;
    line-height: 1.45;
}

.lux-material-card:is(:hover, :focus-visible) img {
    transform: scale(1.045);
    filter: saturate(1.05) contrast(1.04);
}

.lux-material-card:focus-visible {
    outline: 2px solid var(--lux-bronze);
    outline-offset: 3px;
}

.lux-material-card:is(:hover, :focus-visible) .lux-material-card__overlay {
    opacity: 1;
}

.lux-architects {
    background: var(--lux-paper-soft);
}

.lux-showroom {
    scroll-margin-top: 96px;
    padding-top: clamp(3.8rem, 5vw, 5rem);
    background: linear-gradient(180deg, #f8f4ee 0%, #eee6dc 100%);
}

.lux-showroom__grid {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    align-items: stretch;
    gap: clamp(1.4rem, 3vw, 3rem);
}

.lux-showroom__copy {
    justify-content: center;
    min-height: 29rem;
}

.lux-showroom__copy h2 {
    max-width: 11ch;
    font-size: clamp(2.25rem, 4vw, 4.7rem);
}

.lux-showroom__copy p {
    max-width: 35rem;
    font-size: 0.98rem;
}

.lux-showroom__contacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    width: min(100%, 34rem);
    margin-top: 0.25rem;
}

.lux-showroom__contacts div,
.lux-showroom__note {
    border: 1px solid rgba(72, 56, 44, 0.14);
    background: rgba(255, 252, 248, 0.62);
}

.lux-showroom__contacts div {
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
}

.lux-showroom__contacts span {
    color: var(--lux-bronze-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lux-showroom__contacts :is(strong, a) {
    color: var(--lux-ink);
    font-size: 0.95rem;
    line-height: 1.35;
}

.lux-showroom__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    width: min(100%, 34rem);
    margin-top: 0.35rem;
}

.lux-showroom__actions .lux-button {
    width: 100%;
    min-width: 0;
    justify-content: center;
}

.lux-showroom__map {
    position: relative;
    min-height: 30rem;
    overflow: hidden;
    padding: 0.55rem;
    border: 1px solid rgba(118, 82, 53, 0.26);
    background:
        linear-gradient(135deg, rgba(255, 252, 248, 0.92), rgba(232, 219, 204, 0.86)),
        #d8d0c5;
    box-shadow:
        0 1.6rem 4.5rem rgba(48, 33, 23, 0.18),
        0 0.35rem 1rem rgba(48, 33, 23, 0.08),
        inset 0 0 0 1px rgba(255, 252, 248, 0.82);
}

.lux-showroom__map::before {
    content: "";
    position: absolute;
    inset: 0.55rem;
    z-index: 1;
    border: 1px solid rgba(255, 252, 248, 0.78);
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(72, 56, 44, 0.08);
}

.lux-showroom__map iframe {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: 0;
    filter: saturate(0.88) contrast(1.03) sepia(0.04);
}

.lux-showroom__note {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto minmax(0, 12rem) minmax(0, 1fr);
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
}

.lux-showroom__note p {
    max-width: 58rem;
}

.lux-architects__grid {
    grid-template-columns: 270px minmax(0, 1fr) 310px;
    align-items: stretch;
}

.lux-architects__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    align-items: center;
    padding-inline: 0.6rem;
}

.lux-architects__features article {
    display: grid;
    gap: 0.55rem;
    align-content: start;
}

.lux-mini-icon {
    position: relative;
    display: inline-flex;
    width: 2.65rem;
    height: 2.65rem;
    color: var(--lux-bronze);
    border: 1px solid rgba(111, 79, 61, 0.28);
    border-radius: 50%;
}

.lux-mini-icon::before {
    inset: 0.78rem;
    border-radius: 50%;
}

.lux-architects__image {
    aspect-ratio: 1.55 / 1;
}

.lux-review-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
}

.lux-review-list article {
    display: grid;
    gap: 0.55rem;
    padding: 1.35rem;
    border: 1px solid rgba(72, 56, 44, 0.1);
    border-radius: 6px;
    background: rgba(255, 252, 248, 0.54);
}

.lux-review-list article::before {
    content: "“";
    color: rgba(168, 121, 88, 0.42);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.8rem;
    line-height: 0.7;
}

.lux-review-list strong {
    margin-top: 0.25rem;
    color: var(--lux-ink);
    font-size: 0.82rem;
}

.lux-review-list span {
    color: var(--lux-muted);
    font-size: 0.76rem;
}

.lux-cta {
    background:
        linear-gradient(90deg, rgba(32, 22, 16, 0.88), rgba(52, 35, 24, 0.7)),
        url("../../img/home/method-posa-large.webp") center center / cover no-repeat;
    color: #fff8ef;
}

.lux-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 120px;
    padding: 1.7rem 0;
}

.lux-cta h2 {
    color: #fff8ef;
    font-size: 2rem;
    line-height: 1.05;
}

.lux-cta p {
    margin-top: 0.35rem;
    color: rgba(255, 248, 240, 0.78);
}

.site-wellness .site-footer {
    margin-top: 0;
    padding: 2rem 0 1.2rem;
    border-top: 1px solid rgba(232, 194, 145, 0.18);
    background: rgba(7, 17, 31, 0.94);
    color: #fff8ef;
}

.lux-footer {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr));
    gap: 2rem;
}

.brand--footer {
    color: #fff8ef;
}

.lux-footer__brand p,
.lux-footer__col :is(a, span),
.lux-footer__legal {
    color: rgba(255, 248, 240, 0.72);
}

.brand--footer .brand__logo {
    width: min(100%, 12.5rem);
    max-height: none;
}

.lux-footer__brand {
    display: grid;
    gap: 0.9rem;
}

.lux-footer__brand p {
    max-width: 18rem;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
}

.lux-social {
    display: flex;
    gap: 0.55rem;
}

.lux-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border: 1px solid rgba(232, 194, 145, 0.28);
    border-radius: 50%;
    color: rgba(232, 194, 145, 0.9);
    font-size: 0.68rem;
    font-weight: 800;
}

.lux-footer__col {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.lux-footer__col h2 {
    margin: 0 0 0.2rem;
    color: #e8c291;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lux-footer__col :is(a, span) {
    font-size: 0.78rem;
    line-height: 1.35;
}

.lux-footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.4rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(232, 194, 145, 0.16);
    font-size: 0.72rem;
}

.lux-footer__legal p {
    margin: 0;
}

@media (min-width: 1321px) {
    .site-wellness .nav-toggle {
        display: none;
    }

    .site-wellness .nav__panel {
        display: flex;
        flex-basis: auto;
        width: auto;
        overflow: visible;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .site-wellness .nav__list {
        flex-direction: row;
        width: auto;
        overflow: visible;
        padding-top: 0;
    }

    .site-wellness .nav__item {
        width: auto;
    }
}

@media (max-width: 1200px) {
    .site-wellness :is(.nav__link, .nav__action, .nav__cta) {
        padding-inline: 0.68rem;
        font-size: 0.7rem;
    }

    .site-wellness .nav__cta {
        margin-left: 0.35rem;
    }

    .lux-service-grid,
    .lux-project-list,
    .lux-material-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lux-about__grid,
    .lux-architects__grid {
        grid-template-columns: 260px minmax(0, 1fr);
    }

    .lux-stats,
    .lux-architects__image {
        grid-column: 1 / -1;
    }
}

@media (max-width: 1024px) {
    .lux-hero,
    .lux-hero__overlay {
        min-height: 100vh;
        min-height: 100svh;
    }

    .lux-hero h1 {
        font-size: 2.75rem;
    }

    .lux-projects__grid,
    .lux-method__grid,
    .lux-materials__grid,
    .lux-testimonials__grid,
    .lux-architects__grid,
    .lux-showroom__grid {
        grid-template-columns: 1fr;
    }

    .lux-timeline,
    .lux-review-list,
    .lux-architects__features {
        grid-template-columns: 1fr;
    }

    .lux-timeline::before {
        display: none;
    }

    .lux-step {
        justify-items: start;
        grid-template-columns: 3rem minmax(0, 1fr);
        text-align: left;
    }

    .lux-step h3,
    .lux-step p {
        grid-column: 2;
    }

    .lux-step p {
        max-width: none;
    }

    .lux-showroom__copy {
        min-height: 0;
    }

    .lux-showroom__copy h2 {
        max-width: 13ch;
    }

    .lux-showroom__map {
        min-height: 24rem;
    }

    .lux-showroom__note {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .lux-showroom__note p {
        grid-column: 2;
    }

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

    .lux-footer__brand {
        grid-column: 1 / -1;
    }
}

/* Portfolio detail refresh */
.lux-work-hero .lux-kicker {
    color: rgba(255, 237, 218, 0.82);
    margin-bottom: 0.75rem;
}

.lux-work-gallery-section {
    padding: 2.4rem 0 1.2rem;
    background: var(--lux-paper);
}

.lux-work-product-gallery .wellness-portfolio-carousel__caption--split {
    display: flex;
}

.lux-work-story__content h2,
.lux-related-work__head h2 {
    margin: 0.35rem 0 0;
    color: var(--lux-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 3.2vw, 3.2rem);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: 0;
}

.modal--portfolio {
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
}

.modal--portfolio .modal__backdrop {
    background: rgba(12, 8, 5, 0.92);
    backdrop-filter: blur(10px);
}

.modal--portfolio .modal__dialog--gallery {
    width: 100%;
    min-height: 100dvh;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    border: 0;
    border-radius: 0;
    background: #100b08;
    box-shadow: none;
}

.modal--portfolio .modal__toolbar {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 4.5rem;
    padding: 0.9rem 1.2rem;
}

.modal--portfolio .modal__meta {
    position: static;
    display: grid;
    gap: 0.2rem;
    justify-items: center;
    padding: 0 1rem 1.05rem;
    color: rgba(255, 248, 240, 0.78);
    text-align: center;
}

.modal--portfolio .modal__meta strong {
    color: #fff8ef;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.15;
}

.modal--portfolio .modal__meta span {
    color: rgba(255, 248, 240, 0.58);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.modal--portfolio .modal__close {
    width: 2.75rem;
    min-width: 2.75rem;
    height: 2.75rem;
    min-height: 2.6rem;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 248, 240, 0.22);
    border-radius: 999px;
    background: transparent;
    color: #fff8ef;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
}

.modal--portfolio .modal__stage {
    position: relative;
    min-height: 0;
    padding: 1.2rem clamp(1rem, 5vw, 5rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal--portfolio .modal__image {
    max-width: 100%;
    max-height: calc(100dvh - 7rem);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.modal--portfolio .modal__nav {
    z-index: 5;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 248, 240, 0.2);
    background: rgba(255, 248, 240, 0.08);
    color: #fff8ef;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.modal--portfolio .modal__nav--prev {
    left: 1rem;
}

.modal--portfolio .modal__nav--next {
    right: 1rem;
}

.lux-work-story {
    background: var(--lux-paper);
    padding-top: 1.4rem;
}

.lux-work-story__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 2rem;
    align-items: start;
}

.lux-work-story__content,
.lux-work-aside__box,
.lux-work-facts,
.lux-related-card a {
    border: 1px solid rgba(72, 56, 44, 0.12);
    background: #f8f4ee;
}

.lux-work-story__content {
    padding: 1.7rem;
}

.lux-work-story__lead,
.lux-work-story__body,
.lux-work-aside p {
    color: var(--lux-muted);
    line-height: 1.72;
}

.lux-work-story__lead {
    max-width: 58rem;
    margin: 1rem 0 0;
    font-size: 1.04rem;
}

.lux-work-story__body {
    margin-top: 1.2rem;
}

.lux-work-story__body :is(p, ul, ol) {
    margin: 0 0 1rem;
}

.lux-work-aside {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 88px;
}

.lux-work-aside__box {
    display: grid;
    gap: 0.9rem;
    padding: 1.35rem;
}

.lux-work-aside__box h3 {
    margin: 0;
    color: var(--lux-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.12;
}

.lux-work-aside__box p {
    margin: 0;
}

.lux-work-facts {
    margin: 0;
    display: grid;
}

.lux-work-facts div {
    display: grid;
    gap: 0.18rem;
    padding: 0.95rem 1.1rem;
    border-bottom: 1px solid rgba(72, 56, 44, 0.1);
}

.lux-work-facts div:last-child {
    border-bottom: 0;
}

.lux-work-facts dt {
    color: var(--lux-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lux-work-facts dd {
    margin: 0;
    color: var(--lux-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    line-height: 1.1;
}

.lux-related-work {
    background: var(--lux-paper-soft);
}

.lux-related-work__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
}

.lux-related-work__head h2 {
    max-width: 16ch;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.lux-related-work__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.lux-related-card a {
    display: grid;
    min-height: 100%;
    color: inherit;
    overflow: hidden;
}

.lux-related-card img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
}

.lux-related-card span,
.lux-related-card strong {
    margin-inline: 1rem;
}

.lux-related-card span {
    margin-top: 0.95rem;
    color: var(--lux-bronze-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lux-related-card strong {
    margin-top: 0.35rem;
    margin-bottom: 1rem;
    color: var(--lux-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.12;
}

@media (max-width: 1024px) {
    .lux-work-story__grid {
        grid-template-columns: 1fr;
    }

    .lux-work-aside {
        position: static;
    }

    .lux-related-work__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .lux-work-gallery-section {
        padding-top: 1.6rem;
    }

    .modal--portfolio .modal__toolbar {
        min-height: auto;
        align-items: flex-start;
        padding: 0.8rem;
    }

    .modal--portfolio .modal__stage {
        padding: 0.8rem;
    }

    .modal--portfolio .modal__nav {
        top: auto;
        bottom: 1rem;
        transform: none;
    }

    .modal--portfolio .modal__nav--prev {
        left: 0.8rem;
    }

    .modal--portfolio .modal__nav--next {
        right: 0.8rem;
    }

    .lux-work-story__content {
        padding: 1.2rem;
    }

    .lux-related-work__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .lux-container {
        width: min(100% - 1.25rem, 1320px);
    }

    .site-wellness .brand__logo {
        width: clamp(7.5rem, 34vw, 9.4rem);
        max-height: 3.15rem;
    }

    .lux-hero {
        background:
            linear-gradient(180deg, rgba(7, 17, 31, 0.48) 0%, rgba(7, 17, 31, 0.74) 44%, rgba(7, 17, 31, 0.94) 100%),
            linear-gradient(135deg, rgba(242, 215, 164, 0.16) 0 1px, transparent 1px 20px),
            url("../../img/home/home-hero-wellness-large.webp") 62% center / cover no-repeat;
    }

    .lux-hero,
    .lux-hero__overlay {
        min-height: 640px;
        min-height: 100svh;
    }

    .lux-hero__overlay {
        padding: 6.2rem 0 2.2rem;
        align-items: center;
    }

    .lux-hero__content {
        align-items: center;
        justify-content: center;
        gap: 1.4rem;
        transform: translateY(-2.5vh);
    }

    .lux-hero__main {
        flex-direction: column;
        align-items: center;
        gap: 1.4rem;
    }

    .lux-hero__copy {
        flex: 0 1 auto;
        width: min(100%, 34rem);
        margin: 0 auto;
        text-align: center;
    }

    .lux-hero__details {
        width: min(100%, 34rem);
        text-align: center;
    }

    .lux-hero__eyebrow {
        margin: 0 auto 0.9rem;
        font-size: 0.62rem;
        letter-spacing: 0.14em;
    }

    .lux-hero__logo {
        order: -1;
        width: min(100%, 260px);
        margin: 0 auto;
        transform: none;
    }

    .lux-hero h1 {
        max-width: 13ch;
        margin: 0 auto;
        font-size: 2.55rem;
        line-height: 1.05;
        text-shadow: 0 0.8rem 2.2rem rgba(0, 0, 0, 0.42);
    }

    .lux-hero__rule {
        width: 3.25rem;
        margin: 1.15rem auto 1.1rem;
    }

    .lux-hero p {
        max-width: 31rem;
        margin: 0 auto;
        color: rgba(255, 248, 240, 0.92);
        font-size: 0.94rem;
        line-height: 1.65;
        text-shadow: 0 0.55rem 1.5rem rgba(0, 0, 0, 0.42);
    }

    .lux-actions,
    .lux-cta__inner {
        align-items: stretch;
        flex-direction: column;
    }

    .lux-actions {
        width: min(100%, 32rem);
        margin: 1.25rem auto 0;
        gap: 0.7rem;
    }

    .lux-button {
        width: 100%;
        min-height: 48px;
        padding-inline: 1rem;
        justify-content: center;
        gap: 0.85rem;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }

    .lux-section {
        padding: 1.7rem 0;
    }

    .lux-materials {
        padding-block: 2.4rem;
    }

    .lux-about {
        padding-block: 0 1.7rem;
    }

    .lux-showroom {
        padding-top: 4.2rem;
    }

    .site-wellness .site-footer {
        padding: 2.4rem 0 1.2rem;
    }

    .site-wellness .site-footer .container {
        width: min(100% - 2rem, 1180px);
    }

    .lux-service-grid,
    .lux-about__grid {
        grid-template-columns: 1fr;
    }

    .lux-about__image {
        min-height: 0;
        aspect-ratio: 1.35 / 1;
    }

    .lux-projects,
    .lux-materials {
        overflow: hidden;
    }

    .lux-projects .lux-section-copy--side,
    .lux-materials .lux-section-copy--side {
        gap: 0.95rem;
    }

    .lux-showroom__contacts {
        grid-template-columns: 1fr;
    }

    .lux-showroom__actions {
        grid-template-columns: 1fr;
        width: min(100%, 32rem);
    }

    .lux-showroom__map {
        min-height: 21rem;
    }

    .lux-material-strip {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(18rem, 82%);
        grid-auto-rows: 20rem;
        grid-template-columns: none;
        gap: 0.85rem;
        margin-inline: calc((100vw - 100%) / -2);
        padding: 0 1rem 0.65rem;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        scrollbar-width: none;
    }

    .lux-project-carousel {
        gap: 0.7rem;
    }

    .lux-project-list {
        display: flex;
        gap: 0.75rem;
        margin-inline: 0;
        padding: 0;
        overflow: visible;
        scroll-snap-type: none;
    }

    .lux-material-strip::-webkit-scrollbar {
        display: none;
    }

    .lux-material-card {
        scroll-snap-align: center;
    }

    .lux-material-card img {
        aspect-ratio: auto;
    }

    .lux-project-card {
        grid-column: auto;
        grid-row: auto;
        flex-basis: min(76vw, 20rem);
        height: 18rem;
        min-height: 18rem;
        scroll-snap-align: center;
        gap: 0.45rem;
        padding-bottom: 0.15rem;
    }

    .lux-project-card:first-child,
    .lux-project-card:nth-child(4) {
        grid-column: auto;
        grid-row: auto;
    }

    .lux-project-card img {
        aspect-ratio: 1.12 / 1;
    }

    .lux-project-card strong,
    .lux-project-card span {
        padding-inline: 0.1rem;
    }

    .lux-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 1.1rem;
    }

    .lux-footer__brand {
        grid-column: 1 / -1;
        justify-items: center;
        gap: 0.85rem;
        padding-bottom: 1.35rem;
        text-align: center;
        border-bottom: 1px solid rgba(72, 56, 44, 0.12);
    }

    .lux-footer__brand .brand--footer {
        justify-content: center;
    }

    .lux-footer__brand p {
        max-width: 21rem;
        font-size: 0.9rem;
    }

    .lux-social {
        justify-content: center;
    }

    .lux-social a {
        width: 2.15rem;
        height: 2.15rem;
        font-size: 0.72rem;
    }

    .lux-footer__col {
        min-width: 0;
        gap: 0.5rem;
        padding-top: 0.1rem;
    }

    .lux-footer__col h2 {
        margin-bottom: 0.25rem;
        font-size: 0.74rem;
    }

    .lux-footer__col :is(a, span) {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .lux-service {
        min-height: 0;
        padding: 1.15rem 0;
        border-left: 0;
        border-bottom: 1px solid var(--lux-line);
    }

    .lux-service:last-child {
        border-right: 0;
        border-bottom: 0;
    }

    .lux-about__image {
        aspect-ratio: 1.35 / 1;
    }

    .lux-section-copy h2,
    .lux-cta h2 {
        max-width: 16ch;
        font-size: 1.75rem;
    }

    .lux-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.8rem;
    }

    .lux-stats strong {
        font-size: 1.45rem;
    }

    .lux-stats span {
        font-size: 0.72rem;
    }

    .lux-footer__legal {
        flex-direction: column;
        align-items: center;
        gap: 0.45rem;
        margin-top: 1.6rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lux-hero,
    .lux-hero__overlay {
        min-height: 620px;
        min-height: 100svh;
    }

    .lux-hero__overlay {
        padding-bottom: 1.65rem;
    }

    .lux-hero__content {
        transform: translateY(-1.5vh);
    }

    .lux-hero h1 {
        max-width: 16ch;
        font-size: 2.05rem;
    }

    .lux-hero p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .lux-actions {
        margin-top: 1.1rem;
    }

    .lux-material-strip {
        grid-auto-columns: minmax(14.5rem, 86%);
        padding-inline: 0.85rem;
    }

    .lux-project-card img,
    .lux-material-card img {
        aspect-ratio: 1 / 1;
    }

    .lux-showroom__copy h2 {
        font-size: 2.25rem;
    }

    .lux-showroom__map {
        min-height: 18rem;
    }

    .lux-showroom__note {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .lux-showroom__note p {
        grid-column: auto;
    }

    .lux-footer {
        grid-template-columns: 1fr;
        gap: 1.35rem;
        text-align: center;
    }

    .lux-footer__col {
        align-items: center;
    }
}

/* Internal pages refresh */
.site-wellness .brand--footer {
    color: #fff8ef;
}

.page-about .site-main,
.page-story .site-main,
.page-benefits .site-main,
.contact-page-main {
    margin: 0;
}

.page-about .site-main,
.page-story .site-main,
.page-benefits .site-main {
    padding: 0;
}

.lux-page-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    padding: 7.3rem 0 3rem;
    color: #fff8ef;
    background:
        linear-gradient(90deg, rgba(18, 11, 7, 0.86) 0%, rgba(31, 20, 13, 0.62) 42%, rgba(36, 24, 16, 0.22) 100%),
        url("../../img/home/home-hero-wellness-large.webp") center center / cover no-repeat;
}

.lux-page-hero--about {
    --portfolio-cover-image: url("../../img/about/rovere-ultra-hd-large.webp");
    background:
        linear-gradient(90deg, rgba(18, 11, 7, 0.84) 0%, rgba(31, 20, 13, 0.58) 45%, rgba(36, 24, 16, 0.2) 100%),
        url("../../img/about/rovere-ultra-hd-large.webp") center center / cover no-repeat;
}

.lux-page-hero--benefits {
    --portfolio-cover-image: url("../../img/benefits/sauna-conifera-toscana-large.webp");
    background:
        linear-gradient(90deg, rgba(18, 11, 7, 0.84) 0%, rgba(31, 20, 13, 0.56) 45%, rgba(36, 24, 16, 0.2) 100%),
        url("../../img/benefits/sauna-conifera-toscana-large.webp") center center / cover no-repeat;
}

.lux-page-hero--story {
    background:
        linear-gradient(90deg, rgba(18, 11, 7, 0.84) 0%, rgba(31, 20, 13, 0.58) 45%, rgba(36, 24, 16, 0.2) 100%),
        var(--portfolio-cover-image, url("../../img/about/rovere-ultra-hd-large.webp")) center center / cover no-repeat;
}

.lux-page-hero--contact {
    background:
        linear-gradient(90deg, rgba(18, 11, 7, 0.86) 0%, rgba(31, 20, 13, 0.64) 46%, rgba(36, 24, 16, 0.18) 100%),
        url("../../img/home/final-materiali-large.webp") center center / cover no-repeat;
}

.lux-page-hero--privacy {
    background:
        linear-gradient(90deg, rgba(18, 11, 7, 0.86) 0%, rgba(31, 20, 13, 0.62) 46%, rgba(36, 24, 16, 0.2) 100%),
        url("../../img/home/method-produzione-large.webp") center center / cover no-repeat;
}

.lux-page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 330px);
    gap: 2rem;
    align-items: end;
}

.lux-page-hero__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    max-width: 760px;
}

.lux-page-hero .lux-kicker {
    color: rgba(255, 237, 218, 0.82);
}

.lux-page-hero h1 {
    max-width: 15ch;
    margin: 0;
    color: #fffaf3;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 0;
    text-wrap: balance;
}

.lux-page-hero p {
    max-width: 42rem;
    margin: 0;
    color: rgba(255, 248, 240, 0.84);
    font-size: 1rem;
    line-height: 1.7;
}

.lux-page-hero__panel {
    display: grid;
    gap: 1rem;
    padding: 1.35rem;
    border: 1px solid rgba(255, 245, 235, 0.24);
    background: rgba(24, 16, 11, 0.24);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.lux-page-hero__panel div {
    display: grid;
    gap: 0.2rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 245, 235, 0.16);
}

.lux-page-hero__panel div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.lux-page-hero__panel strong {
    color: #fff8ef;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.05;
}

.lux-page-hero__panel :is(span, a) {
    color: rgba(255, 248, 240, 0.78);
    font-size: 0.86rem;
    line-height: 1.45;
}

.lux-story__grid {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 2.5rem;
}

.lux-story__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--lux-line);
    border: 1px solid var(--lux-line);
}

.lux-story-card {
    display: grid;
    align-content: start;
    gap: 0.85rem;
    min-height: 260px;
    padding: 1.5rem;
    background: #f4f0eb;
}

.lux-story-card > span {
    color: rgba(111, 79, 61, 0.38);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.6rem;
    line-height: 1;
}

.lux-story-card h2,
.lux-benefit-panel h2 {
    margin: 0;
    color: var(--lux-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1.12;
}

.lux-story-card p {
    margin: 0;
    color: var(--lux-muted);
    line-height: 1.68;
}

.lux-split-feature {
    background: var(--lux-paper-soft);
}

.lux-split-feature__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.lux-split-feature img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
}

.lux-split-feature--story {
    background: #f8f4ee;
}

.lux-story-page {
    background: var(--lux-paper-soft);
}

.lux-story-page__grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
}

.lux-story-page__content {
    display: grid;
    gap: 1px;
    border: 1px solid rgba(72, 56, 44, 0.12);
    background: rgba(72, 56, 44, 0.12);
}

.lux-story-page__section {
    display: grid;
    gap: 0.85rem;
    padding: 1.7rem;
    background: #f8f4ee;
}

.lux-story-page__section h2 {
    max-width: 28ch;
    margin: 0;
    color: var(--lux-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 2.4vw, 2.35rem);
    font-weight: 400;
    line-height: 1.1;
}

.lux-story-page__section p {
    max-width: 72ch;
    margin: 0;
    color: var(--lux-muted);
    line-height: 1.68;
}

.service-feature--technical img,
.service-feature--care img {
    order: 2;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 1.8rem;
    background: rgba(72, 56, 44, 0.14);
    border: 1px solid rgba(72, 56, 44, 0.14);
}

.service-highlights div {
    display: grid;
    gap: 0.35rem;
    min-height: 7rem;
    padding: 1rem;
    background: #f8f4ee;
}

.service-highlights span {
    color: var(--lux-muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-highlights strong {
    color: var(--lux-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.18;
}

.lux-benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.lux-benefit-panel {
    display: grid;
    grid-template-rows: auto 1fr;
    background: #f8f4ee;
    border: 1px solid rgba(72, 56, 44, 0.12);
}

.lux-benefit-panel img {
    width: 100%;
    aspect-ratio: 1.75 / 1;
    object-fit: cover;
}

.lux-benefit-panel > div {
    display: grid;
    align-content: start;
    gap: 0.9rem;
    padding: 1.6rem;
}

.lux-benefit-panel p,
.lux-benefit-panel li,
.lux-benefit-notes p {
    color: var(--lux-muted);
    line-height: 1.65;
}

.lux-benefit-panel ul {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lux-benefit-panel li {
    position: relative;
    padding-left: 1.25rem;
}

.lux-benefit-panel li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--lux-bronze);
}

.lux-benefit-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(111, 79, 61, 0.16);
    border: 1px solid rgba(111, 79, 61, 0.16);
}

.lux-benefit-notes article {
    display: grid;
    gap: 0.6rem;
    padding: 1.35rem;
    background: #f4f0eb;
}

.lux-benefit-notes h3 {
    margin: 0;
    color: var(--lux-ink);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lux-benefit-notes p {
    margin: 0;
    font-size: 0.88rem;
}

.lux-contact-section {
    padding: 2.5rem 0;
    background: var(--lux-paper);
}

.lux-contact-panel {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
    gap: 2rem;
    padding: 2rem;
    border-radius: 0;
    border: 1px solid rgba(72, 56, 44, 0.14);
    background: #f8f4ee;
    box-shadow: none;
}

.lux-contact-panel::before {
    display: none;
}

.lux-contact-copy {
    padding: 0;
}

.lux-contact-copy h1 {
    max-width: 10ch;
    margin: 0.55rem 0 0;
    color: var(--lux-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.35rem;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0;
}

.lux-contact-copy p {
    color: var(--lux-muted);
}

.lux-contact-meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
    width: min(100%, 450px);
    margin-top: auto;
    padding-top: 1.25rem;
}

.lux-contact-meta__item {
    display: grid;
    gap: 0.55rem;
    min-height: 80px;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(72, 56, 44, 0.12);
    border-radius: 18px;
    background: rgba(255, 252, 248, 0.62);
}

.lux-contact-meta__item span {
    color: rgba(168, 121, 88, 0.72);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.lux-contact-meta__item :is(a, p) {
    margin: 0;
    color: #0f1217;
    font-size: 0.96rem;
    line-height: 1.45;
    text-decoration: none;
}

.lux-contact-meta__item a:is(:hover, :focus-visible) {
    color: var(--lux-bronze-dark);
}

.lux-contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.lux-contact-form .wellness-field span,
.lux-contact-form .wellness-checkbox__label {
    color: var(--lux-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.lux-contact-form :is(input, textarea, .role-select__button) {
    border-radius: 0;
    border-color: rgba(72, 56, 44, 0.18);
    background: rgba(255, 252, 248, 0.72);
    box-shadow: none;
}

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

.lux-contact-form .wellness-checkbox {
    border-radius: 0;
    border-color: rgba(72, 56, 44, 0.14);
    background: transparent;
}

.lux-contact-form .wellness-contact-actions {
    justify-content: flex-end;
}

.site-wellness .contact-page-footer {
    margin-top: clamp(2.5rem, 7vw, 4.5rem);
}

.lux-contact-quick a {
    text-decoration: none;
}

.site-wellness .auth-page {
    position: relative;
    min-height: calc(100vh - 76px);
    padding: clamp(6.5rem, 12vh, 8.5rem) 0 clamp(3rem, 8vh, 5rem);
    overflow: hidden;
    background: var(--lux-paper);
}

.site-wellness .auth-page::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: min(42vh, 360px);
    background:
        linear-gradient(90deg, rgba(18, 11, 7, 0.9) 0%, rgba(31, 20, 13, 0.66) 45%, rgba(36, 24, 16, 0.28) 100%),
        url("../../img/home/home-hero-wellness-large.webp") center center / cover no-repeat;
}

.site-wellness .auth-page::after {
    content: "";
    position: absolute;
    inset: min(42vh, 360px) 0 auto;
    height: 1px;
    background: rgba(72, 56, 44, 0.14);
}

.site-wellness .auth-shell {
    position: relative;
    z-index: 1;
    width: min(1080px, calc(100% - 2rem));
    padding-top: 0;
}

.site-wellness .auth-page--login .auth-shell {
    padding-top: 0;
}

.site-wellness .auth-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
    width: min(100%, 920px);
    min-height: 540px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(72, 56, 44, 0.14);
    border-radius: 0;
    background: #f8f4ee;
    box-shadow: 0 24px 70px rgba(17, 11, 7, 0.18);
}

.site-wellness .auth-page--register .auth-card {
    width: min(100%, 980px);
}

.site-wellness .auth-card::before {
    content: "";
    display: block;
    grid-column: 1;
    grid-row: 1 / 8;
    min-height: 100%;
    background:
        linear-gradient(180deg, rgba(17, 11, 7, 0.28), rgba(17, 11, 7, 0.68)),
        url("../../img/home/method-ascolto-large.webp") center center / cover no-repeat;
}

.site-wellness .auth-card > * {
    grid-column: 2;
    margin-inline: clamp(1.35rem, 4vw, 3rem);
}

.site-wellness .auth-card > .eyebrow {
    margin-top: clamp(1.6rem, 4vw, 3rem);
}

.site-wellness .auth-card > .auth-switch:last-child {
    margin-bottom: clamp(1.6rem, 4vw, 3rem);
}

.site-wellness .auth-card .eyebrow {
    color: var(--lux-bronze-dark);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
}

.site-wellness .auth-card h1 {
    max-width: 9ch;
    margin: 0.55rem clamp(1.35rem, 4vw, 3rem) 0;
    color: var(--lux-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.6rem, 7vw, 4.25rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 0;
}

.site-wellness .auth-card p:not(.auth-switch) {
    max-width: 34rem;
    margin-top: 1rem;
    color: var(--lux-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.site-wellness .auth-form {
    gap: 0.95rem;
    margin-top: 1.35rem;
}

.site-wellness .auth-form label {
    gap: 0.45rem;
    color: var(--lux-ink);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-wellness .auth-form :is(input:not([type="checkbox"]):not([type="radio"]), textarea, select:not(.role-select__native)) {
    min-height: 50px;
    border-radius: 0;
    border-color: rgba(72, 56, 44, 0.18);
    background: rgba(255, 252, 248, 0.78);
    color: var(--lux-ink);
    font-size: 0.96rem;
    font-weight: 500;
    letter-spacing: 0;
}

.site-wellness .auth-form :is(input:not([type="checkbox"]):not([type="radio"]), textarea, select:not(.role-select__native)):hover {
    border-color: rgba(111, 79, 61, 0.42);
    background: #fffaf4;
    box-shadow: none;
}

.site-wellness .auth-form :is(input:not([type="checkbox"]):not([type="radio"]), textarea, select:not(.role-select__native)):focus {
    border-color: var(--lux-bronze);
    background: #fffaf4;
    box-shadow: 0 0 0 3px rgba(168, 121, 88, 0.13);
}

.site-wellness .auth-form input:-webkit-autofill {
    -webkit-text-fill-color: var(--lux-ink);
    -webkit-box-shadow: 0 0 0 1000px #fffaf4 inset;
}

.site-wellness .auth-form .button {
    min-height: 48px;
    height: 48px;
    margin-top: 0.25rem;
    padding: 0 1.35rem;
    border-radius: 0;
    background: var(--lux-bronze-dark);
    border-color: var(--lux-bronze-dark);
    color: #fff8ef;
    box-shadow: none;
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-wellness .auth-form .button:is(:hover, :focus-visible) {
    background: var(--lux-bronze);
    border-color: var(--lux-bronze);
    color: #111826;
    box-shadow: none;
}

.site-wellness .auth-card .auth-switch {
    margin-top: 1rem;
    color: var(--lux-muted);
    font-size: 0.94rem;
    line-height: 1.5;
}

.site-wellness .auth-card .auth-switch + .auth-switch {
    margin-top: 0.45rem;
}

.site-wellness .auth-card .auth-switch a {
    color: var(--lux-bronze-dark);
    font-weight: 850;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.24em;
}

.site-wellness .auth-card .auth-switch a:is(:hover, :focus-visible) {
    color: var(--lux-bronze);
}

.site-wellness .auth-card .password-toggle {
    right: 0.6rem;
    color: var(--lux-bronze-dark);
}

.site-wellness .auth-card .password-toggle:hover {
    background: rgba(168, 121, 88, 0.1);
}

@media (max-width: 768px) {
    .site-wellness .auth-page {
        padding: 5.75rem 0 2.5rem;
    }

    .site-wellness .auth-page::before {
        height: 17rem;
    }

    .site-wellness .auth-page::after {
        inset-block-start: 17rem;
    }

    .site-wellness .auth-shell {
        width: min(100% - 1.25rem, 560px);
    }

    .site-wellness .auth-card,
    .site-wellness .auth-page--register .auth-card {
        display: block;
        width: 100%;
        min-height: 0;
    }

    .site-wellness .auth-card::before {
        width: 100%;
        min-height: 10rem;
        background-position: center 42%;
    }

    .site-wellness .auth-card > * {
        margin-inline: 1.25rem;
    }

    .site-wellness .auth-card > .eyebrow {
        display: block;
        margin-top: 1.35rem;
    }

    .site-wellness .auth-card h1 {
        margin-inline: 1.25rem;
        font-size: clamp(2.45rem, 13vw, 3.35rem);
    }

    .site-wellness .auth-card > .auth-switch:last-child {
        margin-bottom: 1.4rem;
    }
}

@media (max-width: 480px) {
    .site-wellness .auth-shell {
        width: min(100% - 1rem, 560px);
    }

    .site-wellness .auth-card::before {
        min-height: 8.25rem;
    }

    .site-wellness .auth-card > *,
    .site-wellness .auth-card h1 {
        margin-inline: 1rem;
    }

    .site-wellness .auth-form {
        gap: 0.8rem;
    }

    .site-wellness .auth-form .button {
        width: 100%;
    }
}

.lux-privacy {
    background: var(--lux-paper);
}

.lux-privacy__layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.lux-privacy__index {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem;
    border: 1px solid rgba(72, 56, 44, 0.14);
    background: #f8f4ee;
}

.lux-privacy__index .lux-kicker {
    margin-bottom: 0.5rem;
}

.lux-privacy__index a {
    padding: 0.6rem 0;
    border-top: 1px solid rgba(72, 56, 44, 0.1);
    color: var(--lux-muted);
    font-size: 0.82rem;
    line-height: 1.3;
}

.lux-privacy__index a:is(:hover, :focus-visible) {
    color: var(--lux-bronze-dark);
}

.lux-privacy__content {
    display: grid;
    gap: 1px;
    border: 1px solid rgba(72, 56, 44, 0.14);
    background: rgba(72, 56, 44, 0.14);
}

.lux-privacy-card {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    gap: 0.7rem 1.25rem;
    padding: 1.45rem;
    scroll-margin-top: 105px;
    background: #f8f4ee;
}

.lux-privacy-card > span {
    grid-row: span 2;
    color: rgba(111, 79, 61, 0.34);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.35rem;
    line-height: 1;
}

.lux-privacy-card h2 {
    margin: 0;
    color: var(--lux-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.12;
}

.lux-privacy-card p {
    margin: 0;
    color: var(--lux-muted);
    line-height: 1.72;
}

.lux-privacy-table-wrap {
    grid-column: 2;
    max-width: 100%;
    overflow-x: auto;
}

.lux-privacy-cookie-table {
    width: 100%;
    min-width: 1120px;
    border-collapse: collapse;
    background: rgba(255, 252, 248, 0.72);
    color: var(--lux-muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.lux-privacy-cookie-table :is(th, td) {
    padding: 0.75rem 0.8rem;
    border: 1px solid rgba(72, 56, 44, 0.12);
    text-align: left;
    vertical-align: top;
}

.lux-privacy-cookie-table th {
    color: var(--lux-bronze-dark);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lux-privacy-cookie-table td:first-child {
    color: var(--lux-bronze-dark);
    font-weight: 800;
}

.lux-privacy-card__note {
    grid-column: 2;
    font-size: 0.9rem;
}

.lux-privacy__updated {
    margin: 0;
    padding: 1rem 1.45rem;
    background: #f8f4ee;
    color: var(--lux-muted);
    font-size: 0.82rem;
}

.wellness-catalog-hero,
.wellness-portfolio-hero {
    min-height: 430px;
    background:
        linear-gradient(90deg, rgba(18, 11, 7, 0.86) 0%, rgba(31, 20, 13, 0.58) 46%, rgba(36, 24, 16, 0.2) 100%),
        var(--portfolio-cover-image, url("../../img/home/home-hero-wellness-large.webp")) center center / cover no-repeat;
}

.wellness-catalog-hero .container,
.wellness-portfolio-hero .wellness-shell {
    width: min(1320px, calc(100% - 2rem));
    min-height: 430px;
    padding: 7.4rem 0 3rem;
    justify-content: flex-end;
}

.wellness-catalog-hero h1 {
    max-width: 13ch;
    color: #fffaf3;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: 0;
}

.wellness-catalog-hero p,
.wellness-portfolio-hero .wellness-shell p {
    max-width: 42rem;
    color: rgba(255, 248, 240, 0.84);
    font-size: 1rem;
    line-height: 1.7;
}

.wellness-portfolio-hero__meta li {
    background: rgba(255, 250, 243, 0.9);
    border-color: rgba(43, 29, 21, 0.22);
    box-shadow: 0 14px 34px rgba(17, 11, 7, 0.22);
    backdrop-filter: blur(8px);
}

.wellness-portfolio-hero__meta span {
    color: #6a5748;
    font-weight: 850;
}

.wellness-portfolio-hero__meta strong {
    color: #241912;
    font-weight: 900;
}

.wellness-section {
    background: var(--lux-paper);
}

.wellness-catalog-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.wellness-catalog-layout__head {
    grid-column: 1 / -1;
}

.wellness-catalog-results__copy h2,
.wellness-section__head h2,
.wellness-portfolio-detail__intro h2 {
    color: var(--lux-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: 0;
}

.wellness-filter-panel,
.wellness-card,
.wellness-portfolio-gallery-card,
.wellness-portfolio-content,
.wellness-info-card,
.wellness-file-work-card__link {
    border-radius: 0;
    border: 1px solid rgba(72, 56, 44, 0.12);
    background: #f8f4ee;
    box-shadow: none;
}

.wellness-card__image,
.wellness-card__image img {
    border-radius: 3px;
}

.wellness-card h3 {
    color: var(--lux-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
    font-weight: 400;
    letter-spacing: 0;
}

.wellness-file-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.wellness-file-work-card__link {
    overflow: hidden;
}

.wellness-file-work-card__image,
.wellness-file-work-card__image img {
    border-radius: 3px;
}

.wellness-file-work-card__body {
    border-radius: 0;
}

.wellness-file-work-card__title {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: 0;
}

@media (max-width: 1024px) {
    .lux-page-hero__grid,
    .lux-story__grid,
    .lux-story-page__grid,
    .lux-split-feature__grid,
    .lux-contact-panel,
    .lux-privacy__layout,
    .wellness-catalog-layout {
        grid-template-columns: 1fr;
    }

    .lux-page-hero__panel {
        max-width: 420px;
    }

    .lux-story__items,
    .lux-benefits__grid,
    .lux-benefit-notes,
    .wellness-file-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .lux-contact-form {
        grid-template-columns: 1fr;
    }

    .wellness-catalog-layout > .wellness-filter-panel-slot {
        position: static;
    }

    .lux-privacy__index {
        position: static;
    }
}

@media (max-width: 768px) {
    .lux-page-hero {
        min-height: 590px;
        padding: 6rem 0 2rem;
    }

    .lux-page-hero__grid {
        gap: 1.25rem;
    }

    .lux-page-hero h1 {
        font-size: 2.35rem;
    }

    .lux-page-hero__panel {
        padding: 1rem;
    }

    .lux-story-card {
        min-height: 0;
        padding: 1.25rem;
    }

    .lux-contact-panel {
        width: min(100% - 1.25rem, 1180px);
        padding: 1.25rem;
    }

    .lux-privacy-card {
        grid-template-columns: 1fr;
        padding: 1.2rem;
    }

    .lux-privacy-card > span {
        grid-row: auto;
        font-size: 1.9rem;
    }

    .lux-privacy-table-wrap,
    .lux-privacy-card__note {
        grid-column: 1;
    }

    .wellness-catalog-hero,
    .wellness-portfolio-hero,
    .wellness-catalog-hero .container,
    .wellness-portfolio-hero .wellness-shell {
        min-height: 520px;
    }

    .wellness-catalog-hero .container,
    .wellness-portfolio-hero .wellness-shell {
        width: min(100% - 1.25rem, 1320px);
        padding: 6rem 0 2rem;
    }

    .wellness-catalog-hero h1 {
        font-size: 2.35rem;
    }
}

/* Portfolio listing */
.wellness-portfolio-page {
    padding: 2.1rem 0 2.8rem;
}

.wellness-portfolio-page .container {
    width: min(1320px, calc(100% - 2rem));
}

.wellness-portfolio-page__head {
    margin-bottom: 1.25rem;
}

.wellness-portfolio-page .wellness-file-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    align-items: start;
}

.wellness-portfolio-page .wellness-file-work-card,
.wellness-portfolio-page .wellness-file-work-card--layout-sm {
    grid-column: auto;
    min-height: 0;
}

.wellness-portfolio-page .wellness-file-work-card__link {
    display: grid;
    height: 100%;
}

.wellness-portfolio-page .wellness-file-work-card__image,
.wellness-portfolio-page .wellness-file-work-card__image--layout-sm {
    aspect-ratio: 1.38 / 1;
    min-height: 0;
}

.wellness-portfolio-page .wellness-file-work-card__body {
    min-height: 0;
    padding: 0.9rem 0.95rem 1rem;
    gap: 0.35rem;
}

.wellness-portfolio-page .wellness-file-work-card__title {
    font-size: 1.18rem;
    line-height: 1.16;
}

.wellness-portfolio-page .wellness-file-work-card__summary {
    font-size: 0.82rem;
    line-height: 1.45;
}

@media (max-width: 1200px) {
    .wellness-portfolio-page .wellness-file-portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .site-wellness .nav-inner {
        min-height: 60px;
    }

    .wellness-portfolio-page .container {
        width: min(100% - 1.25rem, 1320px);
    }

    .wellness-portfolio-page .wellness-file-portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile navigation */
@media (max-width: 1320px) {
    body.has-mobile-nav-open {
        overflow: hidden;
    }

    .site-wellness .navbar {
        background: rgba(7, 17, 31, 0.96);
        border-bottom-color: rgba(232, 194, 145, 0.16);
    }

    .site-wellness .nav-inner {
        width: calc(100% - 2rem);
        margin: 0 auto;
        min-height: 74px;
        padding: 0.65rem 0;
    }

    .site-wellness .brand,
    .site-wellness .nav-toggle {
        position: relative;
        z-index: 1465;
    }

    .site-wellness .brand {
        color: #fff8ef;
    }

    .site-wellness .nav-toggle {
        display: inline-flex;
        color: #fff8ef;
    }

    .site-wellness .nav-toggle svg {
        width: 1.75rem;
        height: 1.75rem;
        stroke-width: 2;
    }

    .site-wellness .nav__panel {
        position: fixed;
        inset: 0;
        z-index: 1460;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100dvh;
        max-height: none;
        padding: 6rem 1.25rem 1.5rem;
        flex-basis: auto;
        background:
            linear-gradient(180deg, rgba(7, 17, 31, 0.98), rgba(16, 28, 46, 0.96)),
            url("../../img/home/home-hero-wellness-large.webp") center center / cover no-repeat;
        background-blend-mode: normal, multiply;
        overflow: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-0.75rem);
        transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
    }

    .site-wellness .nav__panel.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-wellness .nav__list {
        width: min(100%, 34rem);
        min-height: calc(100dvh - 7.5rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        padding: 0.75rem 0 0;
        overflow: visible;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .site-wellness .nav__panel.is-open .nav__list {
        padding: 0.75rem 0 0;
    }

    .site-wellness .nav__item {
        width: 100%;
    }

    .site-wellness :is(.nav__link, .nav__action) {
        width: 100%;
        min-height: 3.45rem;
        justify-content: center;
        padding: 0.95rem 0;
        border-bottom: 1px solid rgba(232, 194, 145, 0.28);
        color: rgba(255, 248, 240, 0.92);
        font-size: 0.9rem;
        letter-spacing: 0.1em;
        text-align: center;
    }

    .site-wellness .nav__link::after {
        display: none;
    }

    .site-wellness :is(.nav__link, .nav__action):is(:hover, :focus-visible, .is-active, [aria-current="page"]) {
        color: #e2ba84;
        background: transparent;
    }

    .site-wellness .nav__cta {
        width: 100%;
        min-height: 3.55rem;
        margin: 1rem 0 0;
        padding: 0 1rem;
        border: 1px solid rgba(232, 194, 145, 0.42);
        color: #fff8ef;
        background: rgba(255, 248, 240, 0.06);
    }

    .site-wellness .nav__cta:is(:hover, :focus-visible) {
        color: #07111f;
        background: #e2ba84;
        border-color: #e2ba84;
    }

    .site-wellness .nav__item--phone {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
    }

    .site-wellness .nav__phone {
        width: min(18rem, calc(100% - 2rem));
        min-height: 3.65rem;
        margin: 1rem auto 0;
        padding: 0.35rem 1.05rem 0.35rem 0.4rem;
        font-size: 0.92rem;
    }
}

.wellness-cart-status.is-cart-updated {
    animation: wellnessCartPulse 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.wellness-buy-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.wellness-buy-button {
    width: 100%;
}

.wellness-cart-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    width: 100%;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(71, 52, 39, 0.14);
    background: rgba(255, 250, 244, 0.76);
    color: var(--wellness-accent-dark);
    font-size: 0.9rem;
    line-height: 1.25;
}

.wellness-cart-status[hidden] {
    display: none;
}

.wellness-cart-status strong {
    font-size: 1rem;
}

.wellness-cart-status a {
    flex: 0 0 auto;
    color: var(--wellness-accent-dark);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

@keyframes wellnessCartPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(198, 154, 104, 0);
    }

    42% {
        transform: scale(1.04);
        box-shadow: 0 0 0 6px rgba(198, 154, 104, 0.16);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(198, 154, 104, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wellness-cart-status.is-cart-updated {
        animation: none;
    }
}

.modal--purchase-auth .modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 18, 15, .58);
}

.modal--purchase-auth:not([hidden]) {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 4vw, 2rem);
}

.modal__dialog--purchase-auth {
    position: relative;
    z-index: 1;
    width: min(92vw, 420px);
    padding: 2rem;
    border-radius: 8px;
    background: #fff;
    color: #201b17;
    box-shadow: 0 22px 80px rgba(20, 18, 15, .25);
}

.modal__dialog--purchase-auth h2 {
    margin: .35rem 0 .75rem;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.modal__dialog--purchase-auth p {
    margin: 0;
    color: rgba(32, 27, 23, .72);
}

.modal__dialog--purchase-auth .modal__close {
    position: absolute;
    top: .85rem;
    right: .85rem;
    min-height: 2.25rem;
    height: 2.25rem;
    padding: 0 .85rem;
    box-shadow: none;
}

.purchase-auth-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.4rem;
}

/* Public visual system alignment */
.site-wellness {
    --site-ink: #202327;
    --site-muted: #716962;
    --site-paper: #f4f0eb;
    --site-surface: #f8f4ee;
    --site-line: rgba(72, 56, 44, 0.14);
    --site-navy: #07111f;
    --site-gold: #e2ba84;
    --site-bronze: #765235;
    background: var(--site-paper);
    color: var(--site-ink);
}

.site-wellness .site-main {
    background: var(--site-paper);
}

.site-wellness :is(.lux-container, .wellness-shell, .container) {
    --container-gutter: 2rem;
}

.site-wellness :is(.lux-kicker, .eyebrow) {
    color: var(--site-bronze);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-wellness :is(
    .lux-section-copy h2,
    .wellness-section__head h2,
    .wellness-gallery-head h2,
    .wellness-catalog-results__copy h2,
    .wellness-contact-copy h1,
    .lux-work-story h2,
    .lux-related-work h2
) {
    color: var(--site-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0;
}

.site-wellness :is(
    .lux-section-copy p,
    .wellness-muted-copy,
    .wellness-hero-copy,
    .wellness-file-work-card__summary,
    .lux-work-story__body,
    .lux-footer__col :is(a, span),
    .lux-footer__brand p
) {
    color: var(--site-muted);
    line-height: 1.68;
}

.site-wellness :is(.lux-hero, .lux-page-hero, .wellness-catalog-hero, .wellness-portfolio-hero) {
    background:
        linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.82) 38%, rgba(49, 27, 18, 0.34) 72%, rgba(7, 17, 31, 0.72) 100%),
        linear-gradient(135deg, rgba(242, 215, 164, 0.14) 0 1px, transparent 1px 24px),
        var(--portfolio-cover-image, url("../../img/home/home-hero-wellness-large.webp")) center center / cover no-repeat;
    color: #fff8ef;
}

.site-wellness :is(.lux-page-hero h1, .wellness-catalog-hero h1, .lux-hero h1) {
    color: #fffaf3;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: 0;
    text-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.34);
}

.site-wellness :is(.lux-page-hero p, .wellness-catalog-hero p, .lux-hero p) {
    color: rgba(255, 248, 240, 0.86);
}

.site-wellness :is(.lux-page-hero__panel, .wellness-portfolio-hero__meta li) {
    border: 1px solid rgba(226, 186, 132, 0.22);
    background: rgba(7, 17, 31, 0.42);
    color: #fff8ef;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.site-wellness :is(.lux-page-hero__panel span, .wellness-portfolio-hero__meta span) {
    color: rgba(255, 248, 240, 0.68);
}

.site-wellness :is(.lux-page-hero__panel strong, .wellness-portfolio-hero__meta strong) {
    color: #fffaf3;
}

.site-wellness :is(.lux-section, .wellness-section, .contact-page-section, .lux-contact-section, .lux-privacy) {
    background: var(--site-paper);
}

.site-wellness :is(
    .wellness-panel,
    .wellness-card,
    .wellness-filter-panel,
    .wellness-info-card,
    .wellness-portfolio-gallery-card,
    .wellness-file-work-card__link,
    .wellness-contact-panel,
    .lux-story-card,
    .lux-privacy-card,
    .lux-privacy__index,
    .auth-card
) {
    border: 1px solid var(--site-line);
    border-radius: 0;
    background: var(--site-surface);
    box-shadow: none;
}

.site-wellness :is(
    .wellness-card__image,
    .wellness-card__image img,
    .wellness-gallery-tile,
    .wellness-file-work-card__image,
    .wellness-file-work-card__image img,
    .lux-split-feature img,
    .lux-about__image img,
    .lux-project-card img,
    .lux-material-strip img,
    .wellness-contact-meta__item,
    .role-select__button,
    .role-select__menu
) {
    border-radius: 0;
}

.site-wellness :is(
    .wellness-card__image,
    .wellness-card__image img,
    .wellness-gallery-tile,
    .wellness-file-work-card__image,
    .wellness-file-work-card__image img,
    .place-card__image,
    .place-card__image img,
    .place-card__image--search,
    .place-card__image--search img,
    .archive-post-card__media,
    .archive-post-card__media img,
    .modal__image,
    .lux-split-feature img,
    .lux-about__image img,
    .lux-project-card img,
    .lux-material-strip img
) {
    border-radius: 3px;
}

.site-wellness .service-detail .lux-story__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    background: transparent;
    border: 0;
}

.site-wellness .service-detail .lux-story-card {
    position: relative;
    min-height: 13rem;
    padding: 1.45rem 1.45rem 1.35rem;
    overflow: hidden;
    border: 1px solid rgba(72, 56, 44, 0.12);
    background: linear-gradient(135deg, #fbf8f2 0%, #f1e9df 100%);
    box-shadow: 0 18px 40px rgba(48, 33, 23, 0.07);
}

.site-wellness .service-detail .lux-story-card::after {
    content: "";
    position: absolute;
    inset: auto 1.25rem 1.15rem auto;
    width: 2.5rem;
    height: 1px;
    background: rgba(111, 79, 61, 0.34);
}

.site-wellness .service-detail .lux-story-card > span {
    color: rgba(111, 79, 61, 0.24);
    font-size: 3.15rem;
}

.site-wellness .service-detail .lux-story-card h2 {
    max-width: 18ch;
    font-size: 1.42rem;
    line-height: 1.16;
}

@media (max-width: 768px) {
    .site-wellness .service-detail .lux-story__items {
        grid-template-columns: 1fr;
    }

    .site-wellness .service-detail .lux-story-card {
        min-height: 0;
    }
}

.site-wellness .wellness-portfolio-carousel__sidebar-card,
.site-wellness .wellness-portfolio-carousel__sidebar-card .wellness-portfolio-carousel__image,
.site-wellness .wellness-portfolio-carousel__sidebar-card .wellness-gallery-tile__overlay,
.site-wellness .wellness-portfolio-carousel__sidebar-card .wellness-portfolio-carousel__trigger {
    border-radius: 18px;
}

.site-wellness .wellness-portfolio-carousel__sidebar-card {
    overflow: hidden;
}

.site-wellness .wellness-portfolio-gallery-card :is(
    .wellness-portfolio-carousel__main--split,
    .wellness-portfolio-carousel__slide,
    .wellness-portfolio-carousel__sidebar-card,
    .wellness-portfolio-carousel__image,
    .wellness-gallery-tile__overlay,
    .wellness-portfolio-carousel__trigger
) {
    border-radius: 18px;
}

.site-wellness .wellness-portfolio-gallery-card :is(
    .wellness-portfolio-carousel__main--split,
    .wellness-portfolio-carousel__slide,
    .wellness-portfolio-carousel__sidebar-card
) {
    overflow: hidden;
}

.site-wellness :is(.lux-button, .button, .role-select__button) {
    min-height: 46px;
    border-radius: 0;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.site-wellness :is(.lux-button--primary, .button.button-primary) {
    background: var(--site-gold);
    border-color: var(--site-gold);
    color: #111826;
    box-shadow: none;
}

.site-wellness :is(.lux-button--primary, .button.button-primary):is(:hover, :focus-visible) {
    background: #f0cf9f;
    border-color: #f0cf9f;
    color: #07111f;
    box-shadow: none;
}

.site-wellness :is(.lux-button--ghost, .lux-button--line, .button.button-secondary) {
    border-color: rgba(118, 82, 53, 0.3);
    background: transparent;
    color: var(--site-bronze);
}

.site-wellness :is(.lux-page-hero, .lux-hero) :is(.lux-button--ghost, .lux-button--line, .button.button-secondary) {
    border-color: rgba(255, 248, 240, 0.54);
    background: rgba(20, 12, 8, 0.16);
    color: #fff8ef;
}

.site-wellness :is(.lux-button--ghost, .lux-button--line, .button.button-secondary):is(:hover, :focus-visible) {
    border-color: var(--site-gold);
    background: rgba(226, 186, 132, 0.12);
    color: var(--site-bronze);
    box-shadow: none;
}

.site-wellness :is(.lux-page-hero, .lux-hero) :is(.lux-button--ghost, .lux-button--line, .button.button-secondary):is(:hover, :focus-visible) {
    color: #fff8ef;
    background: rgba(255, 248, 240, 0.1);
}

.site-wellness :is(input:not([type="checkbox"]):not([type="radio"]), textarea, select:not(.role-select__native), .role-select__button) {
    border: 1px solid rgba(72, 56, 44, 0.18);
    border-radius: 0;
    background: rgba(255, 252, 248, 0.78);
    color: var(--site-ink);
}

.site-wellness :is(input:not([type="checkbox"]):not([type="radio"]), textarea, select:not(.role-select__native), .role-select__button):focus {
    border-color: var(--site-gold);
    box-shadow: 0 0 0 3px rgba(226, 186, 132, 0.16);
}

.site-wellness .site-footer {
    background: var(--site-navy);
    color: #fff8ef;
}

.site-wellness .site-footer :is(
    .lux-footer__brand p,
    .lux-footer__col :is(a, span),
    .lux-footer__legal,
    .lux-footer__legal a
) {
    color: rgba(255, 248, 240, 0.78);
}

.site-wellness .site-footer .lux-footer__col h2 {
    color: #e8c291;
}

.site-wellness .site-footer .lux-social a {
    border-color: rgba(232, 194, 145, 0.34);
    color: #e8c291;
}

.footer-cookie-link {
    display: inline-flex;
    align-items: center;
    min-height: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
}

.footer-cookie-link:is(:hover, :focus-visible) {
    color: #e8c291;
    outline: none;
}

.cookie-notice {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2500;
    padding: 1rem;
    pointer-events: none;
}

.cookie-notice__panel {
    width: min(1380px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: end;
    padding: 1.45rem 1.55rem;
    border: 1px solid rgba(226, 186, 132, 0.24);
    background: rgba(7, 17, 31, 0.96);
    color: #fff8ef;
    box-shadow: 0 24px 80px rgba(7, 17, 31, 0.24);
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 240ms ease, transform 240ms ease;
    pointer-events: auto;
}

.cookie-notice.is-visible .cookie-notice__panel {
    opacity: 1;
    transform: translateY(0);
}

.cookie-notice__panel p {
    margin: 0;
    color: rgba(255, 248, 239, 0.9);
    font-size: 0.98rem;
    line-height: 1.55;
}

.cookie-notice__panel a {
    color: #e8c291;
    border-bottom: 1px solid rgba(232, 194, 145, 0.62);
}

.cookie-notice__actions,
.cookie-modal__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.cookie-button {
    min-height: 44px;
    padding: 0 1rem;
    border: 1px solid transparent;
    background: transparent;
    color: inherit;
    font-weight: 850;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 220ms ease;
}

.cookie-button--primary {
    border-color: var(--site-gold, #e2ba84);
    background: var(--site-gold, #e2ba84);
    color: #111826;
}

.cookie-button--primary:is(:hover, :focus-visible) {
    border-color: #f0cf9f;
    background: #f0cf9f;
}

.cookie-button--ghost,
.cookie-button--line {
    border-color: rgba(255, 248, 240, 0.24);
    color: #fff8ef;
}

.cookie-button--ghost:is(:hover, :focus-visible),
.cookie-button--line:is(:hover, :focus-visible) {
    border-color: rgba(232, 194, 145, 0.72);
    background: rgba(232, 194, 145, 0.12);
}

.cookie-button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(226, 186, 132, 0.18);
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 2600;
    display: grid;
    place-items: center;
    padding: 1rem;
    overscroll-behavior: contain;
}

.cookie-modal[hidden] {
    display: none !important;
}

.cookie-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 17, 31, 0.64);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
}

.cookie-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: min(760px, calc(100dvh - 2rem));
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    border: 1px solid rgba(72, 56, 44, 0.16);
    background: #fffaf3;
    color: var(--site-ink, #252526);
    box-shadow: 0 34px 100px rgba(7, 17, 31, 0.3);
}

.cookie-modal__header,
.cookie-modal__footer {
    padding: 1.2rem 1.35rem;
    background: #fffaf3;
}

.cookie-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(72, 56, 44, 0.1);
}

.cookie-modal__header h2 {
    margin: 0.28rem 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 400;
    letter-spacing: 0;
}

.cookie-modal__close {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(118, 82, 53, 0.22);
    background: transparent;
    color: var(--site-bronze, #765235);
    cursor: pointer;
}

.cookie-modal__close svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.cookie-modal__close:is(:hover, :focus-visible) {
    border-color: var(--site-gold, #e2ba84);
    background: rgba(226, 186, 132, 0.1);
    outline: none;
}

.cookie-modal__body {
    min-height: 0;
    overflow-y: auto;
    padding: 1.25rem 1.35rem;
}

.cookie-modal__body > p {
    margin: 0 0 1rem;
    color: rgba(37, 37, 38, 0.74);
    line-height: 1.62;
}

.cookie-preference {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border: 1px solid rgba(72, 56, 44, 0.13);
    background: rgba(247, 241, 232, 0.68);
}

.cookie-preference + .cookie-preference {
    margin-top: 0.75rem;
}

.cookie-preference h3 {
    margin: 0 0 0.35rem;
    color: var(--site-bronze, #765235);
    font-size: 1rem;
}

.cookie-preference p {
    margin: 0;
    color: rgba(37, 37, 38, 0.72);
    line-height: 1.5;
}

.cookie-preference input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cookie-preference__locked {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.72rem;
    border: 1px solid rgba(118, 82, 53, 0.24);
    color: var(--site-bronze, #765235);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.cookie-switch {
    position: relative;
    width: 58px;
    height: 32px;
    border: 1px solid rgba(118, 82, 53, 0.28);
    background: rgba(255, 255, 255, 0.88);
    transition: all 220ms ease;
}

.cookie-switch::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    background: rgba(118, 82, 53, 0.7);
    transition: all 220ms ease;
}

.cookie-preference input:checked + .cookie-switch {
    border-color: var(--site-gold, #e2ba84);
    background: var(--site-gold, #e2ba84);
}

.cookie-preference input:checked + .cookie-switch::before {
    left: 30px;
    background: #111826;
}

.cookie-preference:focus-within {
    border-color: rgba(226, 186, 132, 0.72);
    box-shadow: 0 0 0 3px rgba(226, 186, 132, 0.14);
}

.cookie-modal__footer {
    border-top: 1px solid rgba(72, 56, 44, 0.1);
}

.cookie-modal__footer .cookie-button--ghost {
    border-color: rgba(118, 82, 53, 0.3);
    color: var(--site-bronze, #765235);
}

.cookie-modal__footer .cookie-button--ghost:is(:hover, :focus-visible) {
    background: rgba(226, 186, 132, 0.1);
}

.cookie-embed-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.7rem;
    padding: clamp(1.1rem, 3vw, 2rem);
    border: 1px solid rgba(226, 186, 132, 0.2);
    background: linear-gradient(135deg, #07111f, #151f2d);
    color: #fff8ef;
}

.cookie-embed-placeholder strong {
    color: #e8c291;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 400;
}

.cookie-embed-placeholder p {
    max-width: 32rem;
    margin: 0;
    color: rgba(255, 248, 239, 0.82);
    line-height: 1.55;
}

[data-cookie-gated] {
    position: relative;
}

[data-cookie-gated].is-cookie-loaded .cookie-embed-placeholder,
[data-cookie-category][data-cookie-src]:not([src]) {
    display: none;
}

@media (max-width: 768px) {
    .site-wellness :is(.lux-container, .wellness-shell, .container) {
        --container-gutter: 1.25rem;
    }

    .site-wellness :is(.lux-page-hero h1, .wellness-catalog-hero h1, .lux-hero h1) {
        line-height: 1.05;
    }

    .cookie-notice {
        padding: 0.75rem;
    }

    .cookie-notice__panel {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
        background: #07111f;
    }

    .cookie-notice__panel p {
        font-size: 0.92rem;
    }

    .cookie-notice__actions,
    .cookie-modal__footer {
        justify-content: stretch;
    }

    .cookie-button {
        flex: 1 1 9rem;
    }

    .cookie-modal {
        align-items: end;
        padding: 0.65rem;
    }

    .cookie-modal__dialog {
        max-height: calc(100dvh - 1.3rem);
    }

    .cookie-modal__header,
    .cookie-modal__body,
    .cookie-modal__footer {
        padding-inline: 1rem;
    }

    .cookie-preference {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .cookie-switch,
    .cookie-preference__locked {
        justify-self: start;
    }
}

/* Legibility pass: raise the smallest text across the public theme. */
.site-wellness {
    --eyebrow-font-size: 0.86rem;
}

.site-wellness :is(
    .lux-kicker,
    .eyebrow,
    .lux-hero__eyebrow,
    .lux-page-hero .lux-kicker,
    .lux-work-hero .lux-kicker,
    .lux-privacy__index .lux-kicker,
    .lux-service h2,
    .lux-step h3,
    .lux-architects__features h3,
    .lux-showroom__note h3,
    .lux-footer__col h2,
    .wellness-file-work-card__eyebrow,
    .wellness-contact-meta__item span,
    .lux-contact-meta__item span,
    .wellness-portfolio-hero__meta span,
    .lux-page-hero__panel span,
    .modal--portfolio .modal__meta span,
    .results-meta__label,
    .cookie-preference__locked
) {
    font-size: 0.86rem;
    line-height: 1.35;
}

.site-wellness :is(
    .lux-link,
    .lux-button,
    .button,
    .role-select__button,
    .cookie-button,
    .wellness-buy-button
) {
    font-size: 0.9rem;
}

.site-wellness :is(.nav__link, .nav__action, .nav__cta) {
    font-size: 0.76rem;
}

.site-wellness .nav__phone {
    font-size: 0.84rem;
}

.site-wellness :is(
    .lux-service p,
    .lux-step p,
    .lux-architects__features p,
    .lux-showroom__note p,
    .lux-review-list p,
    .lux-section-copy p,
    .lux-cta p,
    .lux-stats span,
    .lux-project-card span,
    .lux-footer__brand p,
    .lux-footer__col :is(a, span),
    .lux-footer__legal,
    .wellness-gallery-tile__copy small,
    .wellness-card__meta,
    .wellness-catalog-results__meta,
    .wellness-portfolio-carousel__caption-subtitle,
    .wellness-portfolio-meta__cta p,
    .wellness-portfolio-meta__download,
    .wellness-contact-meta__item :is(a, p),
    .lux-contact-meta__item :is(a, p),
    .lux-privacy-cookie-table :is(th, td),
    .cookie-notice__panel p,
    .cookie-modal__body > p,
    .cookie-preference p,
    .cookie-embed-placeholder p
) {
    font-size: 0.98rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .site-wellness :is(.nav__link, .nav__action, .nav__cta) {
        font-size: 0.9rem;
    }

    .site-wellness .nav__phone {
        font-size: 0.92rem;
    }
}
