
:root {
  --brand: #d8a9bb;
  --brand-2: #f4dce6;
  --brand-3: #fff4f8;
  --ink: #21161b;
  --muted: #6f5b64;
  --line: rgba(33, 22, 27, .14);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(90, 45, 66, .16);
  --radius: 34px;
  --font-body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "The Seasons", "Cormorant Garamond", Georgia, serif;
  --font-script: "Daydream", "Brush Script MT", "Apple Chancery", cursive;
  --header-h: 84px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--brand-3); font-family: var(--font-body); font-size: 16px; overflow-x: hidden; }
body::before { content: ""; position: fixed; inset: 0; z-index: -2; background: linear-gradient(rgba(255,248,251,.88), rgba(255,248,251,.9)), url('/assets/img/sakura-bg.webp') center/cover no-repeat; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 132px) 0; position: relative; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; letter-spacing: -.035em; font-weight: 700; color: var(--ink); }
h1 { font-size: clamp(56px, 10vw, 136px); line-height: .86; }
h2 { font-size: clamp(42px, 6vw, 84px); line-height: .92; }
h3 { font-size: clamp(27px, 3vw, 42px); line-height: 1.02; }
p { line-height: 1.75; color: var(--muted); }
.top-strip { position: relative; z-index: 80; background: #22171d; color: #fff; font-size: 13px; }
.top-strip__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.top-strip p { margin: 0; color: #fff; }
.top-strip a { color: #fff; font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 248, 251, .98); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.site-header.is-scrolled { box-shadow: 0 12px 40px rgba(70, 33, 50, .12); }
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 22px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; color: var(--ink); }
.brand img { width: auto; height: 68px; max-width: 132px; object-fit: contain; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; align-items: center; gap: clamp(10px, 1.2vw, 18px); padding: 0; margin: 0; list-style: none; }
.main-nav a { display: block; font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 12px 0; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 2px; background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }
.header-cta, .btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 15px 24px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.header-cta { background: var(--ink); color: #fff; white-space: nowrap; }
.header-cta:hover, .btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(80, 35, 55, .18); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-soft { background: var(--brand-2); color: var(--ink); border-color: rgba(33,22,27,.08); }
.btn-ghost { background: rgba(255,255,255,.25); color: var(--ink); border-color: rgba(33,22,27,.22); backdrop-filter: blur(12px); }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; background: transparent; margin-left: auto; padding: 9px; align-items: center; justify-content: center; flex-direction: column; gap: 6px; }
.menu-toggle span { display: block; width: 28px; height: 2px; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-panel { position: fixed; left: 0; right: 0; top: calc(var(--header-h) + 38px); width: 100%; background: #fff8fb; border-bottom: 1px solid var(--line); box-shadow: 0 30px 70px rgba(44, 22, 31, .18); transform: translateY(-130%); opacity: 0; pointer-events: none; transition: transform .28s ease, opacity .28s ease; z-index: 99; }
.mobile-panel.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.site-header.is-scrolled + .mobile-panel { top: var(--header-h); }
.mobile-panel__links { display: grid; width: 100%; padding: 22px 24px 32px; gap: 4px; background: #fff8fb; }
.mobile-panel__links a { width: 100%; display: block; padding: 16px 8px; border-bottom: 1px solid var(--line); font-size: 20px; font-family: var(--font-heading); }
.hero { min-height: calc(100vh - 122px); display: grid; place-items: center; overflow: hidden; position: relative; text-align: center; padding: 92px 0; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.96); }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,245,249,.42), rgba(255,245,249,.68)); }
.hero__content { position: relative; z-index: 1; max-width: 1040px; }
.hero__lead { font-family: var(--font-heading); font-size: clamp(30px, 4vw, 58px); color: var(--ink); margin: 22px 0 6px; }
.hero__text { font-size: clamp(18px, 2.1vw, 24px); max-width: 760px; margin: 18px auto 0; color: #31242a; }
.hero__actions, .centered-actions { margin-top: 34px; display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.script-line { font-family: var(--font-script); font-size: clamp(30px, 5vw, 60px); color: #4f222f; margin: 0 0 10px; }
.broken-grid { display: grid; grid-template-columns: .9fr 1.2fr .75fr; gap: clamp(22px, 4vw, 52px); align-items: center; }
.portrait-card, .copy-panel, .round-logo, .story-card, .value-box, .contact-card, .booking-widget-wrap, .map-card, .contact-form, .promo-modal__card { background: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.75); box-shadow: var(--shadow); border-radius: var(--radius); }
.portrait-card { padding: 22px; transform: rotate(-2deg); }
.portrait-card img { aspect-ratio: 1 / 1.22; object-fit: cover; border-radius: calc(var(--radius) - 12px); }
.portrait-card p { margin: 14px 4px 0; font-weight: 700; color: var(--ink); }
.copy-panel { padding: clamp(28px, 5vw, 54px); }
.copy-panel p { font-size: 18px; }
.round-logo { aspect-ratio: 1; display: grid; place-items: center; padding: 42px; border-radius: 50%; background: var(--brand); color: #fff; transform: translateY(-42px); }
.round-logo img { width: 70%; max-height: 76%; object-fit: contain; filter: brightness(0) invert(1); }
.text-arrow { display: inline-flex; margin-top: 20px; font-weight: 900; border-bottom: 2px solid currentColor; }
.section-heading { margin-bottom: 38px; }
.section-heading--center, .centered-narrow { text-align: center; max-width: 880px; }
.section-heading p, .centered-narrow p { font-size: 19px; max-width: 760px; margin: 18px auto 0; }
.home-service-strip { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.mini-service { position: relative; overflow: hidden; min-height: 430px; border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; justify-content: flex-end; background: #fff; box-shadow: var(--shadow); isolation: isolate; }
.mini-service::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.52)); }
.mini-service img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .6s ease; }
.mini-service:hover img { transform: scale(1.08); }
.mini-service h3, .mini-service p, .mini-service a { color: #fff; }
.mini-service p { margin: 10px 0 18px; }
.mini-service a { font-weight: 900; }
.loyalty { background: rgba(255,255,255,.36); }
.loyalty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; }
.loyalty-copy, .loyalty-card { padding: clamp(30px, 5vw, 58px); border-radius: var(--radius); background: rgba(255,255,255,.7); box-shadow: var(--shadow); }
.stamp-card { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; padding: 28px; border: 3px solid var(--ink); border-radius: 28px; background: rgba(255,244,248,.92); }
.stamp-card__slot { aspect-ratio: 1; display: grid; place-items: center; border: 2px solid var(--ink); border-radius: 50%; font-size: 24px; color: var(--ink); background: #fff; }
.stamp-card__slot.is-hidden-star { color: transparent; background: linear-gradient(135deg, #fff, var(--brand-2)); }
.booking-teaser__grid, .booking-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.calendar-art { padding: 22px; background: rgba(255,255,255,.7); border: 3px solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); }
.calendar-art__head { display: grid; grid-template-columns: repeat(6,1fr); border-bottom: 3px solid var(--ink); }
.calendar-art__head span { padding: 14px 4px; text-align: center; font-weight: 900; }
.calendar-art__body { display: grid; grid-template-columns: repeat(6,1fr); }
.calendar-art__body button { aspect-ratio: 1; border: 1.5px solid var(--ink); min-width: 0; }
.free { background: #dfa9bc; }
.ask { background: #b8d8c0; }
.busy { background: #fff; }
.legend { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0 28px; }
.legend span { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; }
.legend i { width: 18px; height: 18px; border: 1px solid var(--ink); display: inline-block; border-radius: 50%; }
.review-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.review-card { padding: 30px; border-radius: 28px; background: #fff; box-shadow: var(--shadow); border: 1px solid rgba(33,22,27,.08); }
.review-card strong { display: block; font-size: 22px; font-family: var(--font-heading); }
.review-card span { color: #e09a31; letter-spacing: 2px; }
.review-card p { color: var(--ink); }
.review-card small { color: var(--muted); font-weight: 800; }
.page-hero, .offer-hero { padding: clamp(90px, 12vw, 160px) 0 clamp(70px, 8vw, 120px); position: relative; overflow: hidden; }
.page-hero::before, .offer-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(255,248,251,.62), rgba(255,248,251,.88)), url('/assets/img/sakura-bg.webp') center/cover no-repeat; }
.page-hero__grid, .offer-hero__grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 44px; align-items: center; }
.page-hero__copy p, .offer-hero__title p { font-size: clamp(18px, 2vw, 24px); }
.page-hero__collage, .hover-stack { min-height: 520px; position: relative; }
.page-hero__collage img, .hover-stack img { position: absolute; width: 58%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .45s ease; }
.page-hero__collage img:nth-child(1), .hover-stack img:nth-child(1) { left: 0; top: 0; }
.page-hero__collage img:nth-child(2), .hover-stack img:nth-child(2) { right: 0; bottom: 0; }
.hover-stack img:nth-child(3) { left: 31%; top: 18%; z-index: 2; }
.hover-stack:hover img:nth-child(1) { transform: translate(-14px,-10px) rotate(-4deg); }
.hover-stack:hover img:nth-child(2) { transform: translate(16px,12px) rotate(4deg); }
.hover-stack:hover img:nth-child(3) { transform: scale(1.04); }
.story-grid, .values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.story-card, .value-box { padding: clamp(28px, 4vw, 44px); }
.values-grid { grid-template-columns: repeat(4,1fr); }
.value-box { background: rgba(255,255,255,.74); }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); display: flex; flex-direction: column; min-height: 100%; transition: transform .32s ease, box-shadow .32s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: 0 34px 90px rgba(80, 35, 55, .2); }
.service-card__media { display: block; overflow: hidden; }
.service-card__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .6s ease; }
.service-card:hover .service-card__media img { transform: scale(1.08); }
.service-card__body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.service-card__meta { display: flex; gap: 12px; justify-content: space-between; font-size: 12px; font-weight: 900; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 18px; }
.service-card__for { color: #3b2a31; font-weight: 700; }
.service-card__bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; }
.service-card__bottom strong { font-size: 22px; }
.service-card__bottom a { font-weight: 900; border-bottom: 2px solid currentColor; }
.process { background: linear-gradient(90deg, rgba(255,255,255,.54), rgba(244,220,230,.58)); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; }
.process-list { counter-reset: step; list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.process-list li { padding: 30px; border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.process-list li::before { counter-increment: step; content: counter(step, decimal-leading-zero); display: block; font-size: 42px; font-family: var(--font-heading); margin-bottom: 12px; }
.process-list strong { display: block; font-size: 22px; margin-bottom: 8px; }
.effect-feature img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.effects-grid { display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 22px; align-items: stretch; }
.effect-card { padding: 18px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.effect-card img { width: 100%; aspect-ratio: 4/4.4; object-fit: cover; border-radius: calc(var(--radius) - 12px); }
.effect-card:nth-child(3) { transform: translateY(34px); }
.addon-section .shell > .sos-reviews-widget, .sos-reviews-widget { border-radius: var(--radius); background: rgba(255,255,255,.86); padding: clamp(28px, 5vw, 56px); box-shadow: var(--shadow); }
.sos-reviews-widget h2 { text-align: center; margin-bottom: 28px; }
.sos-reviews-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.sos-review { background: #fff8fb; border: 1px solid var(--line); border-radius: 24px; padding: 22px; }
.sos-review header { display: flex; justify-content: space-between; gap: 12px; }
.sos-review-stars { color: #e09a31; white-space: nowrap; }
.sos-review-form { margin-top: 28px; display: grid; gap: 16px; }
.sos-form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.sos-review-form label, .sos-booking-form label, .contact-form label { display: grid; gap: 8px; font-weight: 800; color: var(--ink); }
.sos-review-form input, .sos-review-form textarea, .sos-review-form select, .sos-booking-form input, .sos-booking-form textarea, .sos-booking-form select, .contact-form input, .contact-form textarea, .price-tools input { width: 100%; border: 1px solid var(--line); border-radius: 18px; padding: 15px 16px; background: #fff; color: var(--ink); outline: none; }
.sos-review-form button, .sos-booking-form button, .contact-form button { border: 0; border-radius: 999px; background: var(--ink); color: #fff; min-height: 50px; padding: 14px 24px; font-weight: 900; cursor: pointer; }
.sos-review-confirm { display: none; }
.sos-review-confirm.is-visible { display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: end; }
.masonry { columns: 3 260px; column-gap: 18px; }
.gallery-tile { break-inside: avoid; margin: 0 0 18px; padding: 12px; background: #fff; border-radius: 28px; box-shadow: var(--shadow); }
.gallery-tile button { border: 0; padding: 0; background: transparent; width: 100%; cursor: zoom-in; }
.gallery-tile img { border-radius: 20px; width: 100%; object-fit: cover; }
.gallery-tile figcaption { padding: 12px 6px 4px; font-weight: 800; }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(20,14,18,.86); display: grid; place-items: center; padding: 30px; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img { max-height: 86vh; border-radius: 24px; box-shadow: 0 30px 100px rgba(0,0,0,.4); }
.lightbox button { position: absolute; top: 22px; right: 22px; width: 50px; height: 50px; border: 0; border-radius: 50%; background: #fff; font-size: 30px; }
.faq-list { display: grid; gap: 14px; max-width: 900px; }
.faq-item { background: rgba(255,255,255,.82); border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: 0 16px 44px rgba(80,35,55,.08); }
.faq-item button { width: 100%; border: 0; background: transparent; padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; text-align: left; cursor: pointer; font-weight: 900; font-size: 20px; }
.faq-item i { width: 18px; height: 18px; position: relative; flex: 0 0 auto; }
.faq-item i::before, .faq-item i::after { content: ""; position: absolute; inset: 8px 0 auto 0; height: 2px; background: var(--ink); }
.faq-item i::after { transform: rotate(90deg); transition: transform .2s ease; }
.faq-item.is-open i::after { transform: rotate(0); }
.faq-item div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .28s ease; }
.faq-item.is-open div { grid-template-rows: 1fr; }
.faq-item p { overflow: hidden; margin: 0; padding: 0 28px; }
.faq-item.is-open p { padding-bottom: 24px; }
.price-tools { display: grid; grid-template-columns: 180px 1fr; gap: 16px; align-items: center; margin-bottom: 22px; }
.price-tools label { font-weight: 900; }
.price-list { display: grid; gap: 12px; }
.price-row { display: grid; grid-template-columns: 1.2fr .35fr auto; gap: 18px; align-items: center; padding: 22px 26px; background: rgba(255,255,255,.84); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 16px 38px rgba(80,35,55,.08); }
.price-row h3 { font-size: 26px; }
.price-row p { margin: 4px 0 0; }
.price-row strong { font-size: 24px; white-space: nowrap; }
.price-row a { font-weight: 900; border-bottom: 2px solid currentColor; }
.included-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 36px; align-items: center; }
.included-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }
.booking-inspiration { border-radius: var(--radius); box-shadow: var(--shadow); }
.booking-widget-wrap { padding: clamp(28px, 5vw, 58px); display: grid; grid-template-columns: .8fr 1.2fr; gap: 30px; align-items: start; }
.sos-booking-form { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.sos-booking-form label:nth-child(7), .sos-booking-form button, .sos-booking-status { grid-column: 1 / -1; }
.contact-hero-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; align-items: start; }
.contact-card, .contact-form, .map-card { padding: clamp(28px, 4vw, 44px); }
.map-card iframe { width: 100%; min-height: 420px; border: 0; border-radius: 24px; }
.map-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px; }
.contact-form { display: grid; gap: 16px; }
.site-footer { background: #22171d; color: #fff; padding: 68px 0 24px; }
.site-footer h2 { color: #fff; font-size: 30px; margin-bottom: 16px; }
.site-footer p, .site-footer a, .site-footer span { color: rgba(255,255,255,.82); }
.footer-grid { display: grid; grid-template-columns: 1.15fr .9fr .9fr .8fr; gap: 30px; }
.footer-brand img { width: auto; height: 112px; max-width: 150px; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 18px; }
.socials { display: grid; gap: 10px; }
.socials a, .footer-link { font-weight: 900; text-decoration: underline; text-underline-offset: 5px; }
.footer-bottom { margin-top: 46px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 14px; }
.promo-modal { position: fixed; inset: 0; z-index: 180; display: grid; place-items: center; padding: 22px; opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.promo-modal.is-open { opacity: 1; pointer-events: auto; }
.promo-modal__backdrop { position: absolute; inset: 0; background: rgba(22,13,18,.58); backdrop-filter: blur(7px); }
.promo-modal__card { position: relative; z-index: 1; width: min(880px,100%); display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; background: #fff8fb; }
.promo-modal__card img { width: 100%; height: 100%; object-fit: contain; background: #fff0f6; padding: 18px; }
.promo-modal__content { padding: clamp(26px,4vw,46px); }
.promo-modal__close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: #fff; font-size: 28px; cursor: pointer; }
.promo-modal__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1120px) {
  .main-nav ul { gap: 10px; }
  .main-nav a { font-size: 12px; }
  .header-cta { padding-inline: 18px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .home-service-strip { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 980px) {
  :root { --header-h: 72px; }
  .shell { width: min(100% - 28px, 760px); }
  .main-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .brand img { width: auto; height: 56px; max-width: 112px; object-fit: contain; }
  .top-strip__inner { justify-content: center; text-align: center; }
  .top-strip a { display: none; }
  .hero { min-height: calc(100vh - 110px); }
  .broken-grid, .loyalty-grid, .booking-teaser__grid, .page-hero__grid, .offer-hero__grid, .story-grid, .values-grid, .process-grid, .effects-grid, .booking-page-grid, .booking-widget-wrap, .contact-hero-grid, .contact-grid, .included-grid { grid-template-columns: 1fr; }
  .round-logo { width: min(280px,80%); margin: 0 auto; transform: none; }
  .page-hero__collage, .hover-stack { min-height: 430px; }
  .values-grid, .review-cards, .sos-reviews-list { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .effect-card:nth-child(3) { transform: none; }
  .price-row { grid-template-columns: 1fr; }
  .sos-booking-form, .sos-form-grid { grid-template-columns: 1fr; }
  .price-tools { grid-template-columns: 1fr; }
  .promo-modal__card { grid-template-columns: 1fr; }
  .promo-modal__card img { max-height: 260px; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(48px, 17vw, 82px); }
  h2 { font-size: clamp(38px, 12vw, 62px); }
  .section { padding: 70px 0; }
  .hero__actions, .centered-actions, .promo-modal__actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .home-service-strip, .service-grid { grid-template-columns: 1fr; }
  .mini-service { min-height: 360px; }
  .calendar-art { padding: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* SVERA live chat and calendar update */
.svera-calendar { border-radius: var(--radius); background: rgba(255,255,255,.9); padding: clamp(24px, 4vw, 42px); box-shadow: var(--shadow); display: grid; gap: 22px; }
.svera-calendar__top { display: grid; grid-template-columns: minmax(220px, 1fr) auto; gap: 18px; align-items: end; }
.svera-calendar__top label { display: grid; gap: 8px; font-weight: 900; color: var(--ink); }
.svera-calendar select, .calendar-request input, .calendar-request textarea { width: 100%; border: 1px solid var(--line); border-radius: 18px; padding: 14px 16px; background: #fff; color: var(--ink); font: inherit; outline: none; }
.calendar-month { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.calendar-month strong { min-width: 150px; text-align: center; font-size: 20px; }
.calendar-month button { width: 44px; height: 44px; border: 0; border-radius: 50%; background: var(--ink); color: #fff; font-size: 30px; line-height: 1; cursor: pointer; }
.calendar-legend { display: flex; gap: 12px; flex-wrap: wrap; font-weight: 800; color: var(--muted); }
.calendar-legend span { display: inline-flex; align-items: center; gap: 7px; }
.calendar-legend i { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--line); }
.calendar-legend .free { background: #f7b6cf; }
.calendar-legend .ask { background: #bce8c8; }
.calendar-legend .busy { background: #fff; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 8px; }
.calendar-grid > span { text-align: center; font-size: 12px; font-weight: 900; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.calendar-day { min-height: 76px; border: 1px solid var(--line); border-radius: 18px; padding: 10px; background: #fff; display: grid; align-content: space-between; text-align: left; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.calendar-day:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(80,35,55,.12); }
.calendar-day--blank { border: 0; background: transparent; box-shadow: none; }
.calendar-day strong { font-size: 22px; line-height: 1; }
.calendar-day small { font-size: 11px; font-weight: 900; color: var(--muted); }
.calendar-day.is-free { background: linear-gradient(145deg, #ffe3ee, #f7b6cf); }
.calendar-day.is-ask { background: linear-gradient(145deg, #e7f8ed, #bce8c8); }
.calendar-day.is-busy { background: #fff; opacity: .68; }
.calendar-day.is-selected { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(33,22,27,.12); }
.calendar-panel { padding: 20px; border-radius: 24px; background: #fff8fb; display: grid; gap: 14px; }
.calendar-panel h3 { font-size: 30px; margin: 0; }
.calendar-panel p { margin: 0; }
.calendar-slots { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.calendar-slot { border: 1px solid var(--line); border-radius: 18px; padding: 12px; background: #fff; cursor: pointer; text-align: left; display: grid; gap: 3px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease; }
.calendar-slot:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(80,35,55,.1); }
.calendar-slot small { font-size: 11px; color: var(--muted); font-weight: 800; }
.calendar-slot.is-free { background: #ffe3ee; }
.calendar-slot.is-busy { background: #fff; opacity: .45; cursor: not-allowed; }
.calendar-slot.is-selected { background: var(--ink); color: #fff; }
.calendar-slot.is-selected small { color: rgba(255,255,255,.78); }
.calendar-note { padding: 18px; border-radius: 20px; background: #fff; border: 1px solid var(--line); display: grid; gap: 8px; }
.calendar-note.is-ask { background: #e7f8ed; }
.calendar-note a { font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }
.calendar-request { display: grid; gap: 16px; }
.calendar-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.calendar-form-grid label { display: grid; gap: 8px; font-weight: 900; }
.calendar-form-grid label:last-child { grid-column: 1 / -1; }
.calendar-request textarea { min-height: 100px; resize: vertical; }
.calendar-request button { justify-self: start; border: 0; border-radius: 999px; background: var(--ink); color: #fff; min-height: 50px; padding: 14px 24px; font-weight: 900; cursor: pointer; }
.svera-calendar__status { min-height: 24px; font-weight: 900; color: var(--ink); }
@media (max-width: 980px) { .svera-calendar__top { grid-template-columns: 1fr; } .calendar-month { justify-content: space-between; } .calendar-slots { grid-template-columns: repeat(2, minmax(0, 1fr)); } .calendar-form-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .svera-calendar { padding: 18px; } .calendar-grid { gap: 5px; } .calendar-day { min-height: 64px; border-radius: 14px; padding: 8px; } .calendar-day strong { font-size: 18px; } .calendar-day small { font-size: 10px; } .calendar-slots { grid-template-columns: 1fr; } .calendar-request button { width: 100%; } }

/* SVERA live chat */
body > .chat-assistant[data-chat] {
  position: fixed !important;
  top: auto !important;
  left: auto !important;
  right: 16px !important;
  bottom: 16px !important;
  right: max(12px, env(safe-area-inset-right, 0px)) !important;
  bottom: max(12px, env(safe-area-inset-bottom, 0px)) !important;
  z-index: 2147483000 !important;
  width: auto !important;
  max-width: calc(100vw - 24px) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
  isolation: isolate;
  font-family: var(--font-body);
  color: var(--ink);
}
.chat-assistant,
.chat-assistant * {
  box-sizing: border-box;
}
.chat-assistant [hidden] {
  display: none !important;
}
.chat-assistant .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.chat-assistant__panel {
  position: relative !important;
  inset: auto !important;
  order: 1;
  width: min(392px, calc(100vw - 24px)) !important;
  max-width: calc(100vw - 24px) !important;
  max-height: calc(100vh - 104px) !important;
  max-height: calc(100dvh - 104px - env(safe-area-inset-bottom, 0px)) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(73, 38, 54, .13);
  border-radius: 26px;
  background: #fffdfd;
  box-shadow: 0 28px 80px rgba(40, 19, 29, .28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.98);
  transform-origin: right bottom;
  pointer-events: none;
  transition: opacity .22s ease, transform .28s cubic-bezier(.22, 1, .36, 1), visibility 0s linear .28s;
}
.chat-assistant__panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  transition-delay: 0s;
}
.chat-assistant__panel.has-conversation {
  height: min(640px, calc(100vh - 104px)) !important;
  height: min(640px, calc(100dvh - 104px - env(safe-area-inset-bottom, 0px))) !important;
}
.chat-assistant__header {
  flex: 0 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px 15px 18px;
  border-bottom: 1px solid rgba(73, 38, 54, .09);
  background: linear-gradient(135deg, #fff8fb, #f4dce6);
}
.chat-assistant__identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}
.chat-assistant__identity > div {
  min-width: 0;
}
.chat-assistant__avatar {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(33, 22, 27, .2);
}
.chat-assistant__title {
  display: block;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}
.chat-assistant__status {
  position: relative;
  margin: 4px 0 0;
  padding-left: 13px;
  overflow: hidden;
  color: #715d66;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chat-assistant__status::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b89ba7;
  box-shadow: 0 0 0 3px rgba(184, 155, 167, .18);
}
.chat-assistant.is-online .chat-assistant__status::before {
  background: #3aa66a;
  box-shadow: 0 0 0 3px rgba(58, 166, 106, .16);
}
.chat-assistant__close {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.chat-assistant__close:hover,
.chat-assistant__close:focus-visible {
  transform: rotate(4deg);
  background: #fff;
}
.chat-assistant__prechat {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 22px;
  background: #fffdfd;
}
.chat-assistant__intro {
  padding: 16px;
  border-radius: 18px;
  background: #fff4f8;
}
.chat-assistant__intro p {
  margin: 0;
  color: #6f5b64;
  font-size: 13px;
  line-height: 1.55;
}
.chat-assistant__intro p + p {
  margin-top: 5px;
}
.chat-assistant__intro strong {
  color: var(--ink);
  font-size: 14px;
}
.chat-assistant__start-form {
  width: 100%;
  min-width: 0;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 13px !important;
  margin: 18px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
}
.chat-assistant__field {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}
.chat-assistant__field > span {
  min-width: 0;
}
.chat-assistant__field b {
  color: #b84f76;
}
.chat-assistant__field small {
  color: #8a7580;
  font-size: 11px;
  font-weight: 650;
}
.chat-assistant__field input,
.chat-assistant__reply-form textarea {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  border: 1px solid #e7cad6;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  outline: none;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.chat-assistant__field input {
  height: 48px;
  padding: 11px 13px;
}
.chat-assistant__field input:focus,
.chat-assistant__reply-form textarea:focus {
  border-color: #b86e8a;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(216, 169, 187, .2);
}
.chat-assistant__field input[aria-invalid="true"] {
  border-color: #b43d5e;
  box-shadow: 0 0 0 4px rgba(180, 61, 94, .12);
}
.chat-assistant__primary {
  width: 100% !important;
  min-height: 50px;
  margin: 2px 0 0 !important;
  padding: 13px 18px !important;
  border: 0 !important;
  border-radius: 16px !important;
  background: var(--ink) !important;
  color: #fff !important;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(33, 22, 27, .18);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.chat-assistant__primary:hover,
.chat-assistant__primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(33, 22, 27, .24);
}
.chat-assistant__primary:disabled {
  opacity: .6;
  cursor: wait;
}
.chat-assistant__privacy {
  margin: -2px 0 0;
  color: #8a7580;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}
.chat-assistant__feedback {
  margin: 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff0f3;
  color: #8b2946;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}
.chat-assistant__conversation {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #fffdfd;
}
.chat-assistant__messages {
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0, rgba(244, 220, 230, .52), transparent 44%),
    #fffdfd;
  scrollbar-width: thin;
  scrollbar-color: #d8a9bb transparent;
}
.chat-assistant__messages::-webkit-scrollbar {
  width: 7px;
}
.chat-assistant__messages::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background: #d8a9bb;
}
.chat-assistant__empty,
.chat-assistant__loading {
  margin: auto;
  padding: 16px;
  color: #816b76;
  font-size: 13px;
  text-align: center;
}
.chat-assistant__loading::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid rgba(33, 22, 27, .16);
  border-top-color: var(--ink);
  border-radius: 50%;
  vertical-align: -2px;
  animation: svera-chat-spin .8s linear infinite;
}
.chat-message {
  max-width: 86%;
  display: grid;
  gap: 4px;
  align-self: flex-start;
}
.chat-message--visitor {
  align-self: flex-end;
  justify-items: end;
}
.chat-message__bubble {
  padding: 11px 13px;
  border-radius: 17px 17px 17px 5px;
  background: #fff0f5;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  box-shadow: 0 8px 18px rgba(80, 35, 55, .07);
}
.chat-message--agent .chat-message__bubble {
  background: #eaf7ef;
}
.chat-message--visitor .chat-message__bubble {
  border-radius: 17px 17px 5px 17px;
  background: var(--ink);
  color: #fff;
}
.chat-message small {
  padding: 0 4px;
  color: #927d87;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}
.chat-message.is-new {
  animation: svera-chat-message-in .34s cubic-bezier(.22, 1, .36, 1) both;
}
.chat-assistant__typing {
  flex: 0 0 auto;
  width: fit-content;
  margin: -4px 18px 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 16px 16px 16px 5px;
  background: #fff0f5;
}
.chat-assistant__typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8b6675;
  animation: svera-chat-dot 1.2s ease-in-out infinite;
}
.chat-assistant__typing i:nth-of-type(2) {
  animation-delay: .15s;
}
.chat-assistant__typing i:nth-of-type(3) {
  animation-delay: .3s;
}
.chat-assistant__quick {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  padding: 12px 14px;
  border-top: 1px solid rgba(73, 38, 54, .08);
  background: #fff9fb;
}
.chat-assistant__quick button {
  min-width: 0;
  min-height: 36px;
  padding: 8px 9px;
  border: 1px solid #ead0da;
  border-radius: 11px;
  background: #fff;
  color: #57434c;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.chat-assistant__quick button:hover,
.chat-assistant__quick button:focus-visible {
  border-color: #bd7893;
  background: #fff3f7;
  transform: translateY(-1px);
}
.chat-assistant__reply-form {
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 50px !important;
  align-items: end;
  gap: 9px !important;
  margin: 0 !important;
  padding: 12px 14px !important;
  border-top: 1px solid rgba(73, 38, 54, .08) !important;
  background: #fff !important;
}
.chat-assistant__reply-form textarea {
  min-height: 50px;
  max-height: 120px;
  padding: 13px 14px;
  resize: none;
  line-height: 1.4;
}
.chat-assistant__send {
  width: 50px !important;
  height: 50px;
  min-width: 50px;
  display: grid;
  place-items: center;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 15px !important;
  background: var(--ink) !important;
  color: #fff !important;
  cursor: pointer;
  transition: transform .2s ease, opacity .2s ease;
}
.chat-assistant__send:hover,
.chat-assistant__send:focus-visible {
  transform: translateY(-1px);
}
.chat-assistant__send:disabled {
  opacity: .55;
  cursor: wait;
}
.chat-assistant__send span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.chat-assistant__send svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chat-assistant__send.is-loading svg {
  animation: svera-chat-send .75s ease-in-out infinite alternate;
}
.chat-assistant__feedback--reply {
  flex: 0 0 auto;
  margin: 0 14px 10px;
}
.chat-assistant__footer {
  flex: 0 0 auto;
  padding: 0 14px 12px;
  background: #fff;
  text-align: center;
}
.chat-assistant__footer button {
  border: 0;
  background: transparent;
  color: #806b74;
  font-size: 11px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.chat-assistant__button {
  position: relative !important;
  inset: auto !important;
  order: 2;
  flex: 0 0 64px;
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  display: grid !important;
  place-items: center;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible;
  border: 0 !important;
  border-radius: 50% !important;
  background: var(--ink) !important;
  color: #fff !important;
  box-shadow: 0 18px 44px rgba(40, 19, 29, .32);
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.chat-assistant__button > * {
  pointer-events: none;
}
.chat-assistant__button:hover,
.chat-assistant__button:focus-visible,
.chat-assistant.is-open .chat-assistant__button {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 52px rgba(40, 19, 29, .38);
}
.chat-assistant__button svg {
  position: relative;
  z-index: 2;
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.chat-assistant__button-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.chat-assistant__pulse {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: rgba(216, 169, 187, .44);
  animation: svera-chat-pulse 2.4s ease-out infinite;
}
.chat-assistant__button::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 3px;
  right: 3px;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #b89ba7;
}
.chat-assistant.is-online .chat-assistant__button::after {
  background: #3aa66a;
}
@keyframes svera-chat-message-in {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes svera-chat-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: .45; }
  30% { transform: translateY(-4px); opacity: 1; }
}
@keyframes svera-chat-spin {
  to { transform: rotate(360deg); }
}
@keyframes svera-chat-send {
  from { transform: translateX(-1px); }
  to { transform: translateX(2px); }
}
@keyframes svera-chat-pulse {
  0% { opacity: .55; transform: scale(.92); }
  70%, 100% { opacity: 0; transform: scale(1.42); }
}
@media (max-width: 520px) {
  body > .chat-assistant[data-chat] {
    right: 10px !important;
    bottom: 10px !important;
    right: max(10px, env(safe-area-inset-right, 0px)) !important;
    bottom: max(10px, env(safe-area-inset-bottom, 0px)) !important;
    max-width: calc(100vw - 20px) !important;
    gap: 10px;
  }
  .chat-assistant__panel {
    width: calc(100vw - 20px) !important;
    max-width: calc(100vw - 20px) !important;
    max-height: calc(100vh - 88px) !important;
    max-height: calc(100dvh - 88px - env(safe-area-inset-bottom, 0px)) !important;
    border-radius: 22px;
  }
  .chat-assistant__panel.has-conversation {
    height: calc(100vh - 88px) !important;
    height: calc(100dvh - 88px - env(safe-area-inset-bottom, 0px)) !important;
  }
  .chat-assistant__header {
    min-height: 70px;
    padding: 12px 12px 12px 14px;
  }
  .chat-assistant__avatar {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    font-size: 21px;
  }
  .chat-assistant__status {
    max-width: calc(100vw - 150px);
  }
  .chat-assistant__prechat {
    padding: 18px;
  }
  .chat-assistant__intro {
    padding: 14px;
  }
  .chat-assistant__start-form {
    gap: 11px !important;
    margin-top: 15px !important;
  }
  .chat-assistant__messages {
    padding: 14px;
  }
  .chat-assistant__quick {
    padding: 10px 12px;
  }
  .chat-assistant__reply-form {
    padding: 10px 12px !important;
  }
  .chat-assistant__button {
    flex-basis: 58px;
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
  }
  .chat-assistant__button svg {
    width: 26px;
    height: 26px;
  }
}
@media (max-height: 560px) {
  .chat-assistant__quick {
    display: none;
  }
  .chat-assistant__header {
    min-height: 64px;
    padding-block: 10px;
  }
  .chat-assistant__prechat {
    padding-block: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .chat-assistant__panel,
  .chat-assistant__button,
  .chat-message.is-new,
  .chat-assistant__typing i,
  .chat-assistant__pulse,
  .chat-assistant__loading::after,
  .chat-assistant__send.is-loading svg {
    animation: none !important;
    transition: none !important;
  }
}


/* Client corrections - service details, gallery filters, popup image */
.service-card { position: relative; overflow: hidden; }
.service-card__body { position: relative; }
.service-card__includes { margin-top: 16px; padding: 16px 18px; border: 1px solid rgba(73,38,54,.14); border-radius: 20px; background: #fff8fb; transition: transform .25s ease, opacity .25s ease, box-shadow .25s ease; }
.service-card__includes strong { display: block; margin-bottom: 6px; color: var(--ink); font-weight: 900; }
.service-card__includes p { margin: 0; color: #6f5b64; font-size: 14px; line-height: 1.55; }
@media (hover: hover) and (min-width: 981px) {
  .service-card__includes { opacity: 0; transform: translateY(10px); max-height: 0; padding-top: 0; padding-bottom: 0; border-width: 0; overflow: hidden; }
  .service-card:hover .service-card__includes,
  .service-card:focus-within .service-card__includes { opacity: 1; transform: translateY(0); max-height: 220px; padding: 16px 18px; border-width: 1px; box-shadow: 0 16px 36px rgba(80,35,55,.09); }
}
.value-box--photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 22px; margin-bottom: 18px; box-shadow: 0 16px 36px rgba(80,35,55,.12); }
.gallery-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: -24px; margin-bottom: 28px; }
.gallery-filters button { border: 1px solid var(--line); border-radius: 999px; padding: 12px 18px; background: rgba(255,255,255,.86); color: var(--ink); font-weight: 900; cursor: pointer; transition: background .2s ease, transform .2s ease, box-shadow .2s ease; }
.gallery-filters button:hover, .gallery-filters button.is-active { background: var(--ink); color: #fff; transform: translateY(-1px); box-shadow: 0 14px 30px rgba(80,35,55,.14); }
.gallery-tile.is-hidden { display: none; }
.contact-cta .centered-actions { margin-top: 22px; }
.promo-modal__card { max-height: min(760px, calc(100vh - 44px)); }
.promo-modal__card img { width: 100%; height: 100%; min-height: 320px; object-fit: contain; background: #fff0f6; padding: 18px; }
.calendar-variant-field { min-width: min(100%, 280px); }
.svera-calendar__top { grid-template-columns: minmax(220px, 1fr) minmax(220px, .9fr) auto; }
@media (max-width: 980px) { .svera-calendar__top { grid-template-columns: 1fr; } .promo-modal__card img { max-height: 320px; min-height: 220px; } }
@media (max-width: 640px) { .service-card__includes { padding: 14px; } .gallery-filters { justify-content: flex-start; } .promo-modal { padding: 12px; } .promo-modal__card img { min-height: 180px; padding: 12px; } }


.value-box > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 22px; margin-bottom: 18px; box-shadow: 0 16px 36px rgba(80,35,55,.12); }
.value-box > img[src=""] { display: none; }
.about-social-cta { margin-top: 26px; padding: clamp(24px, 4vw, 36px); border-radius: var(--radius); background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.78); box-shadow: var(--shadow); text-align: center; }
.about-social-cta p { max-width: 720px; margin: 0 auto 18px; color: var(--muted); font-weight: 700; }
.socials--center { justify-content: center; }
