:root {
  --blue: #709da2;
  --blue-dark: #4d7479;
  --blue-deep: #31565b;
  --cream: #f0e7d7;
  --paper: #f7f1e7;
  --cream-rgb: 240, 231, 215;
  --blue-mist: #e2ece9;
  --blue-pale: #d4e3e1;
  --ink: #213536;
  --muted: #667777;
  --line: rgba(33, 53, 54, .18);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.intro-active { overflow: hidden; }
body::after { content: ''; position: fixed; inset: 0; z-index: 10000; pointer-events: none; opacity: .022; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); mix-blend-mode: multiply; }

.skip-link { position: fixed; left: 18px; top: 14px; z-index: 11000; padding: 12px 17px; color: var(--cream); background: var(--blue-deep); border-radius: 3px; transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
:where(a, button, input, summary, [tabindex]):focus-visible { outline: 3px solid #c28749; outline-offset: 4px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.ui-arrow-symbol { font-family: Arial, 'Segoe UI Symbol', sans-serif; font-style: normal; font-weight: 400; font-variant-emoji: text; }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible { outline: 2px solid var(--blue-dark); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
::selection { color: var(--cream); background: var(--blue-dark); }
.scroll-progress { position: fixed; left: 0; top: 0; z-index: 10001; width: 0; height: 3px; opacity: 1; background: linear-gradient(90deg, var(--cream), #a4d0d2, var(--blue-dark)); box-shadow: 0 0 12px rgba(112,157,162,.45); transition: width .08s linear, opacity .35s ease; }
body.intro-active .scroll-progress { opacity: 0; }

.site-intro { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; overflow: hidden; color: var(--cream); background: var(--blue); animation: intro-curtain 2.8s ease forwards; }
.site-intro img { position: relative; z-index: 2; width: min(72vw, 440px); height: auto; opacity: 0; filter: drop-shadow(0 18px 40px rgba(49,86,91,.16)); animation: intro-logo 2.7s cubic-bezier(.22,.68,.2,1) forwards; }
.site-intro p { position: absolute; z-index: 2; bottom: 7vh; margin: 0; color: rgba(244,240,222,.7); font-family: var(--serif); font-size: 11px; font-style: italic; letter-spacing: .16em; opacity: 0; animation: intro-caption 2.7s ease forwards; }
.intro-orbit { position: absolute; border: 1px solid rgba(244,240,222,.17); border-radius: 50%; animation: intro-orbit 3s ease-out forwards; }
.intro-orbit-one { width: min(82vw, 690px); aspect-ratio: 1; transform: rotate(18deg); }
.intro-orbit-two { width: min(105vw, 880px); aspect-ratio: 1; border-style: dashed; transform: rotate(-24deg); }
@keyframes intro-logo {
  0% { opacity: 0; transform: scale(.93) translateY(8px); }
  20%, 70% { opacity: 1; transform: scale(1) translateY(0); }
  100% { opacity: 0; transform: scale(1.025) translateY(-4px); }
}
@keyframes intro-caption {
  0%, 18% { opacity: 0; transform: translateY(5px); }
  35%, 70% { opacity: 1; transform: none; }
  100% { opacity: 0; }
}
@keyframes intro-orbit {
  0% { opacity: 0; scale: .9; }
  28%, 70% { opacity: 1; }
  100% { opacity: 0; scale: 1.04; }
}
@keyframes intro-curtain {
  0%, 72% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

.topbar {
  height: 34px;
  padding: 0 clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  background: var(--blue-deep);
  color: rgba(var(--cream-rgb),.86);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 10px;
}
.topbar p { margin: 0; }
.topbar a { color: var(--cream); }

.site-header {
  height: 104px;
  padding: 0 clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  transition: height .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled { height: 82px; background: rgba(247,248,243,.88); box-shadow: 0 10px 35px rgba(33,53,54,.08); backdrop-filter: blur(16px); }
.wordmark { display: inline-flex; align-items: center; }
.wordmark img { width: 132px; height: auto; }
#main-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
#main-nav a:not(.nav-book) { position: relative; }
#main-nav a:not(.nav-book)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--blue-dark); transition: right .25s; }
#main-nav a:not(.nav-book):hover::after { right: 0; }
.nav-book { padding: 13px 20px; border: 1px solid var(--ink); transition: .25s; }
.nav-book:hover { background: var(--ink); color: var(--cream); }
.menu-button { display: none; background: none; border: 0; padding: 10px; }
.menu-button > span:not(.sr-only) { display: block; width: 24px; height: 1px; margin: 5px; background: var(--ink); }

.hero {
  min-height: calc(100vh - 138px);
  display: grid;
  grid-template-columns: 52% 48%;
  background: var(--blue-mist);
}
.hero-copy { align-self: center; padding: 80px clamp(28px, 7vw, 118px); padding-right: 6vw; background-image: linear-gradient(135deg, rgba(var(--cream-rgb),.4), transparent 58%); }
.eyebrow { margin: 0 0 24px; color: var(--blue-dark); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .27em; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: .98; }
h1 { max-width: 720px; font-size: clamp(56px, 6.3vw, 104px); }
h1 em, h2 em { color: var(--blue-dark); font-weight: 400; }
.hero-lead { max-width: 520px; margin: 34px 0; color: #4e6263; font-family: var(--serif); font-size: clamp(18px, 1.35vw, 22px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px 32px; margin-top: 45px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 25px; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; transition: transform .25s, background .25s, color .25s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue-dark); color: var(--cream); }
.button-primary:hover { background: var(--blue-deep); }
.text-link { display: inline-flex; gap: 14px; align-items: center; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 11px; text-transform: uppercase; letter-spacing: .16em; }
.text-link span { font-size: 16px; }
.text-link-special { color: var(--blue-dark); }
.text-link-special::before { content: ''; width: 6px; height: 6px; flex: 0 0 6px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 5px rgba(84,132,138,.1); }
.hero-visual { --parallax-x: 0px; --parallax-y: 0px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: linear-gradient(135deg, #79a6aa, #668f94, #7aa7aa); background-size: 180% 180%; animation: blue-breathe 12s ease-in-out infinite alternate; }
.image-frame { position: relative; z-index: 2; width: min(73%, 630px); aspect-ratio: 1; border-radius: 50% 50% 46% 54% / 58% 45% 55% 42%; overflow: hidden; box-shadow: 0 40px 100px rgba(29,69,72,.18); transform: translate3d(var(--parallax-x),var(--parallax-y),0); transition: transform .25s ease-out; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.03); }
.orbit { position: absolute; border: 1px solid rgba(244,240,222,.38); border-radius: 50%; }
.orbit-one { width: 82%; aspect-ratio: 1; animation: orbit-one 24s linear infinite; }
.orbit-two { width: 99%; aspect-ratio: 1; border-style: dashed; opacity: .45; animation: orbit-two 32s linear infinite; }
@keyframes blue-breathe { to { background-position: 100% 70%; } }
@keyframes orbit-one { from { transform: rotate(22deg); } to { transform: rotate(382deg); } }
@keyframes orbit-two { from { transform: rotate(-30deg); } to { transform: rotate(-390deg); } }
.side-note { position: absolute; right: 24px; bottom: 28px; color: rgba(244,240,222,.75); writing-mode: vertical-rl; font-family: var(--serif); font-style: italic; font-size: 12px; letter-spacing: .08em; }

.values { display: grid; grid-template-columns: repeat(4,1fr); padding: 30px clamp(22px, 5vw, 76px); background: var(--blue-deep); color: var(--cream); }
.values div { display: flex; align-items: center; justify-content: center; gap: 15px; padding: 7px 30px; border-right: 1px solid rgba(var(--cream-rgb),.18); }
.values div:last-child { border: 0; }
.values div::before { content: ''; width: 22px; height: 1px; flex: 0 0 auto; background: rgba(244,240,222,.62); }
.values p { margin: 0; font-size: 11px; line-height: 1.45; text-transform: uppercase; letter-spacing: .15em; }

.section { padding: clamp(90px, 10vw, 160px) clamp(24px, 7vw, 118px); }
.section-kicker { display: flex; align-items: center; gap: 25px; }
.section-kicker .eyebrow { margin: 0; white-space: nowrap; }
.section-kicker .line { width: 100%; height: 1px; background: var(--line); }
.intro { background: linear-gradient(180deg, var(--paper) 0%, #f3ebdf 72%, var(--cream) 100%); }
.intro-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(60px,9vw,145px); margin-top: 55px; }
.intro h2, .section-heading h2, .price-section h2 { font-size: clamp(46px, 5vw, 78px); }
.intro-copy { max-width: 520px; color: var(--muted); }
.intro-copy p:first-child { margin-top: 4px; color: var(--ink); font-family: var(--serif); font-size: 20px; }
.intro-copy .text-link { margin-top: 22px; color: var(--ink); }
.intro-highlights { display: flex; flex-wrap: wrap; gap: 9px; margin: 30px 0 6px; }
.intro-highlights span { padding: 7px 12px; border: 1px solid rgba(49,86,91,.2); border-radius: 99px; color: var(--blue-deep); background: rgba(var(--cream-rgb),.58); font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; }
.intro-art { height: 520px; margin-top: 72px; display: grid; grid-template-columns: 62% 38%; overflow: hidden; border: 1px solid rgba(49,86,91,.13); background: var(--blue-pale); box-shadow: 0 28px 65px rgba(49,86,91,.1); }
.spa-interior { position: relative; min-width: 0; margin: 0; overflow: hidden; background: var(--blue); }
.spa-interior::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(244,240,222,.14); pointer-events: none; }
.spa-interior img { width: 100%; height: 100%; object-fit: cover; object-position: 51% center; transition: transform 1.4s cubic-bezier(.2,.65,.25,1); }
.spa-interior:hover img { transform: scale(1.018); }
.spa-interior figcaption { position: absolute; left: 30px; bottom: 24px; display: flex; align-items: center; gap: 10px; margin: 0; padding: 9px 13px; color: rgba(244,240,222,.9); background: rgba(49,86,91,.42); border: 1px solid rgba(244,240,222,.18); backdrop-filter: blur(8px); font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .16em; }
.spa-interior figcaption span { width: 22px; height: 1px; background: currentColor; }
.quote { position: relative; display: flex; justify-content: center; flex-direction: column; padding: clamp(36px,6vw,90px); color: var(--blue-deep); background: linear-gradient(145deg, var(--cream), #dce9e5); font-family: var(--serif); }
.quote::after { content: 'B'; position: absolute; right: 5%; bottom: -15%; color: transparent; -webkit-text-stroke: 1px rgba(49,86,91,.07); font-size: 250px; line-height: 1; }
.quote > span { position: relative; z-index: 1; color: var(--blue); font-size: 76px; line-height: .55; }
.quote p { position: relative; z-index: 1; margin: 22px 0 30px; font-size: clamp(28px,3vw,46px); font-style: italic; line-height: 1.25; }
.quote small { position: relative; z-index: 1; width: fit-content; padding-top: 15px; border-top: 1px solid rgba(49,86,91,.25); color: var(--muted); font: 9px var(--sans); text-transform: uppercase; letter-spacing: .17em; }

.founders-section { display: grid; grid-template-columns: minmax(320px,.9fr) minmax(0,1.1fr); gap: clamp(55px,8vw,130px); align-items: center; background: var(--cream); }
.founders-media { position: relative; width: 100%; min-width: 0; max-width: 560px; justify-self: end; }
.founders-media::before { content: ''; position: absolute; inset: 22px -22px -22px 22px; border: 1px solid rgba(49,86,91,.24); border-radius: 4px; }
.founders-media img { position: relative; width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; box-shadow: 0 30px 70px rgba(49,86,91,.16); }
.founders-copy { max-width: 630px; }
.founders-copy .eyebrow { margin-bottom: 24px; color: var(--blue-deep); }
.founders-copy h2 { margin-bottom: 34px; font-size: clamp(50px,5.2vw,80px); }
.founders-copy h2 em { color: var(--blue-dark); }
.founders-copy > p { color: var(--muted); }
.founders-copy .founders-lead { color: var(--ink); font-family: var(--serif); font-size: clamp(21px,2vw,28px); line-height: 1.35; }
.founder-signatures { width: 100%; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 36px; margin: 25px 0 0; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.founder-signatures button { position: relative; padding: 2px 0 7px; color: var(--muted); background: none; border: 0; cursor: pointer; font-family: var(--serif); font-size: 20px; font-style: italic; transition: color .25s; }
.founder-signatures button::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--blue-deep); transition: right .3s ease; }
.founder-signatures button:hover, .founder-signatures button:focus-visible, .founder-signatures button[aria-selected="true"] { color: var(--blue-deep); }
.founder-signatures button:hover::after, .founder-signatures button:focus-visible::after, .founder-signatures button[aria-selected="true"]::after { right: 0; }
.founder-profiles { margin: 26px 0 30px; }
.founder-profile { display: grid; grid-template-columns: 155px minmax(0,1fr); gap: 24px; align-items: start; padding: 20px; color: var(--cream); background: var(--blue-deep); border: 1px solid rgba(var(--cream-rgb),.2); box-shadow: 0 18px 45px rgba(30,68,72,.12); animation: founder-profile-in .35s ease both; }
.founder-profile[hidden] { display: none; }
.founder-profile img { width: 155px; height: 196px; object-fit: cover; object-position: center 22%; border: 1px solid rgba(var(--cream-rgb),.28); }
.founder-profile h3 { margin: 2px 0 10px; color: var(--cream); font-family: var(--serif); font-size: 28px; font-weight: 400; }
.founder-profile p { margin: 0; color: rgba(var(--cream-rgb),.72); font-size: 11px; line-height: 1.7; }
.founder-profile .founder-role { color: #9fc7c8; font-size: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; }
@keyframes founder-profile-in { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
.founders-leaflet { position: relative; isolation: isolate; width: 100%; display: grid; grid-template-columns: 92px 1fr; gap: 22px; align-items: center; overflow: hidden; margin: 0 0 28px; padding: 14px 72px 14px 14px; color: var(--cream); background: linear-gradient(125deg,var(--blue-deep),#3d7076); border: 1px solid rgba(var(--cream-rgb),.2); box-shadow: 0 18px 42px rgba(30,68,72,.16); text-align: left; cursor: pointer; transition: transform .35s cubic-bezier(.2,.7,.2,1),box-shadow .35s,border-color .35s; }
.founders-leaflet::before { content: ''; position: absolute; z-index: -1; width: 190px; aspect-ratio: 1; right: -66px; top: 50%; border: 1px solid rgba(var(--cream-rgb),.13); border-radius: 50%; transform: translateY(-50%); box-shadow: 0 0 0 34px rgba(var(--cream-rgb),.035),0 0 0 68px rgba(var(--cream-rgb),.025); }
.founders-leaflet::after { content: '\2197\FE0E'; position: absolute; right: 20px; top: 50%; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(247,241,222,.55); border-radius: 50%; color: var(--cream); font: 17px Arial, 'Segoe UI Symbol', sans-serif; font-variant-emoji: text; transform: translateY(-50%); transition: color .3s,background .3s,transform .35s; }
.founders-leaflet:hover { transform: translateY(-4px); border-color: rgba(var(--cream-rgb),.4); box-shadow: 0 25px 55px rgba(30,68,72,.24); }
.founders-leaflet:hover::after { color: var(--blue-deep); background: var(--cream); transform: translateY(-50%) rotate(45deg); }
.founders-leaflet:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
.founders-leaflet img { width: 92px; height: 116px; object-fit: cover; object-position: top; border: 1px solid rgba(var(--cream-rgb),.4); box-shadow: 0 12px 28px rgba(13,43,47,.28); }
.founders-leaflet > span { display: grid; line-height: 1.25; }
.founders-leaflet small { margin-bottom: 8px; color: rgba(247,241,222,.72); font-size: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; }
.founders-leaflet strong { color: var(--cream); font-family: var(--serif); font-size: clamp(21px,2vw,27px); font-weight: 500; }
.founders-leaflet em { width: fit-content; margin-top: 11px; padding-bottom: 4px; color: rgba(247,241,222,.82); border-bottom: 1px solid rgba(247,241,222,.38); font-size: 9px; font-style: normal; text-transform: uppercase; letter-spacing: .14em; }
.founders-leaflet b { display: none; }
.founders-links { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 30px; }

.services { background: var(--blue-pale); }
.section-heading { display: grid; grid-template-columns: 1fr 360px; align-items: end; gap: 60px; margin-bottom: 70px; }
.section-heading .eyebrow { margin-bottom: 20px; }
.section-heading > p { color: var(--muted); margin-bottom: 8px; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card { min-height: 600px; padding: 24px; display: flex; flex-direction: column; background: rgba(248,250,246,.94); border: 1px solid rgba(33,53,54,.08); transition: transform .35s, box-shadow .35s; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 25px 55px rgba(40,70,70,.1); }
.service-card.featured {
  color: var(--cream);
  background: linear-gradient(155deg, #426f73 0%, #315b5f 58%, #294f52 100%);
  border-color: rgba(244,240,222,.2);
  box-shadow: 0 22px 48px rgba(24,61,63,.16);
}
.card-art { height: 280px; margin: 20px 0 32px; display: flex; justify-content: center; align-items: center; position: relative; overflow: hidden; background: #dce5df; }
.card-art::before, .card-art::after { content: ''; position: absolute; border: 1px solid var(--blue); border-radius: 50%; }
.card-art::before { width: 170px; height: 230px; }
.card-art::after { width: 230px; height: 170px; }
.card-art span { position: relative; z-index: 2; color: var(--blue-dark); font-family: var(--serif); font-size: 76px; font-style: italic; }
.featured .card-art { background: var(--cream); }
.card-art.illustration { height: auto; aspect-ratio: 1000 / 746; background: #789fa3; border-radius: 12px; box-shadow: inset 0 0 0 1px rgba(244,240,222,.12); }
.featured .card-art.illustration {
  background: var(--blue);
  box-shadow: 0 16px 34px rgba(12,42,43,.24), inset 0 0 0 1px rgba(244,240,222,.34);
}
.card-art.illustration::before, .card-art.illustration::after { display: none; }
.card-art.illustration img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; transition: transform .45s ease; }
.service-card:hover .card-art.illustration img { transform: scale(1.025); }
.service-card:nth-child(2) { transition-delay: .08s; }
.service-card:nth-child(3) { transition-delay: .16s; }

.promotions-section { position: relative; overflow: hidden; background: radial-gradient(circle at 50% 46%, var(--paper) 0%, var(--cream) 58%, #e5ded2 100%); }
.promotions-section::before, .promotions-section::after { content: ''; position: absolute; width: 520px; aspect-ratio: 1; border: 1px solid rgba(112,157,162,.12); border-radius: 50%; pointer-events: none; }
.promotions-section::before { left: -260px; top: 18%; }
.promotions-section::after { right: -300px; bottom: -180px; }
.promotions-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr minmax(260px,390px); gap: 60px; align-items: end; margin-bottom: 42px; }
.promotions-heading .eyebrow { margin-bottom: 16px; color: var(--blue-deep); }
.promotions-heading h2 { font-size: clamp(48px,5.4vw,82px); }
.promotions-heading h2 em { color: var(--blue-dark); }
.promotions-heading > p { margin: 0 0 9px; color: var(--muted); }
.promo-carousel { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; }
.promo-stage { position: relative; height: clamp(560px,62vw,690px); overflow: hidden; perspective: 1400px; }
.promo-card { position: absolute; left: 50%; top: 50%; width: min(31vw,390px); aspect-ratio: 1224 / 1718; padding: 0; overflow: hidden; background: var(--blue); border: 0; border-radius: 16px; box-shadow: 0 34px 75px rgba(38,70,71,.22); cursor: pointer; opacity: 0; transform: translate(-50%,-50%) scale(.65); filter: blur(16px); transition: transform .9s cubic-bezier(.2,.72,.2,1), opacity .7s ease, filter .9s ease, box-shadow .7s ease; }
.promo-card img { width: 100%; height: 100%; object-fit: cover; }
.promo-card.is-active { z-index: 3; opacity: 1; filter: none; transform: translate(-50%,-50%) scale(1); box-shadow: 0 42px 95px rgba(38,70,71,.3); }
.promo-card.is-prev { z-index: 1; opacity: .38; filter: blur(11px) saturate(.72); transform: translate(-128%,-50%) scale(.84) rotateY(9deg) rotate(-2deg); }
.promo-card.is-next { z-index: 2; opacity: .48; filter: blur(8px) saturate(.8); transform: translate(28%,-50%) scale(.88) rotateY(-9deg) rotate(2deg); }
.promo-card.is-active:hover { transform: translate(-50%,-50%) scale(1.018); }
.promo-arrow { position: absolute; top: 48%; z-index: 5; width: 48px; height: 48px; display: grid; place-items: center; color: var(--blue-deep); background: rgba(247,248,243,.78); border: 1px solid rgba(49,86,91,.2); border-radius: 50%; backdrop-filter: blur(10px); cursor: pointer; transition: transform .25s, background .25s; }
.promo-arrow:hover { transform: scale(1.08); background: var(--paper); }
.promo-prev { left: 0; }
.promo-next { right: 0; }
.promo-footer { min-height: 54px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; padding-top: 25px; border-top: 1px solid rgba(49,86,91,.17); }
.promo-dots { display: flex; gap: 8px; }
.promo-dots button { width: 30px; height: 3px; padding: 0; overflow: hidden; color: transparent; background: rgba(49,86,91,.22); border: 0; cursor: pointer; transition: width .35s, background .35s; }
.promo-dots button.is-active { width: 54px; background: var(--blue-deep); }
.promo-current { margin: 0; color: var(--blue-deep); font-family: var(--serif); font-size: 20px; font-style: italic; text-align: center; }
.promo-footer > a { justify-self: end; padding-bottom: 6px; border-bottom: 1px solid var(--blue-deep); color: var(--blue-deep); font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; }

.poster-dialog { position: fixed; max-width: none; max-height: none; padding: 0; overflow: visible; background: transparent; border: 0; }
.poster-dialog::backdrop { background: rgba(10,31,31,.82); backdrop-filter: blur(14px); }
.poster-dialog img { max-width: min(88vw,660px); max-height: 90vh; width: auto; height: auto; border-radius: 8px; box-shadow: 0 40px 100px rgba(0,0,0,.42); }
.poster-dialog-close { position: absolute; right: -18px; top: -18px; z-index: 2; width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue-deep); background: var(--cream); border: 1px solid rgba(49,86,91,.16); border-radius: 50%; cursor: pointer; font-family: var(--serif); font-size: 28px; line-height: 1; }

.atmosphere-section { color: rgba(var(--cream-rgb),.78); background: #102827; }
.atmosphere-heading { margin-bottom: 58px; }
.atmosphere-heading .eyebrow { position: relative; margin-left: 27px; color: #84b9bd; }
.atmosphere-heading .eyebrow::before { content: ''; position: absolute; right: calc(100% + 10px); top: 50%; width: 18px; height: 1px; background: #84b9bd; }
.atmosphere-heading h2 { color: var(--cream); font-size: clamp(48px, 5.4vw, 84px); }
.atmosphere-heading h2 em { color: #93bfc1; }
.atmosphere-collage { display: grid; grid-template-columns: repeat(12,minmax(0,1fr)); grid-auto-rows: clamp(150px,16vw,245px); gap: clamp(10px,1.2vw,18px); }
.atmosphere-photo { position: relative; min-width: 0; overflow: hidden; padding: 0; color: var(--cream); background: var(--blue-deep); border: 0; border-radius: 4px; box-shadow: 0 20px 50px rgba(0,0,0,.17); cursor: zoom-in; isolation: isolate; }
.atmosphere-photo:nth-child(1) { grid-column: span 4; grid-row: span 2; transform: rotate(-.45deg); }
.atmosphere-photo:nth-child(2) { grid-column: span 4; }
.atmosphere-photo:nth-child(3) { grid-column: span 4; grid-row: span 2; transform: rotate(.4deg); }
.atmosphere-photo:nth-child(4), .atmosphere-photo:nth-child(5) { grid-column: span 2; }
.atmosphere-photo:nth-child(6) { grid-column: span 3; }
.atmosphere-photo:nth-child(7) { grid-column: span 5; transform: rotate(.35deg); }
.atmosphere-photo:nth-child(8) { grid-column: span 4; }
.atmosphere-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.02); transition: transform .7s cubic-bezier(.2,.68,.2,1), filter .7s; }
.atmosphere-photo::after { content: 'Powiększ  \2197\FE0E'; position: absolute; right: 12px; bottom: 12px; z-index: 2; padding: 7px 10px; color: var(--blue-deep); background: rgba(var(--cream-rgb),.9); font-family: Arial, 'Segoe UI Symbol', sans-serif; font-size: 8px; font-weight: 600; font-variant-emoji: text; text-transform: uppercase; letter-spacing: .12em; opacity: 0; transform: translateY(7px); transition: opacity .3s, transform .3s; }
.atmosphere-photo:hover img, .atmosphere-photo:focus-visible img { transform: scale(1.055); filter: saturate(1) contrast(1.03) brightness(1.04); }
.atmosphere-photo:hover::after, .atmosphere-photo:focus-visible::after { opacity: 1; transform: none; }
.atmosphere-photo:focus-visible { outline-color: var(--cream); outline-offset: 5px; }
.atmosphere-note { max-width: 610px; display: grid; grid-template-columns: 42px 1fr; gap: 18px; align-items: start; margin-top: 28px; color: rgba(147,191,193,.62); font-size: 12px; line-height: 1.8; }
.atmosphere-note span { height: 1px; margin-top: 11px; background: rgba(147,191,193,.45); }
.atmosphere-note p { margin: 0; }

.gallery-dialog { position: fixed; width: min(94vw,1200px); max-width: none; height: min(92vh,900px); max-height: none; padding: 24px 78px 18px; overflow: visible; color: var(--cream); background: #102827; border: 1px solid rgba(var(--cream-rgb),.22); border-radius: 8px; box-shadow: 0 45px 110px rgba(0,0,0,.52); }
.gallery-dialog::backdrop { background: rgba(8,24,24,.88); backdrop-filter: blur(14px); }
.gallery-dialog figure { width: 100%; height: 100%; display: grid; grid-template-rows: minmax(0,1fr) auto; gap: 12px; margin: 0; }
.gallery-dialog figure img { width: 100%; height: 100%; object-fit: contain; }
.gallery-dialog figcaption { min-height: 21px; color: rgba(var(--cream-rgb),.72); text-align: center; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.gallery-close, .gallery-arrow { position: absolute; z-index: 2; display: grid; place-items: center; color: var(--blue-deep); background: var(--cream); border: 0; border-radius: 50%; cursor: pointer; }
.gallery-close { right: -15px; top: -15px; width: 42px; height: 42px; font-family: var(--serif); font-size: 28px; }
.gallery-arrow { top: 50%; width: 46px; height: 46px; font-size: 18px; transform: translateY(-50%); transition: transform .25s, background .25s; }
.gallery-arrow:hover { transform: translateY(-50%) scale(1.08); background: var(--paper); }
.gallery-prev { left: 17px; }
.gallery-next { right: 17px; }

.reviews-section { background: var(--cream); }
.reviews-heading { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; margin-bottom: 65px; }
.reviews-heading h2 { font-size: clamp(48px,5.3vw,82px); }
.reviews-heading h2 em { color: var(--blue-dark); }
.booksy-rating { display: flex; align-items: center; gap: 20px; padding: 18px 24px; border: 1px solid var(--line); background: rgba(var(--cream-rgb),.62); }
.booksy-rating strong { font-family: var(--serif); font-size: 48px; font-weight: 400; line-height: 1; }
.booksy-rating div > span { color: var(--blue-dark); font-size: 13px; letter-spacing: .14em; }
.booksy-rating p { margin: 4px 0 0; color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card { min-height: 350px; display: flex; flex-direction: column; padding: 34px; border: 1px solid rgba(49,86,91,.14); background: rgba(var(--cream-rgb),.72); transition: transform .35s ease, box-shadow .35s ease; }
.review-card:hover { transform: translateY(-7px); box-shadow: 0 22px 50px rgba(49,86,91,.1); }
.review-card-featured { color: var(--cream); background: linear-gradient(155deg,#426f73,#294f52); border-color: transparent; }
.review-mark { height: 48px; color: var(--blue); font-family: var(--serif); font-size: 76px; line-height: .8; }
.review-card-featured .review-mark { color: var(--cream); opacity: .7; }
.review-card blockquote { margin: 34px 0; font-family: var(--serif); font-size: clamp(24px,2vw,31px); font-style: italic; line-height: 1.3; }
.review-card footer { display: flex; flex-direction: column; gap: 3px; margin-top: auto; padding-top: 20px; border-top: 1px solid currentColor; }
.review-card footer strong { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; }
.review-card footer span { color: var(--muted); font-size: 10px; }
.review-card-featured footer span { color: rgba(var(--cream-rgb),.68); }
.reviews-footer { display: flex; justify-content: space-between; gap: 30px; align-items: center; margin-top: 35px; }
.reviews-footer p { margin: 0; color: var(--muted); font-size: 11px; }
.art-kobido::before { transform: rotate(18deg); }
.art-kobido::after { transform: rotate(-22deg); }
.art-body::before { width: 120px; height: 245px; border-radius: 48% 52% 40% 60%; }
.service-card h3 { margin: 0 0 10px; font-family: var(--serif); font-size: 29px; font-weight: 400; }
.service-card p { margin: 0; color: var(--muted); font-size: 14px; }
.service-card.featured p { color: rgba(var(--cream-rgb),.8); }
.service-card > a { margin-top: auto; padding-top: 25px; border-top: 1px solid currentColor; display: flex; justify-content: space-between; font-size: 10px; text-transform: uppercase; letter-spacing: .18em; }
.first-visit-consultation { display: grid; grid-template-columns: 58px minmax(0,1fr) minmax(250px,330px); gap: 30px; align-items: center; margin-top: 34px; padding: clamp(28px,4vw,48px); color: var(--cream); background: var(--blue-deep); box-shadow: 0 24px 60px rgba(49,86,91,.16); }
.consultation-mark { width: 54px; height: 54px; display: grid; place-items: center; align-self: start; border: 1px solid rgba(var(--cream-rgb),.5); border-radius: 50%; font-family: var(--serif); font-size: 28px; font-style: italic; }
.consultation-copy .eyebrow { margin-bottom: 12px; color: rgba(var(--cream-rgb),.7); }
.consultation-copy h3 { margin: 0 0 14px; font-family: var(--serif); font-size: clamp(31px,3vw,46px); font-weight: 400; line-height: 1.02; }
.consultation-copy h3 em { color: var(--blue-pale); font-weight: 400; }
.consultation-copy > p:last-child { max-width: 690px; margin: 0; color: rgba(var(--cream-rgb),.76); font-size: 13px; }
.consultation-details { padding-left: 28px; border-left: 1px solid rgba(var(--cream-rgb),.25); }
.consultation-details p { display: flex; justify-content: space-between; gap: 18px; margin: 0; padding: 10px 0; border-bottom: 1px solid rgba(var(--cream-rgb),.18); font-size: 11px; }
.consultation-details span { color: rgba(var(--cream-rgb),.62); text-transform: uppercase; letter-spacing: .12em; }
.consultation-details strong { text-align: right; font-weight: 500; }
.consultation-details .button { width: 100%; margin-top: 20px; border-color: var(--cream); color: var(--blue-deep); background: var(--cream); text-align: center; }
.consultation-details .button:hover { color: var(--cream); background: transparent; }

.recommendations-section { background: var(--paper); }
.recommendations-heading { display: grid; grid-template-columns: minmax(0,1fr) 390px; gap: 70px; align-items: end; margin-bottom: 58px; }
.recommendations-heading h2 { font-size: clamp(46px,5vw,78px); }
.recommendations-heading h2 em { color: var(--blue-dark); }
.recommendations-heading > p { margin: 0 0 8px; color: var(--muted); }
.recommendations-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.recommendation-card { min-height: 390px; display: flex; flex-direction: column; padding: 32px; border: 1px solid var(--line); background: rgba(var(--cream-rgb),.72); }
.recommendation-card-featured { color: var(--cream); background: var(--blue-deep); border-color: var(--blue-deep); }
.recommendation-type { margin: 0 0 12px; color: var(--blue-dark); font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; }
.recommendation-card-featured .recommendation-type { color: var(--cream); opacity: .72; }
.recommendation-card h3 { margin: 0 0 22px; font-family: var(--serif); font-size: clamp(26px,2.3vw,34px); font-weight: 400; line-height: 1.15; }
.recommendation-card > p:last-of-type { margin: 0 0 30px; color: var(--muted); font-size: 13px; }
.recommendation-card-featured > p:last-of-type { color: rgba(var(--cream-rgb),.76); }
.recommendation-card > a { display: flex; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid currentColor; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.recommendations-note { display: grid; grid-template-columns: 44px minmax(0,1fr) auto; gap: 22px; align-items: center; margin-top: 28px; padding: 24px 28px; background: var(--blue-mist); }
.recommendations-note > span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--blue); border-radius: 50%; color: var(--blue-deep); font-family: var(--serif); font-size: 22px; }
.recommendations-note p { margin: 0; color: var(--muted); font-size: 13px; }
.recommendations-note strong { color: var(--ink); }

.voucher-section { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.85fr); gap: clamp(60px,9vw,140px); align-items: center; color: var(--cream); background: var(--blue-deep); }
.voucher-copy h2 { color: var(--cream); font-size: clamp(50px,5.5vw,84px); }
.voucher-copy h2 em { color: #9fc7c8; }
.voucher-copy .eyebrow { color: #9fc7c8; }
.voucher-lead { max-width: 610px; margin: 28px 0 34px; color: rgba(var(--cream-rgb),.76); }
.voucher-actions { display: flex; align-items: center; gap: 30px; }
.voucher-actions .button { color: var(--blue-deep); background: var(--cream); }
.voucher-actions .text-link { color: var(--cream); }
.voucher-details { border-top: 1px solid rgba(var(--cream-rgb),.24); }
.voucher-details > div { padding: 23px 0; border-bottom: 1px solid rgba(var(--cream-rgb),.24); }
.voucher-details p { margin: 0; color: rgba(var(--cream-rgb),.68); font-size: 12px; }
.voucher-details strong { display: block; margin-bottom: 3px; color: var(--cream); font-family: var(--serif); font-size: 22px; font-weight: 400; }

.price-section { background: var(--blue-mist); box-shadow: inset 0 1px rgba(112,157,162,.18), inset 0 -1px rgba(112,157,162,.18); }
.price-heading { display: grid; grid-template-columns: 1fr 420px; align-items: end; gap: 70px; margin-bottom: 60px; }
.price-heading-copy { color: var(--muted); }
.price-heading-copy > p:first-child { margin: 0; }
.price-source { margin: 18px 0 0; color: var(--blue-deep); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; }
.button-outline { border: 1px solid var(--ink); }
.button-outline:hover { color: var(--cream); background: var(--ink); }
.price-browser { min-width: 0; min-height: 720px; display: grid; grid-template-columns: 290px minmax(0, 1fr); overflow: hidden; border: 1px solid rgba(49,86,91,.2); background: rgba(248,250,246,.9); box-shadow: 0 25px 70px rgba(49,86,91,.09); }
.category-panel { min-width: 0; display: flex; flex-direction: column; padding: 34px 26px; border-right: 1px solid rgba(49,86,91,.16); background: var(--blue-deep); color: var(--cream); }
.category-panel > label { margin-bottom: 10px; color: rgba(var(--cream-rgb),.68); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
.search-box { position: relative; margin-bottom: 28px; }
.search-box input { width: 100%; height: 45px; padding: 0 40px 0 13px; color: var(--cream); background: rgba(var(--cream-rgb),.09); border: 1px solid rgba(var(--cream-rgb),.28); border-radius: 0; outline: none; font: 13px var(--sans); }
.search-box input::placeholder { color: rgba(var(--cream-rgb),.5); }
.search-box input:focus { border-color: var(--cream); }
.search-box span { position: absolute; right: 13px; top: 7px; color: var(--cream); font-family: var(--serif); font-size: 22px; }
.category-list { min-width: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto; padding-right: 4px; }
.category-list button { width: 100%; padding: 10px 4px; color: rgba(var(--cream-rgb),.68); text-align: left; background: none; border: 0; border-bottom: 1px solid rgba(var(--cream-rgb),.12); cursor: pointer; font-size: 10px; text-transform: uppercase; letter-spacing: .09em; transition: color .2s, padding .2s; }
.category-list button:hover, .category-list button.active { padding-left: 11px; color: var(--cream); }
.category-list button.active::before { content: '— '; }
.category-select-label, .category-select { display: none; }
.booksy-mini { margin-top: auto; padding: 20px 0 2px; color: var(--cream); border-bottom: 1px solid rgba(244,240,222,.55); font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.service-scroll { min-width: 0; height: 720px; overflow-y: auto; scroll-behavior: smooth; scrollbar-color: var(--blue) rgba(112,157,162,.1); scrollbar-width: thin; }
.service-scroll:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }
.service-group { scroll-margin-top: 18px; }
.service-group-heading { position: sticky; top: 0; z-index: 3; display: flex; align-items: center; justify-content: space-between; padding: 26px 32px 18px; color: var(--blue-deep); background: rgba(226,236,233,.96); border-bottom: 1px solid rgba(49,86,91,.18); backdrop-filter: blur(8px); }
.service-group-heading h3 { margin: 0; font-family: var(--serif); font-size: 27px; font-weight: 400; }
.service-group-heading span { font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.service-row { min-height: 94px; display: grid; grid-template-columns: minmax(0,1fr) 150px 62px; align-items: center; gap: 25px; margin: 0 32px; padding: 20px 0; border-bottom: 1px solid rgba(49,86,91,.13); }
.service-row[hidden], .service-group[hidden] { display: none; }
.service-info h4 { margin: 0 0 5px; font-family: var(--serif); font-size: 18px; font-weight: 400; line-height: 1.25; }
.service-info p { margin: 0; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.service-price { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: flex-end; gap: 4px 9px; text-align: right; }
.service-price strong { width: 100%; color: var(--blue-deep); font-family: var(--serif); font-size: 20px; font-weight: 400; white-space: nowrap; }
.service-price del { color: #899695; font-size: 12px; white-space: nowrap; }
.promo-badge { padding: 2px 6px; color: var(--cream); background: var(--blue); font-size: 9px; font-weight: 700; letter-spacing: .05em; }
.service-book { display: inline-flex; justify-content: center; padding: 7px 0; border-bottom: 1px solid var(--blue-deep); color: var(--blue-deep); font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.service-summary { margin: 24px 32px 35px; color: var(--muted); text-align: center; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.empty-state { padding: 90px 30px; color: var(--muted); text-align: center; font-family: var(--serif); font-size: 20px; }

.faq-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(60px,9vw,145px); align-items: start; background: var(--paper); }
.faq-intro { position: sticky; top: 135px; }
.faq-intro h2 { margin: 20px 0 30px; font-size: clamp(48px,5vw,78px); }
.faq-intro h2 em { color: var(--blue-dark); }
.faq-intro > p:not(.eyebrow) { max-width: 470px; color: var(--muted); }
.faq-intro .text-link { margin-top: 24px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 27px 55px 27px 0; list-style: none; cursor: pointer; font-family: var(--serif); font-size: clamp(21px,2vw,27px); line-height: 1.25; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span, .faq-list summary span::after { position: absolute; right: 5px; top: 50%; width: 20px; height: 1px; background: var(--blue-dark); content: ''; transition: transform .3s ease; }
.faq-list summary span::after { right: 0; top: 0; transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details[open] summary span { transform: rotate(180deg); }
.faq-list details > p { max-width: 690px; margin: -4px 55px 28px 0; color: var(--muted); font-size: 14px; }

.cta-section { position: relative; overflow: hidden; padding: 130px 24px; text-align: center; color: var(--cream); background: var(--blue-deep); }
.cta-section .eyebrow { position: relative; z-index: 1; color: var(--cream); }
.cta-section h2 { position: relative; z-index: 1; font-size: clamp(54px, 7vw, 104px); }
.cta-section h2 em { color: var(--cream); }
.cta-section > p:not(.eyebrow) { position: relative; z-index: 1; max-width: 570px; margin: 28px auto 35px; color: rgba(var(--cream-rgb),.76); }
.button-light { position: relative; z-index: 2; background: var(--cream); color: var(--blue-deep); }
.cta-mark { position: absolute; left: 50%; top: 49%; width: clamp(340px,42vw,650px); height: auto; transform: translate(-50%,-50%); opacity: .055; filter: grayscale(1) brightness(1.65); pointer-events: none; user-select: none; }

.visit-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(50px, 8vw, 125px); padding: clamp(90px, 10vw, 150px) clamp(24px, 8vw, 145px); color: rgba(var(--cream-rgb),.9); background: #102827; }
.visit-content { max-width: 500px; }
.visit-content .eyebrow { position: relative; margin-left: 26px; color: #84b9bd; }
.visit-content .eyebrow::before { content: ''; position: absolute; right: calc(100% + 10px); top: 50%; width: 17px; height: 1px; background: #84b9bd; }
.visit-content h2 { color: var(--cream); font-size: clamp(52px, 5vw, 76px); }
.contact-details { display: grid; gap: 27px; margin-top: 55px; }
.contact-item { display: grid; grid-template-columns: 23px 1fr; gap: 20px; align-items: start; }
.contact-item > svg { width: 20px; height: 20px; margin-top: 3px; fill: none; stroke: #82b6ba; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-item span { display: block; margin-bottom: 5px; color: rgba(132,185,189,.72); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.contact-item p, .contact-item a { margin: 0; color: var(--cream); font-size: 16px; line-height: 1.75; }
.contact-socials { display: flex; gap: 12px; margin-top: 36px; }
.contact-socials a { width: 44px; height: 44px; flex: 0 0 auto; display: flex; align-items: center; justify-content: flex-start; gap: 0; overflow: hidden; padding: 0 12px; border: 1px solid rgba(132,185,189,.34); border-radius: 99px; transition: width .38s cubic-bezier(.2,.75,.25,1), background .25s, border-color .25s, transform .25s; }
.contact-socials a:hover, .contact-socials a:focus-visible { width: 130px; transform: translateY(-3px); background: rgba(132,185,189,.15); border-color: #84b9bd; }
.contact-socials a:nth-child(3):hover, .contact-socials a:nth-child(3):focus-visible { width: 182px; }
.contact-socials svg { width: 18px; height: 18px; flex: 0 0 18px; fill: none; stroke: var(--cream); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.social-label { max-width: 0; overflow: hidden; margin-left: 0; opacity: 0; color: var(--cream); white-space: nowrap; font-size: 10px; font-weight: 500; letter-spacing: .08em; transition: max-width .38s ease, margin-left .38s ease, opacity .22s ease .08s; }
.contact-socials a:hover .social-label, .contact-socials a:focus-visible .social-label { max-width: 145px; margin-left: 10px; opacity: 1; }
.contact-socials a:first-child svg { fill: var(--cream); stroke: none; }
.contact-socials .fill { fill: var(--cream); stroke: none; }
.map-frame { min-height: 480px; overflow: hidden; border: 7px solid rgba(var(--cream-rgb),.94); border-radius: 14px; box-shadow: 0 25px 60px rgba(0,0,0,.25); background: var(--blue-pale); }
.map-frame iframe { width: 100%; height: 100%; min-height: 480px; display: block; border: 0; }
.map-placeholder { min-height: 480px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: clamp(32px,6vw,70px); color: var(--blue-deep); text-align: center; background: radial-gradient(circle at 50% 20%,rgba(var(--cream-rgb),.94),rgba(226,236,233,.92)); }
.map-placeholder h3 { margin: 8px 0 12px; font-family: var(--serif); font-size: clamp(30px,3vw,45px); font-weight: 400; }
.map-placeholder p { max-width: 590px; margin: 0 0 25px; color: var(--muted); font-size: 13px; }
.map-placeholder .button { margin-bottom: 22px; }
.map-placeholder .text-link { font-size: 9px; }
.map-pin { font-size: 38px; line-height: 1; }
.noscript-price { padding: 40px; color: var(--muted); }
.noscript-price a { text-decoration: underline; }

.site-footer { padding: 62px clamp(24px, 8vw, 145px) 26px; color: rgba(var(--cream-rgb),.74); background: #1b3a39; font-size: 13px; }
.footer-main { display: grid; grid-template-columns: 1.4fr .8fr .85fr .75fr; gap: clamp(40px, 7vw, 110px); padding-bottom: 60px; }
.footer-about { max-width: 330px; }
.footer-about img { width: 58px; height: 58px; object-fit: cover; padding: 4px; border-radius: 7px; background: var(--blue); }
.footer-about p { margin: 20px 0 0; line-height: 1.8; }
.footer-column h3 { margin: 0 0 22px; color: rgba(132,185,189,.7); font-size: 10px; text-transform: uppercase; letter-spacing: .16em; }
.footer-column a { display: block; width: fit-content; margin: 0 0 14px; border-bottom: 1px solid transparent; }
.footer-column a:hover { color: var(--cream); border-color: currentColor; }
.footer-column p { margin: 0; line-height: 1.8; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 25px; border-top: 1px solid rgba(var(--cream-rgb),.12); color: rgba(132,185,189,.55); font-size: 10px; letter-spacing: .03em; }
.footer-bottom p { margin: 0; }

.floating-booksy { position: fixed; right: 24px; bottom: 24px; z-index: 40; display: flex; align-items: center; gap: 18px; padding: 15px 18px 15px 22px; color: var(--cream); background: rgba(49,86,91,.94); border: 1px solid rgba(244,240,222,.25); border-radius: 99px; box-shadow: 0 18px 45px rgba(25,59,62,.24); backdrop-filter: blur(10px); opacity: 0; visibility: hidden; transform: translateY(16px); transition: opacity .3s, visibility .3s, transform .3s, background .3s; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; }
.floating-booksy.visible { opacity: 1; visibility: visible; transform: none; }
.floating-booksy:hover { background: var(--blue-deep); transform: translateY(-3px); }
.floating-booksy b { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; color: var(--blue-deep); background: var(--cream); font-size: 13px; }

#o-nas, #zespol, #oferta, #polecane, #nowosci, #vouchery, #atmosfera, #opinie, #cennik, #faq, #kontakt { scroll-margin-top: 82px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
section:target .reveal { opacity: 1; transform: none; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 650px; }
  .hero-visual { min-height: 620px; }
  .values { grid-template-columns: repeat(2,1fr); }
  .values div:nth-child(2) { border-right: 0; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-copy { max-width: 680px; }
  .founders-section { gap: 55px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; }
  .promo-card { width: min(38vw,380px); }
  .atmosphere-collage { grid-template-columns: repeat(6,minmax(0,1fr)); grid-auto-rows: clamp(170px,27vw,270px); }
  .atmosphere-photo:nth-child(n) { grid-column: span 3; }
  .atmosphere-photo:nth-child(1), .atmosphere-photo:nth-child(3) { grid-row: span 2; }
  .visit-section { grid-template-columns: 1fr; }
  .visit-content { max-width: 620px; }
  .footer-main { grid-template-columns: 1.4fr repeat(3,1fr); gap: 40px; }
}

@media (max-width: 760px) {
  /* Mobile browsers composite sticky elements more reliably without the
     decorative fixed texture and the desktop-only reading progress line. */
  body::after, .scroll-progress { display: none; }
  .topbar {
    justify-content: space-between;
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
    gap: 8px;
    letter-spacing: .08em;
  }
  .site-header {
    height: 84px;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
    background: var(--paper);
    isolation: isolate;
  }
  .site-header.scrolled { background: var(--paper); backdrop-filter: none; }
  .menu-button { display: block; }
  #main-nav { position: absolute; left: 0; right: 0; top: 100%; max-height: calc(100dvh - 82px); overflow-y: auto; padding: 25px; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s; }
  #main-nav.open { opacity: 1; visibility: visible; transform: none; }
  #main-nav a { padding: 14px 4px; }
  .nav-book { margin-top: 10px; text-align: center; }
  .hero-copy { min-height: 580px; padding: 70px 25px; }
  .hero-lead { font-size: 18px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-visual { min-height: 480px; }
  .image-frame { width: 84%; }
  .values { padding: 25px 18px; }
  .values div { justify-content: flex-start; padding: 17px 10px; }
  .values p { font-size: 9px; }
  .section { padding: 85px 24px; }
  .intro-grid { gap: 36px; margin-top: 40px; }
  .intro-art { height: 600px; grid-template-columns: 1fr; grid-template-rows: 60% 40%; }
  .founders-section { grid-template-columns: 1fr; }
  .founders-media { max-width: 520px; justify-self: center; }
  .founders-media::before { inset: 15px -15px -15px 15px; }
  .founder-signatures { gap: 12px 24px; }
  .founder-profile { grid-template-columns: 112px minmax(0,1fr); gap: 17px; padding: 15px; }
  .founder-profile img { width: 112px; height: 154px; }
  .founder-profile h3 { font-size: 24px; }
  .founders-leaflet { grid-template-columns: 76px 1fr; gap: 16px; padding: 12px 58px 12px 12px; }
  .founders-leaflet img { width: 76px; height: 98px; }
  .founders-leaflet::after { right: 14px; width: 34px; height: 34px; }
  .founders-leaflet strong { font-size: 21px; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; margin-bottom: 45px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 560px; }
  .first-visit-consultation { grid-template-columns: 48px 1fr; }
  .consultation-mark { width: 46px; height: 46px; }
  .consultation-details { grid-column: 2; padding: 22px 0 0; border-top: 1px solid rgba(var(--cream-rgb),.25); border-left: 0; }
  .recommendations-heading { grid-template-columns: 1fr; gap: 28px; }
  .recommendations-grid { grid-template-columns: 1fr; }
  .recommendation-card { min-height: 340px; }
  .recommendations-note { grid-template-columns: 42px 1fr; }
  .recommendations-note .text-link { grid-column: 2; }
  .voucher-section { grid-template-columns: 1fr; }
  .voucher-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .promotions-heading { grid-template-columns: 1fr; gap: 25px; margin-bottom: 25px; }
  .promo-stage { height: 560px; margin-inline: -24px; }
  .promo-card { width: min(72vw,340px); border-radius: 12px; }
  .promo-card.is-prev { transform: translate(-108%,-50%) scale(.8) rotateY(8deg) rotate(-2deg); }
  .promo-card.is-next { transform: translate(8%,-50%) scale(.84) rotateY(-8deg) rotate(2deg); }
  .promo-arrow { top: 47%; width: 42px; height: 42px; }
  .promo-prev { left: -10px; }
  .promo-next { right: -10px; }
  .promo-footer { grid-template-columns: 1fr; justify-items: center; gap: 14px; text-align: center; }
  .promo-footer > a { justify-self: center; }
  .poster-dialog img { max-width: 92vw; max-height: 86vh; }
  .poster-dialog-close { right: 2px; top: -50px; }
  .atmosphere-collage { grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-rows: 210px; gap: 9px; }
  .atmosphere-photo:nth-child(n) { grid-column: span 1; grid-row: span 1; transform: none; }
  .atmosphere-photo:nth-child(1), .atmosphere-photo:nth-child(3), .atmosphere-photo:nth-child(8) { grid-row: span 2; }
  .atmosphere-photo::after { content: '\2197\FE0E'; right: 8px; bottom: 8px; width: 28px; height: 28px; display: grid; place-items: center; padding: 0; opacity: 1; transform: none; }
  .gallery-dialog { width: 96vw; height: 88vh; padding: 18px 12px 12px; overflow: hidden; }
  .gallery-close { right: 8px; top: 8px; }
  .gallery-arrow { top: auto; bottom: 16px; transform: none; }
  .gallery-arrow:hover { transform: scale(1.06); }
  .gallery-prev { left: 14px; }
  .gallery-next { right: 14px; }
  .gallery-dialog figcaption { padding: 0 56px; }
  .atmosphere-note { grid-template-columns: 28px 1fr; }
  .reviews-heading { grid-template-columns: 1fr; gap: 30px; margin-bottom: 42px; }
  .booksy-rating { width: fit-content; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { min-height: 300px; }
  .reviews-footer { align-items: flex-start; flex-direction: column; }
  .price-heading { grid-template-columns: 1fr; gap: 28px; }
  .price-browser { grid-template-columns: 230px 1fr; }
  .faq-section { grid-template-columns: 1fr; gap: 48px; }
  .faq-intro { position: static; }
  .visit-section { padding: 85px 24px; }
  .map-frame, .map-frame iframe { min-height: 390px; }
  .site-footer { padding: 55px 24px 24px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-booksy { right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); width: auto; height: 50px; justify-content: center; gap: 10px; padding: 0 9px 0 16px; }
  .floating-booksy span { position: static; width: auto; height: auto; overflow: visible; clip: auto; white-space: nowrap; }
  .floating-booksy b { width: 30px; height: 30px; font-size: 12px; }
}

@media (max-width: 680px) {
  .price-browser { width: 100%; min-width: 0; min-height: 0; grid-template-columns: minmax(0, 1fr); }
  .category-panel { min-width: 0; overflow: hidden; padding: 22px; border-right: 0; border-bottom: 1px solid rgba(49,86,91,.16); }
  .category-list { display: none; }
  .category-select-label { display: block; margin: 0 0 9px; color: rgba(var(--cream-rgb),.68); font-size: 9px; text-transform: uppercase; letter-spacing: .18em; }
  .category-select { display: block; width: 100%; min-height: 48px; padding: 0 42px 0 13px; color: var(--cream); background-color: rgba(var(--cream-rgb),.09); border: 1px solid rgba(var(--cream-rgb),.3); border-radius: 0; font: 600 10px var(--sans); text-transform: uppercase; letter-spacing: .06em; }
  .category-select:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }
  .category-select option { color: var(--ink); background: var(--paper); text-transform: none; }
  .booksy-mini { margin-top: 13px; }
  .service-scroll { width: 100%; min-width: 0; height: 620px; }
  .service-group-heading { padding: 21px 18px 15px; }
  .service-group-heading h3 { font-size: 22px; }
  .service-row { grid-template-columns: minmax(0,1fr) 105px; gap: 13px; margin: 0 18px; padding: 18px 0; }
  .service-info h4 { font-size: 16px; }
  .service-book { display: none; }
  .service-price strong { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .site-intro { animation-duration: .01ms; }
  .hero-visual, .orbit-one, .orbit-two { animation: none; }
  .image-frame { transform: none !important; }
}

.legal-page { background: var(--paper); }
.legal-header { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 20px clamp(24px,8vw,145px); border-bottom: 1px solid var(--line); }
.legal-content { max-width: 900px; margin: 0 auto; padding: clamp(70px,9vw,130px) 24px; }
.legal-content h1 { max-width: 800px; margin-bottom: 28px; font-size: clamp(48px,7vw,82px); }
.legal-content h2 { margin: 50px 0 12px; color: var(--blue-deep); font-family: var(--serif); font-size: clamp(27px,3vw,36px); font-weight: 400; }
.legal-content p { color: var(--muted); }
.legal-content a { color: var(--blue-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-lead { max-width: 750px; font-size: clamp(18px,2vw,23px); line-height: 1.6; }
.legal-footer { padding: 30px 24px; color: rgba(var(--cream-rgb),.72); background: var(--blue-deep); text-align: center; font-size: 12px; }
.error-page { min-height: 100vh; display: grid; place-items: center; padding: 30px; color: var(--cream); background: var(--blue-deep); text-align: center; }
.error-page main { max-width: 760px; }
.error-page img { width: 150px; height: 150px; object-fit: contain; opacity: .92; }
.error-page .eyebrow { margin-top: 20px; color: var(--cream); }
.error-page h1 { margin: 10px 0 22px; font-size: clamp(50px,8vw,92px); }
.error-page p { max-width: 600px; margin: 0 auto 32px; color: rgba(var(--cream-rgb),.76); }
@media (max-width: 600px) {
  .first-visit-consultation { grid-template-columns: 1fr; gap: 20px; padding: 28px 22px; }
  .consultation-mark { width: 42px; height: 42px; }
  .consultation-details { grid-column: auto; }
  .legal-header { align-items: flex-start; flex-direction: column; }
  .legal-header .wordmark { width: 150px; }
}
