/* ===========================================
   RESET
=========================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--c-black);
    background-color: var(--c-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    appearance: none;
}

ul, ol {
    list-style: none;
}

select {
    font-family: inherit;
}

input, select, textarea {
    appearance: none;
    -webkit-appearance: none;
}

/* ===========================================
   CSS CUSTOM PROPERTIES
=========================================== */

:root {
    /* — Colors — */
    --c-cream:    #FAF7F4;
    --c-black:    #2B2622;
    --c-gold:     #C9A961;
    --c-divider:  #ECE6DF;
    --c-dark:     #1C1916;
    --c-white:    #FFFFFF;
    --c-muted:    #9A8E85;
    --c-surface:  #F3EDE6;
    --c-rose:     #D4A5A0;
    --c-petal:    #F4EDEB;

    /* — Easing — */
    --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth:  cubic-bezier(0.76, 0, 0.24, 1);

    /* — Spacing — */
    --section-py:    140px;
    --container-px:  48px;
    --section-gap:   64px;

    /* — Border radius — */
    --r-sm:   10px;
    --r-md:   18px;
    --r-lg:   28px;
    --r-xl:   40px;
    --r-pill: 100px;

    /* — Shadows — */
    --shadow-sm:    0 4px 16px rgba(43, 38, 34, 0.05);
    --shadow-card:  0 16px 48px rgba(43, 38, 34, 0.07);
    --shadow-hover: 0 28px 72px rgba(43, 38, 34, 0.13);
    --shadow-nav:   0 8px 40px rgba(43, 38, 34, 0.10);

    /* — Z-index layers — */
    --z-header:  100;
    --z-mobile:   90;
    --z-modal:   200;
}

@media (max-width: 767px) {
    :root {
        --section-py:   80px;
        --container-px: 20px;
        --section-gap:  48px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    :root {
        --section-py:   100px;
        --container-px: 32px;
    }
}

/* ===========================================
   TYPOGRAPHY
=========================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.08;
    color: var(--c-black);
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(40px, 7.5vw, 112px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.0;
    color: var(--c-black);
}

.section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 500;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

.section-title--light {
    color: var(--c-white);
}

/* Eyebrow pill tag */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--c-gold);
    background: rgba(201, 169, 97, 0.10);
    border: 1px solid rgba(201, 169, 97, 0.22);
    padding: 7px 16px;
    border-radius: var(--r-pill);
    margin-bottom: 22px;
}

.eyebrow::before {
    content: '✦';
    font-size: 8px;
    flex-shrink: 0;
    letter-spacing: 0;
    opacity: 0.75;
}

.eyebrow--light {
    color: rgba(201, 169, 97, 0.9);
    background: rgba(201, 169, 97, 0.08);
    border-color: rgba(201, 169, 97, 0.18);
}

/* ===========================================
   LAYOUT UTILITIES
=========================================== */

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 var(--container-px);
    position: relative;
    z-index: 1;
}

/* ===========================================
   SECTION FLORAL DECORATIONS
=========================================== */

.features, .services, .masters,
.reviews, .contact, .booking, .footer {
    position: relative;
}

.sflr {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.sflr svg {
    display: block;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(201,169,97,0.12));
}

.sflr-a { animation: fl-a 8s ease-in-out infinite; }
.sflr-b { animation: fl-b 10s ease-in-out infinite; }

/* ---- Glow blobs ---- */
.g-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
    animation: blob-pulse var(--bd, 7s) var(--bdelay, 0s) ease-in-out infinite;
}

@keyframes blob-pulse {
    0%, 100% { opacity: var(--bop, 0.28); transform: scale(1); }
    50%       { opacity: calc(var(--bop, 0.28) * 1.35); transform: scale(1.1); }
}

/* ---- Section sparkles ---- */
.sspr {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    font-size: var(--sz, 13px);
    color: var(--sc, #C9A961);
    left: var(--sx);
    top:  var(--sy);
    opacity: 0;
    animation: sparkle-blink var(--sdur, 5s) var(--sd, 0s) ease-in-out infinite;
}

/* ---- Floating diamonds ---- */
.sdmd {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    font-size: var(--dmsz, 10px);
    color: var(--dmc, #C9A961);
    left: var(--dmx);
    top:  var(--dmy);
    opacity: 0;
    animation: dmd-float var(--dmdur, 6s) var(--dmd, 0s) ease-in-out infinite;
}

@keyframes dmd-float {
    0%, 100% { opacity: 0;    transform: translateY(0)   rotate(0deg)   scale(0.5); }
    20%, 80% { opacity: var(--dmop, 0.6); }
    50%      { opacity: var(--dmop, 0.6); transform: translateY(-10px) rotate(45deg)  scale(1); }
}

@media (max-width: 767px) {
    .sflr, .sspr, .sdmd { display: none; }
}

.section-header {
    margin-bottom: var(--section-gap);
}

/* ===========================================
   LOGO
=========================================== */

.logo {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--c-black);
    display: inline-flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-dot {
    color: var(--c-gold);
}

.logo--footer {
    color: var(--c-white);
    font-size: 20px;
}

/* ===========================================
   BUTTONS
=========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 18px 36px;
    border-radius: var(--r-pill);
    border: 1.5px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    transition:
        transform 0.45s var(--ease-spring),
        background-color 0.3s var(--ease-out),
        color 0.3s var(--ease-out),
        border-color 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out);
    will-change: transform;
    user-select: none;
}

.btn:active {
    transform: scale(0.97);
    transition-duration: 0.12s;
}

/* Primary */
.btn-primary {
    background-color: var(--c-black);
    color: var(--c-white);
    border-color: var(--c-black);
}

.btn-primary:hover {
    transform: scale(1.025);
    box-shadow: 0 14px 44px rgba(43, 38, 34, 0.22);
}

/* Secondary */
.btn-secondary {
    background-color: transparent;
    color: var(--c-black);
    border-color: var(--c-black);
}

.btn-secondary:hover {
    transform: scale(1.025);
    background-color: var(--c-black);
    color: var(--c-white);
}

/* Size variants */
.btn-sm {
    padding: 11px 22px;
    font-size: 13px;
    gap: 8px;
}

.btn-large {
    padding: 22px 52px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* Button icon: nested circular wrapper */
.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    flex-shrink: 0;
    transition: transform 0.45s var(--ease-spring);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-secondary .btn-icon {
    background: rgba(43, 38, 34, 0.07);
}

.btn-secondary:hover .btn-icon {
    background: rgba(255, 255, 255, 0.14);
}

/* ===========================================
   SCROLL REVEAL — base state
=========================================== */

[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    filter: blur(3px);
    transition:
        opacity  0.85s var(--ease-out),
        transform 0.85s var(--ease-out),
        filter   0.85s var(--ease-out);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Stagger for sibling reveals */
[data-reveal]:nth-child(2) { transition-delay: 0.08s; }
[data-reveal]:nth-child(3) { transition-delay: 0.16s; }
[data-reveal]:nth-child(4) { transition-delay: 0.24s; }
[data-reveal]:nth-child(5) { transition-delay: 0.32s; }
[data-reveal]:nth-child(6) { transition-delay: 0.40s; }

/* ===========================================
   HEADER
=========================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    padding: 18px var(--container-px);
    pointer-events: none;
}

.header-pill {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 920px;
    margin: 0 auto;
    padding: 10px 10px 10px 24px;
    background: rgba(250, 247, 244, 0.72);
    border: 1px solid rgba(236, 230, 223, 0.7);
    border-radius: var(--r-pill);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-nav);
    pointer-events: all;
    transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.site-header.scrolled .header-pill {
    background: rgba(250, 247, 244, 0.96);
    box-shadow: 0 8px 48px rgba(43, 38, 34, 0.14);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    margin-right: 12px;
}

.nav-link {
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--c-black);
    padding: 7px 14px;
    border-radius: var(--r-pill);
    transition:
        background 0.25s var(--ease-out),
        color 0.25s var(--ease-out);
}

.nav-link:hover,
.nav-link--active {
    background: rgba(43, 38, 34, 0.06);
}

.header-cta {
    margin-left: 0;
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-black);
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}

.hamburger-line {
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--c-white);
    border-radius: 2px;
    position: absolute;
    transition:
        transform 0.4s var(--ease-spring),
        opacity 0.25s var(--ease-out);
}

.hamburger-line:first-child  { transform: translateY(-3.5px); }
.hamburger-line:last-child   { transform: translateY(3.5px); }

.hamburger.is-open .hamburger-line:first-child {
    transform: rotate(45deg);
}
.hamburger.is-open .hamburger-line:last-child {
    transform: rotate(-45deg);
}

/* ===========================================
   MOBILE NAV OVERLAY
=========================================== */

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: var(--z-mobile);
    background: rgba(28, 25, 22, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.4s var(--ease-out),
        visibility 0.4s;
}

.mobile-nav.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 500;
    color: var(--c-white);
    letter-spacing: -0.02em;
    padding: 8px 20px;
    border-radius: var(--r-md);
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.5s var(--ease-out),
        transform 0.5s var(--ease-spring),
        background 0.25s var(--ease-out);
}

.mobile-nav.is-open .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.is-open .mobile-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav.is-open .mobile-nav-link:nth-child(5) { transition-delay: 0.25s; }

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
}

.mobile-nav-cta {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.5s var(--ease-out) 0.3s,
        transform 0.5s var(--ease-spring) 0.3s;
}

.mobile-nav.is-open .mobile-nav-cta {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out) 0.35s;
}

.mobile-nav.is-open .mobile-nav-meta {
    opacity: 1;
}

/* ===========================================
   HERO
=========================================== */

.hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100dvh;
    padding: 140px var(--container-px) 80px;
    background: var(--c-cream);
    text-align: center;
}

.hero-text {
    max-width: 960px;
    width: 100%;
}

.hero-text .eyebrow {
    margin-bottom: 32px;
}

.hero-title {
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.65;
    color: var(--c-muted);
    max-width: 600px;
    margin: 0 auto 48px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 22px 28px;
    background: var(--c-surface);
    border-radius: var(--r-lg);
    border: 1px solid var(--c-divider);
    width: fit-content;
    margin: 0 auto;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 0 24px;
}

.hero-stat:first-child {
    padding-left: 0;
}

.hero-stat:last-child {
    padding-right: 0;
}

.hero-stat-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--c-black);
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: var(--c-muted);
    font-weight: 500;
    white-space: nowrap;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--c-divider);
    flex-shrink: 0;
}


/* ===========================================
   HERO — FLORAL DECORATIONS + PARALLAX
=========================================== */

.flr {
    position: absolute;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.flr-inner {
    width: 100%;
    height: 100%;
}

.flr svg {
    display: block;
    filter: drop-shadow(0 4px 16px rgba(201,169,97,0.15));
}

/* Позиции и размеры каждого цветка */
.flr-1 { top:  0;    right:  0;   width: 320px; height: 320px; }
.flr-2 { top:  8%;   left:   0;   width: 230px; height: 230px; }
.flr-3 { bottom: 2%; right:  4%;  width: 185px; height: 185px; }
.flr-4 { top:  35%;  left:  3%;   width: 125px; height: 125px; }
.flr-5 { top:  12%;  right: 20%;  width:  88px; height:  88px; }

/* Плавающие анимации (на .flr-inner чтобы не конфликтовать с JS parallax) */
.flr-1 .flr-inner { animation: fl-a 8s ease-in-out infinite; }
.flr-2 .flr-inner { animation: fl-b 10s ease-in-out 1.5s infinite; }
.flr-3 .flr-inner { animation: fl-a 7s ease-in-out 0.8s infinite; }
.flr-4 .flr-inner { animation: fl-b 9s ease-in-out 2.2s infinite; }
.flr-5 .flr-inner { animation: fl-a 6s ease-in-out 1.1s infinite; }

@keyframes fl-a {
    0%, 100% { transform: translateY(0)    rotate(0deg); }
    50%       { transform: translateY(-18px) rotate(7deg); }
}
@keyframes fl-b {
    0%, 100% { transform: translateY(0)    rotate(0deg); }
    50%       { transform: translateY(-12px) rotate(-5deg); }
}

.hero-sparkle {
    position: absolute;
    pointer-events: none;
    user-select: none;
    font-size: 14px;
    color: var(--c-gold);
    opacity: 0;
    left: var(--x);
    top:  var(--y);
    animation: sparkle-blink 4s var(--d, 0s) ease-in-out infinite;
    z-index: 1;
}

@keyframes sparkle-blink {
    0%, 100% { opacity: 0;   transform: scale(0.4) rotate(0deg); }
    45%, 55% { opacity: 0.55; transform: scale(1)   rotate(25deg); }
}

/* ===========================================
   FEATURES
=========================================== */

.features {
    padding: var(--section-py) 0;
}

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

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Double-bezel card architecture */
.feature-card {
    display: flex;
    flex-direction: column;
}

.feature-card-shell {
    padding: 2px;
    border-radius: var(--r-xl);
    background: var(--c-surface);
    border: 1px solid var(--c-divider);
    flex: 1;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.5s var(--ease-spring),
        box-shadow 0.5s var(--ease-out);
}

.feature-card:hover .feature-card-shell {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-card-core {
    background: var(--c-white);
    border-radius: calc(var(--r-xl) - 2px);
    padding: 44px 40px;
    flex: 1;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.feature-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--c-black);
    margin-bottom: 14px;
    line-height: 1.25;
}

.feature-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--c-muted);
}


/* ===========================================
   SERVICES
=========================================== */

.services {
    padding: var(--section-py) 0;
    background: var(--c-cream);
}

.services-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 48px;
    padding: 6px;
    background: var(--c-surface);
    border: 1px solid var(--c-divider);
    border-radius: var(--r-pill);
    width: fit-content;
}

.tab-btn {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-muted);
    padding: 10px 22px;
    border-radius: var(--r-pill);
    border: none;
    background: transparent;
    cursor: pointer;
    transition:
        background 0.3s var(--ease-out),
        color 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out);
    white-space: nowrap;
}

.tab-btn.active {
    background: var(--c-white);
    color: var(--c-black);
    box-shadow: 0 2px 12px rgba(43, 38, 34, 0.09);
}

.tab-btn:not(.active):hover {
    color: var(--c-black);
    background: rgba(255, 255, 255, 0.5);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: tabFadeIn 0.4s var(--ease-out) both;
}

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

.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 12px;
    margin: 0 -12px;
    border-bottom: 1px solid var(--c-divider);
    transition:
        background 0.25s var(--ease-out),
        border-color 0.25s var(--ease-out),
        border-radius 0.25s var(--ease-out);
}

.service-row:first-child {
    border-top: 1px solid var(--c-divider);
}

.service-row:hover {
    background: var(--c-surface);
    border-radius: var(--r-sm);
    border-bottom-color: transparent;
}

.service-name-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--c-black);
}

.service-duration {
    font-size: 12px;
    color: var(--c-muted);
    background: var(--c-surface);
    border: 1px solid var(--c-divider);
    padding: 3px 10px;
    border-radius: var(--r-pill);
    white-space: nowrap;
}

.service-price {
    font-family: 'Unbounded', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--c-black);
    white-space: nowrap;
    flex-shrink: 0;
}

.services-disclaimer {
    margin-top: 28px;
    font-size: 13px;
    color: var(--c-muted);
}

/* ===========================================
   MASTERS
=========================================== */

.masters {
    padding: var(--section-py) 0;
    background: var(--c-surface);
}

.masters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: start;
}

/* Double-bezel master card */
.master-shell {
    padding: 2px;
    border-radius: var(--r-xl);
    background: var(--c-divider);
    border: 1px solid var(--c-divider);
    transition:
        transform 0.5s var(--ease-spring),
        box-shadow 0.5s var(--ease-out);
}

.master-card:hover .master-shell {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.master-core {
    background: var(--c-white);
    border-radius: calc(var(--r-xl) - 2px);
    overflow: hidden;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.95);
}

.master-photo-wrap {
    width: 100%;
    overflow: hidden;
}

.master-photo-wrap {
    aspect-ratio: 3 / 3.8;
}

.master-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s var(--ease-out);
}

.master-card:hover .master-photo-wrap img {
    transform: scale(1.04);
}

.master-info {
    padding: 28px 28px 32px;
}

.master-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-gold);
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.2);
    padding: 5px 12px;
    border-radius: var(--r-pill);
    margin-bottom: 14px;
}

.master-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--c-black);
    margin-bottom: 6px;
    line-height: 1.2;
}

.master-spec {
    font-size: 13px;
    color: var(--c-muted);
    margin-bottom: 14px;
    font-weight: 500;
}

.master-bio {
    font-size: 14px;
    line-height: 1.6;
    color: var(--c-muted);
    margin-bottom: 20px;
}

.master-years {
    display: inline-block;
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--c-black);
    background: var(--c-surface);
    border: 1px solid var(--c-divider);
    padding: 6px 14px;
    border-radius: var(--r-pill);
    letter-spacing: -0.01em;
}

/* ===========================================
   GALLERY
=========================================== */

.gallery {
    padding: var(--section-py) 0;
    background: var(--c-dark);
    overflow: hidden;
}

.gallery-header {
    margin-bottom: 48px;
}

.gallery-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.gallery-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 260px;
    line-height: 1.5;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.gallery-swiper {
    padding: 0 var(--container-px);
    overflow: visible;
}

.gallery-swiper .swiper-slide {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    max-width: 340px;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.gallery-swiper .swiper-slide:hover img {
    transform: scale(1.05);
}

/* ===========================================
   REVIEWS
=========================================== */

.reviews {
    padding: var(--section-py) 0;
    background: var(--c-dark);
}

.reviews .section-header {
    margin-bottom: 52px;
}

.reviews-swiper .swiper-wrapper {
    align-items: stretch;
}

.reviews-swiper .swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}

.review-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-xl);
    padding: 36px 36px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition:
        background 0.35s var(--ease-out),
        border-color 0.35s var(--ease-out),
        transform 0.5s var(--ease-spring);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.13);
    transform: translateY(-5px);
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.review-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.review-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--c-white);
}

.review-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.reviews-pagination {
    margin-top: 36px !important;
    display: flex;
    justify-content: flex-start !important;
}

.reviews-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
    transition: background 0.3s var(--ease-out), width 0.4s var(--ease-spring);
    border-radius: 3px;
}

.reviews-pagination .swiper-pagination-bullet-active {
    background: var(--c-gold);
    width: 24px;
}

/* ===========================================
   CONTACT
=========================================== */

.contact {
    padding: var(--section-py) 0;
    background: var(--c-cream);
}

.contact-grid {
    margin-bottom: 64px;
}

.contact-info .eyebrow {
    margin-bottom: 22px;
}

.contact-info .section-title {
    margin-bottom: 28px;
}

.contact-list {
    display: flex;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: var(--r-md);
    background: rgba(201, 169, 97, 0.09);
    border: 1px solid rgba(201, 169, 97, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 5px;
}

.contact-value {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--c-black);
    line-height: 1.5;
}

.contact-link {
    transition: color 0.25s var(--ease-out);
}

.contact-link:hover {
    color: var(--c-gold);
}

.contact-map-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-black);
    background: var(--c-surface);
    border: 1px solid var(--c-divider);
    padding: 10px 18px;
    border-radius: var(--r-pill);
    transition:
        background 0.3s var(--ease-out),
        border-color 0.3s var(--ease-out),
        transform 0.4s var(--ease-spring);
}

.map-link:hover {
    background: var(--c-black);
    color: var(--c-white);
    border-color: var(--c-black);
    transform: translateY(-2px);
}


.contact-cta {
    display: flex;
    justify-content: center;
    padding-top: 16px;
}

/* ===========================================
   BOOKING
=========================================== */

.booking {
    padding: var(--section-py) 0;
    background: var(--c-surface);
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.booking-intro .section-title {
    margin-bottom: 20px;
}

.booking-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--c-muted);
    margin-bottom: 36px;
    max-width: 380px;
}

.booking-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.booking-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--c-black);
    font-weight: 500;
}

.booking-perks li svg {
    flex-shrink: 0;
}

/* Form double-bezel */
.booking-form-shell {
    padding: 3px;
    border-radius: var(--r-xl);
    background: var(--c-divider);
    border: 1px solid var(--c-divider);
    box-shadow: var(--shadow-card);
}

.booking-form-core {
    background: var(--c-white);
    border-radius: calc(var(--r-xl) - 3px);
    padding: 44px 40px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

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

.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-black);
    letter-spacing: 0.01em;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 14px 18px;
    background: var(--c-surface);
    border: 1.5px solid var(--c-divider);
    border-radius: var(--r-md);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--c-black);
    outline: none;
    transition:
        border-color 0.3s var(--ease-out),
        box-shadow 0.3s var(--ease-out),
        background 0.3s var(--ease-out);
}

.form-field input::placeholder {
    color: var(--c-muted);
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--c-black);
    background: var(--c-white);
    box-shadow: 0 0 0 4px rgba(43, 38, 34, 0.06);
}

.select-wrap {
    position: relative;
}

.select-wrap select {
    padding-right: 44px;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.time-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.time-pill {
    cursor: pointer;
}

.time-pill input[type="radio"] {
    display: none;
}

.time-pill span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-muted);
    background: var(--c-surface);
    border: 1.5px solid var(--c-divider);
    padding: 10px 18px;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition:
        background 0.3s var(--ease-out),
        color 0.3s var(--ease-out),
        border-color 0.3s var(--ease-out),
        transform 0.4s var(--ease-spring);
    white-space: nowrap;
}

.time-pill input:checked + span {
    background: var(--c-black);
    color: var(--c-white);
    border-color: var(--c-black);
}

.time-pill:hover span {
    transform: translateY(-2px);
    border-color: rgba(43, 38, 34, 0.3);
    color: var(--c-black);
}

.form-disclaimer {
    font-size: 12px;
    color: var(--c-muted);
    text-align: center;
    line-height: 1.5;
}

.form-disclaimer a {
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s var(--ease-out);
}

.form-disclaimer a:hover {
    color: var(--c-black);
}

/* ===========================================
   FOOTER
=========================================== */

.footer {
    background: var(--c-dark);
    padding: 72px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 32px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 16px;
    max-width: 240px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 4px;
}

.footer-nav a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.25s var(--ease-out);
}

.footer-nav a:hover {
    color: var(--c-white);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 4px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    padding: 10px 14px;
    border-radius: var(--r-md);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition:
        background 0.3s var(--ease-out),
        color 0.3s var(--ease-out),
        border-color 0.3s var(--ease-out),
        transform 0.4s var(--ease-spring);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--c-white);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.28);
    transition: color 0.25s var(--ease-out);
    text-underline-offset: 3px;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
}

/* ===========================================
   MODAL
=========================================== */

.modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal[hidden] {
    display: none;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(28, 25, 22, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal-card {
    position: relative;
    z-index: 1;
    background: var(--c-white);
    border-radius: var(--r-xl);
    padding: 52px 48px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.3);
    animation: modalIn 0.5s var(--ease-spring) both;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.88) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: var(--c-black);
    margin-bottom: 14px;
}

.modal-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-muted);
    margin-bottom: 36px;
}

/* ===========================================
   RESPONSIVE — TABLET 768-1023
=========================================== */

@media (max-width: 1023px) {

    .nav-links,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .hero {
        flex-direction: column;
        min-height: 100dvh;
    }

    .hero-content {
        width: 100%;
        padding: 130px 32px 60px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat {
        padding: 0 16px;
    }

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

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ===========================================
   RESPONSIVE — MOBILE < 768
=========================================== */

@media (max-width: 767px) {

    :root {
        --section-py:   72px;
        --container-px: 18px;
        --section-gap:  44px;
    }

    /* ---- Header ---- */
    .site-header {
        padding: 12px 16px;
    }

    .header-pill {
        padding: 8px 8px 8px 18px;
        border-radius: var(--r-xl);
    }

    .nav-links,
    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    /* ---- Hero ---- */
    .hero-content {
        padding: 96px var(--container-px) 56px;
        background: linear-gradient(155deg, #FAF7F4 0%, #F4EDEB 55%, #EFE5E0 100%);
    }

    .flr { display: none; }

    /* Show sparkles on mobile — positioned within hero-content */
    .hero-sparkle {
        display: block;
        font-size: 11px;
    }

    .hero-title {
        font-size: clamp(32px, 10.5vw, 44px);
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    /* Stats → compact 3-column grid */
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        padding: 0;
        gap: 0;
        align-items: stretch;
    }

    .hero-stat {
        flex-direction: column;
        padding: 14px 8px;
        align-items: center;
        justify-content: center;
        gap: 4px;
        text-align: center;
        border-right: 1px solid var(--c-divider);
    }

    .hero-stat:last-child {
        border-right: none;
    }

    .hero-stat-num {
        font-size: 20px;
    }

    .hero-stat-label {
        font-size: 10px;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }

    .hero-stat-divider {
        display: none;
    }

    /* ---- Section headers — centered on mobile ---- */
    .section-header {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section-title br {
        display: none;
    }

    /* ---- Features ---- */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Horizontal card layout: icon left, text right */
    .feature-card-core {
        display: grid;
        grid-template-columns: 44px 1fr;
        grid-template-rows: auto auto;
        column-gap: 16px;
        row-gap: 5px;
        padding: 20px 18px;
        align-items: start;
    }

    .feature-icon {
        grid-column: 1;
        grid-row: 1 / 3;
        width: 44px;
        height: 44px;
        margin-bottom: 0;
        align-self: start;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .feature-title {
        grid-column: 2;
        grid-row: 1;
        font-size: 15px;
        margin-bottom: 0;
        align-self: end;
    }

    .feature-text {
        grid-column: 2;
        grid-row: 2;
        font-size: 13px;
        align-self: start;
    }

    /* ---- Services ---- */
    .services-tabs {
        flex-wrap: wrap;
        width: 100%;
        border-radius: var(--r-lg);
    }

    .tab-btn {
        flex: 1;
        min-width: calc(50% - 3px);
        text-align: center;
        font-size: 13px;
        padding: 10px 14px;
    }

    /* ---- Masters — 2 columns ---- */
    .masters-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .master-photo-wrap {
        aspect-ratio: 3 / 3.6;
    }

    .master-info {
        padding: 16px 16px 20px;
    }

    .master-name {
        font-size: 15px;
    }

    .master-bio {
        display: none;
    }

    /* ---- Gallery ---- */
    .gallery-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }


    .contact-info .section-title {
        margin-bottom: 36px;
    }

    /* ---- Booking ---- */
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .booking-form-core {
        padding: 28px 20px;
    }

    .time-pills {
        flex-wrap: wrap;
        gap: 8px;
    }

    .time-pill span {
        padding: 9px 14px;
        font-size: 13px;
    }

    /* ---- Footer ---- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    /* ---- Modal ---- */
    .modal-card {
        padding: 36px 22px;
    }

    .modal-title {
        font-size: 22px;
    }

    /* ---- Touch targets ---- */
    .btn {
        min-height: 48px;
    }

    .map-link {
        min-height: 44px;
    }

    /* ---- Decorations on mobile ----
       Blobs visible (sections clip overflow),
       heavy SVG flowers / sparkles hidden
    ---- */
    .sflr, .sspr, .sdmd {
        display: none;
    }

    .features, .services, .masters,
    .reviews, .contact, .booking, .footer {
        overflow: hidden;
    }

    .g-blob {
        display: block;
        filter: blur(55px);
        opacity: 0.18;
        animation: none;
        transform: scale(0.65);
        transform-origin: center center;
    }
}
