:root {
    --primary: #bfa58a;
    --primary-dark: #a8844f;
    --secondary: #f5efe7;
    --accent: #c6a77b;
    --bone: #faf8f5;
    --dark: #2a2a2a;
    --gray: #8e857b;
    --line: #e8e4df;

    --font-primary: 'Inter', sans-serif;
    --font-display: 'Cormorant Garamond', serif;

    --shadow-sm: 0 2px 8px rgba(42, 42, 42, 0.08);
    --shadow-md: 0 8px 24px rgba(42, 42, 42, 0.12);

    --ease: all 0.35s ease;
    --header-height: 88px;

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-pill: 999px;

    --border-soft: 1px solid rgba(191, 165, 138, 0.26);
    --border-strong: 1px solid rgba(191, 165, 138, 0.42);
    --shadow-soft: 0 10px 24px rgba(106, 81, 53, 0.08);
    --shadow-card: 0 14px 30px rgba(106, 81, 53, 0.11);
    --shadow-elevated: 0 20px 46px rgba(106, 81, 53, 0.14);

    --hover-duration: 280ms;
    --hover-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --hover-lift-sm: translateY(-2px);
    --hover-lift-md: translateY(-4px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background:
        radial-gradient(circle at 18% 8%, rgba(198, 167, 123, 0.16), transparent 30%),
        radial-gradient(circle at 84% 14%, rgba(191, 165, 138, 0.14), transparent 28%),
        linear-gradient(170deg, #f9f5ef 0%, #f7f1e8 46%, #f3ece1 100%);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.08;
    background-image: radial-gradient(rgba(42, 42, 42, 0.7) 0.45px, transparent 0.45px);
    background-size: 3px 3px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1200px, calc(100% - 3rem));
    margin: 0 auto;
}

.bg-orb {
    position: fixed;
    z-index: -2;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

.orb-1 {
    width: 260px;
    height: 260px;
    top: 10%;
    left: -100px;
    background: rgba(198, 167, 123, 0.28);
}

.orb-2 {
    width: 240px;
    height: 240px;
    bottom: 10%;
    right: -90px;
    background: rgba(191, 165, 138, 0.2);
}

.language-selector {
    position: fixed;
    top: 114px;
    right: 22px;
    z-index: 1200;
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.94);
    border: var(--border-soft);
    padding: 6px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.lang-btn {
    border: 0;
    background: transparent;
    color: var(--gray);
    min-width: 34px;
    min-height: 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: var(--ease);
}

.lang-btn.active {
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius-sm);
}

#header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    border-bottom: 1px solid transparent;
    transition: var(--ease);
}

#header.scrolled {
    border-color: rgba(191, 165, 138, 0.34);
    box-shadow: 0 8px 20px rgba(106, 81, 53, 0.08);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.navbar {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.brand-logo {
    width: 84px;
    height: 84px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border: var(--border-soft);
    background: #fff;
    border-radius: var(--radius-sm);
}

.hamburger span {
    width: 18px;
    height: 2px;
    background: var(--dark);
    margin: 4px auto;
    display: block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 1.6rem;
    font-size: 12px;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) var(--hover-ease), background-color var(--hover-duration) var(--hover-ease), border-color var(--hover-duration) var(--hover-ease), color var(--hover-duration) var(--hover-ease);
    border-radius: var(--radius-pill);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: var(--hover-lift-sm);
    box-shadow: var(--shadow-card);
}

.btn-ghost {
    border: 1px solid rgba(250, 248, 245, 0.65);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: var(--hover-lift-sm);
    box-shadow: var(--shadow-card);
}

.hero {
    position: relative;
    margin: 20px auto 0;
    width: min(1240px, calc(100% - 2rem));
    min-height: calc(100vh - var(--header-height) - 24px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--hero-bg-image, url('img/hero.jpeg')) center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(21, 18, 14, 0.78) 0%, rgba(21, 18, 14, 0.42) 45%, rgba(21, 18, 14, 0.24) 100%),
        radial-gradient(circle at 80% 20%, rgba(191, 165, 138, 0.25), transparent 45%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    z-index: 0;
    pointer-events: none;
    animation: drift 8s ease-in-out infinite;
}

.hero-glow-1 {
    width: 280px;
    height: 280px;
    top: -60px;
    right: 8%;
    background: rgba(198, 167, 123, 0.22);
}

.hero-glow-2 {
    width: 220px;
    height: 220px;
    bottom: -80px;
    left: 32%;
    background: rgba(255, 255, 255, 0.15);
    animation-delay: 0.6s;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 1.6rem;
    align-items: center;
    padding: 2rem 0;
}

.hero-copy {
    color: #fff;
    max-width: 710px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-pill);
}

.kicker {
    margin-top: 18px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero h1 {
    margin-top: 12px;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5.3rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.gradient-text {
    color: #fff;
}

.hero-text {
    margin-top: 1.1rem;
    max-width: 58ch;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-panel {
    background: rgba(250, 248, 245, 0.84);
    border: var(--border-soft);
    box-shadow: var(--shadow-card);
    padding: 1.25rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: rgba(191, 165, 138, 0.15);
    border-radius: var(--radius-pill);
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary-dark);
    animation: pulse 2s infinite;
}

.hero-panel h2 {
    margin: 1rem 0;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.1;
}

.hero-panel ul {
    display: grid;
    gap: 0.75rem;
}

.hero-panel li {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    color: #51483e;
}

.hero-panel i {
    margin-top: 3px;
    color: var(--primary-dark);
}

.hero-panel p {
    margin-top: 0.9rem;
    color: var(--gray);
}

.section {
    padding: 5rem 0;
}

#waitlist {
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 2.2rem;
}

.section-header h2 {
    margin-top: 8px;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 4.4vw, 3.5rem);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.concept-card {
    background: #fff;
    border: var(--border-soft);
    padding: 1.25rem;
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) var(--hover-ease), border-color var(--hover-duration) var(--hover-ease);
}

.concept-card:hover {
    transform: var(--hover-lift-sm);
    box-shadow: var(--shadow-card);
    border-color: rgba(168, 132, 79, 0.4);
}

.concept-card h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
}

.concept-card p {
    color: var(--gray);
}

.timeline {
    display: grid;
    gap: 0.9rem;
}

.timeline article {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 1rem;
    border: var(--border-soft);
    background: #fff;
    padding: 1.1rem 1.2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) var(--hover-ease), border-color var(--hover-duration) var(--hover-ease);
}

.timeline article:hover {
    transform: var(--hover-lift-sm);
    box-shadow: var(--shadow-card);
    border-color: rgba(168, 132, 79, 0.4);
}

.step {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: var(--radius-md);
}

.timeline h3 {
    grid-column: 2;
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 0.25rem;
    line-height: 1.15;
}

.timeline p {
    grid-column: 2;
    color: var(--gray);
    max-width: none;
}

.treatment-note {
    max-width: 760px;
    margin: 0.7rem auto 0;
    color: var(--gray);
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.treatment-card {
    background: #fff;
    border: var(--border-soft);
    box-shadow: var(--shadow-soft);
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) var(--hover-ease), border-color var(--hover-duration) var(--hover-ease);
}

.treatment-card:hover {
    transform: var(--hover-lift-sm);
    box-shadow: var(--shadow-card);
    border-color: rgba(168, 132, 79, 0.42);
}

.treatment-card h3 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    line-height: 1.05;
    margin-bottom: 0.75rem;
}

.treatment-card h4 {
    margin: 0.8rem 0 0.45rem;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.treatment-card ul {
    list-style: disc;
    padding-left: 1.1rem;
    color: #4f473e;
    display: grid;
    gap: 0.28rem;
}

.section-gallery {
    position: relative;
    background: linear-gradient(180deg, #f4eee5 0%, #faf8f5 100%);
    overflow: hidden;
}

.section-gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 10%, rgba(198, 167, 123, 0.18), transparent 42%);
    pointer-events: none;
}

.gallery-note {
    max-width: 760px;
    margin: 0.7rem auto 0;
    color: var(--gray);
    font-size: 0.96rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    box-shadow: var(--shadow-card);
    border: var(--border-soft);
    border-radius: var(--radius-lg);
    transition: transform var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) var(--hover-ease), border-color var(--hover-duration) var(--hover-ease);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 454px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.78) contrast(1.02) brightness(0.9);
    transition: transform 0.6s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.08)),
        linear-gradient(130deg, rgba(198, 167, 123, 0.14), transparent 45%);
}

.gallery-item figcaption {
    position: absolute;
    left: 14px;
    bottom: 12px;
    z-index: 1;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 4px 10px;
    background: rgba(13, 12, 10, 0.28);
    border-radius: var(--radius-pill);
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: saturate(0.88) contrast(1.06) brightness(0.95);
}

.gallery-item:hover {
    transform: var(--hover-lift-sm);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(168, 132, 79, 0.42);
}

.waitlist-shell {
    position: relative;
    isolation: isolate;
    border: var(--border-strong);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(250, 246, 240, 0.9));
    box-shadow: var(--shadow-elevated);
    padding: 1.6rem;
    display: grid;
    grid-template-columns: 1fr minmax(280px, 420px);
    gap: 1.4rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.waitlist-shell::before,
.waitlist-shell::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.waitlist-shell::before {
    width: 280px;
    height: 280px;
    top: -140px;
    left: -110px;
    background: radial-gradient(circle, rgba(198, 167, 123, 0.2), transparent 68%);
}

.waitlist-shell::after {
    width: 260px;
    height: 260px;
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(191, 165, 138, 0.2), transparent 70%);
}

.waitlist-shell h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    line-height: 1.05;
    margin-top: 6px;
    max-width: 14ch;
    color: #3b2f22;
}

.waitlist-shell p {
    color: #6c6055;
    margin-top: 0.8rem;
}

.contact-links {
    margin-top: 1.2rem;
    display: grid;
    gap: 10px;
}

.contact-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    border: var(--border-soft);
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    transition: transform var(--hover-duration) var(--hover-ease), border-color var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) var(--hover-ease), background-color var(--hover-duration) var(--hover-ease);
}

.contact-links a:hover {
    border-color: var(--primary-dark);
    transform: var(--hover-lift-sm);
    box-shadow: var(--shadow-card);
    background-color: #fff;
}

.contact-links i {
    color: var(--primary-dark);
    width: 18px;
    text-align: center;
}

.waitlist-form {
    display: grid;
    gap: 8px;
    border: var(--border-soft);
    padding: 1.15rem;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(245, 239, 231, 0.86));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.waitlist-form label {
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #7f7367;
    font-weight: 700;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
    border: 1px solid #d5c8b9;
    background: rgba(255, 255, 255, 0.96);
    color: var(--dark);
    padding: 0.78rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(191, 165, 138, 0.22);
    transform: translateY(-1px);
}

.waitlist-form textarea {
    resize: vertical;
    min-height: 120px;
}

.waitlist-form .btn {
    margin-top: 0.45rem;
    width: 100%;
    border-radius: var(--radius-sm);
    letter-spacing: 0.1em;
}

.form-message {
    min-height: 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.form-message.success {
    color: #35624d;
}

.form-message.error {
    color: #a03838;
}

.footer {
    margin-top: 1rem;
    border-top: 1px solid var(--line);
    padding: 2rem 1rem;
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.footer p {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.floating-contact-dock {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1300;
    display: grid;
    justify-items: end;
    gap: 10px;
    animation: floatingDockIn 0.55s ease;
}

.floating-socials {
    display: grid;
    gap: 8px;
}

.floating-social {
    position: relative;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.38);
    transition: transform var(--hover-duration) var(--hover-ease), filter var(--hover-duration) var(--hover-ease), box-shadow var(--hover-duration) var(--hover-ease);
}

.floating-social i {
    font-size: 1.1rem;
}

.floating-instagram {
    background: linear-gradient(135deg, #ff8a00 0%, #e52e71 48%, #9b36b7 100%);
}

.floating-facebook {
    background: linear-gradient(135deg, #1977f3 0%, #115dc0 100%);
}

.floating-tiktok {
    background: linear-gradient(135deg, #161616 0%, #2a2a2a 100%);
}

.floating-whatsapp {
    background: linear-gradient(135deg, #16bd58 0%, #10a34a 100%);
}

.floating-social:hover {
    transform: translateX(-2px) scale(1.05);
    filter: brightness(1.06);
    box-shadow: var(--shadow-elevated);
}

.floating-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    opacity: 0;
    pointer-events: none;
    background: rgba(22, 19, 16, 0.92);
    color: #fff;
    padding: 6px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.floating-social:hover .floating-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.7;
    }
}

@keyframes drift {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes floatingDockIn {
    from {
        opacity: 0;
        transform: translateY(calc(-50% + 16px));
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

@media (max-width: 1060px) {
    .hero-grid {
        grid-template-columns: 1fr;
        padding: 2rem 0 2.4rem;
    }

    .hero-panel {
        max-width: 520px;
    }

    .concept-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .treatment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 280px;
    }

    .waitlist-shell {
        grid-template-columns: 1fr;
        padding: 1.25rem;
    }

    .waitlist-shell h2 {
        max-width: none;
    }
}

@media (max-width: 780px) {
    .container {
        width: min(1200px, calc(100% - 1.3rem));
    }

    .language-selector {
        top: 96px;
        right: 10px;
    }

    .brand-logo {
        width: 72px;
        height: 72px;
    }

    .brand span {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(250, 248, 245, 0.98);
        border-bottom: 1px solid var(--line);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        display: grid;
        gap: 0.9rem;
        padding: 1rem;
        transform: translateY(-130%);
        transition: var(--ease);
        opacity: 0;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .hero {
        min-height: 0;
        margin-top: 12px;
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 3.4rem);
    }

    .hero-text {
        font-size: 0.98rem;
    }

    .section {
        padding: 3.6rem 0;
    }

    .concept-grid,
    .treatment-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
        min-height: 240px;
    }

    .timeline article {
        grid-template-columns: 1fr;
    }

    .waitlist-shell {
        border-radius: var(--radius-md);
        gap: 1rem;
    }

    .waitlist-form {
        border-radius: var(--radius-md);
        padding: 0.95rem;
    }

    .timeline h3,
    .timeline p {
        grid-column: auto;
    }

    .step {
        width: 44px;
        height: 44px;
    }

    .footer p {
        flex-direction: column;
        gap: 2px;
    }

    .floating-contact-dock {
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        gap: 8px;
    }

    .floating-social {
        width: 44px;
        height: 44px;
    }

    .floating-tooltip {
        display: none;
    }
}
