:root {
    --primary: #574236;
    --accent: #a3461d;
    --green: #2f5d50;
    --text: #111111;
    --muted: #111111;
    --line: #ebebeb;
    --soft: #fff7f3;
    --soft-2: #fbe7dd;
    --white: #ffffff;
    --shadow: 0 24px 80px rgba(87, 66, 54, 0.12);
    --serif: "Cormorant Garamond", Georgia, serif;
    --script: "Allura", cursive;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Sora", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

body.cms-admin-mode {
    padding-top: 46px;
}

.cms-admin-bar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 8px 18px;
    background: #2f211b;
    color: #fff;
    font-size: 0.82rem;
    box-shadow: 0 12px 30px rgba(35, 18, 12, 0.22);
}

.cms-admin-bar strong {
    font-family: "Sora", Arial, sans-serif;
    font-size: 0.82rem;
}

.cms-admin-bar a {
    color: #fff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cms-editable {
    display: inline;
    min-width: 1ch;
    outline: 1px dashed transparent;
    border-radius: 5px;
    transition: background 160ms ease, outline-color 160ms ease;
}

.cms-editable-block {
    display: inline;
    white-space: pre-wrap;
}

.cms-text-multiline {
    white-space: pre-line;
}

.cms-editable:hover,
.cms-editable:focus {
    outline-color: rgba(163, 70, 29, 0.42);
    background: rgba(255, 255, 255, 0.42);
}

.cms-editable.is-dirty {
    background: rgba(251, 231, 221, 0.64);
}

.cms-image-edit {
    position: relative;
    display: block;
    cursor: pointer;
}

.cms-image-edit::after {
    position: absolute;
    inset: 0;
    content: "";
    border: 2px dashed rgba(255, 255, 255, 0);
    border-radius: inherit;
    pointer-events: none;
    transition: border-color 160ms ease, background 160ms ease;
}

.cms-image-edit:hover::after {
    border-color: rgba(163, 70, 29, 0.82);
    background: rgba(47, 33, 27, 0.16);
}

.cms-image-hint {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(47, 33, 27, 0.88);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease;
}

.cms-image-edit:hover .cms-image-hint {
    opacity: 1;
}

.admin-login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background:
        linear-gradient(115deg, rgba(90, 48, 30, 0.9), rgba(123, 65, 31, 0.86)),
        url("../img/space-clinic-03.jpeg") center / cover;
}

.admin-login {
    width: min(100% - 32px, 420px);
}

.admin-login-card {
    display: grid;
    gap: 16px;
    padding: 30px;
    border-radius: 8px;
    background: rgba(255, 247, 243, 0.96);
    box-shadow: 0 24px 80px rgba(35, 18, 12, 0.24);
}

.admin-login-card strong {
    color: var(--accent);
    font-family: var(--serif);
    font-size: 1.35rem;
    font-style: italic;
}

.admin-login-card h1 {
    margin: 0;
    color: var(--primary);
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1.05;
}

.admin-login-card label {
    display: grid;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
}

.admin-login-card input {
    min-height: 46px;
    border: 1px solid rgba(87, 66, 54, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    background: #fff;
    color: var(--text);
    font: inherit;
}

.admin-login-card button {
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.admin-login-error {
    margin: 0;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(163, 70, 29, 0.1);
    color: var(--accent);
    font-weight: 700;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 58px;
    padding: 8px clamp(20px, 4vw, 54px);
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
    transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    width: 100%;
}

.site-header.is-scrolled {
    background: rgba(255, 247, 243, 0.96);
    border-bottom: 1px solid rgba(87, 66, 54, 0.1);
    box-shadow: 0 14px 40px rgba(87, 66, 54, 0.12);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-family: var(--serif);
    font-size: 1.32rem;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0;
}

.site-header.is-scrolled .brand {
    color: var(--primary);
}

.brand-mark {
    display: none;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    font-family: "Poppins", sans-serif;
    font-size: 0.86rem;
    font-style: normal;
    box-shadow: 0 12px 30px rgba(87, 66, 54, 0.18);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 28px);
    color: var(--white);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.site-header.is-scrolled .main-nav {
    color: var(--primary);
}

.main-nav a:not(.nav-cta) {
    position: relative;
    padding: 8px 0;
}

.main-nav a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    content: "";
    background: var(--accent);
    opacity: 0;
    transform: scaleX(0.55);
    transition: opacity 160ms ease, transform 160ms ease;
}

.main-nav a:not(.nav-cta):hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 23px;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: lowercase;
    box-shadow: 0 14px 34px rgba(87, 66, 54, 0.2);
}

.site-header .nav-cta {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 14px 34px rgba(35, 18, 12, 0.24);
}

.site-header.is-scrolled .nav-cta {
    background: var(--primary);
    color: var(--white);
}

.button-light {
    background: var(--white);
    color: var(--primary);
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: transparent;
    color: var(--white);
    padding: 10px 18px;
    font: inherit;
    font-weight: 700;
}

.site-header.is-scrolled .menu-toggle {
    border-color: rgba(87, 66, 54, 0.22);
    color: var(--primary);
}

.hero {
    position: relative;
    min-height: 700px;
    display: grid;
    align-items: center;
    padding: 112px 0 0;
    color: var(--white);
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 18%, rgba(161, 93, 49, 0.28), transparent 34%),
        linear-gradient(115deg, #5a301e 0%, #7b411f 45%, #85451f 100%);
}

.hero::before {
    position: absolute;
    inset: -58px 0 0;
    content: "";
    background:
        radial-gradient(circle at 82% 18%, rgba(161, 93, 49, 0.28), transparent 34%),
        linear-gradient(115deg, #5a301e 0%, #7b411f 45%, #85451f 100%);
}

.hero-overlay {
    position: absolute;
    inset: -58px 0 0;
    background:
        linear-gradient(90deg, rgba(44, 24, 17, 0.82), rgba(72, 36, 20, 0.42) 54%, rgba(133, 69, 31, 0.02) 100%),
        radial-gradient(circle at 20% 76%, rgba(251, 231, 221, 0.1), transparent 34%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
    gap: clamp(28px, 4.8vw, 70px);
    align-items: end;
}

.hero-content {
    position: relative;
    max-width: 560px;
    padding-bottom: 50px;
}

.hero-portrait {
    position: relative;
    align-self: end;
    justify-self: end;
    width: min(42vw, 560px);
    height: min(630px, calc(100vh - 70px));
    min-height: 560px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hero-portrait::before {
    display: none;
}

.hero-portrait::after {
    display: none;
}

.hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    border-radius: 0;
    filter: none;
}

.hero-portrait .cms-image-edit,
.intro-mobile-portrait .cms-image-edit {
    width: 100%;
    height: 100%;
}

.eyebrow,
.crumb {
    margin: 0 0 16px;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--soft-2);
    font-size: 0.76rem;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--primary);
    line-height: 1.08;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 560px;
    color: var(--white);
    font-size: clamp(2.25rem, 3.65vw, 3.35rem);
    line-height: 1.1;
    font-weight: 700;
}

.hero h1 em {
    display: inline-block;
    font-family: var(--script);
    font-size: 1.35em;
    font-style: italic;
    font-weight: 400;
    line-height: 0.72;
    color: var(--soft-2);
    text-transform: lowercase;
    text-shadow: 0 10px 28px rgba(36, 25, 19, 0.28);
}

.hero p:not(.eyebrow) {
    max-width: 500px;
    margin: 20px 0 28px;
    font-size: 0.94rem;
    font-weight: 400;
}

.section {
    padding: 92px 0;
}

.intro {
    background: var(--soft);
}

.intro-grid,
.about-grid,
.address-grid {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: clamp(34px, 6vw, 76px);
    align-items: center;
}

.intro h2,
.section-heading h2,
.about h2,
.address h2 {
    font-family: var(--serif);
    font-size: clamp(2.2rem, 4.6vw, 4.4rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h2 span {
    display: inline-block;
    color: var(--accent);
    font-family: var(--script);
    font-size: 1.16em;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 0.72;
    text-transform: lowercase;
}

.intro-grid > p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.intro-mobile-portrait {
    display: none;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 42px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    border: 1px solid rgba(87, 66, 54, 0.12);
    border-radius: 999px;
    padding: 10px 18px;
    background: var(--white);
    color: var(--primary);
    font: inherit;
    font-size: 0.9rem;
    box-shadow: 0 12px 30px rgba(87, 66, 54, 0.05);
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.filter-pill span {
    color: var(--accent);
}

.filter-pill:hover,
.filter-pill.is-active {
    border-color: rgba(163, 70, 29, 0.28);
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.filter-pill:hover span,
.filter-pill.is-active span {
    color: var(--soft-2);
}

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

.treatment-card {
    overflow: hidden;
    border: 1px solid rgba(87, 66, 54, 0.1);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.treatment-card[hidden] {
    display: none;
}

.treatment-card img {
    height: 255px;
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, #fff7f3, #f6ebe3);
}

.treatment-body {
    padding: 26px;
}

.treatment-body span {
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.treatment-body h3 {
    margin-top: 8px;
    color: #b18a58;
    font-family: var(--serif);
    font-size: 1.82rem;
    font-weight: 600;
    letter-spacing: 0.035em;
    line-height: 1;
    text-transform: uppercase;
}

.treatment-body p {
    min-height: 138px;
    margin: 16px 0 20px;
    color: #4d403a;
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.86;
}

.treatment-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
}

.treatment-body a,
.text-link {
    border: 0;
    background: transparent;
    color: var(--primary);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    padding: 0;
}

.treatment-body a {
    color: var(--accent);
}

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.service-modal.is-open {
    display: flex;
}

.service-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(47, 36, 31, 0.62);
    backdrop-filter: blur(8px);
}

.service-modal-panel {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    max-height: min(88vh, 920px);
    overflow: auto;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 30px 90px rgba(35, 18, 12, 0.32);
}

.modal-close {
    position: sticky;
    top: 16px;
    z-index: 3;
    float: right;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 16px 16px 0 0;
    border: 1px solid rgba(87, 66, 54, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--primary);
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
}

.service-modal-hero {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 42px);
    align-items: center;
    padding: 34px clamp(26px, 4vw, 46px) 24px;
}

.service-modal-hero img {
    height: 360px;
    border-radius: 8px;
    object-fit: contain;
    background: linear-gradient(135deg, #fff7f3, #f6ebe3);
}

.service-modal-hero span {
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-modal-hero h2 {
    margin-top: 10px;
    color: #b18a58;
    font-family: var(--serif);
    font-size: clamp(2.1rem, 5vw, 4rem);
    font-weight: 600;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.service-modal-hero p,
.service-modal-copy p,
.service-list li {
    color: var(--muted);
    font-weight: 300;
    line-height: 1.85;
}

.service-modal-content {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 28px;
    padding: 0 clamp(26px, 4vw, 46px) 26px;
}

.service-modal-copy {
    grid-row: span 2;
}

.service-modal-copy p {
    margin: 0 0 16px;
}

.service-list {
    padding: 22px;
    border: 1px solid rgba(87, 66, 54, 0.1);
    border-radius: 8px;
    background: var(--soft);
}

.service-list h3 {
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 1.08rem;
}

.service-list ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
}

.modal-whatsapp {
    margin: 0 clamp(26px, 4vw, 46px) 38px;
}

.differentials,
.testimonials,
.process {
    background: var(--soft);
}

.section-heading {
    margin-bottom: 48px;
}

.section-heading.narrow {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.section-heading p:last-child {
    margin: 18px 0 0;
    color: var(--muted);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.benefit-card {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 24px;
    align-items: center;
    min-height: 220px;
    padding: 18px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.benefit-card img {
    height: 180px;
    border-radius: 8px;
    object-fit: contain;
    background: linear-gradient(135deg, #fff7f3, #f6ebe3);
}

.benefit-card h3 {
    color: #b18a58;
    font-family: var(--serif);
    font-size: 1.62rem;
    font-weight: 600;
    letter-spacing: 0.035em;
    line-height: 1;
    text-transform: uppercase;
}

.benefit-card p,
.about p,
.address p,
.step-grid p,
.testimonial-card p {
    color: var(--muted);
    font-weight: 300;
    line-height: 1.9;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 38px;
}

.results-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--soft-2);
    box-shadow: var(--shadow);
}

.results-grid img {
    height: 360px;
    object-fit: contain;
    background: linear-gradient(135deg, #fff7f3, #f6ebe3);
}

.center {
    text-align: center;
}

.testimonial-card {
    display: block;
    max-width: 720px;
    margin: 0 auto;
    padding: 26px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.testimonial-card strong {
    display: block;
    color: #b18a58;
    font-family: var(--serif);
    font-size: 1.72rem;
    font-weight: 600;
    letter-spacing: 0.035em;
    line-height: 1;
    text-transform: uppercase;
}

.about {
    background: var(--white);
}

.about p {
    margin: 18px 0;
}

.about-choice-title {
    margin-top: 34px;
}

.about-choice-text {
    white-space: pre-wrap;
}

.about .button {
    margin-top: 12px;
}

.about-media img {
    max-height: 650px;
    border-radius: 8px;
    object-fit: contain;
    background: linear-gradient(135deg, #fff7f3, #f6ebe3);
    box-shadow: var(--shadow);
}

.space-gallery {
    background: var(--white);
}

.space-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.space-gallery-grid figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(87, 66, 54, 0.1);
    border-radius: 8px;
    background: linear-gradient(135deg, #fff7f3, #f6ebe3);
    box-shadow: var(--shadow);
}

.space-gallery-grid img {
    height: 340px;
    object-fit: contain;
    object-position: center;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.step-grid article {
    padding: 30px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.step-grid strong {
    color: var(--accent);
    font-size: 1.8rem;
}

.step-grid h3 {
    margin-top: 12px;
    font-size: 1.24rem;
}

.address {
    background: var(--primary);
    color: var(--white);
}

.address h2,
.address h2 span {
    color: var(--white);
}

.address p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.address .button {
    background: var(--white);
    color: var(--primary);
}

.address iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 8px;
}

.site-footer {
    padding: 42px 0;
    background: #2f241f;
    color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer strong {
    color: var(--white);
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 30;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.38);
}

.floating-whatsapp svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition: opacity 700ms ease, transform 700ms ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

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

.reveal-left {
    transform: translate3d(-34px, 0, 0);
}

.reveal-right {
    transform: translate3d(34px, 0, 0);
}

.reveal-scale {
    transform: translate3d(0, 24px, 0) scale(0.97);
}

.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1024px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 22px;
        border-radius: 8px;
        background: rgba(255, 247, 243, 0.98);
        color: var(--primary);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav .nav-cta {
        width: 100%;
        background: var(--primary);
        color: var(--white);
    }

    .treatment-grid,
    .benefit-grid,
    .space-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .service-modal-content,
    .service-modal-hero {
        grid-template-columns: 1fr;
    }

    .service-modal-hero img {
        height: 320px;
    }
}

@media (max-width: 720px) {
    .container {
        width: calc(100% - 28px);
        max-width: 1180px;
    }

    .site-header {
        min-height: 56px;
        padding: 8px 12px 8px 14px;
        gap: 12px;
    }

    .brand span {
        max-width: calc(100vw - 118px);
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .menu-toggle {
        display: inline-flex;
        position: relative;
        z-index: 40;
        transform: none;
        min-height: 38px;
        margin-left: auto;
        padding: 8px 14px;
        border-color: rgba(255, 255, 255, 0.34);
        background: rgba(255, 255, 255, 0.08);
        font-size: 0.78rem;
        line-height: 1;
        white-space: nowrap;
    }

    .site-header.is-scrolled .menu-toggle {
        background: rgba(255, 247, 243, 0.96);
    }

    .hero {
        min-height: auto;
        padding: 74px 0 40px;
    }

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

    .hero-content,
    .intro-grid > *,
    .about-grid > *,
    .address-grid > * {
        min-width: 0;
    }

    .hero-content {
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
        padding-bottom: 0;
        text-align: center;
    }

    .hero h1 {
        max-width: 100%;
        margin: 0 auto;
        font-size: 1.48rem;
        text-wrap: normal;
    }

    .hero p:not(.eyebrow) {
        max-width: 100%;
        margin: 16px auto 22px;
        font-size: 0.86rem;
    }

    .hero-portrait {
        display: none;
    }

    .hero .eyebrow {
        margin-bottom: 12px;
        font-size: 0.68rem;
    }

    .hero .button {
        margin-inline: auto;
    }

    .section {
        padding: 70px 0;
    }

    .intro-grid,
    .about-grid,
    .address-grid,
    .treatment-grid,
    .benefit-grid,
    .results-grid,
    .space-gallery-grid,
    .step-grid,
    .testimonial-card {
        grid-template-columns: 1fr;
    }

    .intro-grid > p {
        width: 100%;
        max-width: calc(100vw - 28px);
    }

    .intro {
        padding-top: 66px;
    }

    .intro h2 {
        max-width: 370px;
    }

    .intro-mobile-portrait {
        display: block;
        width: min(88vw, 360px);
        margin: 26px auto 0;
    }

    .intro-mobile-portrait img {
        max-height: 390px;
        object-fit: contain;
        object-position: center bottom;
    }

    .benefit-card {
        grid-template-columns: 1fr;
    }

    .treatment-body p {
        min-height: auto;
    }

    .results-grid img {
        height: 360px;
    }

    .service-modal {
        padding: 14px;
    }

    .service-modal-panel {
        max-height: 92vh;
    }

    .service-modal-hero {
        padding: 26px 18px 18px;
    }

    .service-modal-hero img,
    .space-gallery-grid img {
        height: 300px;
    }

    .service-modal-content {
        padding: 0 18px 22px;
    }

    .service-list {
        padding: 18px;
    }

    .modal-whatsapp {
        width: calc(100% - 36px);
        margin: 0 18px 28px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

    .footer-grid {
        align-items: flex-start;
        flex-direction: column;
    }
}

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

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
