@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-latin-italic.woff2") format("woff2");
    font-style: italic;
    font-weight: 400 700;
    font-display: swap;
}

:root {
    --ink: #211c1b;
    --ink-soft: #574d4a;
    --paper: #fffdfb;
    --ivory: #f8f2ed;
    --rose: #f4b3a8;
    --rose-soft: #f8d9d2;
    --rose-dark: #9a514b;
    --sage: #667960;
    --sage-soft: #e5ece2;
    --sage-pale: #f2f6f0;
    --line: rgba(33, 28, 27, 0.16);
    --white-line: rgba(255, 255, 255, 0.34);
    --shadow: 0 24px 70px rgba(44, 31, 28, 0.12);
    --radius-sm: 0.75rem;
    --radius-md: 1.5rem;
    --radius-lg: 2.25rem;
    --container: 76rem;
    --font-body: "Montserrat", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    color-scheme: light;
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

[id] {
    scroll-margin-top: 6rem;
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: var(--paper);
    opacity: 1;
    transition: opacity 480ms var(--ease), visibility 0s linear 480ms;
}

.page-loader::before,
.page-loader::after {
    position: absolute;
    width: min(34rem, 60vw);
    aspect-ratio: 0.72;
    background: url("../img/decor-botanical.svg") center / contain no-repeat;
    content: "";
    opacity: 0.1;
}

.page-loader::before {
    right: -8rem;
    bottom: -12rem;
}

.page-loader::after {
    top: -13rem;
    left: -10rem;
    transform: rotate(180deg);
}

.page-loader.is-leaving {
    visibility: hidden;
    opacity: 0;
}

.page-loader__mark {
    position: relative;
    z-index: 1;
    display: grid;
    min-width: min(17rem, 72vw);
    justify-items: center;
}

.page-loader__logo {
    width: min(17.5rem, 72vw);
    height: auto;
}

.page-loader__line {
    width: 100%;
    height: 3px;
    margin-top: 1.2rem;
    overflow: hidden;
    background: rgba(33, 28, 27, 0.22);
    border-radius: 999px;
    box-shadow: 0 5px 16px rgba(102, 121, 96, 0.16);
}

.page-loader__line::after {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--sage), var(--rose));
    border-radius: inherit;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    animation: loader-line 1500ms var(--ease) forwards;
}

@keyframes loader-line {
    to { transform: scaleX(1); }
}

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

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-underline-offset: 0.22em;
}

button {
    color: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -0.024em;
}

h1 {
    font-size: clamp(3rem, 7.4vw, 6.65rem);
}

h2 {
    font-size: clamp(2.25rem, 4.6vw, 4.35rem);
}

h3 {
    font-size: clamp(1.45rem, 2.15vw, 2.1rem);
}

em {
    color: var(--rose-dark);
    font-weight: inherit;
}

[hidden] {
    display: none !important;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    isolation: isolate;
    padding-block: clamp(5rem, 10vw, 9.5rem);
    overflow: clip;
}

.section > .container {
    position: relative;
    z-index: 1;
}

.section--soft {
    background: var(--ivory);
}

.section--ink {
    color: #fff;
    background: var(--ink);
}

.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;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.8rem 1rem;
    color: #fff;
    background: var(--ink);
    border-radius: 0.5rem;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

:focus-visible {
    outline: 3px solid #1769aa;
    outline-offset: 4px;
}

.eyebrow {
    margin-bottom: 0.85rem;
    color: var(--rose-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.3;
    text-transform: uppercase;
}

.section--ink .eyebrow {
    color: var(--rose);
}

.lead {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    line-height: 1.5;
}

.button {
    display: inline-flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.85rem 1.3rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 240ms ease, background 240ms ease, border-color 240ms ease, transform 240ms var(--ease);
}

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

.button--light {
    color: var(--ink);
    background: #fff;
}

.button--light:hover {
    background: var(--rose-soft);
}

.button--dark {
    color: #fff;
    background: var(--ink);
}

.button--dark:hover {
    background: var(--rose-dark);
}

.button--rose {
    color: var(--ink);
    background: var(--rose);
    box-shadow: 0 12px 28px rgba(154, 81, 75, 0.22);
}

.button--rose:hover {
    color: #fff;
    background: var(--rose-dark);
}

.button--social {
    color: var(--ink);
    background: transparent;
    border-color: rgba(33, 28, 27, 0.34);
}

.button--social:hover {
    color: #fff;
    background: var(--rose-dark);
    border-color: var(--rose-dark);
}

.button--outline {
    color: var(--ink);
    background: transparent;
    border-color: rgba(33, 28, 27, 0.42);
}

.button--outline:hover {
    background: var(--rose-soft);
    border-color: var(--ink);
}

.button--wide {
    width: 100%;
}

.button--purchase {
    color: #fff;
    background: #56705a;
    box-shadow: 0 12px 26px rgba(58, 86, 63, 0.2);
}

.button--purchase:hover {
    color: var(--ink);
    background: var(--rose);
    box-shadow: 0 12px 28px rgba(154, 81, 75, 0.18);
}

.icon {
    width: 1.15em;
    height: 1.15em;
    flex: 0 0 auto;
    overflow: visible;
    fill: currentColor;
}

.icon-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.text-link,
.text-button {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    border-bottom: 1px solid currentColor;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.text-link:hover,
.text-button:hover {
    color: var(--rose-dark);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    min-height: 5.5rem;
    background: rgba(255, 253, 251, 0.91);
    border-bottom: 1px solid transparent;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transition: border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
    border-color: var(--line);
    box-shadow: 0 10px 30px rgba(40, 28, 25, 0.06);
}

.site-header__inner {
    display: flex;
    min-height: 5.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

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

.brand img {
    width: 7.6rem;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.85rem, 1.8vw, 1.6rem);
    font-size: 0.82rem;
    font-weight: 650;
}

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

.main-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -0.35rem;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 240ms var(--ease);
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    display: inline-flex;
    min-height: 2.65rem;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1.05rem;
    color: #fff;
    background: var(--sage);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(73, 94, 68, 0.18);
    transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.nav-cta:hover {
    color: var(--ink);
    background: var(--rose);
    transform: translateY(-1px);
}

.nav-cart {
    display: inline-flex;
    min-height: 2.65rem;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    font-weight: 750;
    text-decoration: none;
}

.nav-cart span {
    display: grid;
    width: 1.35rem;
    height: 1.35rem;
    place-items: center;
    color: #fff;
    background: var(--ink);
    border-radius: 50%;
    font-size: 0.68rem;
}

.menu-toggle {
    display: none;
}

.hero {
    padding-top: clamp(3rem, 7vw, 6rem);
}

.hero__intro {
    position: relative;
    isolation: isolate;
    display: grid;
    align-items: end;
    padding-bottom: clamp(3.25rem, 7vw, 6rem);
    grid-template-columns: minmax(0, 1.45fr) minmax(17rem, 0.55fr);
    column-gap: clamp(2rem, 7vw, 7rem);
}

.hero__intro::after {
    position: absolute;
    z-index: -1;
    right: -4rem;
    bottom: -8rem;
    width: min(31rem, 43vw);
    aspect-ratio: 0.72;
    background: url("../img/decor-botanical.svg") center / contain no-repeat;
    content: "";
    opacity: 0.16;
    pointer-events: none;
}

.hero__intro .eyebrow {
    grid-column: 1 / -1;
}

.hero__intro h1 {
    max-width: 12ch;
    margin-bottom: 0;
}

.hero__intro h1 em {
    color: var(--rose-dark);
}

.hero__intro > p:last-child {
    max-width: 35rem;
    margin-bottom: 0.65rem;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.hero__locations {
    display: grid;
    min-height: min(46rem, 78vh);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-hero {
    position: relative;
    isolation: isolate;
    min-height: 38rem;
    overflow: hidden;
}

.location-hero > img {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms var(--ease), filter 320ms ease;
}

.location-hero--rovereto > img {
    object-position: 50% 48%;
}

.location-hero--trento > img {
    object-position: 50% 45%;
}

.location-hero:hover > img {
    filter: saturate(1.05);
    transform: scale(1.035);
}

.location-hero__shade {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 13, 12, 0.08) 25%, rgba(17, 13, 12, 0.76) 100%);
}

.location-hero__content {
    position: absolute;
    right: clamp(1.25rem, 5vw, 5rem);
    bottom: clamp(1.5rem, 5vw, 4.5rem);
    left: clamp(1.25rem, 5vw, 5rem);
    color: #fff;
}

.location-hero__content p {
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.location-hero__content h2 {
    margin-bottom: 1.6rem;
    font-size: clamp(3rem, 6vw, 6rem);
}

.location-hero--rovereto .location-hero__content h2 {
    font-size: clamp(2.75rem, 5.2vw, 5.15rem);
}

.about__grid {
    display: grid;
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
}

.about,
.gift-card,
.contacts {
    position: relative;
    isolation: isolate;
}

.about::after,
.gift-card::before,
.contacts::before {
    position: absolute;
    z-index: -1;
    width: clamp(16rem, 30vw, 28rem);
    aspect-ratio: 0.72;
    background: url("../img/decor-botanical.svg") center / contain no-repeat;
    content: "";
    opacity: 0.075;
    pointer-events: none;
}

.about::after {
    right: -7rem;
    bottom: -4rem;
}

.gift-card::before {
    top: 2rem;
    left: -8rem;
    transform: scaleX(-1);
}

.contacts::before {
    right: -6rem;
    bottom: 1rem;
}

.about__copy h2 {
    max-width: 12ch;
    margin-bottom: 2rem;
}

.about__copy p:not(.eyebrow) {
    max-width: 43rem;
    color: var(--ink-soft);
}

.linda-quote {
    position: relative;
    max-width: 38rem;
    padding: clamp(1.25rem, 3vw, 1.8rem) clamp(1.35rem, 3vw, 2rem);
    margin: 1.2rem 0 2rem;
    color: #344230;
    background: var(--sage-soft);
    border-left: 0.3rem solid var(--sage);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.42;
}

.linda-quote::after {
    position: absolute;
    top: -0.45rem;
    right: 1rem;
    color: rgba(102, 121, 96, 0.22);
    content: "“";
    font-size: 6rem;
    line-height: 1;
}

.about__media {
    position: relative;
    margin-bottom: 0;
}

.about__media::before {
    position: absolute;
    z-index: -1;
    top: -1.5rem;
    right: -1.5rem;
    width: 60%;
    height: 55%;
    background: var(--rose-soft);
    border-radius: var(--radius-lg);
    content: "";
}

.about__media img {
    width: 100%;
    max-height: 44rem;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.about__media figcaption {
    position: absolute;
    right: -1rem;
    bottom: 2rem;
    max-width: 14rem;
    padding: 1.25rem 1.4rem;
    color: #fff;
    background: var(--ink);
    border-radius: var(--radius-sm);
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.25;
}

.section-heading {
    display: grid;
    max-width: 54rem;
    margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
    gap: 0;
}

.section-heading h2 {
    max-width: 15ch;
    margin-bottom: 1rem;
}

.section-heading > p:last-child {
    max-width: 42rem;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: clamp(1rem, 1.45vw, 1.14rem);
    line-height: 1.65;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center h2,
.section-heading--center > p:last-child {
    margin-inline: auto;
}

.section-heading--split {
    display: flex;
    max-width: none;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.team__grid {
    display: grid;
    align-items: stretch;
    gap: clamp(2rem, 5vw, 5rem);
    grid-template-columns: minmax(0, 1.18fr) minmax(19rem, 0.82fr);
}

.team__photo {
    aspect-ratio: 16 / 9;
    min-height: 0;
    margin-bottom: 0;
    align-self: center;
}

.team__photo img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
}

.team__values {
    display: grid;
    align-content: center;
}

.team__values article {
    display: grid;
    padding-block: 1.6rem;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 2.5rem 1fr;
    column-gap: 1rem;
}

.team__values article:first-child {
    border-top: 1px solid var(--line);
}

.team__values span {
    padding-top: 0.25rem;
    color: var(--rose-dark);
    font-size: 0.75rem;
    font-weight: 800;
}

.team__values h3 {
    margin-bottom: 0.5rem;
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.team__values p {
    margin-bottom: 0;
    color: var(--ink-soft);
    grid-column: 2;
}

.specialists__grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-card {
    min-width: 0;
    height: clamp(31rem, 50vw, 40rem);
    perspective: 1200px;
}

.profile-card__inner {
    --shift-x: 0px;
    --shift-y: 0px;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: translate3d(var(--shift-x), var(--shift-y), 0) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transition: transform 520ms var(--ease);
    will-change: transform;
}

.profile-card.is-flipped .profile-card__inner {
    transform: translate3d(var(--shift-x), var(--shift-y), 0) rotateX(var(--tilt-x)) rotateY(calc(180deg + var(--tilt-y)));
}

.profile-card__face {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    backface-visibility: hidden;
}

.profile-card__front {
    color: #fff;
    background: #302a28;
}

.profile-card__front::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(20, 15, 14, 0.86) 100%);
    content: "";
}

.profile-card__front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card__summary {
    position: absolute;
    z-index: 1;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
}

.profile-card__summary p {
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-card__summary h3 {
    margin-bottom: 0.7rem;
    font-size: clamp(2.5rem, 4vw, 4rem);
}

.profile-card__summary .text-button {
    color: #fff;
}

.profile-card__back {
    display: flex;
    padding: clamp(1.5rem, 3vw, 2.75rem);
    flex-direction: column;
    background: var(--rose-soft);
    transform: rotateY(180deg);
}

.profile-card__back h3 {
    margin-bottom: 1.5rem;
}

.profile-card__back p:not(.eyebrow) {
    color: var(--ink-soft);
}

.profile-card__links {
    display: flex;
    margin-top: auto;
    margin-bottom: 1.2rem;
    gap: 1rem;
}

.profile-card__links a {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 750;
}

.gift-card {
    overflow: hidden;
    background: var(--rose-soft);
}

.gift-card__grid {
    display: grid;
    align-items: center;
    gap: clamp(3rem, 7vw, 6.5rem);
    grid-template-columns: minmax(20rem, 0.95fr) minmax(22rem, 1.05fr);
}

.gift-card__copy {
    position: relative;
}

.gift-card__copy h2 {
    max-width: 16ch;
    margin-bottom: 1.5rem;
}

.gift-card__copy > p:not(.eyebrow) {
    max-width: 36rem;
}

.gift-card__links {
    display: flex;
    margin-block: 1.75rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.gift-card__links .listino-link {
    display: inline-flex;
    min-height: 3rem;
    padding: 0.7rem 1rem;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 253, 251, 0.64);
    border: 1px solid rgba(154, 81, 75, 0.4);
    border-radius: 999px;
    color: var(--ink);
    font-weight: 750;
    text-decoration: none;
    transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

.gift-card__links .listino-link:hover {
    background: var(--rose);
    border-color: var(--rose-dark);
    transform: translateY(-2px);
}

.gift-preview {
    position: relative;
    display: flex;
    width: min(100%, 27rem);
    min-height: 33.75rem;
    padding: clamp(1.3rem, 4vw, 2.2rem);
    overflow: hidden;
    flex-direction: column;
    color: #293227;
    background: linear-gradient(145deg, #edf3ea 0%, #dbe6d8 100%);
    border: 1px solid rgba(74, 95, 69, 0.22);
    border-radius: 0.4rem 2.5rem 0.4rem 2.5rem;
    box-shadow: 0 28px 55px rgba(64, 82, 60, 0.2);
}

.gift-preview::before,
.gift-preview::after {
    position: absolute;
    width: 14rem;
    aspect-ratio: 1;
    border: 1px solid rgba(102, 121, 96, 0.36);
    border-radius: 45% 55% 62% 38%;
    content: "";
}

.gift-preview::before {
    top: -7rem;
    right: -6rem;
    transform: rotate(28deg);
}

.gift-preview::after {
    bottom: -8rem;
    left: -5rem;
    transform: rotate(-22deg);
}

.gift-preview__brand,
.gift-preview__footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.gift-preview__brand img {
    width: 7rem;
    height: auto;
}

.gift-preview__brand > span,
.gift-preview__recipient,
.gift-preview__date,
.gift-preview__footer {
    font-size: 0.69rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gift-preview__recipient {
    position: relative;
    z-index: 1;
    margin: 2rem 0 0.25rem;
}

.gift-preview__recipient strong {
    color: var(--rose-dark);
}

.gift-preview__date {
    position: relative;
    z-index: 1;
    opacity: 0.72;
}

.gift-preview__center {
    position: relative;
    z-index: 1;
    display: flex;
    margin: auto 0;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.gift-preview__center p,
.gift-preview__center span {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4rem);
    line-height: 0.85;
    letter-spacing: -0.04em;
}

.gift-preview__center > span {
    margin-left: 4.5rem;
    font-style: italic;
}

.gift-preview__center > strong {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.73rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gift-preview__center b {
    display: block;
    margin-top: 0.25rem;
    color: var(--rose-dark);
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.gift-preview__message {
    position: relative;
    z-index: 1;
    max-width: 28ch;
    margin: 0 auto 1.5rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    line-height: 1.35;
    text-align: center;
}

.gift-preview__footer {
    align-items: end;
    font-size: 0.57rem;
}

.gift-preview__footer span:last-child {
    text-align: right;
}

.gift-form {
    padding: clamp(1.4rem, 4vw, 3.25rem);
    background: var(--paper);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.gift-form__group {
    padding: 1.15rem 1.1rem 0;
    margin: 0 0 1.2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.gift-form__group legend {
    padding-inline: 0.45rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gift-form__row {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-heading {
    display: flex;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
}

.form-heading span {
    color: var(--rose-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-heading strong {
    max-width: 15rem;
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1.1;
    text-align: right;
}

.field {
    margin-bottom: 1.2rem;
}

.field label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.86rem;
    font-weight: 750;
}

.field label span,
.field small {
    color: var(--ink-soft);
    font-weight: 450;
}

.field__help {
    display: flex;
    margin-top: 0.4rem;
    justify-content: space-between;
    gap: 1rem;
}

.field input,
.field textarea {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.8rem 0.9rem;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(33, 28, 27, 0.36);
    border-radius: 0.6rem;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
    min-height: 7rem;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--ink);
    box-shadow: 0 0 0 3px rgba(244, 179, 168, 0.45);
    outline: 0;
}

.field-with-unit {
    position: relative;
}

.field-with-unit > span {
    position: absolute;
    top: 50%;
    left: 1rem;
    font-weight: 750;
    transform: translateY(-50%);
}

.field-with-unit input {
    padding-left: 2.2rem;
}

.check-field {
    display: grid;
    margin-block: 1.5rem;
    align-items: start;
    gap: 0.7rem;
    grid-template-columns: 1.25rem 1fr;
    font-size: 0.85rem;
}

.check-field input {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0.15rem 0 0;
    accent-color: var(--rose-dark);
}

.form-status {
    min-height: 1.5rem;
    color: #7b211a;
    font-weight: 700;
}

.reviews {
    position: relative;
}

.reviews::before {
    position: absolute;
    z-index: -1;
    top: 8%;
    right: 4%;
    width: 18rem;
    height: 18rem;
    background: var(--rose-soft);
    border-radius: 50%;
    content: "";
    filter: blur(2px);
    opacity: 0.55;
}

.reviews__grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.reviews__controls {
    display: none;
}

.reviews__grid figure {
    position: relative;
    display: flex;
    min-height: 17rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    margin: 0;
    flex-direction: column;
    background: var(--ivory);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    transition: transform 300ms var(--ease), border-color 300ms ease;
}

.reviews__grid figure:nth-child(1) {
    grid-column: 1 / 7;
}

.reviews__grid figure:nth-child(2) {
    grid-column: 7 / -1;
}

.reviews__grid figure:nth-child(3) {
    grid-column: 3 / 11;
}

.reviews__grid figure::after {
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    color: var(--rose-soft);
    content: "“";
    font-family: var(--font-display);
    font-size: 7rem;
    line-height: 1;
}

.review-stars {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
    color: var(--rose-dark);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
}

.reviews__grid figure:hover {
    border-color: var(--rose);
    transform: translateY(-5px);
}

.reviews blockquote {
    margin-bottom: 2rem;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.45;
}

.reviews figcaption {
    display: flex;
    margin-top: auto;
    flex-direction: column;
    font-size: 0.85rem;
}

.reviews figcaption span {
    color: var(--ink-soft);
}

.gallery {
    overflow: hidden;
}

.gallery__heading {
    display: flex;
    margin-bottom: 3rem;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.gallery__heading h2 {
    max-width: 15ch;
    margin-bottom: 0.85rem;
}

.gallery__heading > div:first-child > p:last-child {
    max-width: 35rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
}

.gallery__controls {
    display: flex;
    gap: 0.6rem;
}

.gallery__controls button {
    display: grid;
    width: 3.25rem;
    height: 3.25rem;
    place-items: center;
    color: #fff;
    background: transparent;
    border: 1px solid var(--white-line);
    border-radius: 50%;
    cursor: pointer;
    transition: color 200ms ease, background 200ms ease;
}

.gallery__controls button:hover {
    color: var(--ink);
    background: var(--rose);
}

.gallery__track {
    display: grid;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    gap: 1rem;
    grid-auto-columns: min(71vw, 34rem);
    grid-auto-flow: column;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: inline proximity;
    cursor: grab;
    touch-action: pan-x pan-y pinch-zoom;
    -webkit-user-select: none;
    user-select: none;
}

.gallery__track::-webkit-scrollbar {
    display: none;
}

.gallery__track.is-dragging {
    scroll-behavior: auto;
    scroll-snap-type: none;
    cursor: grabbing;
}

.gallery__track figure {
    position: relative;
    aspect-ratio: 4 / 5;
    height: auto;
    margin-bottom: 0;
    overflow: hidden;
    background: #171312;
    border-radius: var(--radius-md);
    scroll-snap-align: start;
}

.gallery__track img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    transition: transform 420ms var(--ease);
}

.gallery__track figure:hover img {
    transform: scale(1.008);
}

.gallery__image-button {
    position: absolute;
    inset: 0;
    width: 100%;
    padding: 0;
    overflow: hidden;
    color: #fff;
    background: transparent;
    border: 0;
    cursor: zoom-in;
}

.gallery__zoom {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    background: rgba(20, 15, 14, 0.62);
    border: 1px solid var(--white-line);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(0.4rem);
    transition: opacity 220ms ease, transform 220ms var(--ease);
}

.gallery__image-button:hover .gallery__zoom,
.gallery__image-button:focus-visible .gallery__zoom {
    opacity: 1;
    transform: translateY(0);
}

.gallery-lightbox {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    width: 100%;
    height: 100dvh;
    padding: clamp(0.75rem, 3vw, 2.25rem);
    place-items: center;
    overflow: hidden;
    color: #fff;
    background: rgba(14, 10, 9, 0.92);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox__stage {
    position: relative;
    display: flex;
    width: min(100%, 88rem);
    height: min(100%, 62rem);
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #171312;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
}

.gallery-lightbox__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
    position: absolute;
    z-index: 1;
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    color: #fff;
    background: rgba(20, 15, 14, 0.72);
    border: 1px solid var(--white-line);
    border-radius: 50%;
    cursor: pointer;
}

.gallery-lightbox__close {
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
}

.gallery-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
}

.gallery-lightbox__nav--prev {
    left: 1rem;
}

.gallery-lightbox__nav--next {
    right: 1rem;
}

body.lightbox-open {
    overflow: hidden;
}

.article-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-grid:has(> .article-card:only-child) {
    grid-template-columns: minmax(0, 58rem);
}

.article-card {
    display: flex;
    min-width: 0;
    min-height: 24rem;
    overflow: hidden;
    flex-direction: column;
    color: inherit;
    background: var(--ivory);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform 280ms var(--ease), background 280ms ease;
}

.article-card__image {
    width: 100%;
    height: 13rem;
    object-fit: cover;
}

.article-card__body {
    display: flex;
    min-width: 0;
    padding: 1.6rem;
    flex: 1;
    flex-direction: column;
}

.article-card:only-child {
    display: grid;
    min-height: 22rem;
    grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
}

.article-card:only-child .article-card__image {
    height: 100%;
}

.article-card:hover {
    background: var(--rose-soft);
    transform: translateY(-4px);
}

.article-card__meta {
    color: var(--rose-dark);
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-card h3 {
    margin-block: auto 1rem;
    overflow-wrap: anywhere;
}

.contacts {
    background: var(--paper);
}

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

.contact-card {
    padding: clamp(1.5rem, 4vw, 3rem);
    background: var(--ivory);
    border-radius: var(--radius-lg);
}

.contact-card__city {
    color: var(--rose-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-card h3 {
    display: flex;
    margin-bottom: 2rem;
    align-items: start;
    gap: 0.65rem;
    font-size: clamp(2rem, 4vw, 3.7rem);
}

.contact-card h3 .icon {
    width: 0.7em;
    height: 0.7em;
    margin-top: 0.12em;
    color: var(--rose-dark);
}

.contact-card dl {
    margin-bottom: 2rem;
}

.contact-card dl div {
    display: flex;
    padding-block: 0.65rem;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
}

.contact-card dt {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink-soft);
}

.contact-card dt .icon {
    color: var(--rose-dark);
}

.contact-card dd {
    margin-bottom: 0;
    font-weight: 700;
    text-align: right;
}

.contact-card__actions {
    display: flex;
    margin-bottom: 2rem;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.map-placeholder {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 22rem;
    padding: 0;
    overflow: hidden;
    place-content: stretch;
    background: #e7ebe4;
    border: 1px solid rgba(77, 93, 74, 0.2);
    border-radius: var(--radius-md);
    text-align: center;
}

.map-preview {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: 22rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    place-content: center;
    overflow: hidden;
}

.map-preview::before,
.map-preview::after {
    position: absolute;
    z-index: -1;
    width: 160%;
    height: 4.5rem;
    background: transparent;
    border-block: 1.15rem solid rgba(255, 255, 255, 0.65);
    content: "";
}

.map-preview::before {
    top: 17%;
    left: -28%;
    transform: rotate(-19deg);
}

.map-preview::after {
    right: -28%;
    bottom: 18%;
    transform: rotate(28deg);
}

.map-preview__pin {
    display: grid;
    width: 3.75rem;
    height: 3.75rem;
    margin: 0 auto 0.8rem;
    place-items: center;
    color: #fff;
    background: var(--rose-dark);
    border-radius: 50% 50% 50% 18%;
    box-shadow: 0 14px 28px rgba(77, 68, 64, 0.18);
    transform: rotate(-45deg);
}

.map-preview__pin .icon {
    width: 1.55rem;
    height: 1.55rem;
    transform: rotate(45deg);
}

.map-preview p {
    display: flex;
    margin: 0 auto 1.25rem;
    flex-direction: column;
}

.map-preview p strong {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 500;
}

.map-preview p span {
    color: var(--ink-soft);
}

.map-preview__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem 1.25rem;
}

.map-preview small {
    display: block;
    margin-top: 1rem;
    color: var(--ink-soft);
    font-size: 0.72rem;
}

.map-placeholder iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: 0;
}

.subpage-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    min-height: min(48rem, 78vh);
    align-items: end;
    overflow: hidden;
    color: #fff;
}

.subpage-hero > img {
    position: absolute;
    z-index: -2;
    top: -6%;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 112%;
    object-fit: cover;
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.015);
    will-change: transform;
}

.js .subpage-hero > img {
    opacity: 0;
    filter: saturate(0.82);
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.075);
    transition: opacity 1100ms ease, filter 1400ms ease, transform 1550ms var(--ease);
}

.js .subpage-hero.is-entered > img {
    opacity: 1;
    filter: saturate(1);
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.015);
}

.js .subpage-hero.is-preparing > img,
.js .subpage-hero.is-preparing [data-reveal-item] {
    transition: none !important;
}

.subpage-hero::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 15, 14, 0.08) 18%, rgba(20, 15, 14, 0.78) 100%);
    content: "";
}

.subpage-hero__content {
    display: grid;
    padding-block: clamp(5rem, 10vw, 8rem);
    align-items: end;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.5fr) minmax(16rem, 0.5fr);
}

.subpage-hero .eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 0.5rem 0.75rem;
    color: #fff;
    background: rgba(32, 24, 23, 0.7);
    border-left: 0.22rem solid var(--rose);
    border-radius: 0.25rem 999px 999px 0.25rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.subpage-hero h1 {
    max-width: 11ch;
    margin-bottom: 0;
}

.subpage-hero__aside p {
    font-size: 1.08rem;
}

.subpage-hero__aside .button {
    margin-top: 1rem;
}

.location-intro {
    display: grid;
    gap: clamp(2.5rem, 7vw, 7rem);
    grid-template-columns: minmax(0, 0.8fr) minmax(20rem, 1.2fr);
}

.location-intro h2 {
    max-width: 11ch;
}

.location-intro__copy {
    padding-top: 0.5rem;
}

.location-intro__copy p {
    max-width: 44rem;
    color: var(--ink-soft);
    font-size: 1.08rem;
}

.service-list {
    display: flex;
    padding: 0;
    margin: 2rem 0 0;
    flex-wrap: wrap;
    gap: 0.65rem;
    list-style: none;
}

.service-list li {
    padding: 0.55rem 0.9rem;
    background: var(--ivory);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.location-intro__actions {
    margin-top: 1.75rem;
}

.featured-treatments {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.featured-treatments::after {
    position: absolute;
    z-index: -1;
    right: -7rem;
    bottom: -9rem;
    width: clamp(20rem, 34vw, 32rem);
    aspect-ratio: 1;
    background: url("../img/decor-botanical.svg") center / contain no-repeat;
    content: "";
    opacity: 0.08;
    transform: rotate(-12deg);
}

.featured-treatments__grid {
    display: grid;
    margin-top: clamp(2rem, 5vw, 4rem);
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-treatments__grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.treatment-card {
    min-height: 17rem;
    padding: clamp(1.4rem, 3vw, 2.25rem);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: 0 1.1rem 3rem rgba(33, 28, 27, 0.055);
    transition: border-color 300ms ease, box-shadow 300ms ease, transform 420ms var(--ease);
}

.treatment-card:hover {
    border-color: rgba(154, 81, 75, 0.36);
    box-shadow: 0 1.5rem 3.5rem rgba(33, 28, 27, 0.1);
    transform: translateY(-0.35rem);
}

.treatment-card > span {
    display: inline-flex;
    min-height: 2rem;
    padding-inline: 0.75rem;
    align-items: center;
    color: var(--sage-dark);
    background: var(--sage-soft);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.treatment-card h3 {
    margin: 1.4rem 0 0.85rem;
    font-size: clamp(1.65rem, 2.8vw, 2.35rem);
}

.treatment-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.96rem;
}

.treatment-card--accent {
    background: linear-gradient(145deg, var(--rose-soft), var(--paper));
    border-color: rgba(154, 81, 75, 0.24);
}

.treatment-card--accent > span {
    color: var(--rose-dark);
    background: rgba(255, 255, 255, 0.72);
}

.location-panel {
    display: grid;
    padding: clamp(1.5rem, 4vw, 3.5rem);
    gap: clamp(2rem, 5vw, 4rem);
    background: var(--ivory);
    border-radius: var(--radius-lg);
    grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 1.15fr);
}

.location-panel__details h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.location-panel__details dl {
    margin-block: 2rem;
}

.location-panel__details dl div {
    display: flex;
    padding-block: 0.7rem;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
}

.location-panel__details dt {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink-soft);
}

.location-panel__details dt .icon {
    color: var(--rose-dark);
}

.location-panel__details dd {
    margin-bottom: 0;
    font-weight: 700;
    text-align: right;
}

.location-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.4rem;
}

.location-panel .map-placeholder {
    min-height: 30rem;
}

.closing-cta {
    text-align: center;
}

.closing-cta h2 {
    max-width: 14ch;
    margin-inline: auto;
    margin-bottom: 1.4rem;
}

.closing-cta p {
    max-width: 38rem;
    margin-inline: auto;
    color: var(--ink-soft);
}

.closing-cta .button {
    margin-top: 1rem;
}

.page-intro {
    padding-block: clamp(5rem, 10vw, 9rem);
    background: var(--ivory);
}

.page-intro__inner {
    display: grid;
    align-items: end;
    gap: 2rem;
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
}

.page-intro h1 {
    max-width: 12ch;
    margin-bottom: 0;
}

.page-intro__inner > p:last-child {
    max-width: 34rem;
    margin-bottom: 0.8rem;
    color: var(--ink-soft);
    font-size: 1.12rem;
}

.blog-toolbar {
    display: grid;
    padding: 1rem;
    margin-bottom: 2rem;
    gap: 0.75rem;
    background: var(--ivory);
    border-radius: var(--radius-md);
    grid-template-columns: minmax(14rem, 1fr) minmax(11rem, 0.35fr) minmax(11rem, 0.35fr);
}

.blog-toolbar > * {
    min-width: 0;
}

.blog-toolbar label {
    display: grid;
    gap: 0.3rem;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-toolbar input,
.blog-toolbar select {
    width: 100%;
    min-height: 3.1rem;
    padding: 0.7rem 0.85rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 0.6rem;
}

.blog-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-grid:has(> .blog-card:only-child) {
    grid-template-columns: minmax(0, 58rem);
}

.blog-card {
    display: flex;
    min-width: 0;
    min-height: 25rem;
    overflow: hidden;
    flex-direction: column;
    color: inherit;
    background: var(--ivory);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: transform 280ms var(--ease), box-shadow 280ms ease;
}

.blog-card:only-child {
    display: grid;
    min-height: 23rem;
    grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1.1fr);
}

.blog-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 14rem;
    object-fit: cover;
}

.blog-card:only-child img {
    height: 100%;
}

.blog-card__body {
    display: flex;
    padding: 1.5rem;
    flex: 1;
    flex-direction: column;
}

.blog-card__meta {
    color: var(--rose-dark);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-card h2,
.blog-card h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.65rem, 2.7vw, 2.25rem);
    overflow-wrap: anywhere;
}

.blog-card__body > p:last-of-type {
    color: var(--ink-soft);
}

.blog-empty {
    padding: clamp(2rem, 6vw, 5rem);
    background: var(--rose-soft);
    border-radius: var(--radius-lg);
    text-align: center;
}

.blog-empty h2 {
    max-width: 15ch;
    margin-inline: auto;
    font-size: clamp(2rem, 5vw, 4rem);
}

.blog-empty p {
    max-width: 37rem;
    margin-inline: auto;
}

.blog-empty .eyebrow {
    color: var(--ink-soft);
}

.blog-results-status {
    min-height: 1.5rem;
    margin-bottom: 1rem;
    color: var(--ink-soft);
    font-weight: 700;
}

.article-hero {
    position: relative;
    padding-block: clamp(3.5rem, 7vw, 6.5rem);
    overflow: hidden;
    background: var(--ivory);
}

.article-hero__grid {
    display: grid;
    align-items: center;
    gap: clamp(3rem, 7vw, 6.5rem);
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
}

.article-hero__copy {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.article-breadcrumb {
    max-width: 100%;
    margin-bottom: 1.2rem;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.article-breadcrumb ol {
    display: flex;
    min-width: 0;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 0.55rem;
    list-style: none;
}

.article-breadcrumb li {
    min-width: 0;
}

.article-breadcrumb li + li::before {
    margin-right: 0.55rem;
    color: var(--rose-dark);
    content: "/";
}

.article-breadcrumb li[aria-current="page"] {
    overflow: hidden;
    flex: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.article-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.article-breadcrumb a:hover {
    color: var(--rose-dark);
}

.article-hero__meta {
    color: var(--rose-dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.article-hero h1 {
    max-width: 11.5ch;
    margin-bottom: 1.5rem;
    font-size: clamp(3.8rem, 6.4vw, 6.85rem);
    line-height: 0.93;
}

.article-hero__intro {
    max-width: 38rem;
    color: var(--ink-soft);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.article-hero__scroll {
    display: inline-flex;
    margin-top: 1.5rem;
    align-items: center;
    gap: 0.8rem;
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.article-hero__scroll > span:last-child {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.article-hero__scroll:hover > span:last-child {
    color: #fff;
    background: var(--sage);
    transform: translateY(0.2rem);
}

.article-hero__media {
    position: relative;
    z-index: 1;
    width: min(100%, 31rem);
    margin: 0;
    justify-self: end;
    min-width: 0;
}

.article-hero__comparison {
    position: relative;
    overflow: hidden;
    background: #ddd3cd;
    border: 0.45rem solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-lg) var(--radius-sm) var(--radius-lg) var(--radius-sm);
    box-shadow: 0 18px 45px rgba(48, 33, 30, 0.13);
    transform: rotate(0.7deg);
}

.article-hero__comparison img {
    display: block;
    width: 100%;
    height: auto;
}

.article-hero__image--single {
    overflow: hidden;
    border: 0.45rem solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 45px rgba(48, 33, 30, 0.13);
}

.article-hero__image--single img {
    display: block;
    width: 100%;
    height: auto;
}

.article-hero__tag {
    position: absolute;
    left: 0.85rem;
    padding: 0.45rem 0.8rem;
    color: var(--ink);
    background: rgba(248, 217, 210, 0.94);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.article-hero__tag--before {
    top: 0.85rem;
}

.article-hero__tag--after {
    top: calc(50% + 0.85rem);
    color: #fff;
    background: rgba(81, 105, 78, 0.94);
}

.article-hero__media-note {
    display: flex;
    margin: 1rem 0.7rem 0;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.article-hero__media-note span {
    color: var(--rose-dark);
}

.article-content-section {
    padding-top: clamp(2.5rem, 4vw, 4rem);
}

.article-layout {
    display: grid;
    align-items: start;
    justify-content: space-between;
    gap: clamp(3rem, 7vw, 6.5rem);
    grid-template-columns: minmax(0, 47rem) minmax(18rem, 22rem);
}

.article-layout > * {
    min-width: 0;
}

.article-body {
    max-width: 47rem;
    font-size: clamp(1.04rem, 1.5vw, 1.12rem);
    overflow-wrap: break-word;
}

.article-body h2 {
    margin-top: 4rem;
    margin-bottom: 1.25rem;
    font-size: clamp(2.25rem, 4vw, 3.65rem);
    line-height: 1;
}

.article-body > h2:first-of-type {
    margin-top: 3.5rem;
}

.article-body h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-body p,
.article-body li {
    color: var(--ink-soft);
    line-height: 1.82;
}

.article-body a {
    color: var(--rose-dark);
    font-weight: 700;
}

.article-body blockquote {
    position: relative;
    padding: 1.35rem 1.5rem 1.35rem 3.25rem;
    margin: 2.25rem 0;
    color: var(--ink-soft);
    background: var(--sage-pale);
    border: 1px solid rgba(102, 121, 96, 0.2);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.65;
}

.article-body blockquote::before {
    position: absolute;
    top: 1.3rem;
    left: 1.25rem;
    color: var(--sage);
    content: "i";
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 700;
}

.article-sidebar {
    position: sticky;
    top: 7rem;
    display: grid;
    align-self: start;
    gap: 1rem;
}

.article-sidebar__cta {
    padding: clamp(1.5rem, 3vw, 2.25rem);
    color: #fff;
    background: var(--sage);
    border-radius: var(--radius-md);
    box-shadow: 0 20px 45px rgba(58, 79, 57, 0.18);
}

.article-sidebar__cta .eyebrow {
    color: var(--rose-soft);
}

.article-sidebar__cta h2 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: clamp(2.1rem, 3.5vw, 3rem);
    line-height: 0.98;
}

.article-sidebar__cta > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.article-sidebar__cta .button {
    width: 100%;
    margin-top: 0.5rem;
    color: var(--ink);
    background: var(--rose);
}

.article-sidebar__cta .button:hover {
    background: var(--rose-soft);
}

.article-sidebar__nav {
    padding: 1.35rem 1.5rem;
    background: var(--ivory);
    border: 1px solid rgba(33, 28, 27, 0.08);
    border-radius: var(--radius-md);
}

.article-sidebar__label {
    margin-bottom: 0.75rem;
    color: var(--rose-dark);
    font-size: 0.7rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.article-sidebar__nav ol,
.article-sidebar__nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.article-sidebar__nav li + li {
    border-top: 1px solid var(--line);
}

.article-sidebar__nav a {
    display: flex;
    padding-block: 0.65rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--ink-soft);
    font-size: 0.82rem;
    font-weight: 650;
    line-height: 1.4;
    text-decoration: none;
}

.article-sidebar__nav a::after {
    color: var(--sage);
    content: "→";
    flex: 0 0 auto;
}

.article-sidebar__nav a:hover {
    color: var(--rose-dark);
}

.legal-layout {
    display: grid;
    gap: clamp(2.5rem, 7vw, 7rem);
    grid-template-columns: minmax(0, 1fr) minmax(13rem, 0.28fr);
}

.legal-content {
    max-width: 52rem;
}

.legal-content section {
    padding-top: 1rem;
    margin-bottom: 3.5rem;
}

.legal-content h2 {
    margin-bottom: 1.2rem;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.legal-content h3 {
    margin-top: 2rem;
    font-size: 1.5rem;
}

.legal-content p,
.legal-content li {
    color: var(--ink-soft);
}

.legal-content a {
    color: var(--rose-dark);
    font-weight: 700;
}

.legal-content table {
    width: 100%;
    margin-block: 1.5rem;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.legal-content th,
.legal-content td {
    padding: 0.9rem;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.legal-content th {
    background: var(--ivory);
}

.legal-sidebar {
    position: sticky;
    top: 7rem;
    align-self: start;
    padding: 1.4rem;
    background: var(--ivory);
    border-radius: var(--radius-md);
}

.legal-sidebar h2 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.legal-sidebar ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.legal-sidebar li {
    margin-bottom: 0.65rem;
}

.legal-sidebar a {
    font-size: 0.9rem;
}

.cart-layout {
    display: grid;
    align-items: start;
    gap: clamp(2rem, 5vw, 5rem);
    grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
}

.cart-layout:has(.checkout-card[hidden]) {
    grid-template-columns: minmax(0, 52rem);
    justify-content: center;
}

.cart-list {
    display: grid;
    gap: 1rem;
}

.cart-item {
    display: grid;
    padding: 1.25rem;
    align-items: center;
    gap: 1.25rem;
    background: var(--ivory);
    border-radius: var(--radius-md);
    grid-template-columns: 6rem 1fr auto;
}

.cart-item__gift-visual {
    display: flex;
    width: 6rem;
    min-height: 7.5rem;
    padding: 0.75rem 0.5rem;
    justify-content: space-between;
    flex-direction: column;
    color: #50302c;
    background: #efb4a6;
    border-radius: 0.15rem 1.1rem 0.15rem 1.1rem;
    box-shadow: 0 10px 24px rgba(92, 53, 48, 0.14);
    text-align: center;
}

.cart-item__gift-visual span {
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.cart-item__gift-visual strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
}

.cart-item h2 {
    margin-bottom: 0.35rem;
    font-size: 1.65rem;
}

.cart-item p {
    margin-bottom: 0.25rem;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.cart-item .cart-item__warning {
    color: var(--rose-dark);
    font-weight: 700;
}

.cart-item__price {
    font-family: var(--font-display);
    font-size: 1.6rem;
}

.cart-remove {
    min-height: 2.75rem;
    padding: 0.4rem 0.7rem;
    color: #7b211a;
    background: transparent;
    border: 1px solid rgba(123, 33, 26, 0.35);
    border-radius: 999px;
    cursor: pointer;
}

.cart-empty {
    padding: clamp(2rem, 6vw, 5rem);
    background: var(--rose-soft);
    border-radius: var(--radius-lg);
    text-align: center;
}

.cart-empty h2 {
    font-size: clamp(2rem, 5vw, 4rem);
}

.checkout-card {
    position: sticky;
    top: 7rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
}

.checkout-card h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.checkout-total {
    display: flex;
    padding-block: 1rem;
    margin-bottom: 1.5rem;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    border-block: 1px solid var(--line);
}

.checkout-total strong {
    font-family: var(--font-display);
    font-size: 2rem;
}

.checkout-note {
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.paypal-container {
    min-height: 0;
    margin-top: 1rem;
}

.checkout-status {
    min-height: 1.5rem;
    color: #7b211a;
    font-weight: 700;
}

.payment-processing {
    position: fixed;
    z-index: 250;
    inset: 0;
    display: grid;
    padding: 1rem;
    place-items: center;
    background: rgba(22, 17, 16, 0.72);
}

.payment-processing__card {
    max-width: 28rem;
    padding: 2rem;
    background: var(--paper);
    border-radius: var(--radius-md);
    text-align: center;
}

.payment-processing__dot {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 auto 1rem;
    border: 3px solid var(--rose-soft);
    border-top-color: var(--rose-dark);
    border-radius: 50%;
    animation: spin 800ms linear infinite;
}

.status-page {
    display: grid;
    min-height: calc(100vh - 5.5rem);
    padding-block: 5rem;
    place-items: center;
    background: var(--ivory);
}

.status-card {
    width: min(100%, 48rem);
    padding: clamp(2rem, 7vw, 5rem);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.status-card__mark {
    display: grid;
    width: 5rem;
    height: 5rem;
    margin: 0 auto 2rem;
    place-items: center;
    color: var(--ink);
    background: var(--rose-soft);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 2rem;
}

.status-card h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(2.7rem, 7vw, 5.8rem);
}

.status-card p {
    max-width: 36rem;
    margin-inline: auto;
    color: var(--ink-soft);
}

.status-card .button {
    margin-top: 1rem;
}

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

.site-footer {
    color: rgba(255, 255, 255, 0.83);
    background: var(--ink);
}

.site-footer a,
.site-footer button {
    color: inherit;
}

.site-footer__top {
    display: grid;
    padding-block: clamp(4rem, 8vw, 7rem);
    gap: 2rem;
    grid-template-columns: 1.4fr 0.7fr 1fr 1fr;
}

.site-footer__brand img {
    width: 8rem;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.site-footer__brand p {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.35;
}

.site-footer h2 {
    margin-bottom: 1.25rem;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 0.65rem;
}

.site-footer address {
    margin-bottom: 1.4rem;
    font-style: normal;
}

.footer-button {
    padding: 0;
    background: transparent;
    border: 0;
    text-decoration: underline;
    text-underline-offset: 0.22em;
    cursor: pointer;
}

.site-footer__legal {
    padding-block: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.75rem;
}

.site-footer__legal p {
    margin-bottom: 0.4rem;
}

.consent-dialog {
    width: min(calc(100% - 2rem), 48rem);
    max-height: min(90vh, 50rem);
    padding: 0;
    overflow: auto;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: var(--radius-lg);
}

.consent-dialog[data-consent-banner] {
    position: fixed;
    z-index: 900;
    top: auto;
    right: auto;
    bottom: 1rem;
    left: 50%;
    width: min(calc(100% - 2rem), 56rem);
    max-height: calc(100dvh - 2rem);
    margin: 0;
    transform: translateX(-50%);
}

.consent-dialog[data-consent-banner] .consent-panel {
    padding: clamp(1.25rem, 3vw, 2rem);
    box-shadow: 0 24px 70px rgba(33, 28, 27, 0.2);
}

.consent-dialog[data-consent-banner] .consent-panel h2 {
    max-width: none;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.consent-dialog::backdrop {
    background: rgba(22, 17, 16, 0.58);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.consent-panel {
    position: relative;
    padding: clamp(1.5rem, 5vw, 3.25rem);
    margin: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.consent-panel h2 {
    max-width: 12ch;
    margin-bottom: 1.25rem;
    font-size: clamp(2.1rem, 5vw, 3.8rem);
}

.consent-panel > p:not(.eyebrow) {
    max-width: 42rem;
    color: var(--ink-soft);
}

.consent-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-items: center;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.consent-actions {
    display: flex;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.consent-actions .button {
    flex: 1 1 11rem;
}

.consent-option {
    display: grid;
    padding-block: 1.25rem;
    align-items: start;
    gap: 1rem;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 1fr auto;
}

.consent-option p {
    margin: 0.35rem 0 0;
    color: var(--ink-soft);
    font-size: 0.88rem;
}

.consent-option input {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.2rem;
    accent-color: var(--rose-dark);
}

.consent-note {
    padding: 0.85rem 1rem;
    margin-top: 1.25rem;
    background: var(--ivory);
    border-radius: 0.6rem;
    font-size: 0.82rem;
}

/* Lightweight botanical details: decorative only, never part of the content flow. */
.team::before,
.specialists::after,
.reviews::after,
.closing-cta::before,
.subpage-hero + .section::before,
.page-intro::after {
    position: absolute;
    z-index: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    pointer-events: none;
}

.team::before {
    top: 4%;
    right: -5rem;
    width: clamp(15rem, 28vw, 26rem);
    aspect-ratio: 1;
    background-image: url("../img/decor-flower.svg");
    opacity: 0.13;
}

.specialists::after {
    bottom: 3%;
    left: -6rem;
    width: clamp(18rem, 34vw, 32rem);
    aspect-ratio: 1;
    background-image: url("../img/decor-arches.svg");
    opacity: 0.11;
}

.specialists::before {
    position: absolute;
    z-index: 0;
    top: -3rem;
    right: -5rem;
    width: clamp(17rem, 30vw, 29rem);
    aspect-ratio: 0.72;
    background: url("../img/decor-botanical.svg") center / contain no-repeat;
    content: "";
    opacity: 0.12;
    pointer-events: none;
    transform: rotate(9deg);
}

.reviews::after {
    right: 2%;
    bottom: 3%;
    width: clamp(9rem, 16vw, 15rem);
    aspect-ratio: 1;
    background-image: url("../img/decor-sparkles.svg");
    opacity: 0.16;
}

.closing-cta::before {
    bottom: -6rem;
    left: 2%;
    width: clamp(16rem, 27vw, 25rem);
    aspect-ratio: 1;
    background-image: url("../img/decor-flower.svg");
    opacity: 0.11;
    transform: rotate(-18deg);
}

.subpage-hero + .section::before {
    top: 8%;
    right: -7rem;
    width: clamp(20rem, 36vw, 34rem);
    aspect-ratio: 1;
    background-image: url("../img/decor-arches.svg");
    opacity: 0.1;
}

.page-intro {
    position: relative;
    isolation: isolate;
    overflow: clip;
}

.page-intro::after {
    z-index: -1;
    top: -5rem;
    right: -5rem;
    width: clamp(18rem, 34vw, 32rem);
    aspect-ratio: 0.72;
    background-image: url("../img/decor-botanical.svg");
    opacity: 0.08;
}

.site-footer__credit {
    color: rgba(255, 255, 255, 0.76);
}

.site-footer em {
    color: var(--rose);
}

.site-footer__credit strong {
    color: var(--rose);
    letter-spacing: 0.04em;
}

.js [data-reveal],
.js [data-reveal-item] {
    opacity: 0;
    transform: translate3d(0, 0.75rem, 0);
    transition: opacity 760ms var(--ease), transform 860ms var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.js [data-reveal-item="label"] {
    transform: translate3d(-0.65rem, 0, 0);
}

.js [data-reveal-item="title"] {
    transform: translate3d(0, 0.55rem, 0) scale(0.985);
}

.js [data-reveal-item="media"],
.js [data-reveal-item="card"] {
    transform: translate3d(0, 0.9rem, 0) scale(0.975);
}

.js [data-reveal-item="row"] {
    transform: translate3d(0.65rem, 0, 0);
}

.js [data-reveal].is-visible,
.js [data-reveal-item].is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    will-change: auto;
}

@media (hover: hover) and (pointer: fine) {
    .profile-card {
        cursor: pointer;
    }

    .profile-card.is-tilting .profile-card__inner {
        transition-duration: 110ms;
        transition-timing-function: ease-out;
    }

    .profile-card:not(.is-flipped):hover .text-button {
        color: var(--rose);
    }

    .profile-card.is-flipped:hover .text-button {
        color: var(--rose-dark);
    }
}

@media (max-width: 64rem) {
    body {
        padding-top: 5.5rem;
    }

    .site-header {
        position: fixed;
        right: 0;
        left: 0;
        background: rgba(255, 253, 251, 0.98);
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    body.menu-open::before {
        position: fixed;
        z-index: 99;
        inset: 0;
        background: rgba(26, 20, 19, 0.46);
        content: "";
    }

    .menu-toggle {
        position: relative;
        z-index: 102;
        display: inline-flex;
        min-height: 2.75rem;
        align-items: center;
        gap: 0.7rem;
        padding: 0.5rem 0.75rem;
        background: transparent;
        border: 1px solid var(--line);
        border-radius: 999px;
        cursor: pointer;
    }

    .menu-toggle__label {
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .menu-toggle__lines,
    .menu-toggle__lines::before,
    .menu-toggle__lines::after {
        display: block;
        width: 1.15rem;
        height: 1px;
        background: currentColor;
        content: "";
        transition: transform 220ms ease, opacity 220ms ease;
    }

    .menu-toggle__lines::before {
        transform: translateY(-0.32rem);
    }

    .menu-toggle__lines::after {
        transform: translateY(0.27rem);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines {
        background: transparent;
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
        transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
        transform: rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        z-index: 101;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(28rem, 92vw);
        height: 100dvh;
        padding: 7rem 2rem 2rem;
        overflow-y: auto;
        align-items: stretch;
        flex-direction: column;
        background: var(--paper);
        box-shadow: -20px 0 60px rgba(33, 28, 27, 0.18);
        font-family: var(--font-display);
        font-size: 1.65rem;
        visibility: hidden;
        clip-path: inset(0 0 0 100%);
        pointer-events: none;
        transform: none;
        transition: clip-path 360ms var(--ease), visibility 0s linear 360ms;
    }

    .main-nav.is-open {
        visibility: visible;
        clip-path: inset(0);
        pointer-events: auto;
        transition-delay: 0s;
    }

    .nav-cta {
        margin-top: 0;
        justify-content: center;
        font-family: var(--font-body);
        font-size: 0.82rem;
    }

    .nav-cart {
        margin-top: auto;
        justify-content: center;
        font-family: var(--font-body);
        font-size: 0.82rem;
    }

    .hero__intro {
        grid-template-columns: 1fr;
    }

    .hero__intro > p:last-child {
        margin-top: 1.5rem;
    }

    .about__grid,
    .team__grid,
    .gift-card__grid {
        gap: 3rem;
        grid-template-columns: 1fr 1fr;
    }

    .specialists__grid {
        overflow-x: auto;
        grid-auto-columns: min(78vw, 25rem);
        grid-auto-flow: column;
        grid-template-columns: none;
        scroll-snap-type: x mandatory;
    }

    .profile-card {
        height: 35rem;
        scroll-snap-align: start;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .reviews__grid figure {
        min-height: 0;
        grid-column: auto;
    }

    .featured-treatments__grid,
    .featured-treatments__grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .article-grid:has(> .article-card:only-child),
    .blog-grid:has(> .blog-card:only-child) {
        grid-template-columns: minmax(0, 58rem);
    }

    .site-footer__top {
        grid-template-columns: 1.25fr repeat(3, 1fr);
    }
}

@media (max-width: 56rem) {
    .page-intro__inner {
        grid-template-columns: 1fr;
    }

    .page-intro__inner > p:last-child {
        max-width: 44rem;
    }

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

    .blog-toolbar > label:first-child {
        grid-column: 1 / -1;
    }

    .article-hero__grid,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-hero__grid {
        gap: 2.75rem;
    }

    .article-hero h1 {
        max-width: 17ch;
        font-size: clamp(3.15rem, 7vw, 4.35rem);
    }

    .article-hero__media {
        width: min(100%, 38rem);
        justify-self: center;
    }

    .article-sidebar {
        position: static;
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    }

    .article-sidebar__cta {
        grid-row: 1 / span 2;
    }
}

@media (max-width: 46rem) {
    .container {
        width: min(calc(100% - 1.25rem), var(--container));
    }

    .section {
        padding-block: 4.5rem;
    }

    h1 {
        font-size: clamp(2.65rem, 11.5vw, 3.65rem);
    }

    h2 {
        font-size: clamp(2rem, 8.7vw, 2.85rem);
    }

    h3 {
        font-size: clamp(1.4rem, 6.8vw, 1.85rem);
    }

    .eyebrow {
        margin-bottom: 0.7rem;
        font-size: 0.7rem;
        letter-spacing: 0.13em;
    }

    .hero {
        padding-top: 3.25rem;
    }

    .hero__intro {
        padding-bottom: 3.25rem;
    }

    .hero__intro h1 {
        font-size: clamp(2.95rem, 14vw, 4.2rem);
    }

    .hero__locations {
        grid-template-columns: 1fr;
    }

    .location-hero {
        min-height: 31rem;
    }

    .about__grid,
    .team__grid,
    .gift-card__grid,
    .contacts__grid,
    .subpage-hero__content,
    .location-intro,
    .location-panel {
        grid-template-columns: 1fr;
    }

    .featured-treatments__grid,
    .featured-treatments__grid--compact,
    .gift-form__row {
        grid-template-columns: 1fr;
    }

    .treatment-card {
        min-height: 0;
    }

    .article-hero {
        padding-block: 2.75rem 3.5rem;
    }

    .article-hero__grid {
        gap: 2.75rem;
        grid-template-columns: 1fr;
    }

    .article-hero h1 {
        max-width: 13.5ch;
        margin-bottom: 1.1rem;
        font-size: clamp(2.7rem, 11.5vw, 3.55rem);
        line-height: 0.98;
    }

    .article-hero__intro {
        font-size: 1rem;
        line-height: 1.58;
    }

    .article-breadcrumb li[aria-current="page"] {
        display: none;
    }

    .article-breadcrumb li:nth-last-child(2)::after {
        margin-left: 0.55rem;
        color: var(--rose-dark);
        content: "/";
    }

    .article-hero__media {
        width: calc(100% - 0.5rem);
        margin-inline: auto;
    }

    .article-hero__comparison {
        transform: none;
    }

    .article-hero__media-note {
        margin-inline: 0.35rem;
        font-size: 0.65rem;
    }

    .article-content-section {
        padding-top: 3.25rem;
    }

    .article-layout {
        gap: 3.25rem;
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        grid-template-columns: 1fr;
    }

    .article-sidebar__cta {
        grid-row: auto;
    }

    .article-body h2 {
        margin-top: 3.15rem;
        font-size: clamp(2rem, 9vw, 2.75rem);
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .checkout-card {
        position: static;
    }

    .cart-item {
        grid-template-columns: 4.5rem 1fr;
    }

    .cart-item__gift-visual {
        width: 4.5rem;
        min-height: 5.75rem;
    }

    .cart-item__actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        grid-column: 1 / -1;
    }

    .legal-sidebar {
        position: static;
        order: -1;
    }

    .legal-content table,
    .legal-content tbody,
    .legal-content tr,
    .legal-content th,
    .legal-content td {
        display: block;
    }

    .legal-content th {
        border-bottom: 0;
    }

    .page-intro__inner,
    .blog-toolbar {
        grid-template-columns: 1fr;
    }

    .page-intro {
        padding-block: 4.25rem;
    }

    .page-intro__inner {
        justify-items: center;
        text-align: center;
    }

    .page-intro h1,
    .page-intro__inner > p:last-child {
        margin-inline: auto;
    }

    .page-intro__inner > p:last-child {
        font-size: 1rem;
        line-height: 1.6;
    }

    .subpage-hero {
        min-height: 42rem;
    }

    .location-panel__details dl div {
        align-items: start;
        flex-direction: column;
        gap: 0.1rem;
    }

    .location-panel__details dd {
        text-align: left;
    }

    .location-panel .map-placeholder {
        min-height: 20rem;
    }

    .about__media {
        width: calc(100% - 0.8rem);
        margin-inline: auto;
    }

    .about__media figcaption {
        right: -0.25rem;
    }

    .team__photo {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .team__values article {
        grid-template-columns: 2rem 1fr;
    }

    .profile-card {
        height: 33rem;
    }

    .gift-preview {
        width: min(100%, 23rem);
        min-height: 18rem;
        padding: 1.1rem;
        margin-inline: auto;
        border-radius: 0.35rem 1.75rem 0.35rem 1.75rem;
    }

    .gift-preview__brand img {
        width: 5.5rem;
    }

    .gift-preview__brand > span,
    .gift-preview__recipient,
    .gift-preview__footer {
        font-size: 0.58rem;
    }

    .gift-preview__recipient {
        margin-top: 0.85rem;
    }

    .gift-preview__date,
    .gift-preview__message {
        display: none;
    }

    .gift-preview__center {
        margin-block: auto;
    }

    .gift-preview__center p,
    .gift-preview__center span {
        font-size: clamp(1.85rem, 10vw, 2.45rem);
    }

    .gift-preview__center > strong {
        margin-top: 0.8rem;
        font-size: 0.62rem;
    }

    .gift-preview__center b {
        font-size: 1.8rem;
    }

    .form-heading {
        align-items: start;
        flex-direction: column;
    }

    .form-heading strong {
        text-align: left;
    }

    .gallery__heading,
    .section-heading--split {
        align-items: start;
        flex-direction: column;
    }

    .section-heading,
    .gallery__heading > div:first-child,
    .location-intro > div:first-child {
        margin-inline: auto;
        text-align: center;
    }

    .section-heading {
        margin-bottom: 2.6rem;
    }

    .section-heading h2,
    .gallery__heading h2,
    .about__copy h2,
    .gift-card__copy h2,
    .location-intro h2,
    .closing-cta h2 {
        font-size: clamp(2.1rem, 9.4vw, 3rem);
        line-height: 1.02;
    }

    .section-heading > p:last-child,
    .gallery__heading > div:first-child > p:last-child {
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .section-heading h2,
    .section-heading > p:last-child,
    .gallery__heading h2,
    .gallery__heading > div:first-child > p:last-child,
    .location-intro h2 {
        margin-inline: auto;
    }

    .about__copy > .eyebrow,
    .about__copy > h2,
    .gift-card__copy > .eyebrow,
    .gift-card__copy > h2,
    .gift-card__copy > p:not(.eyebrow) {
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .gift-card__links {
        justify-content: center;
    }

    .reviews__controls {
        display: flex;
        margin: -1.5rem 0 1rem;
        justify-content: flex-end;
        gap: 0.55rem;
    }

    .reviews__controls button {
        display: grid;
        width: 3rem;
        height: 3rem;
        place-items: center;
        background: var(--paper);
        border: 1px solid var(--line);
        border-radius: 50%;
    }

    .reviews__grid {
        display: grid;
        overflow-x: auto;
        grid-auto-columns: min(84vw, 22rem);
        grid-auto-flow: column;
        grid-template-columns: none;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
        scroll-snap-type: inline mandatory;
    }

    .reviews__grid::-webkit-scrollbar {
        display: none;
    }

    .reviews__grid figure,
    .reviews__grid figure:nth-child(n) {
        min-height: 22rem;
        grid-column: auto;
        scroll-snap-align: center;
    }

    .gallery__track {
        grid-auto-columns: 88vw;
    }

    .gallery__track figure {
        aspect-ratio: auto;
        height: 70vh;
        max-height: 36rem;
    }

    .gallery__track img {
        object-fit: cover;
    }

    .gallery-lightbox {
        padding: 0.5rem;
    }

    .gallery-lightbox__stage {
        border-radius: 1rem;
    }

    .gallery-lightbox__nav {
        top: auto;
        bottom: 1rem;
        transform: none;
    }

    .contact-card dl div {
        align-items: start;
        flex-direction: column;
        gap: 0.1rem;
    }

    .contact-card dd {
        text-align: left;
    }

    .article-grid,
    .blog-grid,
    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .article-grid:has(> .article-card:only-child),
    .blog-grid:has(> .blog-card:only-child) {
        grid-template-columns: 1fr;
    }

    .article-card:only-child,
    .blog-card:only-child {
        display: flex;
        min-height: 0;
        flex-direction: column;
    }

    .article-card,
    .blog-card {
        min-height: 0;
    }

    .article-card__image,
    .article-card:only-child .article-card__image,
    .blog-card img,
    .blog-card:only-child img {
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }

    .article-card__body,
    .blog-card__body {
        padding: 1.25rem;
    }

    .article-card h3,
    .blog-card h2,
    .blog-card h3 {
        margin-block: 0.85rem;
        font-size: clamp(1.65rem, 8.2vw, 2.05rem);
        line-height: 1.06;
    }

    .article-card__body > p:last-child,
    .blog-card__body > p:last-child {
        margin-bottom: 0;
        font-size: 0.94rem;
        line-height: 1.6;
    }

    .site-footer__top > div {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .consent-dialog {
        width: calc(100% - 1rem);
        max-height: calc(100dvh - 1rem);
    }

    .consent-dialog[data-consent-banner] {
        bottom: 0.5rem;
        width: calc(100% - 1rem);
        max-height: calc(100dvh - 1rem);
    }

    .consent-actions {
        flex-direction: column;
    }

    .consent-actions .button {
        width: 100%;
        flex-basis: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .page-loader {
        display: none;
    }

    .js [data-reveal],
    .js [data-reveal-item] {
        opacity: 1;
        transform: none;
    }

    .subpage-hero > img {
        opacity: 1;
        filter: none;
        transform: scale(1.015);
    }
}
