:root {
    --color-bg: #020406;
    --color-text: #f5f0e8;
    --color-muted: #a89f93;
    --color-accent: #cfa45d;
    --color-line: rgba(255, 255, 255, 0.1);

    --container-width: 1200px;
    --container-padding: 0 clamp(20px, 4vw, 48px);

    --font-heading: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
    --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    height: 100%;
}

html {
    scrollbar-gutter: stable;
}

html, body {
    background: var(--color-bg);
}

body {
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open { overflow: hidden; }
body.loading { overflow: hidden; }

a { color: inherit; text-decoration: none; }

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 0.7s;
}

.preloader.hidden {
    transform: translateY(-100%);
    visibility: hidden;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.preloader-text {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 9vw, 5rem);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    animation: preloaderPulse 1.8s ease-in-out infinite;
}

.preloader-dots::after {
    content: "";
    animation: preloaderDots 1.4s steps(1, end) infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.55; }
}

@keyframes preloaderDots {
    0%   { content: ""; }
    25%  { content: "."; }
    50%  { content: ".."; }
    75%  { content: "..."; }
    100% { content: ""; }
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

.site-header {
    position: fixed;
    top: 12px;
    left: 0;
    right: 0;
    z-index: 100;
}

.whatsapp-fab {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 80;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-label {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(2, 4, 6, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-family: var(--font-body);
    text-align: right;
    transform-origin: right center;
    opacity: 0;
    transform: translateX(20px) scale(0.95);
    animation: waPeek 30s ease-in-out 10s infinite;
}

.whatsapp-label strong {
    font-size: 0.9rem;
    font-weight: 600;
}

.whatsapp-label span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes waPeek {
    0%   { opacity: 0; transform: translateX(20px) scale(0.95); }
    2%   { opacity: 1; transform: translateX(0) scale(1); }
    33%  { opacity: 1; transform: translateX(0) scale(1); }
    38%  { opacity: 0; transform: translateX(20px) scale(0.95); }
    100% { opacity: 0; transform: translateX(20px) scale(0.95); }
}

.whatsapp-fab:hover .whatsapp-label {
    animation: none;
    opacity: 1;
    transform: translateX(0) scale(1);
}

.whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    transition: transform 0.25s ease;
}

.whatsapp-fab:hover .whatsapp-icon {
    transform: scale(1.08);
}

.header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 95;
}

.logo-img {
    height: 64px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: clamp(20px, 3vw, 40px);
}

.nav-socials,
.nav-address {
    display: none;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    transition: color 0.2s ease;
}

.nav-text {
    position: relative;
    display: inline-block;
}

.nav-text::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: var(--color-accent);
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    pointer-events: none;
}

.nav-link:hover .nav-text::after,
.nav-link.active .nav-text::after {
    clip-path: inset(0 0 0 0);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 12px;
    background: var(--color-accent);
    border: none;
    padding: 8px 14px;
    border-radius: 999px;
}

.menu-bars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 48px;
    height: 32px;
    gap: 9px;
}

.menu-bars span {
    display: block;
    width: 100%;
    height: 1px;
    background: #000000;
    border-radius: 1px;
    transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}

.menu-label {
    display: inline-block;
    min-width: 4.5em;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #000000;
    transform-origin: center bottom;
    backface-visibility: hidden;
}

.menu-toggle {
    perspective: 400px;
    position: relative;
    z-index: 95;
}

.menu-toggle.label-out .menu-label {
    animation: labelOut 0.2s ease forwards;
}

.menu-toggle.label-in .menu-label {
    animation: labelIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes labelOut {
    0%   { opacity: 1; transform: translateY(0) rotateX(0) scale(1); }
    100% { opacity: 0; transform: translateY(-10px) rotateX(85deg) scale(0.9); }
}

@keyframes labelIn {
    0%   { opacity: 0; transform: translateY(12px) rotateX(-85deg) scale(0.9); }
    60%  { opacity: 1; }
    100% { opacity: 1; transform: translateY(0) rotateX(0) scale(1); }
}

.site-main {
    min-height: calc(100vh - 72px - 80px);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(40px, 6vw, 80px) 0;
    text-align: center;
}

.light-area {
    position: relative;
    overflow: hidden;
    background: #faf8f5;
}

.section-white {
    background: transparent;
    color: #1a1a1a;
}

.light-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 8%, rgba(207, 164, 93, 0.35), transparent 30%),
        radial-gradient(circle at 5% 55%, rgba(207, 164, 93, 0.20), transparent 28%),
        radial-gradient(circle at 90% 90%, rgba(207, 164, 93, 0.22), transparent 30%);
    pointer-events: none;
    z-index: 0;
}

.light-area::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.16;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}

.about {
    position: relative;
    z-index: 1;
}

.about {
    padding-top: clamp(70px, 12vw, 140px);
    padding-bottom: clamp(70px, 12vw, 140px);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--color-accent);
}

.about-title {
    font-size: clamp(2.5rem, 6vw, 4.75rem);
    line-height: 1.1;
    margin: 0 0 clamp(36px, 5vw, 56px);
    color: #141414;
}

.about-title em,
.about-title .accent {
    font-style: italic;
    color: var(--color-accent);
}

.about-title.reveal,
.anim-title.reveal {
    opacity: 1;
    transform: none;
}

.word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    padding-bottom: 0.12em;
    margin-bottom: -0.12em;
}

.word-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.word-inner.accent {
    font-style: italic;
    color: var(--color-accent);
}

.in-view .word-inner {
    transform: translateY(0);
}

.in-view .word:nth-child(1) .word-inner { transition-delay: 0.04s; }
.in-view .word:nth-child(2) .word-inner { transition-delay: 0.11s; }
.in-view .word:nth-child(3) .word-inner { transition-delay: 0.18s; }
.in-view .word:nth-child(4) .word-inner { transition-delay: 0.25s; }
.in-view .word:nth-child(5) .word-inner { transition-delay: 0.32s; }
.in-view .word:nth-child(6) .word-inner { transition-delay: 0.39s; }
.in-view .word:nth-child(7) .word-inner { transition-delay: 0.46s; }
.in-view .word:nth-child(8) .word-inner { transition-delay: 0.53s; }
.in-view .word:nth-child(9) .word-inner { transition-delay: 0.60s; }

.title-spark {
    display: inline-block;
    vertical-align: middle;
    color: #141414;
    animation: spinSlow 9s linear infinite;
}

.title-spark svg {
    display: block;
    width: 0.7em;
    height: 0.7em;
}

.cta-title .title-spark,
.faq-title .title-spark {
    color: var(--color-accent);
}

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

.about-text {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.75;
    color: #555555;
    max-width: 540px;
}

.about-content .btn {
    margin-top: 32px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #141414;
    transition: color 0.25s ease;
}

.link-arrow span {
    transition: transform 0.25s ease;
    color: var(--color-accent);
}

.link-arrow:hover {
    color: var(--color-accent);
}

.link-arrow:hover span {
    transform: translateX(6px);
}

.stats {
    padding: clamp(28px, 4vw, 40px);
    border-radius: 14px;
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #f5f0e8;
}

.stat svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

.stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.stat span {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.6);
}

.about-media {
    position: relative;
}

.about-media img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: 18px;
    position: relative;
    z-index: 1;
}

.about-media::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid var(--color-accent);
    border-radius: 18px;
    z-index: 0;
}

.gallery {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 0 0 clamp(50px, 8vw, 90px);
}

.gallery-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.gallery-item {
    flex: 0 0 auto;
    margin-right: 20px;
}

.gallery-item img {
    height: clamp(240px, 42vh, 440px);
    width: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

.cta {
    position: relative;
    z-index: 1;
    background: transparent;
    padding-top: clamp(70px, 12vw, 140px);
    padding-bottom: 0;
    text-align: center;
}

.cta-inner {
    max-width: 720px;
}

.cta-head {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(24px, 5vw, 64px);
    text-align: left;
    flex-wrap: wrap;
    margin-top: -30px;
    padding-bottom: clamp(22px, 3vw, 34px);
    border-bottom: 1px solid rgba(20, 20, 20, 0.14);
}

.cta-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 84px;
    height: 4px;
    border-radius: 4px;
    background: var(--color-accent);
}

.cta-title {
    margin: 0;
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    line-height: 1;
    color: #141414;
}

.cta-text {
    flex: 1;
    min-width: 280px;
    max-width: 460px;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.7;
    color: rgba(20, 20, 20, 0.7);
    margin: 0 0 6px;
}

.treatment-group {
    display: block;
    width: fit-content;
    background: var(--color-bg);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    margin: clamp(40px, 5vw, 60px) 0 clamp(20px, 2.5vw, 28px);
}

.treatments {
    display: grid;
    gap: clamp(16px, 2vw, 26px);
    text-align: left;
}

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

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

.cta .btn {
    margin-top: clamp(40px, 5vw, 56px);
}

.treatment-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    padding: clamp(30px, 3.5vw, 46px);
    text-align: center;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.tc-icon {
    width: clamp(88px, 11vw, 116px);
    height: clamp(88px, 11vw, 116px);
    margin: 0 auto clamp(18px, 2.5vw, 26px);
    border-radius: 50%;
    background: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tc-icon svg {
    width: 46%;
    height: auto;
    color: #141414;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.tc-icon img {
    width: 56%;
    height: 56%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.tc-icon img.icon-lg {
    width: 68%;
    height: 68%;
}

.tc-body h3 {
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    color: #141414;
    margin-bottom: 10px;
}

.tc-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6a6a6a;
}

.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.12);
}

.treatment-card:hover .tc-icon svg,
.treatment-card:hover .tc-icon img {
    transform: scale(1.08);
}

.treatment {
    position: relative;
    overflow: hidden;
    background: var(--color-accent);
    border: 1px solid rgba(20, 20, 20, 0.12);
    border-radius: 14px;
    padding: clamp(34px, 4vw, 54px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.treatment-num {
    position: absolute;
    top: clamp(12px, 2vw, 22px);
    right: clamp(16px, 2.5vw, 30px);
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 1;
    color: #141414;
    opacity: 0.14;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.treatment h3 {
    position: relative;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    color: #141414;
    margin-bottom: 22px;
    padding-bottom: 14px;
}

.treatment h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 2px;
    background: #141414;
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.treatment p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(20, 20, 20, 0.78);
    max-width: 90%;
}

.treatment:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.treatment:hover .treatment-num {
    opacity: 0.26;
    transform: translateY(-4px);
}

.treatment:hover h3::after {
    width: 72px;
}

.btn-dark {
    background: #0d0f12;
    color: #ffffff;
}

.btn-dark:hover {
    transform: translateY(-2px);
    background: #000000;
}

@media (max-width: 768px) {
    .treatments {
        grid-template-columns: 1fr;
    }

    .tc-icon {
        width: 132px;
        height: 132px;
    }
}

.why {
    position: relative;
    z-index: 1;
    background: transparent;
    color: #1a1a1a;
    padding-top: 0;
    padding-bottom: clamp(70px, 11vw, 140px);
}

.why .contact-deco {
    margin-top: clamp(64px, 10vw, 115px);
    margin-bottom: clamp(64px, 10vw, 115px);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.why-media {
    position: relative;
}

.why-media img {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 14px;
    position: relative;
    z-index: 1;
}

.why-media::before {
    content: "";
    position: absolute;
    inset: -18px 18px 18px -18px;
    border: 1px solid var(--color-accent);
    border-radius: 14px;
    z-index: 0;
}

.why-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 18px;
}

.why-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--color-accent);
}

.why-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.12;
    color: #141414;
    margin: 0 0 clamp(36px, 5vw, 56px);
}

.why-title em {
    font-style: italic;
    color: var(--color-accent);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 2.5vw, 30px);
}

.why-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
}

.why-spark {
    display: flex;
    color: var(--color-accent);
    margin-top: 4px;
}

.why-spark svg {
    width: 20px;
    height: 20px;
}

.why-row h3 {
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
    color: #141414;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.why-row p {
    font-size: 0.96rem;
    line-height: 1.7;
    color: rgba(20, 20, 20, 0.65);
}

.why-list .why-row:nth-child(1).in-view { transition-delay: 0.05s; }
.why-list .why-row:nth-child(2).in-view { transition-delay: 0.18s; }
.why-list .why-row:nth-child(3).in-view { transition-delay: 0.31s; }
.why-list .why-row:nth-child(4).in-view { transition-delay: 0.44s; }

.why-spark svg {
    animation: whyTwinkle 4.5s ease-in-out infinite;
    transform-origin: center;
}

.why-row:nth-child(2) .why-spark svg { animation-delay: 0.6s; }
.why-row:nth-child(3) .why-spark svg { animation-delay: 1.2s; }
.why-row:nth-child(4) .why-spark svg { animation-delay: 1.8s; }

@keyframes whyTwinkle {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 1; }
    50%      { transform: rotate(45deg) scale(1.2); opacity: 0.65; }
}

.why-row:hover h3 {
    color: var(--color-accent);
}

.why-row:hover .why-spark svg {
    animation-play-state: paused;
    transform: rotate(45deg) scale(1.3);
    opacity: 1;
}

@media (max-width: 768px) {
    .why-inner {
        grid-template-columns: 1fr;
        gap: clamp(36px, 8vw, 52px);
    }

    .why-media::before {
        inset: -12px 12px 12px -12px;
    }
}

.contact-section {
    position: relative;
    z-index: 1;
    color: #1a1a1a;
    padding-top: clamp(120px, 18vh, 180px);
    padding-bottom: clamp(64px, 10vw, 120px);
}

.contact-head {
    margin-bottom: clamp(40px, 6vw, 64px);
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 18px;
}

.contact-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--color-accent);
}

.contact-deco {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    color: var(--color-accent);
    margin-bottom: clamp(34px, 4.5vw, 52px);
}

.deco-line {
    flex: 1;
    height: 1px;
    background: currentColor;
    opacity: 0.5;
}

.deco-diamond {
    flex-shrink: 0;
    width: 9px;
    height: 9px;
    background: currentColor;
    transform: rotate(45deg);
}

.contact-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: #141414;
    margin: 0 0 18px;
}

.contact-title em {
    font-style: italic;
    color: var(--color-accent);
}

.contact-intro {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.75;
    color: rgba(20, 20, 20, 0.65);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: stretch;
}

.contact-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 3vw, 32px);
    background: var(--color-bg);
    border-radius: 14px;
    padding: clamp(28px, 3.5vw, 46px);
}

.contact-block h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #f5f0e8;
    margin-bottom: 6px;
}

.contact-block p,
.contact-block a {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(245, 240, 232, 0.7);
    transition: color 0.2s ease;
}

.contact-block a:hover {
    color: var(--color-accent);
}

.contact-info .btn {
    align-self: flex-start;
    margin-top: 6px;
}

.contact-form {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #ffffff;
    border: 1px solid rgba(20, 20, 20, 0.08);
    border-radius: 14px;
    padding: clamp(24px, 3vw, 38px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-field span {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #555555;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #1a1a1a;
    background: #faf8f5;
    border: 1px solid rgba(20, 20, 20, 0.14);
    border-radius: 8px;
    padding: 12px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field textarea {
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(207, 164, 93, 0.18);
}

.contact-form .btn {
    align-self: stretch;
    width: 100%;
    text-align: center;
    margin-top: 6px;
    border: none;
    cursor: pointer;
}

.contact-map {
    margin-top: clamp(32px, 5vw, 56px);
    min-height: 360px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
    filter: grayscale(0.2);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

.over-section {
    position: relative;
    z-index: 1;
    color: #1a1a1a;
    padding-top: clamp(120px, 18vh, 180px);
    padding-bottom: clamp(64px, 10vw, 120px);
}

.over-head {
    margin-bottom: clamp(44px, 6vw, 72px);
}

.over-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: #141414;
    margin: 0 0 18px;
}

.over-title em {
    font-style: italic;
    color: var(--color-accent);
}

.over-intro {
    font-size: clamp(1.05rem, 1.3vw, 1.25rem);
    line-height: 1.7;
    color: rgba(20, 20, 20, 0.7);
}

.over-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.over-media {
    position: relative;
}

.over-media img {
    width: 100%;
    height: 100%;
    max-height: 580px;
    object-fit: cover;
    border-radius: 14px;
    position: relative;
    z-index: 1;
}

.over-media::before {
    content: "";
    position: absolute;
    inset: -18px -18px 18px 18px;
    border: 1px solid var(--color-accent);
    border-radius: 14px;
    z-index: 0;
}

.over-text p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: rgba(20, 20, 20, 0.72);
    margin-bottom: 16px;
}

.over-text .btn {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .over-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .over-media {
        order: -1;
    }

    .over-media::before {
        inset: -12px -12px 12px 12px;
    }
}

.treat-page {
    position: relative;
    z-index: 1;
    color: #1a1a1a;
    padding-top: clamp(120px, 18vh, 180px);
    padding-bottom: clamp(64px, 10vw, 120px);
}

.treat-head {
    margin-bottom: clamp(34px, 5vw, 52px);
}

.treat-title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.1;
    color: #141414;
    margin: 0 0 16px;
}

.treat-title em {
    font-style: italic;
    color: var(--color-accent);
}

.treat-intro {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    line-height: 1.7;
    color: rgba(20, 20, 20, 0.7);
}

.tabs {
    display: flex;
    gap: clamp(18px, 3vw, 36px);
    margin-bottom: clamp(30px, 4vw, 46px);
    border-bottom: 1px solid rgba(20, 20, 20, 0.12);
    overflow-x: auto;
    scrollbar-width: none;
}

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

.tab {
    position: relative;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 10px 18px;
    border-radius: 6px 6px 0 0;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    color: rgba(20, 20, 20, 0.45);
    cursor: pointer;
    white-space: nowrap;
    transition: color 0.25s ease, background 0.25s ease;
}

.tab::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.tab:hover {
    color: #141414;
}

.tab.active {
    background: var(--color-bg);
    color: #f5f0e8;
}

.tab.active::after {
    width: 100%;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: tabFade 0.45s ease;
}

@keyframes tabFade {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.tab-desc {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(20, 20, 20, 0.72);
    margin: 0 0 clamp(24px, 3vw, 34px);
}

.price-list {
    list-style: none;
    width: 100%;
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}

.pl-name {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    color: #141414;
}

.pl-dur {
    display: block;
    margin-top: 3px;
    font-size: 0.88rem;
    color: rgba(20, 20, 20, 0.5);
}

.pl-price {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
    color: var(--color-accent);
    white-space: nowrap;
}

.price-cat {
    list-style: none;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 1.9vw, 1.55rem);
    color: var(--color-accent);
    margin: clamp(40px, 5vw, 60px) 0 4px;
}

.price-row.price-main {
    margin-top: clamp(24px, 3.5vw, 38px);
    border-bottom-color: rgba(20, 20, 20, 0.18);
}

.price-list > li:first-child {
    margin-top: 0;
}

.price-cat + .price-main,
.price-cat + .price-row {
    margin-top: 8px;
}

.price-row.price-sub {
    padding-top: 11px;
    padding-bottom: 11px;
}

.price-sub .pl-name {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(20, 20, 20, 0.6);
    padding-left: 16px;
}

.price-sub .pl-price {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(20, 20, 20, 0.7);
}

.price-note {
    margin-top: clamp(22px, 3vw, 30px);
    font-size: 0.9rem;
    color: rgba(20, 20, 20, 0.5);
}

.final-cta {
    position: relative;
    overflow: hidden;
    background: var(--color-accent);
    color: #141414;
    padding: clamp(48px, 7vw, 84px) 0;
    text-align: center;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(20, 20, 20, 0.12) 1.2px, transparent 1.4px);
    background-size: 16px 16px;
    pointer-events: none;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(14px, 2vw, 20px);
}

.final-cta-contact {
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    line-height: 1.6;
    color: #141414;
    margin: 0;
}

.final-cta-contact a {
    color: #141414;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity 0.2s ease;
}

.final-cta-contact a:hover {
    opacity: 0.65;
}

.final-cta-title {
    font-size: clamp(1.6rem, 2.8vw, 2.6rem);
    line-height: 1.2;
    color: #141414;
    margin: 0;
}

.cta-link {
    flex-shrink: 0;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    color: #141414;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 1px;
}

.cta-arrow {
    width: clamp(24px, 3vw, 32px);
    height: auto;
    transition: transform 0.3s ease;
}

.cta-link:hover .cta-arrow {
    transform: translateX(6px);
}

.faq {
    background: #faf8f5;
    color: #1a1a1a;
    padding: clamp(64px, 10vw, 120px) 0;
}

.faq-title {
    font-size: clamp(2rem, 4.6vw, 3.85rem);
    color: #141414;
    text-align: left;
    margin-bottom: clamp(36px, 5vw, 56px);
}

.faq-list {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid rgba(20, 20, 20, 0.12);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(20px, 2.5vw, 28px) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    color: #141414;
    transition: color 0.25s ease;
}

.faq-q:hover {
    color: var(--color-accent);
}

.faq-icon {
    flex-shrink: 0;
    display: flex;
    color: var(--color-accent);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.faq-item.open .faq-a {
    max-height: 600px;
}

.faq-a p {
    padding-bottom: clamp(20px, 2.5vw, 28px);
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(20, 20, 20, 0.68);
    max-width: 90%;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.about-content .reveal:nth-child(1).in-view { transition-delay: 0.05s; }
.about-content .reveal:nth-child(2).in-view { transition-delay: 0.15s; }
.about-content .reveal:nth-child(3).in-view { transition-delay: 0.25s; }
.about-content .reveal:nth-child(4).in-view { transition-delay: 0.35s; }
.about-content .reveal:nth-child(5).in-view { transition-delay: 0.45s; }

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .about-text {
        max-width: 100%;
    }

    .about-title {
        font-size: clamp(1.75rem, 8vw, 2.4rem);
    }

    .gallery-item img {
        height: clamp(180px, 34vh, 300px);
    }
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(2, 4, 6, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

h1, h2, h3, h4,
.hero-title,
.section-title {
    font-family: var(--font-heading);
}

.hero-title {
    font-size: clamp(2.75rem, 7vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-title .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    padding-bottom: 0.12em;
    margin-bottom: -0.12em;
}

.hero-title .word-inner {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

body:not(.loading) .hero-title .word-inner {
    transform: translateY(0);
}

body:not(.loading) .hero-title .word:nth-child(1) .word-inner { transition-delay: 0.30s; }
body:not(.loading) .hero-title .word:nth-child(2) .word-inner { transition-delay: 0.42s; }
body:not(.loading) .hero-title .word:nth-child(3) .word-inner { transition-delay: 0.54s; }
body:not(.loading) .hero-title .word:nth-child(4) .word-inner { transition-delay: 0.66s; }

.hero-lead {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: rgba(245, 240, 232, 0.85);
    max-width: 560px;
    margin: 0 auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

.btn {
    display: inline-block;
    padding: 14px 44px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: transform 0.25s ease, filter 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
    background: var(--color-accent);
    color: #1a1a1a;
}

.btn-primary:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.hero-content {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.9s ease 0.25s, transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

body:not(.loading) .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.section {
    padding: clamp(50px, 8vw, 100px) 0;
    border-top: 1px solid var(--color-line);
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 24px;
}

.error-page {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #faf8f5;
    color: #1a1a1a;
    padding: clamp(40px, 8vw, 80px) 0;
}

.error-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 12%, rgba(207, 164, 93, 0.3), transparent 40%),
        radial-gradient(circle at 12% 88%, rgba(207, 164, 93, 0.22), transparent 42%);
    pointer-events: none;
    z-index: 0;
}

.error-page::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.16;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 0;
}

.error-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.error-logo img {
    height: 54px;
    width: auto;
    margin: 0 auto 36px;
}

.error-spark {
    display: block;
    width: clamp(34px, 5vw, 48px);
    margin: 0 auto 18px;
    color: var(--color-accent);
    animation: spinSlow 11s linear infinite;
}

.error-code {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(5.5rem, 20vw, 12rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: #141414;
    margin: 0;
}

.error-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    color: #141414;
    margin: 8px 0 16px;
}

.error-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(20, 20, 20, 0.65);
    margin: 0 auto 34px;
    max-width: 420px;
}

.error-page .cta-link {
    color: var(--color-accent);
    justify-content: center;
}

.legal-header {
    background: var(--color-bg);
    border-bottom: 1px solid rgba(207, 164, 93, 0.2);
}

.legal-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.legal-back {
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    color: rgba(245, 240, 232, 0.7);
    transition: color 0.2s ease;
}

.legal-back:hover {
    color: var(--color-accent);
}

.legal {
    background: #faf8f5;
    color: #1a1a1a;
    padding-top: clamp(120px, 16vw, 180px);
    padding-bottom: clamp(60px, 9vw, 110px);
}

.legal-inner {
    max-width: 820px;
}

.legal h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: #141414;
    margin-bottom: 6px;
}

.legal-updated {
    font-size: 0.9rem;
    color: rgba(20, 20, 20, 0.55);
    margin-bottom: clamp(32px, 5vw, 48px);
}

.legal h2 {
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    color: #141414;
    margin: clamp(30px, 4vw, 44px) 0 12px;
}

.legal p,
.legal li {
    font-size: 1rem;
    line-height: 1.78;
    color: rgba(20, 20, 20, 0.75);
}

.legal p {
    margin-bottom: 12px;
}

.legal ul {
    padding-left: 20px;
    margin: 8px 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.legal a {
    color: var(--color-accent);
    text-decoration: underline;
}

.legal strong {
    color: #141414;
}

.site-footer {
    background: var(--color-bg);
    color: rgba(245, 240, 232, 0.7);
    padding-top: clamp(56px, 8vw, 90px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: clamp(36px, 5vw, 70px);
    padding-bottom: clamp(40px, 5vw, 60px);
}

.footer-logo {
    height: 52px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(245, 240, 232, 0.6);
    max-width: 360px;
}

.footer-socials {
    display: flex;
    gap: 14px;
    margin-top: 22px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #ffffff;
    transition: filter 0.25s ease, transform 0.25s ease;
}

.footer-socials a:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: #f5f0e8;
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 8px 16px;
    flex-wrap: wrap;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.45);
}

.footer-credit {
    color: rgba(245, 240, 232, 0.45);
}

.footer-legal {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-legal a {
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.45);
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.menu-toggle {
    display: flex;
}

.main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    padding-top: 120px;
    height: 100vh;
    height: 100dvh;
    background: rgba(2, 4, 6, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0s linear 0.35s;
    z-index: 90;
}

.main-nav.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0s;
    animation: panelRoll 0.55s cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes panelRoll {
    from { clip-path: inset(0 0 100% 0); }
    to   { clip-path: inset(0 0 0 0); }
}

.main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.main-nav ul li {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-nav.open ul li {
    opacity: 1;
    transform: translateY(0);
}

.main-nav.open ul li:nth-child(1) { transition-delay: 0.15s; }
.main-nav.open ul li:nth-child(2) { transition-delay: 0.23s; }
.main-nav.open ul li:nth-child(3) { transition-delay: 0.31s; }
.main-nav.open ul li:nth-child(4) { transition-delay: 0.39s; }

.nav-link {
    position: relative;
    display: block;
    padding: 12px 24px;
    font-size: 2rem;
    text-align: center;
    color: #ffffff;
}

.nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.sub-toggle {
    background: none;
    border: none;
    padding: 8px;
    color: var(--color-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: transform 0.35s ease;
}

.has-sub.open-sub .sub-toggle {
    transform: rotate(180deg);
}

.sub-menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    text-align: center;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.has-sub.open-sub .sub-menu {
    max-height: 120px;
    opacity: 1;
}

.nav-sublink {
    display: inline-block;
    padding: 8px 24px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-accent);
    transition: opacity 0.2s ease;
}

.nav-sublink:hover {
    opacity: 0.7;
}

@media (min-width: 769px) {
    .nav-link {
        font-size: 2.75rem;
        padding: 14px 24px;
    }
}

.nav-socials {
    display: flex;
    gap: 28px;
    margin-top: 32px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-nav.open .nav-socials {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.47s;
}

.nav-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px;
    color: #ffffff;
    background: var(--color-accent);
    border-radius: 999px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.nav-socials a:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.nav-address {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: var(--color-muted);
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease;
}

.nav-address:hover {
    color: var(--color-accent);
}

.main-nav.open .nav-address {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.55s;
}

.menu-toggle.active .menu-bars span:nth-child(1) {
    transform: translateY(5px);
}
.menu-toggle.active .menu-bars span:nth-child(2) {
    transform: translateY(-5px);
}

.form-status {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 200;
    width: calc(100% - 40px);
    max-width: 380px;
    margin: 0;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.55;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-status.show {
    opacity: 1;
    transform: translateY(0);
}

.form-status.success {
    background: #fdf6ea;
    border: 1px solid #cfa45d;
    color: #141414;
}

.form-status.error {
    background: #fbecec;
    border: 1px solid #d98a8a;
    color: #8a2b2b;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .logo-img {
        height: 44px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
