/* ============================================================
   KLINIKA PETRYKOWSKI — light quiet luxury
   Ivory · Champagne · Soft Beige · (Bronze as accent)
   ============================================================ */

:root {
    --paper: #FFFFFF;
    --cream: #F4EBD9;
    --ivory: #FBF8F1;
    --sand: #EFE7D8;
    --sand-2: #E7DCC8;
    --gold: #B89254;
    --gold-deep: #99793C;
    --gold-deep: #9A7A3E;
    --gold-soft: #DCC596;
    --ink: #2D2620;
    --head: #33291F;
    --muted: #9A8E7D;
    --line: rgba(74, 60, 49, 0.13);
    --line-soft: rgba(74, 60, 49, 0.07);
    --bronze: #3E322A;

    --shadow-soft: 0 30px 70px rgba(74, 60, 41, 0.10);
    --shadow-lg: 0 50px 110px rgba(74, 60, 41, 0.16);

    --serif: 'Fraunces', Georgia, serif;
    --sans: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

    --container: 1300px;
    --gut: clamp(22px, 5vw, 70px);
    --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--sans); font-weight: 300; color: var(--ink);
    background: var(--cream); line-height: 1.75; font-size: 17px;
    letter-spacing: 0.005em; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold-soft); color: var(--head); }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 380; line-height: 1.06; color: var(--head); letter-spacing: -0.012em; font-optical-sizing: auto; }
.display { font-size: clamp(2.9rem, 7vw, 6.6rem); font-weight: 330; line-height: 1.0; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 360; }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
.it { font-style: italic; font-weight: 320; }
em { font-style: italic; }

.eyebrow {
    font-family: var(--sans); font-size: 0.7rem; font-weight: 500;
    letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold-deep);
    display: inline-flex; align-items: center; gap: 0.9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.55; }
.eyebrow.solo::before { display: none; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: var(--ink); font-weight: 300; line-height: 1.7; opacity: 0.78; }

/* ---------- Layout — generous air ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: clamp(90px, 13vw, 200px) 0; }
.bg-cream { background: var(--cream); }
.bg-ivory { background: var(--ivory); }
.bg-paper { background: var(--paper); }
.bg-sand { background: var(--sand); }
.sec-head { max-width: 780px; margin: 0 auto clamp(56px, 7vw, 100px); }
.sec-head.center { text-align: center; }
.sec-head .eyebrow { margin-bottom: 28px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 0.8em; font-family: var(--sans);
    font-size: 0.76rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
    padding: 1.25em 2.3em; border-radius: 100px; transition: all 0.5s var(--ease);
    position: relative; overflow: hidden; white-space: nowrap;
}
.btn svg { width: 14px; height: 14px; transition: transform 0.5s var(--ease); }
.btn-primary { background: var(--head); color: var(--ivory); }
.btn-primary::after { content: ""; position: absolute; inset: 0; background: var(--gold); transform: translateY(101%); transition: transform 0.55s var(--ease); z-index: 0; }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::after { transform: translateY(0); }
.btn-primary:hover svg { transform: translateX(5px); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold::after { content: ""; position: absolute; inset: 0; background: var(--head); transform: translateY(101%); transition: transform 0.55s var(--ease); z-index: 0; }
.btn-gold > * { position: relative; z-index: 1; }
.btn-gold:hover::after { transform: translateY(0); }
.btn-gold:hover svg { transform: translateX(5px); }
.btn-line { border: 1px solid var(--line); color: var(--ink); }
.btn-line:hover { border-color: var(--gold); color: var(--gold-deep); }
.link-arrow { display: inline-flex; align-items: center; gap: 0.7em; font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; color: var(--gold-deep); }
.link-arrow svg { width: 18px; height: 18px; transition: transform 0.5s var(--ease); }
.link-arrow:hover svg { transform: translateX(6px); }

/* ---------- Header ---------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 28px 0; transition: padding 0.35s var(--ease); transform: translateZ(0); will-change: padding; backface-visibility: hidden; }
.site-header::before { content: ""; position: absolute; inset: 0; background: var(--cream); opacity: 0; transition: opacity 0.35s var(--ease); border-bottom: 1px solid transparent; }
.site-header.scrolled { padding: 15px 0; }
.site-header.scrolled::before { opacity: 1; border-bottom-color: var(--line-soft); }
.header-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; z-index: 2; }
.brand .logo { width: auto; height: 46px; transition: transform 0.6s var(--ease); }
.brand:hover .logo { transform: rotate(-6deg); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name { font-family: var(--serif); font-size: 1.26rem; font-weight: 500; letter-spacing: 0.04em; color: var(--head); }
.brand-text .sub { font-size: 0.53rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-deep); margin-top: 5px; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav > a { font-size: 0.73rem; font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase; padding: 10px 16px; position: relative; transition: color 0.3s; }
.nav > a::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.45s var(--ease); }
.nav > a:hover::after { transform: scaleX(1); }
.nav .nav-cta { margin-left: 16px; background: transparent; border: 1px solid var(--line); color: var(--ink); border-radius: 100px; padding: 11px 24px; transition: all 0.45s var(--ease); }
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.nav-toggle { display: none; flex-direction: column; gap: 6px; width: 30px; z-index: 210; }
.nav-toggle span { height: 1.4px; background: var(--head); transition: all 0.45s var(--ease); display: block; }

/* ---------- Editorial hero (light) ---------- */
.hero-ed { padding: clamp(140px, 18vw, 220px) 0 clamp(70px, 9vw, 130px); position: relative; overflow: hidden; }
.hero-ed .inner { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.hero-ed .eyebrow { margin-bottom: 34px; }
.hero-ed h1 { margin-bottom: 0; }
.hero-ed h1 .ln { display: block; overflow: hidden; }
.hero-ed h1 .ln > span { display: block; transform: translateY(108%); transition: transform 1.05s var(--ease); }
.hero-ed.ready h1 .ln > span { transform: translateY(0); }
.hero-ed h1 .ln:nth-child(2) > span { transition-delay: 0.07s; }
.hero-ed h1 .ln:nth-child(3) > span { transition-delay: 0.14s; }
.hero-ed .sub { display: flex; align-items: flex-start; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.hero-ed .lead { max-width: 420px; }
.hero-ed .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
.hero-fig { position: relative; aspect-ratio: 4/5; }
.hero-fig img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }
.hero-fig::after { content: ""; position: absolute; inset: -16px -16px 24px 24px; border: 1px solid var(--gold); opacity: 0.35; border-radius: 3px; z-index: -1; }
.hero-fig .stat-card { position: absolute; left: -34px; bottom: 40px; background: var(--paper); box-shadow: var(--shadow-soft); padding: 22px 28px; border-radius: 3px; }
.hero-fig .stat-card .n { font-family: var(--serif); font-size: 2.6rem; color: var(--gold-deep); line-height: 1; font-weight: 400; }
.hero-fig .stat-card .t { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-top: 6px; max-width: 130px; }

/* ---------- Marquee (light) ---------- */
.marquee { background: var(--ivory); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 26px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; align-items: center; animation: marq 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span { font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 2rem); font-style: italic; font-weight: 360; color: var(--head); padding: 0 34px; }
.marquee i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; flex-shrink: 0; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- Manifesto ---------- */
.manifesto { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(44px, 7vw, 110px); align-items: center; }
.manifesto .txt .eyebrow { margin-bottom: 32px; }
.manifesto .txt h2 { margin-bottom: 30px; }
.manifesto .txt p { color: var(--ink); opacity: 0.78; margin-bottom: 20px; max-width: 50ch; }
.manifesto .txt .link-arrow { margin-top: 14px; }
.manifesto .fig { position: relative; aspect-ratio: 3/4; }
.manifesto .fig img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }

/* ---------- Departments ---------- */
.depts { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 84px); align-items: stretch; }
.dept-list { display: flex; flex-direction: column; }
.dept-row { position: relative; padding: clamp(24px, 2.8vw, 38px) 0; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 22px; cursor: pointer; transition: padding-left 0.5s var(--ease); }
.dept-row:last-child { border-bottom: 1px solid var(--line); }
.dept-row .idx { font-size: 0.72rem; letter-spacing: 0.16em; color: var(--muted); width: 30px; flex-shrink: 0; transition: color 0.4s; }
.dept-row h3 { transition: color 0.4s; flex: 1; font-weight: 380; }
.dept-row .go { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.5s var(--ease); opacity: 0; transform: translateX(-8px); }
.dept-row .go svg { width: 15px; height: 15px; stroke: var(--head); }
.dept-row:hover, .dept-row.active { padding-left: 16px; }
.dept-row:hover .idx, .dept-row.active .idx { color: var(--gold-deep); }
.dept-row:hover h3, .dept-row.active h3 { color: var(--gold-deep); }
.dept-row:hover .go, .dept-row.active .go { opacity: 1; transform: none; background: var(--gold); border-color: var(--gold); }
.dept-row:hover .go svg, .dept-row.active .go svg { stroke: #fff; }
.dept-stage { position: relative; border-radius: 3px; overflow: hidden; min-height: 500px; background: var(--sand); align-self: stretch; }
.dept-stage .layer { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s var(--ease), transform 1.2s var(--ease); transform: scale(1.05); }
.dept-stage .layer img { width: 100%; height: 100%; object-fit: cover; }
.dept-stage .layer.show { opacity: 1; transform: scale(1); }
.dept-stage .layer .tag { position: absolute; left: 26px; bottom: 24px; right: 26px; color: var(--head); }
.dept-stage .layer .tag .peek { font-size: 0.76rem; letter-spacing: 0.04em; opacity: 0.85; }

/* ---------- Feature split (light) ---------- */
.feature-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.feature-split .media { min-height: 64vh; }
.feature-split .media img { width: 100%; height: 100%; object-fit: cover; }
.feature-split .body { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 8vw, 120px); }
.feature-split .body .eyebrow { margin-bottom: 28px; }
.feature-split .body h2 { margin-bottom: 26px; }
.feature-split .body p { color: var(--ink); opacity: 0.78; margin-bottom: 34px; max-width: 46ch; }

/* ---------- Stats (light) ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat { text-align: center; padding: 0 20px; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat .val { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 360; color: var(--gold-deep); line-height: 1; }
.stat .lbl { margin-top: 16px; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ---------- Split (doctor / values) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 6vw, 100px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 3px; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media .sig-tag { position: absolute; left: 0; bottom: 0; background: var(--paper); padding: 22px 30px 18px; }
.split-media .sig-tag .sig { font-family: var(--serif); font-style: italic; font-size: 1.7rem; color: var(--head); font-weight: 400; }
.split-media .sig-tag .role { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin-top: 6px; }
.split-copy .eyebrow { margin-bottom: 28px; }
.split-copy h2 { margin-bottom: 28px; }
.split-copy p { color: var(--ink); opacity: 0.78; margin-bottom: 20px; }
.split-copy .btn, .split-copy .link-arrow { margin-top: 16px; }

/* ---------- Philosophy (light) ---------- */
.philosophy { background: var(--sand); text-align: center; }
.philosophy .eyebrow { justify-content: center; margin-bottom: 38px; }
.philosophy blockquote { font-family: var(--serif); font-weight: 320; font-size: clamp(1.9rem, 4.4vw, 3.6rem); line-height: 1.24; max-width: 1000px; margin: 0 auto 36px; color: var(--head); }
.philosophy blockquote em { color: var(--gold-deep); }
.philosophy .cite { font-size: 0.74rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tst-card { background: var(--paper); padding: 44px 38px; border: 1px solid var(--line-soft); border-radius: 3px; }
.tst-card .stars { color: var(--gold); letter-spacing: 4px; font-size: 0.8rem; margin-bottom: 22px; }
.tst-card p { font-family: var(--serif); font-size: 1.36rem; font-style: italic; font-weight: 360; color: var(--head); line-height: 1.42; margin-bottom: 26px; }
.tst-card .who { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; }
.cta-inner { max-width: 840px; margin: 0 auto; text-align: center; }
.cta-inner .eyebrow { justify-content: center; margin-bottom: 28px; }
.cta-inner h2 { margin-bottom: 24px; }
.cta-inner p { color: var(--ink); opacity: 0.78; margin-bottom: 40px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sticky CTA ---------- */
.sticky-cta { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 140%); z-index: 150; display: flex; align-items: center; gap: 18px; background: var(--paper); color: var(--ink); padding: 10px 12px 10px 28px; border-radius: 100px; box-shadow: var(--shadow-soft); border: 1px solid var(--line-soft); transition: transform 0.6s var(--ease); }
.sticky-cta.show { transform: translate(-50%, 0); }
.sticky-cta .t { font-size: 0.82rem; letter-spacing: 0.02em; }
.sticky-cta .t b { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--gold-deep); }
.sticky-cta .btn { padding: 0.9em 1.7em; font-size: 0.7rem; }
@media (max-width: 560px) { .sticky-cta .t { display: none; } .sticky-cta { padding: 8px; bottom: 16px; } }

/* ---------- Page hero (subpages) ---------- */
.page-hero { padding: clamp(160px, 21vw, 250px) 0 clamp(56px, 8vw, 100px); text-align: center; }
.page-hero .eyebrow { justify-content: center; margin-bottom: 26px; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin-bottom: 24px; font-weight: 340; }
.page-hero p { max-width: 640px; margin: 0 auto; color: var(--ink); opacity: 0.78; }
.crumb { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.crumb a:hover { color: var(--gold-deep); }

/* ---------- Categories grid ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.cat-card { position: relative; overflow: hidden; border-radius: 3px; display: block; aspect-ratio: 5/6; background: var(--sand); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.cat-card:hover img { transform: scale(1.05); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(45,38,32,0) 45%, rgba(45,38,32,0.5)); }
.cat-card .c-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 36px; color: var(--ivory); z-index: 2; }
.cat-card .c-idx { font-size: 0.7rem; letter-spacing: 0.18em; color: var(--gold-soft); margin-bottom: 12px; }
.cat-card h3 { color: var(--ivory); margin-bottom: 10px; font-weight: 400; }
.cat-card p { color: rgba(251,248,241,0.88); font-size: 0.95rem; max-width: 42ch; margin-bottom: 16px; }
.cat-card .more { display: inline-flex; align-items: center; gap: 9px; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); }
.cat-card .more svg { width: 16px; height: 16px; transition: transform 0.5s var(--ease); }
.cat-card:hover .more svg { transform: translateX(6px); }

/* ---------- Service detail ---------- */
.svc-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px,6vw,96px); align-items: center; }
.svc-intro .media { aspect-ratio: 4/5; overflow: hidden; border-radius: 3px; }
.svc-intro .media img { width: 100%; height: 100%; object-fit: cover; }
.svc-intro .eyebrow { margin-bottom: 26px; }
.svc-intro h2 { margin-bottom: 24px; }
.svc-intro p { color: var(--ink); opacity: 0.78; margin-bottom: 18px; }
.proc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.proc { background: var(--ivory); padding: 36px 36px; transition: background 0.4s; }
.proc:hover { background: var(--paper); }
.proc .pn { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold-deep); }
.proc h3 { font-size: 1.35rem; margin: 8px 0 10px; font-weight: 400; }
.proc p { font-size: 0.94rem; color: var(--ink); opacity: 0.76; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(44px,6vw,70px); align-items: start; }
.contact-info .item { display: flex; gap: 18px; padding: 26px 0; border-bottom: 1px solid var(--line-soft); }
.contact-info .item:first-child { padding-top: 0; }
.contact-info .ic { width: 46px; height: 46px; border-radius: 50%; background: var(--sand); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info .ic svg { width: 20px; height: 20px; stroke: var(--gold-deep); fill: none; }
.contact-info h4 { font-size: 1.18rem; margin-bottom: 4px; font-weight: 400; }
.contact-info p, .contact-info a { color: var(--ink); opacity: 0.78; font-size: 0.95rem; }
.contact-info a:hover { color: var(--gold-deep); }
.form { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 3px; padding: clamp(32px,4vw,52px); box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { display: block; margin-bottom: 18px; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--head); font-weight: 500; }
.form input, .form select, .form textarea { width: 100%; margin-top: 9px; padding: 15px 16px; font-family: var(--sans); font-size: 0.98rem; font-weight: 300; color: var(--ink); background: var(--cream); border: 1px solid var(--line); border-radius: 2px; transition: all 0.3s; letter-spacing: normal; text-transform: none; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(184,146,84,0.14); }
.form textarea { resize: vertical; min-height: 120px; }
.form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form .note { font-size: 0.78rem; color: var(--muted); margin-top: 16px; text-align: center; text-transform: none; letter-spacing: 0.01em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bronze); color: rgba(251,248,241,0.62); padding: clamp(70px,9vw,110px) 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 50px; padding-bottom: 64px; }
.footer-brand .brand-text .name { color: var(--ivory); }
.footer-brand .brand-text .sub { color: var(--gold-soft); }
.footer-brand p { margin-top: 24px; font-size: 0.92rem; max-width: 320px; line-height: 1.75; }
.footer-col h5 { font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 24px; font-weight: 500; }
.footer-col ul li { margin-bottom: 13px; }
.footer-col a, .footer-col p { font-size: 0.92rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(251,248,241,0.12); padding: 28px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.74rem; letter-spacing: 0.04em; color: rgba(251,248,241,0.4); }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
    .hero-ed .inner, .manifesto, .depts, .split, .svc-intro, .contact-grid, .feature-split { grid-template-columns: 1fr; gap: 44px; }
    .split.reverse .split-media { order: 0; }
    .hero-fig, .manifesto .fig, .split-media, .svc-intro .media { max-width: 480px; }
    .hero-fig { margin-left: auto; margin-right: auto; }
    .dept-stage { display: none; }
    .feature-split .media { min-height: 50vh; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .cat-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    body { font-size: 16px; }
    .nav { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 6px; background: var(--cream); transform: translateX(100%); transition: transform 0.6s var(--ease); }
    .nav.open { transform: none; }
    .nav > a { font-size: 1.15rem; padding: 14px; }
    .nav .nav-cta { margin: 14px 0 0; }
    .nav-toggle { display: flex; }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }
    .stats-row, .tst-grid, .proc-grid, .form-row, .footer-grid { grid-template-columns: 1fr; }
    .stat + .stat { border-left: none; border-top: 1px solid var(--line); padding-top: 28px; margin-top: 28px; }
    .hero-fig .stat-card { left: 0; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
    .reveal { opacity: 1; transform: none; }
    .hero-ed h1 .ln > span { transform: none; }
}

/* ============================================================
   Floating widgets — WhatsApp + AI chat + booking extras
   ============================================================ */
.fab-stack { position: fixed; right: 22px; bottom: 22px; z-index: 170; display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }
.fab { width: 58px; height: 58px; border-radius: 50%; box-shadow: var(--shadow-soft); display: flex; align-items: center; justify-content: center; transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); position: relative; }
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab svg { width: 27px; height: 27px; }
.fab-wa { background: #25D366; }
.fab-wa svg { fill: #fff; }
.fab-chat { background: var(--head); color: var(--ivory); }
.fab-chat svg { stroke: var(--ivory); fill: none; }
.fab-chat .dot { position: absolute; top: 2px; right: 2px; width: 13px; height: 13px; background: var(--gold); border: 2px solid var(--cream); border-radius: 50%; }
.fab-chat .dot::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--gold); opacity: 0; animation: ping 2.4s var(--ease) infinite; }
@keyframes ping { 0% { transform: scale(0.6); opacity: 0.7; } 100% { transform: scale(1.6); opacity: 0; } }

.chat-panel { position: fixed; right: 22px; bottom: 92px; width: 372px; max-width: calc(100vw - 32px); height: 540px; max-height: calc(100vh - 140px); background: var(--paper); border-radius: 20px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; overflow: hidden; z-index: 171; opacity: 0; transform: translateY(24px) scale(0.96); transform-origin: bottom right; pointer-events: none; transition: all 0.45s var(--ease); }
.chat-panel.open { opacity: 1; transform: none; pointer-events: auto; }
.chat-head { background: linear-gradient(135deg, var(--head), #4a3a2a); color: var(--ivory); padding: 20px 22px; display: flex; align-items: center; gap: 14px; }
.chat-head .ava { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.3rem; color: #fff; flex-shrink: 0; }
.chat-head .who { flex: 1; line-height: 1.3; }
.chat-head .who b { font-family: var(--serif); font-weight: 500; font-size: 1.02rem; }
.chat-head .who span { display: block; font-size: 0.72rem; opacity: 0.7; margin-top: 2px; }
.chat-head .who span::before { content: ""; display: inline-block; width: 7px; height: 7px; background: #4ad07a; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.chat-close { color: var(--ivory); opacity: 0.7; font-size: 1.4rem; line-height: 1; transition: opacity 0.3s; }
.chat-close:hover { opacity: 1; }
.chat-body { flex: 1; overflow-y: auto; padding: 22px 18px; background: var(--cream); display: flex; flex-direction: column; gap: 12px; }
.msg { max-width: 82%; padding: 12px 16px; font-size: 0.92rem; line-height: 1.5; border-radius: 16px; }
.msg.bot { background: var(--paper); color: var(--ink); border: 1px solid var(--line-soft); border-bottom-left-radius: 4px; align-self: flex-start; }
.msg.user { background: var(--head); color: var(--ivory); border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 18px 14px; background: var(--cream); }
.chat-chips button { font-size: 0.78rem; padding: 8px 14px; border: 1px solid var(--gold); color: var(--gold-deep); border-radius: 100px; transition: all 0.3s; background: var(--paper); }
.chat-chips button:hover { background: var(--gold); color: #fff; }
.chat-foot { display: flex; gap: 8px; padding: 14px; border-top: 1px solid var(--line-soft); background: var(--paper); }
.chat-foot input { flex: 1; border: 1px solid var(--line); border-radius: 100px; padding: 12px 16px; font-family: var(--sans); font-size: 0.9rem; color: var(--ink); background: var(--cream); }
.chat-foot input:focus { outline: none; border-color: var(--gold); }
.chat-foot button { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.3s; }
.chat-foot button:hover { background: var(--head); }
.chat-foot button svg { width: 18px; height: 18px; stroke: #fff; fill: none; }
.chat-note { font-size: 0.64rem; color: var(--muted); text-align: center; padding: 0 0 10px; background: var(--paper); }

/* Booking form extras */
.booking-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: clamp(40px,5vw,64px); }
.bstep { text-align: center; padding: 0 10px; }
.bstep .bn { width: 48px; height: 48px; margin: 0 auto 18px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-deep); font-family: var(--serif); font-size: 1.3rem; display: flex; align-items: center; justify-content: center; }
.bstep h4 { font-size: 1.2rem; margin-bottom: 8px; font-weight: 400; }
.bstep p { font-size: 0.92rem; color: var(--ink); opacity: 0.72; }
.form .hint { font-size: 0.7rem; color: var(--muted); text-transform: none; letter-spacing: 0.02em; font-weight: 300; margin-left: 6px; }
@media (max-width: 760px) { .booking-steps { grid-template-columns: 1fr; gap: 28px; } }


/* ============================================================
   SOFT AESTHETIC — warm blush & champagne, arches, delicate gold
   v7 — feminine, beautiful, airy (full restyle)
   ============================================================ */
:root {
    --paper: #FFFFFF;
    --cream: #FBF4EC;
    --ivory: #FDF8F2;
    --sand:  #F3E6DA;
    --sand-2:#ECDBCC;
    --blush: #F4E4DA;
    --gold:  #C29A62;
    --gold-deep: #A87F45;
    --gold-soft: #E6D0AC;
    --ink:  #5E4F44;
    --head: #463A30;
    --muted:#A89684;
    --line: rgba(120,92,62,0.15);
    --line-soft: rgba(120,92,62,0.08);
    --bronze: #463A31;
    --shadow-soft: 0 26px 60px rgba(150,112,78,0.14);
    --shadow-lg:   0 44px 100px rgba(150,112,78,0.20);
}
body { background: linear-gradient(180deg, #FCF7F0 0%, #F6E9DE 100%); color: var(--ink); }
.bg-cream { background: var(--cream); }
.bg-ivory { background: var(--ivory); }
.bg-sand  { background: var(--blush); }
::selection { background: var(--gold-soft); color: var(--head); }

/* soft, rounded media everywhere (no hard rectangles) */
.split-media, .svc-intro .media, .cat-card, .dept-stage, .proc-grid,
.form, .tst-card, .feature-split .media, .manifesto .fig, .hero-fig .stat-card { border-radius: 28px; }
.split-media img, .svc-intro .media img, .cat-card img, .dept-stage .layer img { border-radius: inherit; }

/* arch motif on the portrait images = the "beauty clinic" signature */
.manifesto .fig, .split-media, .svc-intro .media {
    border-radius: 50% 50% 30px 30px / 32% 32% 6px 6px; overflow: hidden;
}
.manifesto .fig img, .split-media img, .svc-intro .media img { border-radius: inherit; }

/* softer headings + warm tone */
h1, h2, h3, h4 { color: var(--head); font-weight: 360; }
.display { font-weight: 320; }
.eyebrow { color: var(--gold-deep); }
.btn-gold { background: var(--gold); box-shadow: 0 16px 34px rgba(194,154,98,0.28); }
.btn-gold:hover { box-shadow: 0 20px 42px rgba(194,154,98,0.34); }

/* ---------- SOFT ARCH HERO ---------- */
.hero-soft { position: relative; overflow: hidden;
    padding: clamp(130px, 17vw, 210px) 0 clamp(70px, 9vw, 120px);
    background:
       radial-gradient(60% 60% at 12% 10%, rgba(244,228,218,0.9), rgba(244,228,218,0) 60%),
       radial-gradient(50% 50% at 95% 30%, rgba(230,208,172,0.35), rgba(230,208,172,0) 60%);
}
.hero-soft .hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.hero-soft .eyebrow { margin-bottom: 28px; }
.hero-soft h1 { font-size: clamp(2.7rem, 5.4vw, 5.1rem); line-height: 1.04; letter-spacing: -0.02em; }
.hero-soft .lead { margin-top: 28px; max-width: 460px; }
.hero-soft .actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }
.hero-soft .hero-trust { display: flex; gap: 40px; margin-top: 52px; padding-top: 32px; border-top: 1px solid var(--line); }
.hero-soft .ht b { display: block; font-family: var(--serif); font-size: 1.9rem; font-weight: 400; color: var(--gold-deep); line-height: 1; }
.hero-soft .ht span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 8px; display: block; }

.hero-soft .hero-visual { position: relative; }
.hero-soft .arch { position: relative; aspect-ratio: 4/5; overflow: hidden;
    border-radius: 50% 50% 32px 32px / 34% 34% 6px 6px; box-shadow: var(--shadow-lg); }
.hero-soft .arch img { width: 100%; height: 100%; object-fit: cover; }
/* delicate gold arch outline, offset behind */
.hero-soft .hero-visual::before { content: ""; position: absolute; z-index: -1;
    inset: -22px -22px 30px 26px; border: 1px solid var(--gold);
    border-radius: 50% 50% 32px 32px / 34% 34% 6px 6px; opacity: 0.45; }
.hero-soft .hero-badge { position: absolute; left: -28px; bottom: 56px; background: var(--paper);
    box-shadow: var(--shadow-soft); border-radius: 18px; padding: 16px 22px; display: flex; align-items: center; gap: 12px; }
.hero-soft .hero-badge .bn { width: 38px; height: 38px; border-radius: 50%; background: var(--blush);
    display: flex; align-items: center; justify-content: center; color: var(--gold-deep); font-size: 1.1rem; }
.hero-soft .hero-badge .bt { font-family: var(--serif); font-style: italic; font-size: 1.02rem; color: var(--head); line-height: 1.2; }

/* footer warm mocha */
.site-footer { background: var(--bronze); }

@media (max-width: 1000px) {
    .hero-soft .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-soft .hero-visual { max-width: 440px; margin: 0 auto; }
}
@media (max-width: 560px) {
    .hero-soft .hero-trust { gap: 24px; flex-wrap: wrap; }
    .hero-soft .hero-badge { left: 0; }
}

/* ============================================================
   SENIOR POLISH — craft layer: rhythm, atmosphere, editorial detail
   ============================================================ */

/* atmosphere: fine warm grain + soft vignette for depth (no flat fills) */
body::before { content: ""; position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.05;
    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='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* refined type — confident editorial scale + optical sizing */
h1, h2, h3, h4 { font-optical-sizing: auto; -webkit-font-smoothing: antialiased; }
.display { letter-spacing: -0.028em; line-height: 0.98; }
h2 { letter-spacing: -0.02em; line-height: 1.04; }
.it { font-variation-settings: "opsz" 120; }
.lead { color: var(--ink); opacity: 0.82; line-height: 1.72; }

/* editorial eyebrow with index number + hairline */
.eyebrow { font-size: 0.66rem; letter-spacing: 0.34em; gap: 0.85rem; color: var(--gold-deep); align-items: baseline; }
.eyebrow i { font-style: normal; font-family: var(--serif); font-size: 0.92rem; letter-spacing: 0; color: var(--gold);
    font-feature-settings: "tnum"; opacity: 0.9; }
.eyebrow::before { width: 22px; opacity: 0.5; align-self: center; }

/* numerals: tabular + serif elegance for stats / trust */
.stat .val, .hero-soft .ht b, .stat-card .n, .bstep .bn, .proc .pn { font-feature-settings: "tnum","lnum"; }
.stat .val { letter-spacing: -0.02em; }

/* hairline section divider option */
.section { position: relative; }

/* buttons — precise, calmer motion */
.btn { letter-spacing: 0.16em; padding: 1.15em 2.2em; transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .5s var(--ease), color .5s var(--ease); }
.btn-gold:hover, .btn-primary:hover { transform: translateY(-2px); }
.btn-line { border-color: var(--line); }
.btn svg { width: 13px; height: 13px; }

/* cards/media — refined, consistent depth */
.tst-card { box-shadow: 0 2px 0 rgba(0,0,0,0); transition: transform .55s var(--ease), box-shadow .55s var(--ease); }
.tst-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.cat-card { box-shadow: var(--shadow-soft); }
.split-media, .manifesto .fig, .svc-intro .media { box-shadow: var(--shadow-lg); }

/* hero — tighter composition + clean credential chip */
.hero-soft .hero-badge { left: -26px; bottom: 48px; padding: 18px 24px; gap: 14px; border-radius: 20px;
    border: 1px solid var(--line-soft); }
.hero-soft .hero-badge .bn { width: auto; height: auto; background: none; font-family: var(--serif);
    font-size: 1.85rem; font-weight: 400; color: var(--gold-deep); line-height: 1; }
.hero-soft .hero-badge .bt { font-style: normal; font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--muted); line-height: 1.4; }
.hero-soft .hero-badge::before { content: ""; width: 1px; height: 34px; background: var(--line); }

/* refined header tracking */
.nav > a { letter-spacing: 0.14em; }
.brand-text .name { letter-spacing: 0.02em; }

/* orchestrated hero load (independent of scroll observer) */
.hero-soft .hero-copy > * { opacity: 0; animation: rise 1s var(--ease) forwards; }
.hero-soft .eyebrow { animation-delay: .15s; }
.hero-soft h1 { animation-delay: .28s; }
.hero-soft .lead { animation-delay: .44s; }
.hero-soft .actions { animation-delay: .58s; }
.hero-soft .hero-trust { animation-delay: .72s; }
.hero-soft .hero-visual { opacity: 0; animation: archIn 1.3s var(--ease) .35s forwards; }
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes archIn { from { opacity: 0; transform: translateY(28px) scale(0.98); } to { opacity: 1; transform: none; } }

/* focus-visible for accessibility (senior detail) */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
    .hero-soft .hero-copy > *, .hero-soft .hero-visual { animation: none !important; opacity: 1 !important; }
}
@media (max-width: 560px) { .hero-soft .hero-badge { left: 0; bottom: 16px; } }

/* ============================================================
   LIFE & MOTION — the page breathes (modern, tasteful)
   ============================================================ */
.hero-soft { isolation: isolate; }
.hero-soft .hero-inner { position: relative; z-index: 2; }

/* drifting soft gold orbs behind the hero */
.hero-orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.hero-orbs span { position: absolute; border-radius: 50%; filter: blur(46px); will-change: transform; }
.hero-orbs span:nth-child(1) { width: 360px; height: 360px; left: -70px; top: 8%;
    background: radial-gradient(circle, rgba(230,208,172,0.55), transparent 70%); animation: drift1 19s ease-in-out infinite; }
.hero-orbs span:nth-child(2) { width: 300px; height: 300px; right: 4%; top: 4%;
    background: radial-gradient(circle, rgba(244,228,218,0.7), transparent 70%); animation: drift2 23s ease-in-out infinite; }
.hero-orbs span:nth-child(3) { width: 260px; height: 260px; left: 32%; bottom: -6%;
    background: radial-gradient(circle, rgba(226,200,156,0.4), transparent 70%); animation: drift3 27s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,30px) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-34px,40px) scale(1.1); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(28px,-30px) scale(1.15); } }

/* hero image quietly breathes (Ken Burns) */
.hero-soft .arch img { animation: kb 18s ease-in-out infinite alternate; transform-origin: 60% 40%; }
@keyframes kb { from { transform: scale(1.0); } to { transform: scale(1.07); } }

/* floating credential chip */
.hero-soft .hero-badge { animation: floaty 6.5s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* gold arch outline gently pulses */
.hero-soft .hero-visual::before { animation: pulseline 7s ease-in-out infinite; }
@keyframes pulseline { 0%,100% { opacity: 0.32; } 50% { opacity: 0.6; } }

/* parallax targets (driven by JS, capped) */
.hero-soft .arch, .hero-soft .hero-badge { will-change: transform; }

/* reveals: a touch more alive with blur lift */
.reveal { transform: translateY(40px); filter: blur(6px); }
.reveal.in { filter: blur(0); }

/* department photo subtle continuous breathe */
.dept-stage .layer.show img { animation: kb 20s ease-in-out infinite alternate; }

@media (prefers-reduced-motion: reduce) {
    .hero-orbs span, .hero-soft .arch img, .hero-soft .hero-badge,
    .hero-soft .hero-visual::before, .dept-stage .layer.show img { animation: none !important; }
    .reveal { filter: none; }
}

/* ============================================================
   DARK ACCENT BANDS — a little dark for contrast (combination)
   philosophy + CTA become warm espresso+gold moments
   ============================================================ */
.philosophy, .cta-band {
    background:
        radial-gradient(120% 120% at 18% 0%, rgba(184,146,79,0.16), rgba(184,146,79,0) 55%),
        radial-gradient(110% 110% at 90% 100%, rgba(184,146,79,0.10), rgba(184,146,79,0) 55%),
        linear-gradient(160deg, #2B221B 0%, #1E1813 100%);
    position: relative; overflow: hidden;
}
.philosophy *, .cta-band * { position: relative; z-index: 1; }
.philosophy blockquote, .cta-band h2 { color: #F5EEE0; }
.philosophy blockquote em { color: var(--gold-soft); font-style: italic; }
.philosophy .cite { color: var(--gold-soft); }
.cta-band p { color: #D8CCBA; }
.philosophy .eyebrow, .cta-band .eyebrow { color: var(--gold-soft); }
.philosophy .eyebrow::before, .cta-band .eyebrow::before { background: var(--gold-soft); opacity: 0.6; }
.philosophy .eyebrow i, .cta-band .eyebrow i { color: var(--gold); }
.cta-band .btn-primary { background: var(--gold); color: #1c1208; }
.cta-band .btn-primary::after { background: var(--gold-soft); }
.cta-band .btn-line { border-color: rgba(255,255,255,0.30); color: #F5EEE0; }
.cta-band .btn-line:hover { border-color: var(--gold); color: var(--gold-soft); }

/* drifting gold glow keeps the dark bands alive */
.philosophy::after, .cta-band::after { content: ""; position: absolute; z-index: 0; width: 60%; height: 160%;
    top: -30%; left: 10%; pointer-events: none;
    background: radial-gradient(closest-side, rgba(226,200,156,0.12), rgba(226,200,156,0) 70%);
    animation: glowdrift 16s ease-in-out infinite; }
@keyframes glowdrift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40%, 12%); } }
@media (prefers-reduced-motion: reduce) { .philosophy::after, .cta-band::after { animation: none; } }

/* ============================================================
   CUT-OUT FIGURES (no window/frame) + more dark statement bands
   ============================================================ */
/* hero cutout */
.hero-soft .hero-visual.is-cutout .cut { background: none; box-shadow: none; aspect-ratio: auto; border-radius: 0; overflow: visible; position: relative; z-index: 1; }
.hero-soft .hero-visual.is-cutout .cut img { width: 100%; height: auto; border-radius: 0; object-fit: contain;
    filter: drop-shadow(0 34px 50px rgba(70,45,25,0.28)); animation: floaty 7.5s ease-in-out infinite; }
.hero-soft .hero-visual.is-cutout::before { border: none !important; inset: -4% -2% 0 -2% !important;
    border-radius: 50% !important; opacity: 1 !important; animation: none !important;
    background: radial-gradient(56% 56% at 56% 42%, rgba(226,200,156,0.55), rgba(226,200,156,0) 70%) !important; }

/* manifesto cutout */
.manifesto .fig.is-cutout { background: none !important; box-shadow: none !important; border-radius: 0 !important;
    overflow: visible !important; aspect-ratio: auto !important; position: relative; }
.manifesto .fig.is-cutout img { width: 100%; height: auto; border-radius: 0 !important; object-fit: contain;
    filter: drop-shadow(0 28px 42px rgba(70,45,25,0.24)); }
.manifesto .fig.is-cutout::after { content: ""; position: absolute; inset: -8% -6% 2% -6%; z-index: -1; border-radius: 50%;
    background: radial-gradient(55% 55% at 50% 44%, rgba(226,200,156,0.42), rgba(226,200,156,0) 70%); }

/* reusable dark statement band (matches the philosophy look) */
.statement-dark, .band-dark {
    background:
        radial-gradient(120% 120% at 18% 0%, rgba(184,146,79,0.16), rgba(184,146,79,0) 55%),
        radial-gradient(110% 110% at 90% 100%, rgba(184,146,79,0.10), rgba(184,146,79,0) 55%),
        linear-gradient(160deg, #2B221B 0%, #1E1813 100%);
    position: relative; overflow: hidden; text-align: center;
}
.statement-dark *, .band-dark * { position: relative; z-index: 1; }
.statement-dark .eyebrow { justify-content: center; color: var(--gold-soft); margin-bottom: 34px; }
.statement-dark .eyebrow::before { display: none; }
.statement-dark blockquote { font-family: var(--serif); font-weight: 320; font-size: clamp(1.7rem, 3.6vw, 3rem);
    line-height: 1.3; max-width: 880px; margin: 0 auto 28px; color: #F5EEE0; }
.statement-dark blockquote em { color: var(--gold-soft); font-style: italic; }
.statement-dark .cite { font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-soft); }

/* dark stats band */
.band-dark .stat .val { color: var(--gold-soft); }
.band-dark .stat .lbl { color: #C9BCA9; }
.band-dark .stat + .stat { border-left-color: rgba(255,255,255,0.13); }
.statement-dark::after, .band-dark::after { content: ""; position: absolute; z-index: 0; width: 60%; height: 160%;
    top: -30%; left: 8%; pointer-events: none;
    background: radial-gradient(closest-side, rgba(226,200,156,0.12), rgba(226,200,156,0) 70%);
    animation: glowdrift 17s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
    .hero-soft .hero-visual.is-cutout .cut img { animation: none; }
    .statement-dark::after, .band-dark::after { animation: none; }
}

/* ============================================================
   BOOKING WIDGET — premium Bookio-style reservation flow
   ============================================================ */
.booking-widget { max-width: 840px; margin: 0 auto; padding: clamp(26px,3.5vw,46px); }
.bw-steps { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 36px; }
.bw-step { display: inline-flex; align-items: center; gap: 9px; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.bw-step i { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-style: normal; font-size: 0.92rem; color: var(--muted); transition: all 0.4s var(--ease); }
.bw-step .bw-step-tx { max-width: 210px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bw-step.is-active { color: var(--head); }
.bw-step.is-active i, .bw-step.is-done i { background: var(--gold); border-color: var(--gold); color: #fff; }
.bw-line { width: 26px; height: 1px; background: var(--line); }
.bw-q { font-family: var(--serif); font-size: 1.18rem; color: var(--head); text-align: center; margin-bottom: 24px; font-weight: 380; }
.bw-services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.bw-services .bw-opt:last-child { grid-column: 1 / -1; }
@media (max-width: 620px) { .bw-services { grid-template-columns: 1fr; } }

/* --- predvyplnená služba (príchod z detailu zákroku: ?o=&z=&c=) --- */
.bw-pre { text-align: center; background: var(--blush); border: 1px solid var(--line); border-radius: 18px; padding: 26px 24px 22px; margin-bottom: 4px; }
.bw-pre-label { display: block; font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.bw-pre-name { display: block; font-family: var(--serif); font-size: clamp(1.15rem, 2.1vw, 1.5rem); font-weight: 400; color: var(--head); line-height: 1.25; }
.bw-pre-meta { display: block; margin-top: 8px; font-size: 0.86rem; color: var(--gold-deep); }
.bw-pre-change { margin-top: 16px; background: none; border: none; border-bottom: 1px solid var(--line); padding: 0 0 3px; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); cursor: pointer; transition: color 0.3s, border-color 0.3s; }
.bw-pre-change:hover { color: var(--gold-deep); border-color: var(--gold); }

/* --- pás "objednávate sa na" nad kalendárom --- */
.bw-chosen { display: flex; align-items: center; gap: 14px; background: var(--blush); border-radius: 14px; padding: 14px 18px; margin-bottom: 24px; }
.bw-chosen-ic { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: #fff; display: flex; align-items: center; justify-content: center; }
.bw-chosen-ic svg { width: 15px; height: 15px; }
.bw-chosen-tx { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.bw-chosen-tx small { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.bw-chosen-tx b { font-family: var(--serif); font-weight: 400; font-size: 1rem; color: var(--head); line-height: 1.3; }
.bw-chosen-tx i { font-style: normal; font-size: 0.8rem; color: var(--gold-deep); }
.bw-chosen-edit { flex: 0 0 auto; background: none; border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--muted); cursor: pointer; transition: all 0.3s; }
.bw-chosen-edit:hover { border-color: var(--gold); color: var(--gold-deep); }
@media (max-width: 620px) { .bw-chosen { flex-wrap: wrap; } .bw-chosen-edit { margin-left: 42px; } }
.bw-opt { text-align: left; padding: 17px 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); color: var(--head); font-size: 1rem; font-family: var(--sans); cursor: pointer; transition: all 0.35s var(--ease); position: relative; }
.bw-opt:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.bw-opt.is-sel { border-color: var(--gold); background: var(--blush); box-shadow: inset 0 0 0 1px var(--gold); }
.bw-opt.is-sel::after { content: "✓"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: var(--gold-deep); font-weight: 700; }
.bw-cols { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(22px,3vw,40px); align-items: start; }
.bw-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.bw-cal-head .bw-month { font-family: var(--serif); font-size: 1.18rem; color: var(--head); }
.bw-prev, .bw-nextm { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); color: var(--head); font-size: 1.3rem; line-height: 1; cursor: pointer; transition: all 0.3s; background: var(--paper); }
.bw-prev:hover, .bw-nextm:hover { border-color: var(--gold); color: var(--gold-deep); }
.bw-weekdays { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; margin-bottom: 8px; }
.bw-weekdays span { text-align: center; font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.bw-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.bw-day { aspect-ratio: 1; border: none; background: none; border-radius: 11px; color: var(--head); font-size: 0.9rem; font-family: var(--sans); cursor: pointer; transition: all 0.22s; }
.bw-day.is-empty { visibility: hidden; }
.bw-day:not(:disabled):hover { background: var(--sand); }
.bw-day.is-sel { background: var(--gold); color: #fff; }
.bw-day:disabled { color: var(--muted); opacity: 0.35; cursor: default; }
.bw-times-label { text-align: left; font-size: 1rem; margin-bottom: 14px; }
.bw-slots { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.bw-slot { padding: 11px 0; border: 1px solid var(--line); border-radius: 11px; background: var(--paper); font-size: 0.84rem; color: var(--head); cursor: pointer; transition: all 0.22s; font-family: var(--sans); }
.bw-slot:hover { border-color: var(--gold); }
.bw-slot.is-sel { background: var(--gold); border-color: var(--gold); color: #fff; }
.bw-summary { background: var(--blush); border-radius: 16px; padding: 18px 24px; margin-bottom: 26px; display: flex; flex-wrap: wrap; gap: 6px 28px; font-size: 0.92rem; color: var(--ink); }
.bw-summary b { color: var(--gold-deep); font-family: var(--serif); font-weight: 500; font-style: italic; }
.bw-nav { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.bw-nav .bw-next, .bw-nav .bw-submit { margin-left: auto; }
.bw-next:disabled { opacity: 0.4; pointer-events: none; }
@media (max-width: 720px) { .bw-cols { grid-template-columns: 1fr; } .bw-step { font-size: 0; gap: 0; } .bw-step i { font-size: 0.92rem; } .bw-line { width: 18px; } }

/* ===== VYHĽADÁVANIE ===== */
.kp-search-btn{display:inline-flex;align-items:center;gap:7px;background:none;border:1px solid rgba(43,35,24,.22);color:inherit;font-family:inherit;font-size:12px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;padding:9px 14px;cursor:pointer;transition:border-color .25s,background .25s}
.kp-search-btn:hover{border-color:#B89254;background:rgba(184,146,84,.08)}
.kp-search-btn svg{width:15px;height:15px}
.kp-search-overlay{position:fixed;inset:0;background:rgba(26,21,14,.55);backdrop-filter:blur(5px);-webkit-backdrop-filter:blur(5px);z-index:1200;display:none;align-items:flex-start;justify-content:center}
.kp-search-overlay.open{display:flex}
.kp-search-panel{background:#FBF8F1;width:min(680px,92vw);margin-top:9vh;border:1px solid rgba(184,146,84,.45);box-shadow:0 30px 80px rgba(26,21,14,.35)}
.kp-search-row{display:flex;align-items:center;gap:14px;padding:18px 22px;border-bottom:1px solid rgba(184,146,84,.3)}
.kp-search-row>svg{width:20px;height:20px;color:#B89254;flex:none}
.kp-search-input{flex:1;border:none;outline:none;background:none;font-family:inherit;font-size:17px;color:#2B2318}
.kp-search-input::placeholder{color:rgba(43,35,24,.45)}
.kp-search-close{background:none;border:none;font-size:30px;line-height:1;color:rgba(43,35,24,.5);cursor:pointer;padding:0 2px}
.kp-search-close:hover{color:#2B2318}
.kp-search-results{max-height:58vh;overflow:auto;padding:10px 0 14px}
.kp-search-glabel{font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:#B89254;padding:14px 22px 6px}
.kp-search-item{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:11px 22px;color:#2B2318;text-decoration:none;font-size:15.5px;transition:background .2s}
.kp-search-item:hover{background:#F4EADB}
.kp-search-item svg{width:16px;height:16px;color:#B89254;flex:none;opacity:0;transition:opacity .2s}
.kp-search-item:hover svg{opacity:1}
.kp-search-hint{padding:22px;font-size:15px;color:rgba(43,35,24,.6)}
.kp-search-hint a{color:#B89254}
.kp-search-inline{display:flex;align-items:center;gap:12px;max-width:560px;margin:30px auto 0;background:#fff;border:1px solid rgba(184,146,84,.5);padding:15px 20px;cursor:text}
.kp-search-inline svg{width:18px;height:18px;color:#B89254;flex:none}
.kp-search-inline input{flex:1;border:none;outline:none;background:none;font-family:inherit;font-size:16px;color:#2B2318}
.kp-search-inline input::placeholder{color:rgba(43,35,24,.45)}
@media(max-width:900px){.kp-search-btn span{display:none}.kp-search-btn{padding:9px 11px}}

/* ===== GALÉRIA — REÁLNE FOTKY Z KLINIKY ===== */
.kp-gallery{padding:96px 0;background:#FBF8F1}
.kp-gallery .kp-sec-head{margin-bottom:46px}
.kp-gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.kp-gal-item{margin:0;position:relative;overflow:hidden;border:1px solid rgba(184,146,84,.4)}
.kp-gal-item img{width:100%;height:100%;aspect-ratio:3/4;object-fit:cover;display:block;transition:transform .7s ease}
.kp-gal-item:hover img{transform:scale(1.045)}
@media(max-width:760px){.kp-gallery{padding:60px 0}.kp-gallery-grid{grid-template-columns:1fr 1fr;gap:12px}.kp-gal-item:nth-child(3){display:none}}
.kp-nav.open .kp-search-btn{margin-top:10px}
.kp-nav.open .kp-search-btn span{display:inline;font-size:15px;letter-spacing:.18em}
.kp-nav.open .kp-search-btn{padding:13px 26px;border-color:#B89254}

/* ===== PRED/PO VÝSLEDKY (carousel v recenziách) ===== */
.kp-vysledky{margin-top:64px}
.kp-vysledky .kp-sec-head{margin-bottom:34px;text-align:center}
.kp-vysledky h3{font-size:clamp(24px,3vw,32px)}
.kp-vys-stage{position:relative;max-width:760px;margin:0 auto}
.kp-vys-slide{display:none;grid-template-columns:1fr 1fr;gap:18px;animation:kpVysFade .6s ease}
.kp-vys-slide.on{display:grid}
@keyframes kpVysFade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.kp-vys-img{margin:0;position:relative;overflow:hidden;border:1px solid rgba(184,146,84,.4)}
.kp-vys-img img{width:100%;height:100%;aspect-ratio:3/4;object-fit:cover;display:block}
.kp-vys-tag{position:absolute;top:0;left:0;z-index:2;padding:7px 16px;font-size:11px;font-weight:700;letter-spacing:.16em;text-transform:uppercase}
.kp-vys-tag.pred{background:rgba(43,35,24,.85);color:#F4EADB}
.kp-vys-tag.po{background:#B89254;color:#fff}
.kp-vys-label{grid-column:1/-1;text-align:center;font-size:13px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:#B89254;margin-top:14px}
.kp-vys-dots{display:flex;justify-content:center;gap:10px;margin-top:22px}
.kp-vys-dot{width:34px;height:3px;border:none;background:rgba(43,35,24,.18);cursor:pointer;padding:0;transition:background .3s}
.kp-vys-dot.on{background:#B89254}
@media(max-width:600px){.kp-vys-slide{gap:10px}.kp-vys-label{margin-top:10px}}
.kp-vys-sec{padding:92px 0;background:#FBF8F1}
.kp-vys-sec .kp-vysledky{margin-top:0}
@media(max-width:760px){.kp-vys-sec{padding:60px 0}}

/* ===== PRED/PO MARQUEE (nekonečný kolotoč) ===== */
html{overflow-x:clip}
.kp-vys-marquee{overflow:hidden;position:relative;width:100vw;margin-left:calc(50% - 50vw)}
.kp-vys-track{display:flex;width:max-content;animation:kpVysMarquee 45s linear infinite;will-change:transform}
.kp-vys-marquee:hover .kp-vys-track{animation-play-state:paused}
.kp-vys-group{display:flex;gap:20px;padding-right:20px}
.kp-vys-card{margin:0;position:relative;width:300px;flex:none;border:1px solid rgba(184,146,84,.4);overflow:hidden;background:#fff}
.kp-vys-card img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block}
.kp-vys-card figcaption{position:absolute;bottom:0;left:0;right:0;padding:10px 14px;font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:#fff;background:linear-gradient(transparent,rgba(26,21,14,.7))}
@keyframes kpVysMarquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media(max-width:600px){.kp-vys-card{width:64vw}.kp-vys-group{gap:12px;padding-right:12px}.kp-vys-track{animation-duration:32s}}
@media(prefers-reduced-motion:reduce){.kp-vys-track{animation:none}.kp-vys-marquee{overflow-x:auto}}

/* Zoznam zákrokov v programe / súvisiace zákroky (SEO podstránky) */
.kp-related-list{list-style:none;padding:0;margin:26px auto 0;max-width:960px;display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:12px}
.kp-related-list li a{display:block;padding:14px 18px;border:1px solid var(--line-soft,#e6ddcb);color:var(--ink,#2c241c);text-decoration:none;transition:border-color .3s,background .3s;font-size:.95rem}
.kp-related-list li a:hover{border-color:var(--gold,#c8a463);background:#fbf7ef}
