/* Lia Vitali luxury redesign
   Clean PHP/CSS/JS website, no framework required.
*/

:root {
    --espresso: #231712;
    --espresso-2: #3a241c;
    --coffee: #5c3b30;
    --copper: #c78d7b;
    --copper-2: #e3b4a5;
    --rose: #b87968;
    --sand: #efe3d6;
    --ivory: #fffaf3;
    --cream: #f8efe6;
    --muted: #8a7469;
    --line: rgba(82, 54, 43, .16);
    --line-dark: rgba(255, 255, 255, .18);
    --shadow: 0 30px 90px rgba(41, 24, 18, .18);
    --max: 1180px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--espresso);
    background:
        radial-gradient(circle at 14% 8%, rgba(229, 178, 159, .34), transparent 31%),
        radial-gradient(circle at 92% 18%, rgba(194, 137, 121, .16), transparent 34%),
        linear-gradient(180deg, #fffaf4 0%, #f7eee5 42%, #f0dfd1 100%);
    overflow-x: hidden;
}

body.no-js .reveal {
    opacity: 1;
    transform: none;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

::selection {
    background: rgba(199, 141, 123, .28);
}

.scroll-progress {
    position: fixed;
    z-index: 100;
    inset: 0 auto auto 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--copper), #ead3bd);
    box-shadow: 0 0 24px rgba(199, 141, 123, .65);
}

.container {
    width: min(var(--max), calc(100% - 56px));
    margin-inline: auto;
}

.section {
    padding: 84px 0;
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: var(--rose);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700;
}

.section-kicker::before,
.eyebrow::before {
    content: "";
    display: block;
    width: 34px;
    height: 1px;
    background: currentColor;
    opacity: .65;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: 400;
    letter-spacing: -.025em;
}

h1 {
    color: #fff6ef;
    font-size: clamp(52px, 8vw, 98px);
    line-height: .94;
    text-shadow: 0 20px 60px rgba(0,0,0,.34);
}

h2 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.03;
}

h3 {
    font-size: 26px;
    line-height: 1.08;
}

p {
    color: var(--muted);
    line-height: 1.72;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity .85s var(--ease),
        transform .85s var(--ease);
    transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 90;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 0;
    transition: background .35s var(--ease), padding .35s var(--ease), backdrop-filter .35s var(--ease), box-shadow .35s var(--ease);
}

.site-header.is-scrolled {
    padding: 12px 0;
    background: rgba(35, 23, 18, .82);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(22, 12, 8, .22);
}

.header-inner {
    width: min(1280px, calc(100% - 64px));
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 174px;
    min-width: 174px;
    filter: drop-shadow(0 16px 34px rgba(0,0,0,.35));
}

.brand img {
    width: 100%;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    color: rgba(255, 247, 239, .94);
    font-size: 15px;
    letter-spacing: .02em;
}

.site-nav a {
    position: relative;
    padding: 12px 0;
    transition: color .25s ease;
}

.site-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 1px;
    background: var(--copper-2);
    transition: width .25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: #fff;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    width: 100%;
}

.nav-cta {
    border: 1px solid rgba(255,255,255,.55);
    padding: 14px 30px !important;
    min-width: 132px;
    text-align: center;
    background: rgba(199, 141, 123, .72);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.nav-cta:hover {
    background: rgba(218, 165, 147, .85);
}

.nav-toggle {
    display: none;
    position: relative;
    width: 48px;
    height: 42px;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(255,255,255,.08);
    color: #fff;
    cursor: pointer;
}

.nav-toggle span {
    position: absolute;
    left: 13px;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform .25s ease, top .25s ease;
}

.nav-toggle span:first-child { top: 16px; }
.nav-toggle span:last-child { top: 24px; }

.nav-toggle[aria-expanded="true"] span:first-child {
    top: 20px;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    top: 20px;
    transform: rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    min-height: 760px;
    height: 94vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: var(--espresso);
}

.hero-bg,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background:
        linear-gradient(90deg, rgba(18, 9, 6, .82) 0%, rgba(18, 9, 6, .56) 35%, rgba(18, 9, 6, .18) 68%, rgba(18, 9, 6, .35) 100%),
        url("../img/hero-massage.jpg") center right / cover no-repeat;
    transform: scale(1.02);
    animation: heroFloat 18s ease-in-out infinite alternate;
}

.hero-shade {
    background:
        radial-gradient(circle at 73% 68%, rgba(211, 148, 127, .36), transparent 24%),
        linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,0) 44%, rgba(22,12,8,.56) 100%);
    mix-blend-mode: normal;
}

@keyframes heroFloat {
    from { transform: scale(1.02) translate3d(0,0,0); }
    to { transform: scale(1.07) translate3d(-14px, -8px, 0); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - 64px));
    margin-inline: auto;
    padding-top: 90px;
}

.hero-content .eyebrow {
    color: #ecc4b8;
}

.hero-subtitle {
    max-width: 520px;
    margin: 22px 0 0;
    color: rgba(255, 246, 238, .92);
    font-size: clamp(22px, 2.5vw, 32px);
    line-height: 1.28;
}

.hero-note {
    max-width: 510px;
    margin: 22px 0 0;
    color: rgba(255,255,255,.72);
    font-size: 16px;
}

.hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .02em;
}

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

.btn-primary {
    color: #fffaf4;
    background: linear-gradient(135deg, #b97867, #d59b87);
    border-color: rgba(255,255,255,.22);
    box-shadow: 0 18px 45px rgba(93, 52, 40, .22);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c88775, #e1ad9e);
    box-shadow: 0 22px 55px rgba(93, 52, 40, .28);
}

.btn-outline {
    color: #fffaf4;
    border-color: rgba(255,255,255,.48);
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.72);
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: 28px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.42);
}

.hero-scroll span {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 4px;
    height: 4px;
    margin-left: -2px;
    background: #fff;
    animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

/* Intro */
.intro {
    background: rgba(255, 250, 244, .78);
    position: relative;
}

.intro-grid {
    position: relative;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 54px;
    align-items: center;
}

.intro-image {
    margin: 0;
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 210px;
}

.intro-image img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    transform: scale(1.04);
}

.intro-text {
    max-width: 780px;
}

.intro-text h2 {
    margin-bottom: 24px;
}

.intro-text p {
    margin: 0 0 14px;
    font-size: 16px;
}

.intro-watermark {
    position: absolute;
    right: -12px;
    bottom: -42px;
    width: 210px;
    opacity: .075;
    pointer-events: none;
    filter: saturate(.8);
}

/* Sections */
.section-head {
    max-width: 790px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-head .section-kicker {
    justify-content: center;
}

.section-head .section-kicker::before {
    display: none;
}

.section-head p {
    margin: 18px auto 0;
    max-width: 690px;
}

/* Services */
.services {
    background:
        linear-gradient(180deg, rgba(255,255,255,.66), rgba(250,242,235,.72)),
        url("../img/watermark-lotus.jpg") center top / cover no-repeat fixed;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: rgba(255,255,255,.68);
    border: 1px solid var(--line);
    box-shadow: 0 24px 70px rgba(66, 39, 29, .10);
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(199, 141, 123, .42);
    box-shadow: 0 34px 90px rgba(66, 39, 29, .17);
}

.service-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--sand);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s var(--ease);
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(25, 14, 9, .62));
}

.service-image span {
    position: absolute;
    z-index: 2;
    left: 22px;
    bottom: 18px;
    color: #fffaf4;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 800;
}

.service-body {
    padding: 30px 28px 32px;
}

.service-body h3 {
    margin-bottom: 16px;
}

.service-body p {
    min-height: 180px;
    margin: 0 0 20px;
    font-size: 15px;
}

.price-list {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
    padding: 18px 0;
    border-block: 1px solid var(--line);
}

.price-list div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
}

.price-list span {
    color: var(--espresso);
    font-weight: 700;
}

.price-list strong {
    color: var(--coffee);
    font-size: 18px;
}

.service-body small {
    display: block;
    color: var(--muted);
    line-height: 1.55;
    min-height: 46px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--rose);
    font-weight: 800;
    font-size: 14px;
}

.text-link::after {
    content: "›";
    font-size: 22px;
    line-height: 1;
    transition: transform .2s ease;
}

.text-link:hover::after {
    transform: translateX(4px);
}

/* Gift */
.gift {
    padding-top: 28px;
    background: #fffaf4;
}

.gift-panel {
    position: relative;
    display: grid;
    grid-template-columns: 112px 1fr 340px;
    gap: 36px;
    align-items: center;
    min-height: 270px;
    padding: 48px;
    overflow: hidden;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(16, 72, 75, .92), rgba(113, 64, 109, .78), rgba(70, 35, 28, .82)),
        url("../img/gift-gradient.jpg") center / cover no-repeat;
    box-shadow: var(--shadow);
}

.gift-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 73% 52%, rgba(255,255,255,.16), transparent 22%),
        radial-gradient(circle at 89% 20%, rgba(255, 207, 192, .28), transparent 24%);
    pointer-events: none;
}

.gift-panel > * {
    position: relative;
    z-index: 2;
}

.gift-icon {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.42);
    background: rgba(255,255,255,.08);
}

.gift-icon svg {
    width: 52px;
    fill: none;
    stroke: #f4dac8;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gift-panel .section-kicker {
    color: #f7d1c3;
}

.gift-panel h2 {
    color: #fff7ef;
    margin-bottom: 14px;
}

.gift-panel p {
    max-width: 590px;
    color: rgba(255,255,255,.82);
    margin-bottom: 26px;
}

.gift-card {
    margin: 0;
    align-self: stretch;
    min-height: 190px;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 26px;
    background:
        linear-gradient(135deg, rgba(44, 25, 20, .84), rgba(84, 48, 39, .92)),
        url("../img/lotus.jpg") center / cover no-repeat;
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 20px 60px rgba(0,0,0,.22);
    transform: rotate(-2deg);
}

.gift-card img {
    width: 220px;
    max-width: 88%;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,.24));
}

.gift-card figcaption {
    margin-top: 10px;
    color: rgba(255,255,255,.72);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* Therapies */
.therapies {
    background: #fffaf4;
}

.therapy-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-block: 1px solid var(--line);
}

.therapy-card {
    min-height: 300px;
    padding: 36px 22px 34px;
    text-align: center;
    border-right: 1px solid var(--line);
    transition: background .3s var(--ease), transform .3s var(--ease);
}

.therapy-card:last-child {
    border-right: 0;
}

.therapy-card:hover {
    background: rgba(247, 232, 221, .58);
    transform: translateY(-4px);
}

.therapy-card h3 {
    font-size: 21px;
    margin-bottom: 14px;
}

.therapy-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.62;
}

.therapy-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 20px;
    position: relative;
    color: var(--copper);
}

.therapy-icon::before,
.therapy-icon::after {
    content: "";
    position: absolute;
    inset: 0;
}

.therapy-icon--spiral::before {
    border: 2px solid currentColor;
    border-radius: 50%;
    box-shadow: inset 0 0 0 8px #fffaf4, inset 0 0 0 10px currentColor, inset 0 0 0 18px #fffaf4, inset 0 0 0 20px currentColor;
    opacity: .78;
}

.therapy-icon--sun::before {
    inset: 16px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 -24px 0 -2px currentColor, 0 24px 0 -2px currentColor, 24px 0 0 -2px currentColor, -24px 0 0 -2px currentColor, 17px 17px 0 -2px currentColor, -17px -17px 0 -2px currentColor, 17px -17px 0 -2px currentColor, -17px 17px 0 -2px currentColor;
}

.therapy-icon--mind::before {
    width: 42px;
    height: 42px;
    left: 6px;
    top: 6px;
    border: 2px solid currentColor;
    border-radius: 45% 45% 50% 50%;
}

.therapy-icon--mind::after {
    width: 7px;
    height: 7px;
    left: 16px;
    top: 18px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 12px 9px 0 currentColor, 22px 3px 0 currentColor;
}

.therapy-icon--dna::before {
    left: 25px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(currentColor 0 12%, transparent 12% 22%, currentColor 22% 34%, transparent 34% 45%, currentColor 45% 58%, transparent 58% 69%, currentColor 69% 82%, transparent 82% 91%, currentColor 91%);
    transform: rotate(35deg);
}

.therapy-icon--dna::after {
    left: 25px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(currentColor 0 12%, transparent 12% 22%, currentColor 22% 34%, transparent 34% 45%, currentColor 45% 58%, transparent 58% 69%, currentColor 69% 82%, transparent 82% 91%, currentColor 91%);
    transform: rotate(-35deg);
}

.therapy-icon--lotus::before {
    left: 7px;
    top: 17px;
    width: 40px;
    height: 24px;
    border: 2px solid currentColor;
    border-radius: 50% 50% 8px 8px;
    transform: rotate(-18deg);
}

.therapy-icon--lotus::after {
    left: 7px;
    top: 17px;
    width: 40px;
    height: 24px;
    border: 2px solid currentColor;
    border-radius: 50% 50% 8px 8px;
    transform: rotate(18deg);
}

/* Atmosphere */
.atmosphere {
    position: relative;
    min-height: 520px;
    color: #fffaf4;
    background: var(--espresso);
    overflow: hidden;
}

.atmosphere-image {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(22, 12, 8, .88) 0%, rgba(22, 12, 8, .76) 45%, rgba(22, 12, 8, .28) 100%),
        url("../img/space-main.jpg") center / cover no-repeat;
    transform: scale(1.02);
}

.atmosphere-grid {
    position: relative;
    z-index: 2;
    min-height: 520px;
    display: grid;
    align-items: center;
}

.atmosphere-copy {
    max-width: 560px;
    padding: 70px 0;
}

.atmosphere-copy .section-kicker {
    color: #e8b9aa;
}

.atmosphere-copy h2 {
    color: #fff7ef;
}

.atmosphere-copy p {
    color: rgba(255,255,255,.80);
}

.atmosphere-copy ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.atmosphere-copy li {
    border-left: 2px solid var(--copper);
    padding-left: 12px;
    color: rgba(255,255,255,.88);
}

/* Contact */
.contact {
    background: linear-gradient(180deg, #fffaf4, #f3e3d6);
}

.contact-grid {
    display: grid;
    grid-template-columns: .92fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 18px;
}

.contact-info p {
    max-width: 550px;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

.contact-list a,
.contact-list div {
    display: grid;
    gap: 4px;
    padding: 20px 24px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.64);
    transition: transform .25s var(--ease), border-color .25s var(--ease);
}

.contact-list a:hover {
    transform: translateX(4px);
    border-color: rgba(199, 141, 123, .45);
}

.contact-list span {
    color: var(--rose);
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 11px;
    font-weight: 800;
}

.contact-list strong {
    font-size: 18px;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 40px;
    background: rgba(255,255,255,.74);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

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

.contact-form label span {
    color: var(--coffee);
    font-weight: 800;
    font-size: 13px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(82,54,43,.18);
    background: #fffaf4;
    color: var(--espresso);
    outline: none;
    padding: 15px 16px;
    transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(199, 141, 123, .75);
    box-shadow: 0 0 0 4px rgba(199, 141, 123, .12);
    background: #fff;
}

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

.form-message {
    padding: 14px 16px;
    font-weight: 800;
}

.form-message.success {
    color: #235b41;
    background: rgba(66, 151, 99, .12);
    border: 1px solid rgba(66, 151, 99, .22);
}

.form-message.error {
    color: #813a2d;
    background: rgba(190, 80, 62, .12);
    border: 1px solid rgba(190, 80, 62, .22);
}

/* Footer */
.footer {
    color: rgba(255,255,255,.78);
    background:
        radial-gradient(circle at 20% 0%, rgba(199,141,123,.20), transparent 28%),
        linear-gradient(180deg, #2d1c15, #1c110d);
    padding: 58px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr .8fr .7fr;
    gap: 54px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer h3 {
    margin: 0 0 18px;
    color: #fff5ec;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer p {
    margin: 0;
    color: rgba(255,255,255,.70);
}

.footer a {
    display: block;
    margin: 0 0 10px;
    color: rgba(255,255,255,.72);
}

.footer a:hover {
    color: #fff;
}

.footer-brand img {
    width: 185px;
    margin-bottom: 16px;
}

.footer-brand p {
    max-width: 270px;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0;
    color: #fff;
    background: rgba(199, 141, 123, .78);
    border: 1px solid rgba(255,255,255,.18);
    font-weight: 900;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 20px;
    color: rgba(255,255,255,.52);
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1080px) {
    .service-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .service-body p,
    .service-body small {
        min-height: 0;
    }

    .therapy-grid {
        grid-template-columns: repeat(2, 1fr);
        border: 0;
        gap: 16px;
    }

    .therapy-card {
        border: 1px solid var(--line);
        background: rgba(255,255,255,.62);
    }

    .gift-panel {
        grid-template-columns: 86px 1fr;
    }

    .gift-card {
        grid-column: 1 / -1;
    }

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

@media (max-width: 920px) {
    .site-header {
        padding: 14px 0;
    }

    .header-inner {
        width: min(100% - 32px, 1280px);
    }

    .brand {
        width: 142px;
        min-width: 142px;
    }

    .nav-toggle {
        display: block;
        z-index: 94;
    }

    .site-nav {
        position: fixed;
        z-index: 92;
        top: 0;
        right: 0;
        width: min(380px, 100%);
        height: 100vh;
        padding: 110px 34px 34px;
        display: grid;
        align-content: start;
        gap: 8px;
        background: rgba(35, 23, 18, .97);
        transform: translateX(100%);
        transition: transform .35s var(--ease);
        box-shadow: -24px 0 70px rgba(0,0,0,.28);
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .site-nav a {
        padding: 15px 0;
        font-size: 18px;
    }

    .nav-cta {
        margin-top: 18px;
        padding: 16px 24px !important;
    }

    .hero {
        height: auto;
        min-height: 720px;
    }

    .hero-bg {
        background-position: 65% center;
    }

    .hero-content {
        width: min(100% - 38px, 1280px);
        padding-top: 120px;
        padding-bottom: 90px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .intro-watermark {
        display: none;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 34px, var(--max));
    }

    .section {
        padding: 62px 0;
    }

    .hero {
        min-height: 680px;
    }

    .hero-bg {
        background:
            linear-gradient(90deg, rgba(18, 9, 6, .88) 0%, rgba(18, 9, 6, .60) 58%, rgba(18, 9, 6, .36) 100%),
            url("../img/hero-massage.jpg") center / cover no-repeat;
    }

    h1 {
        font-size: clamp(48px, 17vw, 76px);
    }

    h2 {
        font-size: clamp(31px, 10vw, 44px);
    }

    .hero-subtitle {
        font-size: 23px;
    }

    .hero-actions {
        display: grid;
        width: 100%;
        max-width: 330px;
    }

    .btn {
        width: 100%;
    }

    .intro-image img {
        height: 230px;
    }

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

    .gift-panel {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .gift-icon {
        width: 72px;
        height: 72px;
    }

    .atmosphere-copy ul {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px 22px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
