:root {
  --cream: #fff8f0;
  --paper: #fffdf9;
  --ink: #21332f;
  --muted: #6f7b75;
  --coral: #ff725e;
  --coral-dark: #e95545;
  --pink: #ffb0b8;
  --yellow: #ffd04c;
  --aqua: #46c6bd;
  --aqua-soft: #c8f0e8;
  --peach: #ffe0cc;
  --line: rgba(33, 51, 47, .13);
  --shadow: 0 24px 70px rgba(90, 64, 45, .14);
  --radius: 28px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --max: 1260px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
body[data-mode="production"] .demo-only { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--cream); font-family: var(--sans); line-height: 1.55; }
body.locked { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { color: var(--ink); background: var(--yellow); }

.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-160%); padding: 10px 16px; border-radius: 999px; background: var(--ink); color: white; }
.skip-link:focus { transform: translateY(0); }
.announcement { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 16px; padding: 6px 50px; color: #173c38; background: var(--aqua-soft); font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-align: center; }
.announcement-close { position: absolute; right: 20px; border: 0; background: transparent; cursor: pointer; font-size: 1.15rem; }
.announcement.hidden { display: none; }

.site-header { position: sticky; z-index: 50; top: 0; height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 0 max(24px, calc((100vw - var(--max)) / 2)); border-bottom: 1px solid transparent; background: rgba(255, 248, 240, .82); backdrop-filter: blur(18px); transition: .25s ease; }
.site-header.scrolled { height: 70px; border-color: var(--line); box-shadow: 0 10px 40px rgba(70, 55, 40, .06); }
.brand { display: inline-flex; align-items: center; gap: 9px; flex: 0 0 auto; font-weight: 700; font-size: 1.25rem; letter-spacing: .18em; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand span { display: grid; gap: 1px; }
.brand small { font-size: .46rem; letter-spacing: .2em; font-weight: 600; }
.desktop-nav { display: none; align-items: center; justify-content: center; gap: clamp(18px, 2.3vw, 34px); }
.desktop-nav a { position: relative; padding: 26px 0; color: #40514d; font-size: .88rem; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; bottom: 18px; left: 0; width: 0; height: 2px; background: var(--coral); transition: width .22s; }
.desktop-nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.language-picker { position: relative; }
.language-button, .favorite-trigger { height: 42px; display: flex; align-items: center; justify-content: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.72); cursor: pointer; }
.language-button { width: 64px; font-size: .78rem; font-weight: 700; }
.language-chevron { width: 16px; height: 16px; flex: none; color: var(--ink); transition: transform .25s ease; }
.language-chevron path { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.language-button[aria-expanded="true"] .language-chevron { transform: rotate(180deg); }
.language-menu { position: absolute; top: calc(100% + 10px); right: 0; width: 170px; padding: 8px; visibility: hidden; transform: translateY(-8px); border: 1px solid var(--line); border-radius: 18px; background: var(--paper); box-shadow: var(--shadow); opacity: 0; transition: .2s; }
.language-menu.open { visibility: visible; transform: translateY(0); opacity: 1; }
.language-menu button { width: 100%; display: flex; justify-content: space-between; padding: 10px 11px; border: 0; border-radius: 11px; background: transparent; cursor: pointer; text-align: left; font-size: .85rem; }
.language-menu button:hover, .language-menu button.active { background: var(--peach); }
.language-menu span { color: var(--muted); font-size: .73rem; font-weight: 700; }
.favorite-trigger { position: relative; width: 42px; font-size: 1.25rem; }
.favorite-trigger i { position: absolute; top: -5px; right: -5px; min-width: 18px; height: 18px; padding: 0 4px; display: grid; place-items: center; border-radius: 20px; background: var(--coral); color: white; font-style: normal; font-size: .62rem; font-weight: 700; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid var(--coral); border-radius: 999px; background: var(--coral); color: white; font-weight: 700; cursor: pointer; box-shadow: 0 9px 22px rgba(255,114,94,.2); transition: transform .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); background: var(--coral-dark); box-shadow: 0 14px 30px rgba(255,114,94,.28); }
.button:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(70,198,189,.45); outline-offset: 3px; }
.button-small { min-height: 42px; padding: 0 18px; font-size: .82rem; }
.button-large { min-height: 58px; padding: 0 30px; }
.button-outline { border-color: var(--ink); background: transparent; color: var(--ink); box-shadow: none; }
.button-outline:hover { background: var(--ink); color: white; box-shadow: none; }
.button-dark { border-color: var(--ink); background: var(--ink); color: white; box-shadow: none; }
.button-dark:hover { background: #101f1c; }
.menu-toggle { width: 44px; height: 44px; display: grid; place-content: center; gap: 6px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.7); cursor: pointer; }
.menu-toggle i { width: 19px; height: 2px; display: block; background: var(--ink); transition: .25s; }
.menu-toggle.active i:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle.active i:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 45; top: 70px; right: 0; bottom: 0; left: 0; visibility: hidden; overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; padding: 40px 24px max(40px, calc(24px + env(safe-area-inset-bottom))); transform: translateY(-20px); background: rgba(255,248,240,.98); opacity: 0; transition: .25s; }
.mobile-menu.open { visibility: visible; transform: translateY(0); opacity: 1; }
.mobile-menu nav { display: grid; }
.mobile-menu nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: clamp(1.8rem,8vw,2.8rem); }
.mobile-menu .button { width: 100%; margin-top: 30px; }

.hero { position: relative; min-height: calc(100svh - 112px); display: flex; align-items: center; overflow: hidden; background: #e9b099; }
.hero-image, .hero-overlay { position: absolute; inset: 0; }
.hero-image { background: url("assets/hero.webp") center/cover no-repeat; animation: heroZoom 18s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-overlay { background: linear-gradient(90deg, rgba(35,30,20,.66) 0%, rgba(35,30,20,.35) 42%, rgba(35,30,20,.04) 70%); }
.hero-content { position: relative; z-index: 2; width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 80px 0 130px; color: white; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; text-transform: uppercase; letter-spacing: .15em; font-size: .74rem; }
.eyebrow span { width: 30px; height: 2px; background: var(--yellow); }
.hero h1 { max-width: 750px; margin: 0; font-family: var(--serif); font-size: clamp(4rem, 8vw, 7.7rem); line-height: .83; letter-spacing: -.055em; font-weight: 600; text-wrap: balance; }
h2 em, .hero h1 em { color: var(--yellow); font-weight: 600; }
.hero h1 em { padding-left: .55em; }
.hero-content > p { max-width: 570px; margin: 30px 0 32px; color: rgba(255,255,255,.88); font-size: clamp(1rem,1.6vw,1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.text-button { display: inline-flex; align-items: center; gap: 12px; border: 0; background: transparent; color: inherit; font-weight: 700; cursor: pointer; }
.text-button b { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; transition: transform .2s; }
.text-button:hover b { transform: translateY(3px); }
.hero-proof { position: absolute; left: 0; bottom: 28px; display: flex; flex-wrap: wrap; gap: 40px; }
.hero-proof div { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 0 10px; }
.hero-proof strong { grid-row: span 2; font-family: var(--serif); font-size: 2.2rem; line-height: 1; }
.hero-proof span { max-width: 90px; color: rgba(255,255,255,.72); font-size: .7rem; line-height: 1.2; }
.hero-stamp { position: absolute; z-index: 3; right: max(25px, calc((100vw - var(--max)) / 2)); bottom: 35px; width: 125px; height: 125px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,248,240,.9); color: var(--ink); animation: float 4s ease-in-out infinite; }
.hero-stamp::before { content: "BOOK · GLOW · REPEAT · BOOK · GLOW ·"; position: absolute; inset: 8px; border: 1px dashed rgba(33,51,47,.45); border-radius: 50%; padding: 8px; font-size: .5rem; letter-spacing: .11em; text-align: center; }
.hero-stamp > span { display: none; }
.hero-stamp img { width: 66px; height: 66px; object-fit: contain; }
@keyframes float { 50% { transform: translateY(-8px) rotate(4deg); } }
.scroll-cue { position: absolute; z-index: 2; right: 50%; bottom: 18px; width: 25px; height: 38px; display: grid; justify-content: center; border: 1px solid rgba(255,255,255,.55); border-radius: 20px; }
.scroll-cue span { width: 3px; height: 7px; margin-top: 7px; border-radius: 10px; background: white; animation: scroll 1.5s infinite; }
@keyframes scroll { 70% { transform: translateY(14px); opacity: 0; } }

.trust-strip { display: grid; grid-template-columns: repeat(4,1fr); border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-strip div { min-height: 72px; display: flex; align-items: center; justify-content: center; gap: 10px; border-right: 1px solid var(--line); font-size: .8rem; }
.trust-strip div:last-child { border: 0; }
.trust-strip span { color: var(--coral); }
.section { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 60px; margin-bottom: 55px; }
.kicker { display: block; margin-bottom: 13px; color: var(--coral-dark); text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; font-weight: 700; }
h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem,6vw,5.6rem); font-weight: 600; line-height: .92; letter-spacing: -.04em; }
h2 em { color: var(--coral); }
.section-heading p { margin: 0 0 8px; color: var(--muted); font-size: 1.05rem; }
.reveal { transform: translateY(24px); opacity: 0; transition: transform .7s cubic-bezier(.2,.75,.2,1), opacity .7s; }
.reveal.visible { transform: none; opacity: 1; }

.service-toolbar { display: grid; grid-template-columns: minmax(220px,1fr) auto auto; gap: 16px; align-items: center; margin-bottom: 18px; }
.service-search { min-height: 48px; display: flex; align-items: center; gap: 10px; padding: 0 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }
.service-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); }
.filter-scroll { display: flex; gap: 7px; overflow-x: auto; scrollbar-width: none; }
.filter-scroll::-webkit-scrollbar { display: none; }
.filter { min-height: 44px; flex: 0 0 auto; padding: 0 15px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; font-size: .78rem; font-weight: 700; }
.filter.active { border-color: var(--ink); background: var(--ink); color: white; }
.currency-toggle { display: flex; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }
.currency-toggle button { width: 35px; height: 35px; border: 0; border-radius: 50%; background: transparent; cursor: pointer; font-weight: 700; }
.currency-toggle button.active { background: var(--yellow); }
.service-summary { display: flex; justify-content: space-between; margin-bottom: 22px; color: var(--muted); font-size: .75rem; }
.service-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.service-card { position: relative; min-height: 255px; display: flex; flex-direction: column; padding: 24px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); transition: transform .25s, box-shadow .25s, border-color .25s; }
.service-card.category-hair { --card-color: var(--peach); }
.service-card.category-nails { --card-color: var(--aqua-soft); }
.service-card.category-skin { --card-color: #ffd9df; }
.service-card::before { content: ""; position: absolute; top: -60px; right: -60px; width: 150px; height: 150px; border-radius: 50%; background: var(--card-color, var(--peach)); opacity: .8; transition: transform .3s; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(255,114,94,.35); box-shadow: 0 20px 50px rgba(84,66,50,.1); }
.service-card:hover::before { transform: scale(1.15); }
.service-top { position: relative; z-index: 1; display: flex; align-items: flex-start; justify-content: space-between; }
.service-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; background: var(--card-color, var(--peach)); font-size: 1.25rem; }
.save-service { width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.74); cursor: pointer; font-size: 1.05rem; }
.save-service.saved { border-color: var(--coral); background: var(--coral); color: white; }
.service-card h3 { margin: 25px 0 6px; font-family: var(--serif); font-size: 1.45rem; line-height: 1.05; }
.service-card p { margin: 0; color: var(--muted); font-size: .76rem; }
.service-bottom { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 24px; }
.service-price { display: grid; }
.service-price small { color: var(--muted); font-size: .6rem; text-transform: uppercase; letter-spacing: .1em; }
.service-price b { font-size: 1.15rem; }
.service-book { border: 0; border-bottom: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: .75rem; font-weight: 700; }
.empty-state { grid-column: 1/-1; padding: 70px 20px; border: 1px dashed var(--line); border-radius: 24px; color: var(--muted); text-align: center; }
.center { display: flex; justify-content: center; margin-top: 30px; }

.story-section { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(60px,9vw,130px); align-items: center; }
.story-visual { position: relative; }
.story-visual > img { aspect-ratio: 4/5; width: 100%; object-fit: cover; border-radius: 46% 46% 28px 28px; box-shadow: var(--shadow); }
.story-visual::before { content: ""; position: absolute; z-index: -1; top: -32px; left: -34px; width: 55%; height: 45%; border-radius: 50%; background: var(--aqua-soft); }
.story-card { position: absolute; right: -38px; bottom: 35px; width: 190px; padding: 22px; border-radius: 22px; background: var(--yellow); box-shadow: var(--shadow); }
.story-card b { display: block; margin-bottom: 15px; font-family: var(--serif); font-size: 2.2rem; }
.story-card span { font-size: .78rem; font-weight: 700; }
.story-copy .lead { margin: 30px 0 16px; font-family: var(--serif); font-size: 1.35rem; }
.story-copy > p:not(.lead) { color: var(--muted); }
.story-points { display: grid; gap: 0; margin-top: 35px; border-top: 1px solid var(--line); }
.story-points > div { display: grid; grid-template-columns: 48px 1fr; gap: 15px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.story-points > div > b { color: var(--coral); font-family: var(--serif); }
.story-points span { display: grid; }
.story-points small { margin-top: 3px; color: var(--muted); }

.gallery-section { padding-top: 60px; }
.gallery-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; grid-template-rows: 290px 290px; gap: 16px; }
.gallery-item, .gallery-quote { position: relative; min-width: 0; overflow: hidden; border: 0; border-radius: var(--radius); background: var(--paper); }
.gallery-item { padding: 0; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item span { position: absolute; right: 14px; bottom: 14px; left: 14px; padding: 11px 14px; border-radius: 14px; background: rgba(255,255,255,.82); backdrop-filter: blur(12px); text-align: left; font-size: .76rem; font-weight: 700; }
.gallery-hero { grid-row: span 2; }
.gallery-hero img { object-position: center; }
.gallery-quote { grid-column: 2/4; display: flex; align-items: center; justify-content: center; gap: 25px; padding: 25px; background: var(--coral); color: white; }
.gallery-quote img { width: 120px; height: 120px; object-fit: contain; }
.gallery-quote p { margin: 0; font-family: var(--serif); font-size: clamp(2rem,4vw,3.5rem); line-height: .9; }
.gallery-quote em { color: var(--yellow); }

.reviews-section { position: relative; width: 100%; max-width: none; padding-right: max(24px, calc((100vw - var(--max))/2)); padding-left: max(24px, calc((100vw - var(--max))/2)); overflow: hidden; background: var(--aqua-soft); }
.reviews-section::after { content: "“"; position: absolute; top: -110px; right: 5%; color: rgba(255,255,255,.48); font-family: var(--serif); font-size: 28rem; line-height: 1; }
.review-heading { position: relative; z-index: 1; max-width: 650px; }
.review-shell { position: relative; z-index: 1; display: grid; grid-template-columns: 48px 1fr 48px; align-items: center; gap: 22px; margin-top: 55px; }
.review-track { min-height: 245px; display: grid; }
.review-card { grid-area: 1/1; display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 25px; visibility: hidden; transform: translateX(30px); opacity: 0; transition: .35s; }
.review-card.active { visibility: visible; transform: none; opacity: 1; }
.review-mark { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); font-family: var(--serif); font-size: 3.1rem; line-height: 1; }
.review-body blockquote { max-width: 820px; margin: 0; font-family: var(--serif); font-size: clamp(1.65rem,3.4vw,2.7rem); line-height: 1.22; }
.review-person { display: flex; align-items: center; gap: 10px; margin-top: 25px; font-size: .82rem; }
.review-person i { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); color: white; font-style: normal; font-weight: 700; }
.review-person span { display: grid; }
.review-person small { color: #58736e; }
.review-arrow { width: 46px; height: 46px; border: 1px solid rgba(33,51,47,.3); border-radius: 50%; background: transparent; cursor: pointer; }
.review-dots { position: relative; z-index: 1; display: flex; justify-content: center; gap: 7px; margin-top: 28px; }
.review-dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 10px; background: rgba(33,51,47,.25); cursor: pointer; transition: width .2s; }
.review-dots button.active { width: 24px; background: var(--coral); }

.booking-banner { width: min(calc(100% - 48px), var(--max)); display: grid; grid-template-columns: 170px 1fr auto; align-items: center; gap: 45px; margin-top: 120px; margin-bottom: 30px; padding: 42px 55px; overflow: hidden; border-radius: 32px; background: var(--yellow); }
.booking-banner > img { width: 180px; height: 180px; margin: -35px 0; object-fit: contain; }
.booking-banner h2 { font-size: clamp(2.5rem,5vw,4.7rem); }
.booking-banner h2 em { color: var(--coral-dark); }
.booking-banner p { margin-bottom: 0; }
.booking-banner .kicker { color: var(--ink); }

.faq-section { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px,8vw,120px); }
.faq-heading h2 { font-size: clamp(3rem,5vw,4.8rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 24px 50px 24px 0; list-style: none; cursor: pointer; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 10px; top: 20px; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--paper); font-size: 1.2rem; transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); background: var(--yellow); }
.faq-list p { margin: -5px 55px 25px 0; color: var(--muted); }

.contact-section { display: grid; grid-template-columns: .86fr 1.14fr; min-height: 620px; background: var(--ink); color: white; }
.contact-card { padding: 85px max(34px, calc((100vw - var(--max))/2)); padding-right: 70px; }
.contact-card h2 { margin: 5px 0 15px; font-size: clamp(4.5rem,9vw,8rem); color: var(--yellow); }
.contact-card > p { max-width: 500px; color: rgba(255,255,255,.7); }
.contact-list { display: grid; margin-top: 35px; border-top: 1px solid rgba(255,255,255,.15); }
.contact-list a { display: grid; grid-template-columns: 36px 1fr auto; align-items: center; gap: 10px; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-list a span { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); }
.contact-list a b { overflow: hidden; text-overflow: ellipsis; font-size: .85rem; }
.contact-list a i { font-style: normal; }
.hours { display: grid; grid-template-columns: 1fr 1fr; gap: 5px 20px; margin-top: 35px; font-size: .78rem; }
.hours b { grid-column: 1/-1; color: var(--yellow); }
.hours span { color: rgba(255,255,255,.65); }
.map-wrap { position: relative; min-height: 620px; background: #d9d7bd; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(.6) contrast(.93); }
.map-wrap > span { position: absolute; right: 20px; bottom: 20px; left: 20px; padding: 12px 16px; border-radius: 14px; background: rgba(255,255,255,.88); color: var(--ink); backdrop-filter: blur(12px); text-align: center; font-size: .7rem; font-weight: 600; }

footer { padding: 60px max(24px, calc((100vw - var(--max))/2)) 28px; background: var(--paper); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 30px; padding-bottom: 40px; }
.footer-brand img { width: 55px; height: 55px; }
.footer-top p { color: var(--muted); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .7rem; }
.floating-book { position: fixed; z-index: 38; right: 20px; bottom: 20px; display: none; align-items: center; gap: 8px; min-height: 50px; padding: 0 18px 0 7px; border: 0; border-radius: 999px; background: var(--coral); color: white; box-shadow: 0 14px 40px rgba(75,45,30,.25); font-size: .78rem; cursor: pointer; }
.floating-book span { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.2); font-size: 1.2rem; }
.back-top { position: fixed; z-index: 37; right: 28px; bottom: 85px; width: 42px; height: 42px; visibility: hidden; transform: translateY(10px); border: 1px solid var(--line); border-radius: 50%; background: var(--paper); opacity: 0; cursor: pointer; transition: .2s; }
.back-top.visible { visibility: visible; transform: none; opacity: 1; }

.modal, .favorites-drawer { position: fixed; z-index: 100; inset: 0; visibility: hidden; opacity: 0; transition: .25s; }
.modal.open, .favorites-drawer.open { visibility: visible; opacity: 1; }
.modal-backdrop, .drawer-backdrop { position: absolute; inset: 0; background: rgba(18,29,27,.55); backdrop-filter: blur(5px); }
.booking-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(600px,100%); overflow-y: auto; padding: 38px clamp(24px,5vw,55px); transform: translateX(100%); background: var(--cream); transition: transform .35s cubic-bezier(.2,.75,.2,1); }
.modal.open .booking-panel { transform: none; }
.booking-panel > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.booking-panel h2 { font-size: clamp(2.6rem,6vw,4.3rem); }
.modal-close { width: 44px; height: 44px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); cursor: pointer; font-size: 1.5rem; }
.booking-progress { display: grid; grid-template-columns: repeat(3,1fr); gap: 6px; margin: 32px 0 42px; }
.booking-progress i { height: 4px; border-radius: 10px; background: var(--line); }
.booking-progress i.active { background: var(--coral); }
.booking-step { display: none; min-width: 0; padding: 0; border: 0; }
.booking-step.active { display: grid; gap: 18px; animation: stepIn .25s ease; }
@keyframes stepIn { from { transform: translateX(15px); opacity: 0; } }
.booking-step legend { margin-bottom: 25px; font-family: var(--serif); font-size: 1.45rem; font-weight: 600; }
.booking-step label:not(.check) { display: grid; gap: 8px; font-size: .75rem; font-weight: 700; }
.booking-step input, .booking-step select, .booking-step textarea { width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 14px; outline: 0; background: var(--paper); color: var(--ink); resize: vertical; }
.selection-preview { display: grid; gap: 5px; padding: 22px; border-radius: 18px; background: var(--aqua-soft); }
.selection-preview b { font-family: var(--serif); font-size: 1.35rem; }
.selection-preview small { color: var(--muted); }
.form-note { margin: 0; padding: 14px; border-radius: 14px; background: var(--peach); color: var(--muted); font-size: .75rem; }
.check { display: grid; grid-template-columns: 20px 1fr; align-items: start; gap: 10px; color: var(--muted); font-size: .72rem; }
.check input { width: 18px; height: 18px; accent-color: var(--coral); }
.form-error { min-height: 20px; margin-top: 15px; color: #bc372e; font-size: .75rem; }
.booking-controls { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; }
.booking-controls .button { min-width: 125px; }
.booking-controls .is-invisible { visibility: hidden; }
.booking-success { display: none; place-items: center; padding-top: 35px; text-align: center; }
.booking-success.show { display: grid; }
.booking-success img { margin-bottom: 15px; }
.booking-success h3 { margin: 0; font-family: var(--serif); font-size: 2.4rem; }
.booking-success p { max-width: 420px; color: var(--muted); }
.booking-success .text-button { margin-top: 20px; }

.favorites-drawer aside { position: absolute; top: 0; right: 0; bottom: 0; width: min(440px,100%); display: flex; flex-direction: column; padding: 30px; transform: translateX(100%); background: var(--cream); transition: transform .35s; }
.favorites-drawer.open aside { transform: none; }
.favorites-drawer header { display: flex; align-items: center; justify-content: space-between; }
.favorites-drawer header h2 { font-size: 2.2rem; }
.favorites-drawer header button { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; background: var(--paper); cursor: pointer; font-size: 1.4rem; }
#favoritesList { flex: 1; display: grid; align-content: start; gap: 10px; margin: 30px 0; overflow-y: auto; }
.favorite-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 15px; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
.favorite-row span { display: grid; }
.favorite-row small { color: var(--muted); }
.favorite-row button { border: 0; background: transparent; color: var(--coral-dark); cursor: pointer; }
.drawer-empty { color: var(--muted); text-align: center; }

.lightbox { position: fixed; z-index: 120; inset: 0; display: grid; place-items: center; visibility: hidden; padding: 40px; background: rgba(12,22,20,.92); opacity: 0; transition: .22s; }
.lightbox.open { visibility: visible; opacity: 1; }
.lightbox img { max-width: min(1100px,90vw); max-height: 86vh; border-radius: 18px; }
.lightbox button { position: absolute; top: 20px; right: 20px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: transparent; color: white; cursor: pointer; font-size: 1.8rem; }
.toast { position: fixed; z-index: 150; left: 50%; bottom: 24px; visibility: hidden; transform: translate(-50%,20px); padding: 12px 18px; border-radius: 999px; background: var(--ink); color: white; box-shadow: var(--shadow); opacity: 0; font-size: .75rem; transition: .25s; }
.toast.show { visibility: visible; transform: translate(-50%,0); opacity: 1; }

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; }
  .service-toolbar { grid-template-columns: 1fr auto; }
  .filter-scroll { grid-column: 1/-1; grid-row: 2; }
  .service-grid { grid-template-columns: repeat(3,1fr); }
  .booking-banner { grid-template-columns: 120px 1fr; }
  .booking-banner > img { width: 145px; height: 145px; }
  .booking-banner > .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 800px) {
  .announcement { padding-right: 46px; padding-left: 16px; }
  .site-header { height: 70px; padding: 0 18px; }
  .brand img { width: 40px; height: 40px; }
  .brand { font-size: 1.05rem; }
  .brand small { font-size: .4rem; }
  .header-actions .button, .favorite-trigger { display: none; }
  .hero { min-height: calc(100svh - 104px); align-items: end; }
  .hero-image { background-position: 58% center; }
  .hero-overlay { background: linear-gradient(0deg,rgba(24,26,21,.82) 0%,rgba(24,26,21,.25) 70%,rgba(24,26,21,.08)); }
  .hero-content { width: calc(100% - 34px); padding: 120px 0 115px; }
  .hero h1 { font-size: clamp(3.6rem,16vw,6.2rem); }
  .hero h1 em { padding-left: .2em; }
  .hero-content > p { max-width: 520px; margin: 22px 0 26px; }
  .hero-stamp { right: 18px; bottom: 24px; width: 94px; height: 94px; }
  .hero-stamp img { width: 52px; height: 52px; }
  .hero-proof { gap: 16px; right: 115px; bottom: 25px; }
  .hero-proof div { display: none; }
  .hero-proof div:first-child { display: grid; }
  .scroll-cue { display: none; }
  .trust-strip { grid-template-columns: repeat(2,1fr); }
  .trust-strip div { border-bottom: 1px solid var(--line); }
  .section { width: min(calc(100% - 34px),var(--max)); padding: 85px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; margin-bottom: 38px; }
  h2 { font-size: clamp(3rem,13vw,5rem); }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .story-section { grid-template-columns: 1fr; gap: 70px; }
  .story-visual { width: calc(100% - 25px); }
  .story-card { right: -25px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 400px 230px 220px; }
  .gallery-hero { grid-column: 1/-1; grid-row: auto; }
  .gallery-quote { grid-column: 1/-1; }
  .review-shell { grid-template-columns: 1fr; }
  .review-arrow { position: absolute; bottom: -10px; }
  #reviewPrev { right: 58px; } #reviewNext { right: 0; }
  .review-card { grid-template-columns: 1fr; }
  .review-mark { width: 50px; height: 50px; }
  .review-dots { justify-content: flex-start; }
  .booking-banner { width: calc(100% - 34px); grid-template-columns: 85px 1fr; gap: 20px; margin-top: 85px; padding: 35px 28px; }
  .booking-banner > img { width: 105px; height: 105px; margin-left: -25px; }
  .booking-banner > .button { grid-column: 1/-1; width: 100%; }
  .faq-section { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .contact-card { padding: 70px 24px; }
  .map-wrap { min-height: 430px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top .button { justify-self: start; }
  .footer-bottom { flex-direction: column; }
  .floating-book { display: flex; }
  .back-top { right: 23px; }
}

@media (max-width: 540px) {
  .language-button { width: 55px; }
  .hero-actions .button { width: 100%; }
  .hero-actions { align-items: flex-start; }
  .hero-content { padding-bottom: 125px; }
  .hero-stamp { bottom: 18px; }
  .trust-strip div { min-height: 62px; padding: 8px; font-size: .67rem; }
  .service-toolbar { grid-template-columns: 1fr auto; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 225px; }
  .service-summary small { display: none; }
  .gallery-grid { grid-template-rows: 330px 190px 190px; }
  .gallery-quote { gap: 10px; padding: 15px; }
  .gallery-quote img { width: 90px; height: 90px; }
  .review-body blockquote { font-size: 1.55rem; }
  .booking-banner { grid-template-columns: 1fr; text-align: center; }
  .booking-banner > img { justify-self: center; margin: -70px 0 -20px; }
  .booking-banner > .button { grid-column: auto; }
  .hours { grid-template-columns: 1fr; }
  .hours b { grid-column: auto; }
  .booking-controls .button { min-width: 0; flex: 1; }
  .lightbox { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { transform: none; opacity: 1; }
}
