/* =====================================================================
   MAVİKENT HALISAHA — public stylesheet
   Mobile-first. Dark premium theme. No external CSS dependencies.
   ===================================================================== */

:root {
  --bg: #060d1f;
  --bg-2: #0a1328;
  --bg-3: #0f1b38;
  --surface: rgba(255, 255, 255, .04);
  --surface-2: rgba(255, 255, 255, .07);
  --line: rgba(255, 255, 255, .09);
  --line-2: rgba(255, 255, 255, .16);
  --text: #eaf0ff;
  --muted: #98a4c4;
  --muted-2: #6f7ca0;
  --primary: #3b8cff;
  --primary-2: #1e4fd8;
  --primary-soft: rgba(59, 140, 255, .16);
  --green: #5cff8a;
  --green-2: #22c55e;
  --green-soft: rgba(92, 255, 138, .14);
  --red: #ff4d6d;
  --red-soft: rgba(255, 77, 109, .14);
  --amber: #ffc531;
  --amber-soft: rgba(255, 197, 49, .14);
  --wa: #25d366;
  --font-display: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-io: cubic-bezier(.77, 0, .18, 1);
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, .6);
  --glow: 0 10px 40px -10px rgba(59, 140, 255, .55);
  --header-h: 84px;
  --safe-b: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
@supports (overflow-x: clip) { html, body { overflow-x: clip; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
  width: 100%;
  touch-action: pan-y pinch-zoom;
}
body.is-loading, body.menu-open, body.sheet-open, body.lightbox-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.15; letter-spacing: -.02em; overflow-wrap: break-word; }
p, li, a, span { overflow-wrap: break-word; }
img, svg, video, iframe { max-width: 100%; }
p { margin: 0; }
::selection { background: var(--primary); color: #fff; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #22305a; border-radius: 10px; border: 2px solid var(--bg); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 clamp(18px, 4vw, 40px); }
.container--narrow { max-width: 760px; }

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.section__head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section__head--center { text-align: center; margin-inline: auto; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.section__head--row { max-width: none; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }
.section__title { font-size: clamp(1.9rem, 4.4vw, 3rem); font-weight: 700; margin-top: 14px; }
.section__title em, .page-hero__title em, .cta-band em {
  font-style: normal;
  background: linear-gradient(92deg, #7cc4ff 0%, var(--primary) 45%, var(--green) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--primary);
}
.eyebrow--live { color: var(--green); }
.eyebrow--live i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(92,255,138,.6); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(92,255,138,.6); } 70% { box-shadow: 0 0 0 10px rgba(92,255,138,0); } 100% { box-shadow: 0 0 0 0 rgba(92,255,138,0); } }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; line-height: 1; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, border-color .3s, color .3s;
  overflow: hidden; isolation: isolate;
}
.btn svg { flex: none; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: scale(.97); }
.btn--primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; box-shadow: var(--glow); }
.btn--primary::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.28) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform .7s var(--ease);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 44px -10px rgba(59,140,255,.7); }
.btn--primary:hover::after { transform: translateX(120%); }
.btn--ghost { background: transparent; border-color: var(--line-2); color: var(--text); }
.btn--ghost:hover { background: var(--surface-2); border-color: rgba(255,255,255,.3); transform: translateY(-2px); }
.btn--glass { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: #fff; }
.btn--glass:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.btn--outline { background: transparent; border-color: rgba(59,140,255,.5); color: #9cc6ff; }
.btn--outline:hover { background: var(--primary-soft); border-color: var(--primary); color: #fff; transform: translateY(-2px); }
.btn--wa { background: var(--wa); color: #06251a; }
.btn--wa:hover { background: #33e07a; transform: translateY(-2px); }
.btn--sm { padding: 11px 18px; font-size: .86rem; }
.btn--lg { padding: 17px 30px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn[disabled], .btn.is-loading { opacity: .7; pointer-events: none; }
.btn.is-loading span { visibility: hidden; }
.btn.is-loading::before {
  content: ''; position: absolute; width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.page-curtain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  background: linear-gradient(160deg, var(--primary-2), var(--primary) 55%, #0b1a3d);
  transform: translateY(102%); transition: transform .6s var(--ease-io);
}
.page-curtain.is-leaving { transform: translateY(0); }

.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 1000; background: linear-gradient(90deg, var(--primary), var(--green)); transform-origin: left; transform: scaleX(0); pointer-events: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0; transition: padding .4s var(--ease), background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { padding: 8px 0; background: rgba(6,13,31,.78); backdrop-filter: blur(18px) saturate(1.4); -webkit-backdrop-filter: blur(18px) saturate(1.4); border-color: var(--line); }
.site-header.is-hidden { transform: translateY(-100%); }
.site-header { transition: transform .45s var(--ease), padding .4s var(--ease), background .4s, border-color .4s; }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo { flex: none; width: auto; height: 48px; filter: drop-shadow(0 6px 14px rgba(0,0,0,.45)); transition: transform .4s var(--ease); }
.brand:hover .brand__logo { transform: scale(1.06) rotate(-3deg); }
.brand--footer .brand__logo { height: 120px; }
.brand__text { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: -.01em; display: flex; flex-direction: column; line-height: 1.05; }
.brand__text small { white-space: nowrap; font-size: .62rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.site-nav { display: none; align-items: center; gap: 4px; }
.site-nav__link { position: relative; white-space: nowrap; padding: 10px 14px; font-family: var(--font-display); font-weight: 500; font-size: .9rem; color: var(--muted); border-radius: 999px; transition: color .3s, background .3s; }
.site-nav__link::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px; background: linear-gradient(90deg, var(--primary), var(--green)); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.site-nav__link:hover, .site-nav__link.is-active { color: #fff; }
.site-nav__link.is-active::after, .site-nav__link:hover::after { transform: scaleX(1); }
.site-header__actions { display: flex; align-items: center; gap: 10px; }
.header-phone { display: none; white-space: nowrap; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--text); padding: 10px 14px; border-radius: 999px; transition: background .3s; }
.header-phone:hover { background: var(--surface-2); }
.header-phone svg { color: var(--green); }
.header-cta { display: none; }
.nav-toggle { width: 46px; height: 46px; border-radius: 14px; border: 1px solid var(--line-2); background: var(--surface); display: grid; place-items: center; gap: 0; position: relative; }
.nav-toggle span { position: absolute; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }
.nav-toggle span:nth-child(1) { transform: translateY(-6px); }
.nav-toggle span:nth-child(3) { transform: translateY(6px); }
.nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 90; visibility: hidden; pointer-events: none; }
.mobile-menu.is-open { visibility: visible; pointer-events: auto; }
.mobile-menu__bg { position: absolute; inset: 0; background: radial-gradient(60% 40% at 90% 10%, rgba(59,140,255,.35), transparent 60%), radial-gradient(50% 40% at 10% 90%, rgba(92,255,138,.18), transparent 60%), var(--bg); opacity: 0; transition: opacity .5s var(--ease); }
.mobile-menu.is-open .mobile-menu__bg { opacity: 1; }
.mobile-menu__panel { position: absolute; inset: 0; display: flex; flex-direction: column; padding: calc(var(--header-h) + 10px) clamp(22px, 6vw, 48px) calc(28px + var(--safe-b)); overflow-y: auto; }
.mobile-menu__top { margin-bottom: 18px; }
.mobile-menu__eyebrow { font-family: var(--font-display); font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__link {
  display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 6.5vw, 2.2rem); letter-spacing: -.02em;
  opacity: 0; transform: translateY(24px); transition: opacity .5s var(--ease), transform .6s var(--ease), color .3s;
  transition-delay: calc(var(--i) * 50ms);
}
.mobile-menu.is-open .mobile-menu__link, .mobile-menu.is-open .mobile-menu__footer { opacity: 1; transform: none; }
.mobile-menu__link.is-active { color: var(--primary); }
.mobile-menu__link svg { margin-left: auto; opacity: .5; }
.mobile-menu__num { font-size: .72rem; font-weight: 600; color: var(--muted); letter-spacing: .1em; }
.mobile-menu__footer { margin-top: auto; padding-top: 26px; display: flex; flex-direction: column; gap: 18px; opacity: 0; transform: translateY(24px); transition: opacity .5s var(--ease) .35s, transform .6s var(--ease) .35s; }
.mobile-menu__contacts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.mobile-menu__contact { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 12px 6px; border-radius: 14px; background: var(--surface); border: 1px solid var(--line); font-size: .74rem; font-weight: 600; text-align: center; }
.mobile-menu__contact svg { color: var(--green); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; overflow: hidden; background: var(--bg); }
.hero__slides { position: relative; flex: 1; display: grid; }
.hero__slide { grid-area: 1 / 1; position: relative; display: flex; align-items: center; padding: calc(var(--header-h) + 24px) 0 130px; opacity: 0; visibility: hidden; transition: opacity 1s var(--ease), visibility 0s linear 1s; }
.hero__slide.is-active { opacity: 1; visibility: visible; transition: opacity 1s var(--ease), visibility 0s; z-index: 1; }
.hero__bg { position: absolute; inset: -12%; background-size: cover; background-position: center; filter: blur(30px) saturate(1.3) brightness(.5); transform: scale(1.05); transition: transform 8s linear; }
.hero__slide.is-active .hero__bg { transform: scale(1.18); }
.hero__veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,13,31,.55) 0%, rgba(6,13,31,.35) 45%, var(--bg) 100%), radial-gradient(70% 60% at 20% 40%, rgba(6,13,31,.55), transparent 70%); }
.hero__inner { position: relative; display: grid; gap: 34px; align-items: center; width: 100%; }
.hero__content { max-width: 620px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px 8px 10px; border-radius: 999px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(10px); font-family: var(--font-display); font-size: .7rem; font-weight: 600; letter-spacing: .18em; color: #cfe0ff; }
.hero__eyebrow i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.hero__title { font-size: clamp(2.35rem, 7.2vw, 4.7rem); font-weight: 800; line-height: 1.02; margin: 20px 0 18px; text-shadow: 0 10px 40px rgba(0,0,0,.4); }
.hero__sub { font-size: clamp(1rem, 2vw, 1.15rem); color: #c9d4ee; max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__eyebrow, .hero__title, .hero__sub, .hero__actions { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform 1s var(--ease); }
.hero__slide.is-active .hero__eyebrow { opacity: 1; transform: none; transition-delay: .25s; }
.hero__slide.is-active .hero__title { opacity: 1; transform: none; transition-delay: .38s; }
.hero__slide.is-active .hero__sub { opacity: 1; transform: none; transition-delay: .5s; }
.hero__slide.is-active .hero__actions { opacity: 1; transform: none; transition-delay: .62s; }
.hero__media { display: flex; justify-content: center; perspective: 1400px; }
.hero__card {
  position: relative; width: min(66vw, 300px); aspect-ratio: 3 / 4; border-radius: 26px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.18); box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(0,0,0,.3), var(--glow);
  transform: rotate(-4deg) translateY(40px) scale(.94); opacity: 0; transition: transform 1.2s var(--ease) .3s, opacity .9s var(--ease) .3s;
}
.hero__slide.is-active .hero__card { transform: rotate(-4deg) translateY(0) scale(1); opacity: 1; animation: floatY 6s ease-in-out 1.5s infinite; }
@keyframes floatY { 0%, 100% { transform: rotate(-4deg) translateY(0) scale(1); } 50% { transform: rotate(-4deg) translateY(-12px) scale(1); } }
.hero__card img { width: 100%; height: 100%; object-fit: cover; }
.hero__card-shine { position: absolute; inset: 0; background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.14) 50%, transparent 60%); mix-blend-mode: screen; pointer-events: none; }
.hero__badges { display: none; }
.hero__controls { position: absolute; left: 0; right: 0; bottom: calc(26px + var(--safe-b)); z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hero__dots { display: flex; gap: 8px; }
.hero__dot { position: relative; width: 34px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.2); border: 0; padding: 0; overflow: hidden; transition: width .4s var(--ease); }
.hero__dot i { position: absolute; inset: 0; background: linear-gradient(90deg, var(--primary), var(--green)); transform: scaleX(0); transform-origin: left; }
.hero__dot.is-active { width: 56px; }
.hero__dot.is-active i { transform: scaleX(1); transition: transform var(--dur, 6s) linear; }
.hero--paused .hero__dot.is-active i { transition: none; }
.hero__arrows { display: flex; align-items: center; gap: 10px; }
.hero__arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); backdrop-filter: blur(10px); display: grid; place-items: center; transition: background .3s, transform .3s var(--ease); }
.hero__arrow:hover { background: var(--primary); border-color: var(--primary); transform: scale(1.06); }
.hero__counter { font-family: var(--font-display); font-size: .8rem; color: var(--muted); letter-spacing: .1em; }
.hero__counter b { color: #fff; }
.hero__scroll { display: none; }

/* ---------- Availability ---------- */
.avail { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(20px, 3vw, 32px); position: relative; overflow: hidden; }
.avail::before { content: ''; position: absolute; inset: -1px; background: radial-gradient(50% 60% at 100% 0%, rgba(92,255,138,.12), transparent 60%); pointer-events: none; }
.avail__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 20px; position: relative; }
.avail__title { font-size: clamp(1.35rem, 3vw, 1.9rem); margin-top: 8px; }
.avail__sub { color: var(--muted); font-size: .92rem; margin-top: 4px; }
.avail__sub b { color: var(--green); }
.avail__strip { display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 2px 12px; margin: 0 -2px; scrollbar-width: none; position: relative; -webkit-overflow-scrolling: touch; }
.avail__strip::-webkit-scrollbar { display: none; }
.chip { scroll-snap-align: start; flex: none; min-width: 86px; padding: 12px 10px; border-radius: 14px; border: 1px solid var(--line); background: var(--surface); display: flex; flex-direction: column; align-items: center; gap: 4px; font-family: var(--font-display); transition: transform .3s var(--ease), background .3s, border-color .3s; }
.chip b { font-size: 1rem; font-weight: 700; }
.chip span { font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.chip--free { border-color: rgba(92,255,138,.35); background: var(--green-soft); }
.chip--free span { color: var(--green); }
.chip--free:hover { transform: translateY(-3px); background: rgba(92,255,138,.22); border-color: var(--green); }
.chip--booked { border-color: rgba(255,77,109,.3); background: var(--red-soft); }
.chip--booked span { color: var(--red); }
.chip--subscription { border-color: rgba(59,140,255,.35); background: var(--primary-soft); }
.chip--subscription span { color: #8fbcff; }
.chip--past, .chip--closed { opacity: .45; }
.chip--past b { text-decoration: line-through; }
.avail__legend { display: flex; flex-wrap: wrap; gap: 14px; font-size: .78rem; color: var(--muted); }
.avail__legend span { display: inline-flex; align-items: center; gap: 6px; }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot--free { background: var(--green); } .dot--booked { background: var(--red); } .dot--subscription { background: var(--primary); } .dot--past { background: #4a5578; } .dot--closed { background: #6b7280; }

/* ---------- Features ---------- */
.features { display: grid; gap: 14px; }
.feature { position: relative; padding: 26px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); overflow: hidden; transition: transform .45s var(--ease), border-color .4s, background .4s; }
.feature::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 50% at 0% 0%, rgba(59,140,255,.16), transparent 70%); opacity: 0; transition: opacity .5s; }
.feature:hover { transform: translateY(-6px); border-color: rgba(59,140,255,.4); }
.feature:hover::before { opacity: 1; }
.feature__icon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(59,140,255,.25), rgba(92,255,138,.12)); border: 1px solid rgba(59,140,255,.3); color: #9cc6ff; margin-bottom: 18px; position: relative; }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; position: relative; }
.feature p { color: var(--muted); font-size: .93rem; position: relative; }

/* ---------- About ---------- */
.about { display: grid; gap: 40px; align-items: center; }
.about__media { position: relative; max-width: 520px; width: 100%; margin: 0 auto; padding: 0 12px; }
.about__frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow); aspect-ratio: 1 / 1; position: relative; }
.about__frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(6,13,31,.6)); }
.about__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.about__media:hover .about__frame img { transform: scale(1.05); }
.about__float { position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 16px; background: rgba(10,19,40,.85); backdrop-filter: blur(14px); border: 1px solid var(--line-2); box-shadow: var(--shadow); font-family: var(--font-display); }
.about__float b { display: block; font-size: 1.15rem; line-height: 1; }
.about__float span { font-size: .68rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.about__float--1 { top: 18px; left: 0; animation: floatY2 5s ease-in-out infinite; }
.about__float--2 { bottom: 24px; right: 0; animation: floatY2 6s ease-in-out 1s infinite; }
@keyframes floatY2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.about__text p { color: var(--muted); margin-top: 18px; font-size: 1.02rem; }
.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.check-list li::before { content: ''; flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--green-soft); border: 1px solid rgba(92,255,138,.4); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235cff8a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E"); background-size: 12px; background-position: center; background-repeat: no-repeat; }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 30px 0; }
.stat { padding: 16px 14px; border-radius: 16px; background: var(--surface); border: 1px solid var(--line); }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(1.4rem, 4vw, 1.9rem); font-weight: 800; background: linear-gradient(90deg, #fff, #9cc6ff); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat span { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; display: block; margin-top: 6px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.gallery-item { position: relative; display: block; border-radius: 16px; overflow: hidden; aspect-ratio: var(--ar, 3/4); background: var(--bg-3); border: 1px solid var(--line); isolation: isolate; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .6s; }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,13,31,.85)); opacity: .6; transition: opacity .5s; }
.gallery-item__cap { position: absolute; left: 14px; right: 14px; bottom: 12px; z-index: 1; font-family: var(--font-display); font-size: .8rem; font-weight: 600; transform: translateY(6px); opacity: 0; transition: transform .5s var(--ease), opacity .5s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .gallery-item__cap { transform: none; opacity: 1; }
.gallery-grid--home .gallery-item--wide { grid-column: span 2; aspect-ratio: 16 / 10; }
.gallery-grid--masonry { display: block; columns: 2; column-gap: 10px; }
.gallery-grid--masonry .gallery-item { break-inside: avoid; margin-bottom: 10px; }
.gallery-note { margin-top: 28px; text-align: center; color: var(--muted); }
.gallery-note a { color: var(--primary); font-weight: 600; }

/* ---------- Reviews ---------- */
.section--reviews { overflow: hidden; }
.gbadge { display: inline-flex; align-items: center; gap: 12px; padding: 10px 18px 10px 12px; border-radius: 999px; background: #fff; color: #1f2937; font-family: var(--font-display); box-shadow: 0 12px 40px -12px rgba(255,255,255,.35); }
.gbadge b { font-size: 1.1rem; font-weight: 800; }
.gbadge span { font-size: .78rem; color: #6b7280; font-weight: 500; }
.gbadge__stars { display: flex; gap: 1px; }
.gbadge--lg { padding: 12px 22px 12px 14px; margin-bottom: 22px; }
.gbadge--lg b { font-size: 1.4rem; }
.marquee { position: relative; padding: 8px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; gap: 14px; width: max-content; animation: marquee 60s linear infinite; }
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.review-card { width: 320px; flex: none; padding: 20px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); transition: border-color .4s, transform .4s var(--ease); }
.review-card:hover { border-color: rgba(255,255,255,.2); transform: translateY(-3px); }
.review-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-card__head > div:not(.stars) { flex: 1; min-width: 0; }
.review-card__head b { display: block; font-family: var(--font-display); font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-card__head span { font-size: .72rem; color: var(--muted); }
.review-card p { font-size: .9rem; color: #c5cfe8; }
.review-card--full { width: auto; }
.review-card--full.is-featured { border-color: rgba(59,140,255,.35); background: linear-gradient(160deg, rgba(59,140,255,.12), rgba(255,255,255,.03)); }
.avatar { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: .8rem; background: hsl(var(--h, 210) 60% 45% / .35); border: 1px solid hsl(var(--h, 210) 70% 65% / .5); color: hsl(var(--h, 210) 90% 85%); }
.stars { display: flex; gap: 1px; }
.reviews__more { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; }
.reviews-grid { display: grid; gap: 14px; }

/* ---------- Steps / Price ---------- */
.steps { display: grid; gap: 14px; }
.step { position: relative; padding: 28px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: 1; background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(255,255,255,.08)); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .93rem; }
.price-strip { display: grid; gap: 12px; margin-top: 40px; }
.price-strip__item { padding: 22px 24px; border-radius: var(--radius); background: linear-gradient(160deg, rgba(59,140,255,.14), rgba(255,255,255,.03)); border: 1px solid rgba(59,140,255,.28); display: flex; flex-direction: column; gap: 4px; }
.price-strip__item span { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.price-strip__item b { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; }
.price-strip__item small { color: var(--muted); font-size: .8rem; }
.price-strip__item a { color: var(--green); font-weight: 600; font-size: .9rem; margin-top: 4px; }
.price-strip__item--cta { background: linear-gradient(160deg, rgba(92,255,138,.14), rgba(255,255,255,.03)); border-color: rgba(92,255,138,.3); }

/* ---------- Map ---------- */
.map-split { display: grid; gap: 28px; align-items: center; }
.map-split__addr { color: var(--muted); font-size: 1.05rem; margin-top: 16px; }
.map-split__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.map-split__map, .contact__map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow); position: relative; background: var(--bg-3); }
.map-split__map iframe, .contact__map iframe { display: block; width: 100%; height: 360px; border: 0; filter: grayscale(.2) invert(.92) hue-rotate(185deg) contrast(.88); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; margin: 0 clamp(12px, 3vw, 40px) clamp(24px, 4vw, 48px); border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, #1a48c9, #2f7cff 50%, #16389a); padding: clamp(40px, 6vw, 72px) 0; }
.cta-band__inner { position: relative; z-index: 1; display: grid; gap: 28px; align-items: center; }
.cta-band .eyebrow { color: #bfe0ff; }
.cta-band h2 { font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 800; margin-top: 12px; }
.cta-band h2 em { background: linear-gradient(90deg, #dff4ff, var(--green)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cta-band p { color: #dbe8ff; margin-top: 12px; max-width: 520px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-band__actions .btn--primary { background: #fff; color: var(--primary-2); box-shadow: 0 16px 40px -14px rgba(0,0,0,.5); }
.cta-band__actions .btn--ghost { border-color: rgba(255,255,255,.4); }
.cta-band__glow { position: absolute; width: 60vw; height: 60vw; max-width: 600px; max-height: 600px; right: -20%; top: -40%; border-radius: 50%; background: radial-gradient(circle, rgba(92,255,138,.35), transparent 60%); filter: blur(20px); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: clamp(48px, 6vw, 72px) 0 calc(28px + var(--safe-b)); background: linear-gradient(180deg, var(--bg), #040914); }
.site-footer__grid { display: grid; gap: 34px; }
.site-footer__brand p { color: var(--muted); font-size: .92rem; margin: 18px 0; max-width: 360px; }
.site-footer h4 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-links, .footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-links a { color: var(--muted); transition: color .3s, padding-left .3s var(--ease); }
.footer-links a:hover { color: #fff; padding-left: 6px; }
.footer-contact li { display: flex; gap: 10px; color: var(--muted); font-size: .93rem; }
.footer-contact svg { flex: none; color: var(--primary); margin-top: 3px; }
.footer-contact a:hover { color: #fff; }
.social-row { display: flex; gap: 10px; }
.social-btn { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); color: var(--muted); transition: all .3s var(--ease); }
.social-btn:hover { color: #fff; background: var(--primary); border-color: var(--primary); transform: translateY(-3px); }
.site-footer__bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .8rem; color: var(--muted-2); }
.site-footer__rating { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Floating ---------- */
.float-wa { position: fixed; right: 16px; bottom: calc(86px + var(--safe-b)); z-index: 80; width: 52px; height: 52px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.7); transition: transform .4s var(--ease); }
.float-wa::before { content: ''; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa); animation: waPulse 2.2s ease-out infinite; }
@keyframes waPulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }
.float-wa:hover { transform: scale(1.08); }
.mobile-cta { position: fixed; left: 12px; right: 12px; bottom: calc(12px + var(--safe-b)); z-index: 85; display: flex; gap: 8px; padding: 8px; border-radius: 22px; background: rgba(10,19,40,.85); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border: 1px solid var(--line-2); box-shadow: 0 20px 40px -16px rgba(0,0,0,.8); transform: translateY(0); transition: transform .45s var(--ease), opacity .3s; }
.mobile-cta.is-hidden { transform: translateY(calc(100% + 24px)); opacity: 0; }
.mobile-cta__call { flex: none; width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: var(--green-soft); color: var(--green); border: 1px solid rgba(92,255,138,.3); }
.mobile-cta__main { flex: 1; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; font-family: var(--font-display); font-weight: 700; box-shadow: var(--glow); }
body.is-inner, body.is-home { padding-bottom: calc(84px + var(--safe-b)); }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; padding: calc(var(--header-h) + clamp(40px, 8vw, 90px)) 0 clamp(36px, 6vw, 70px); overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(55% 50% at 80% 0%, rgba(59,140,255,.22), transparent 65%), radial-gradient(40% 40% at 10% 100%, rgba(92,255,138,.1), transparent 60%); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 64px 64px; -webkit-mask-image: radial-gradient(60% 60% at 50% 0%, #000, transparent); mask-image: radial-gradient(60% 60% at 50% 0%, #000, transparent); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero__title { font-size: clamp(2.2rem, 6.5vw, 4.2rem); font-weight: 800; margin-top: 14px; }
.page-hero__sub { color: var(--muted); font-size: clamp(1rem, 2vw, 1.12rem); max-width: 640px; margin-top: 16px; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.page-hero--compact { padding-bottom: clamp(20px, 4vw, 40px); }
.page-hero--404 { min-height: 70vh; display: flex; align-items: center; }

/* ---------- Booking ---------- */
.date-strip { display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 2px 14px; scrollbar-width: none; -webkit-overflow-scrolling: touch; -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent); mask-image: linear-gradient(90deg, #000 92%, transparent); }
.date-strip::-webkit-scrollbar { display: none; }
.date-pill { scroll-snap-align: start; flex: none; width: 84px; padding: 12px 8px 10px; border-radius: 18px; border: 1px solid var(--line); background: var(--surface); display: flex; flex-direction: column; align-items: center; gap: 2px; font-family: var(--font-display); transition: transform .3s var(--ease), background .3s, border-color .3s, box-shadow .3s; }
.date-pill__rel { white-space: nowrap; font-size: .64rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.date-pill__day { font-size: 1.5rem; font-weight: 800; line-height: 1.1; }
.date-pill__mon { font-size: .72rem; color: var(--muted); }
.date-pill__free { margin-top: 6px; font-size: .64rem; font-weight: 700; padding: 3px 8px; border-radius: 999px; background: var(--green-soft); color: var(--green); }
.date-pill__free.is-full { background: var(--red-soft); color: var(--red); }
.date-pill:hover { transform: translateY(-3px); border-color: var(--line-2); }
.date-pill.is-active { background: linear-gradient(160deg, var(--primary), var(--primary-2)); border-color: transparent; box-shadow: var(--glow); }
.date-pill.is-active .date-pill__rel, .date-pill.is-active .date-pill__mon { color: #d8e6ff; }
.date-pill.is-active .date-pill__free { background: rgba(255,255,255,.2); color: #fff; }
.booking__layout { display: grid; gap: 24px; margin-top: 14px; }
.booking__bar { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 14px; margin-bottom: 16px; }
.booking__date { font-size: clamp(1.3rem, 3vw, 1.7rem); }
.booking__hint { color: var(--muted); font-size: .88rem; margin-top: 4px; }
.slot-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.slot { position: relative; min-height: 84px; padding: 14px 14px 12px; border-radius: 16px; border: 1px solid var(--line); background: var(--surface); display: flex; flex-direction: column; justify-content: space-between; gap: 8px; text-align: left; font-family: var(--font-display); transition: transform .3s var(--ease), border-color .3s, background .3s, box-shadow .3s; }
.slot__time { font-size: 1.05rem; font-weight: 700; display: flex; align-items: center; gap: 6px; }
.slot__time small { font-size: .72rem; color: var(--muted); font-weight: 500; }
.slot__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.slot__status { font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; }
.slot__price { font-size: .8rem; color: var(--muted); font-weight: 600; }
.slot--free { border-color: rgba(92,255,138,.32); background: linear-gradient(160deg, rgba(92,255,138,.1), rgba(255,255,255,.02)); cursor: pointer; }
.slot--free .slot__status { background: var(--green-soft); color: var(--green); }
.slot--free:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: 0 14px 30px -14px rgba(92,255,138,.5); }
.slot--free.is-selected { border-color: var(--primary); background: linear-gradient(160deg, rgba(59,140,255,.28), rgba(59,140,255,.08)); box-shadow: 0 0 0 3px rgba(59,140,255,.25), var(--glow); }
.slot--free.is-selected .slot__status { background: var(--primary); color: #fff; }
.slot--booked { border-color: rgba(255,77,109,.28); cursor: not-allowed; }
.slot--booked .slot__status { background: var(--red-soft); color: var(--red); }
.slot--subscription { border-color: rgba(59,140,255,.3); cursor: not-allowed; }
.slot--subscription .slot__status { background: var(--primary-soft); color: #8fbcff; }
.slot--closed, .slot--past { opacity: .45; cursor: not-allowed; }
.slot--closed .slot__status, .slot--past .slot__status { background: rgba(255,255,255,.08); color: var(--muted); }
.slot--past .slot__time { text-decoration: line-through; }
.slot--skeleton { background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; border-color: transparent; }
@keyframes shimmer { to { background-position: -200% 0; } }
.slot-grid__empty { grid-column: 1 / -1; padding: 40px 20px; text-align: center; color: var(--muted); border: 1px dashed var(--line-2); border-radius: 16px; }
.booking__side { display: none; }
.side-card { border-radius: var(--radius-lg); background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid var(--line-2); padding: 24px; }
.side-card__empty { text-align: center; color: var(--muted); padding: 20px 0; }
.side-card__empty svg { color: var(--primary); margin: 0 auto 12px; }
.side-card__empty h3 { color: #fff; font-size: 1.05rem; margin-bottom: 6px; }
.side-card__empty p { font-size: .9rem; }
.side-card__summary { padding: 16px; border-radius: 16px; background: var(--primary-soft); border: 1px solid rgba(59,140,255,.3); margin-bottom: 18px; }
.side-card__summary b { display: block; font-family: var(--font-display); font-size: 1.05rem; margin-top: 6px; }
.side-card__time { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; font-family: var(--font-display); }
.side-card__time span { font-weight: 700; font-size: 1.3rem; }
.side-card__time em { font-style: normal; font-weight: 700; color: var(--green); }
.side-card__form { display: grid; gap: 14px; }
.side-card__success { text-align: center; display: grid; gap: 12px; }
.side-card__note { font-size: .84rem; color: var(--muted); }
.side-card__note a { color: var(--primary); font-weight: 600; }
.success-icon { width: 72px; height: 72px; margin: 4px auto; }
.success-icon svg { width: 100%; height: 100%; }
.success-icon circle { stroke: var(--green); stroke-width: 2.5; stroke-dasharray: 160; stroke-dashoffset: 160; animation: draw .8s var(--ease) forwards; }
.success-icon path { stroke: var(--green); stroke-width: 3.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: draw .5s var(--ease) .5s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.code-box { padding: 14px; border-radius: 14px; background: var(--surface-2); border: 1px dashed var(--line-2); }
.code-box span { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.code-box b { display: block; font-family: var(--font-display); font-size: 1.6rem; letter-spacing: .08em; margin-top: 4px; }
.side-info { margin-top: 16px; padding: 20px 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.side-info h4 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.side-info ul { margin: 0; padding-left: 18px; color: var(--muted); font-size: .86rem; display: grid; gap: 6px; }
.side-info a { color: var(--primary); font-weight: 600; }

/* Bottom sheet (mobile booking form) */
.sheet { position: fixed; inset: 0; z-index: 200; visibility: hidden; pointer-events: none; }
.sheet.is-open { visibility: visible; pointer-events: auto; }
.sheet__bg { position: absolute; inset: 0; background: rgba(3,8,20,.7); backdrop-filter: blur(6px); opacity: 0; transition: opacity .4s; }
.sheet.is-open .sheet__bg { opacity: 1; }
.sheet__panel { position: absolute; left: 0; right: 0; bottom: 0; max-height: 92svh; overflow-y: auto; background: var(--bg-2); border-radius: 26px 26px 0 0; border-top: 1px solid var(--line-2); padding: 10px 18px calc(24px + var(--safe-b)); transform: translateY(100%); transition: transform .5s var(--ease-io); }
.sheet.is-open .sheet__panel { transform: none; }
.sheet__grab { width: 44px; height: 5px; border-radius: 5px; background: rgba(255,255,255,.2); margin: 6px auto 14px; }
.sheet .side-card { border: 0; background: transparent; padding: 0; }

/* ---------- Forms ---------- */
.field { display: grid; gap: 6px; }
.field > span { font-size: .8rem; font-weight: 600; color: #c5cfe8; }
.field > span small { color: var(--muted); font-weight: 400; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 14px; border-radius: 12px; border: 1px solid var(--line-2); background: rgba(6,13,31,.6); color: #fff; font: inherit; font-size: 16px; transition: border-color .3s, box-shadow .3s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(59,140,255,.22); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field textarea { resize: vertical; min-height: 60px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; color: var(--muted); cursor: pointer; }
.check input { appearance: none; flex: none; width: 20px; height: 20px; border-radius: 6px; border: 1px solid var(--line-2); background: rgba(6,13,31,.6); margin-top: 1px; display: grid; place-items: center; transition: background .2s, border-color .2s; }
.check input:checked { background: var(--primary); border-color: var(--primary); }
.check input:checked::after { content: ''; width: 6px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg) translateY(-1px); }
.form-grid { display: grid; gap: 14px; }
.form-error { padding: 12px 14px; border-radius: 12px; background: var(--red-soft); border: 1px solid rgba(255,77,109,.4); color: #ffb3c0; font-size: .88rem; }
.form-success { padding: 12px 14px; border-radius: 12px; background: var(--green-soft); border: 1px solid rgba(92,255,138,.4); color: #b8ffcc; font-size: .88rem; }
.card { border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); padding: clamp(20px, 3vw, 32px); }
.card--form { display: grid; gap: 16px; }
.card__title { font-size: 1.4rem; }
.card__sub { color: var(--muted); font-size: .92rem; margin-top: -6px; }

/* ---------- Result / badges ---------- */
.result-card { margin-top: 20px; }
.result-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.result-card__head b { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: .06em; }
.result-card__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 0; }
.result-card__grid dt { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.result-card__grid dd { margin: 4px 0 0; font-weight: 600; }
.result-card__note { margin-top: 18px; padding: 12px 14px; border-radius: 12px; background: var(--surface-2); font-size: .9rem; color: #c5cfe8; }
.result-card__note a { color: var(--primary); font-weight: 600; }
.badge { display: inline-flex; align-items: center; padding: 5px 11px; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; font-family: var(--font-display); }
.badge--pending { background: var(--amber-soft); color: var(--amber); }
.badge--approved { background: var(--green-soft); color: var(--green); }
.badge--cancelled { background: var(--red-soft); color: var(--red); }

/* ---------- Contact ---------- */
.contact__cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-bottom: 28px; }
.contact-card { min-width: 0; padding: 20px 16px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; transition: transform .4s var(--ease), border-color .3s; }
.contact-card:hover { transform: translateY(-4px); border-color: rgba(59,140,255,.4); }
.contact-card__icon { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: var(--primary-soft); color: #9cc6ff; margin-bottom: 10px; }
.contact-card__icon svg { width: 22px; height: 22px; }
.contact-card__icon--wa { background: rgba(37,211,102,.16); color: var(--wa); }
.contact-card__icon--ig { background: rgba(225,48,108,.16); color: #ff6b9d; }
.contact-card span { font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.contact-card b { font-family: var(--font-display); font-size: .95rem; line-height: 1.3; overflow-wrap: anywhere; min-width: 0; }
.contact-card small { color: var(--primary); font-weight: 600; font-size: .8rem; margin-top: 4px; }
.contact__grid { display: grid; gap: 20px; }
.contact__hours { position: absolute; left: 14px; bottom: 14px; padding: 12px 16px; border-radius: 14px; background: rgba(10,19,40,.9); border: 1px solid var(--line-2); backdrop-filter: blur(12px); display: grid; gap: 2px; font-size: .82rem; }
.contact__hours b { font-family: var(--font-display); }
.contact__hours span { color: var(--muted); }

/* ---------- Values / info band ---------- */
.values { display: grid; gap: 14px; }
.value-card { padding: 28px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); position: relative; overflow: hidden; }
.value-card__num { position: absolute; right: 18px; top: 10px; font-family: var(--font-display); font-weight: 800; font-size: 3.4rem; color: rgba(255,255,255,.05); }
.value-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: .93rem; }
.info-band { display: grid; gap: 12px; }
.info-band__item { display: flex; gap: 14px; align-items: center; padding: 18px 20px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.info-band__item svg { flex: none; color: var(--primary); }
.info-band__item b { display: block; font-family: var(--font-display); font-size: .95rem; }
.info-band__item span, .info-band__item a { color: var(--muted); font-size: .88rem; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(3,8,20,.92); backdrop-filter: blur(10px); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .4s, visibility 0s linear .4s; }
.lightbox.is-open { opacity: 1; visibility: visible; transition: opacity .4s, visibility 0s; }
.lightbox__img { max-width: min(92vw, 900px); max-height: 80svh; border-radius: 18px; box-shadow: 0 40px 100px -30px rgba(0,0,0,.9); transform: scale(.94); opacity: 0; transition: transform .5s var(--ease), opacity .4s; object-fit: contain; }
.lightbox.is-open .lightbox__img { transform: none; opacity: 1; }
.lightbox__cap { position: absolute; bottom: calc(24px + var(--safe-b)); left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-size: .85rem; color: var(--muted); white-space: nowrap; }
.lightbox__btn { position: absolute; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .3s; }
.lightbox__btn:hover { background: var(--primary); }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 12px; top: 50%; transform: translateY(-50%); }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: calc(100px + var(--safe-b)); transform: translate(-50%, 20px); z-index: 400; padding: 12px 18px; border-radius: 14px; background: #101c3c; border: 1px solid var(--line-2); box-shadow: var(--shadow); font-size: .9rem; opacity: 0; transition: transform .4s var(--ease), opacity .3s; max-width: 90vw; text-align: center; }
.toast.is-show { transform: translate(-50%, 0); opacity: 1; }
.toast--error { border-color: rgba(255,77,109,.5); }
.toast--success { border-color: rgba(92,255,138,.5); }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform 1s var(--ease); will-change: opacity, transform; }
[data-reveal="left"] { transform: translateX(-36px); }
[data-reveal="right"] { transform: translateX(36px); }
[data-reveal="fade"] { transform: none; }
[data-reveal="stagger"] { opacity: 1; transform: none; }
[data-reveal="stagger"] > * { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .9s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal="stagger"].is-visible > * { opacity: 1; transform: none; }
[data-reveal="stagger"].is-visible > :nth-child(1) { transition-delay: 0s; }
[data-reveal="stagger"].is-visible > :nth-child(2) { transition-delay: .08s; }
[data-reveal="stagger"].is-visible > :nth-child(3) { transition-delay: .16s; }
[data-reveal="stagger"].is-visible > :nth-child(4) { transition-delay: .24s; }
[data-reveal="stagger"].is-visible > :nth-child(5) { transition-delay: .32s; }
[data-reveal="stagger"].is-visible > :nth-child(6) { transition-delay: .4s; }
[data-reveal="stagger"].is-visible > :nth-child(7) { transition-delay: .48s; }
[data-reveal="stagger"].is-visible > :nth-child(8) { transition-delay: .56s; }
[data-reveal="stagger"].is-visible > :nth-child(n+9) { transition-delay: .64s; }

/* =====================================================================
   Breakpoints
   ===================================================================== */
@media (min-width: 560px) {
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .price-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .slot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .info-band { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid--masonry { columns: 3; }
}
@media (min-width: 768px) {
  .mobile-cta { display: none; }
  body.is-inner, body.is-home { padding-bottom: 0; }
  .float-wa { right: 24px; bottom: 24px; width: 58px; height: 58px; }
  .hero__scroll { display: block; position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.3); border-radius: 14px; z-index: 2; }
  .hero__scroll span { position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; margin-left: -2px; border-radius: 4px; background: #fff; animation: scrollHint 1.8s infinite; }
  @keyframes scrollHint { 0% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
  .gallery-grid--home { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .contact__cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cta-band__inner { grid-template-columns: 1.3fr 1fr; }
  .cta-band__actions { justify-content: flex-end; }
  .map-split, .contact__grid { grid-template-columns: 1fr 1.2fr; }
  .contact__map iframe { height: 100%; min-height: 420px; }
  .hero__inner { grid-template-columns: 1.15fr .85fr; gap: 40px; }
  .hero__card { width: min(36vw, 340px); }
  .hero__slide { padding-bottom: 120px; }
  .hero__badges { display: flex; gap: 10px; position: absolute; right: clamp(18px, 4vw, 40px); bottom: 96px; z-index: 2; }
  .hero__badge { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 10px 14px; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(12px); font-family: var(--font-display); min-width: 96px; }
  .hero__badge strong { font-size: 1.05rem; font-weight: 800; display: flex; align-items: center; gap: 4px; }
  .hero__badge span { font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
  .hero__badge svg { margin-right: 4px; }
  .hero__badge > svg + strong { display: inline; }
}
@media (min-width: 1024px) {
  .site-nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .features { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .about { grid-template-columns: 1fr 1fr; gap: 64px; }
  .about__media { margin: 0; padding: 0 20px; }
  .slot-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .booking__layout { grid-template-columns: 1fr 380px; gap: 32px; align-items: start; }
  .booking__side { display: block; position: sticky; top: calc(var(--header-h) + 16px); }
  .reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .site-footer__grid { grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: 40px; }
  .gallery-grid--masonry { columns: 4; column-gap: 12px; }
  .gallery-grid--masonry .gallery-item { margin-bottom: 12px; }
  .hero__card { width: min(30vw, 380px); }
  .hero__badges { bottom: 110px; }
}
@media (min-width: 1200px) {
  .header-phone { display: inline-flex; }
  .slot-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .hero { min-height: 100svh; }
  .hero__slide { padding-top: calc(var(--header-h) + 8px); padding-bottom: 110px; }
  .hero__inner { gap: 26px; }
  .hero__media { order: 2; }
  .hero__card { width: min(52vw, 220px); }
  .hero__actions .btn--glass { display: none; }
  .hero__title { margin: 16px 0 12px; }
  .hero__actions { margin-top: 22px; }
  .hero__actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero__counter { display: none; }
  .review-card { width: 280px; }
  .review-card--full { width: auto; }
  .stats { grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); }
  .stat b { font-size: 1.35rem; white-space: nowrap; }
  .contact-card b { font-size: .88rem; }
  .about__float--2 { bottom: 12px; right: 4px; }
  .stats { gap: 8px; }
  .stat { padding: 12px 10px; }
  .cta-band { margin-inline: 12px; }
}
@media (max-width: 380px) {
  .brand__text { font-size: 1.05rem; }
  .slot-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .slot { padding: 12px; min-height: 78px; }
  .date-pill { width: 78px; }
}
.no-reveal [data-reveal], .no-reveal [data-reveal="stagger"] > * { opacity: 1; transform: none; transition: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal], [data-reveal="stagger"] > * { opacity: 1; transform: none; }
}

/* ---------- Preloader (logo) ---------- */
.preloader { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; overflow: hidden; }
.preloader__half { position: absolute; left: 0; right: 0; height: 50.5%; background: #060d1f; transition: transform 1s var(--ease-io) .05s; }
.preloader__half--top { top: 0; }
.preloader__half--bottom { bottom: 0; }
.preloader__glow { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(45% 40% at 50% 46%, rgba(59,140,255,.22), transparent 70%), radial-gradient(60% 30% at 50% 70%, rgba(46,158,58,.14), transparent 70%); transition: opacity .4s; }
.preloader.is-done .preloader__glow { opacity: 0; }
.preloader.is-done .preloader__half--top { transform: translateY(-101%); }
.preloader.is-done .preloader__half--bottom { transform: translateY(101%); }
.preloader.is-done { visibility: hidden; transition: visibility 0s linear 1.1s; pointer-events: none; }
.preloader__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 18px; transition: opacity .35s ease, transform .5s var(--ease); }
.preloader.is-done .preloader__inner { opacity: 0; transform: scale(.92) translateY(-10px); }
.preloader__logo { position: relative; width: clamp(150px, 42vw, 210px); animation: plIn 1.1s var(--ease) forwards; opacity: 0; filter: drop-shadow(0 24px 50px rgba(59,140,255,.35)); }
.preloader__logo img { width: 100%; height: auto; display: block; }
.preloader__shine { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.7) 50%, transparent 70%); background-size: 260% 100%; background-position: 120% 0; -webkit-mask: url('/assets/img/logo-360.webp') center / contain no-repeat; mask: url('/assets/img/logo-360.webp') center / contain no-repeat; animation: plShine 1.9s ease-in-out 1s infinite; mix-blend-mode: screen; }
@keyframes plIn { from { opacity: 0; transform: translateY(26px) scale(.84); filter: blur(12px) drop-shadow(0 0 0 transparent); } 60% { filter: blur(0); } to { opacity: 1; transform: none; filter: blur(0) drop-shadow(0 24px 50px rgba(59,140,255,.35)); } }
@keyframes plShine { 0% { background-position: 120% 0; } 60%, 100% { background-position: -120% 0; } }
.preloader__meta { display: flex; align-items: baseline; gap: 12px; opacity: 0; animation: fadeUp .8s var(--ease) .45s forwards; }
.preloader__label { font-family: var(--font-display); font-size: .68rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); }
.preloader__pct { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; letter-spacing: .04em; color: #fff; min-width: 3.2ch; text-align: right; font-variant-numeric: tabular-nums; }
.preloader__bar { width: clamp(160px, 44vw, 240px); height: 3px; border-radius: 3px; background: rgba(255,255,255,.1); overflow: hidden; opacity: 0; animation: fadeUp .8s var(--ease) .5s forwards; }
.preloader__bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--primary), var(--green)); border-radius: 3px; transition: width .25s ease-out; box-shadow: 0 0 12px rgba(92,255,138,.5); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.preloader.is-quick .preloader__logo { animation-duration: .5s; }
.preloader.is-quick .preloader__meta, .preloader.is-quick .preloader__bar { animation-delay: .1s; animation-duration: .4s; }
.preloader.is-quick .preloader__shine { animation-delay: .3s; }

/* mobile menu logo */
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.mobile-menu__logo { height: 64px; width: auto; filter: drop-shadow(0 10px 24px rgba(0,0,0,.5)); }

/* ---------- SEO components: breadcrumbs, prose, FAQ, blog ---------- */
.crumbs { margin-bottom: 18px; font-size: .8rem; }
.crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 4px 6px; align-items: center; color: var(--muted); }
.crumbs li + li::before { content: '›'; margin-right: 6px; color: var(--muted-2); }
.crumbs a { color: var(--muted); transition: color .3s; }
.crumbs a:hover { color: #fff; }
.crumbs [aria-current] span { color: #c5cfe8; }
.seo-grid { display: grid; gap: 28px; align-items: start; }
.seo-side { display: grid; gap: 14px; }
.seo-card { padding: 22px; }
.seo-card h3 { font-size: 1rem; margin-bottom: 12px; }
.seo-card dl { margin: 0 0 16px; display: grid; gap: 10px; }
.seo-card dl div { display: flex; justify-content: space-between; gap: 12px; font-size: .88rem; border-bottom: 1px solid var(--line); padding-bottom: 8px; }
.seo-card dt { color: var(--muted); }
.seo-card dd { margin: 0; font-weight: 600; text-align: right; }
.seo-card dd a { color: var(--primary); }
.seo-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.seo-links a { color: #c5cfe8; font-size: .92rem; transition: color .3s, padding-left .3s var(--ease); display: block; }
.seo-links a:hover { color: #fff; padding-left: 4px; }
.prose { color: #c9d3ee; font-size: 1.02rem; line-height: 1.75; }
.prose h2 { font-size: clamp(1.35rem, 3vw, 1.75rem); margin: 34px 0 12px; color: #fff; }
.prose h2:first-child, .prose .eyebrow + .section__title { margin-top: 0; }
.prose .section__title { margin-bottom: 16px; }
.prose h3 { font-size: 1.12rem; margin: 26px 0 10px; color: #fff; }
.prose p { margin: 0 0 16px; }
.prose ul { margin: 0 0 18px; padding-left: 22px; display: grid; gap: 8px; }
.prose li::marker { color: var(--green); }
.prose a { color: #8fbcff; text-decoration: underline; text-decoration-color: rgba(143,188,255,.35); text-underline-offset: 3px; transition: color .3s; }
.prose a:hover { color: #fff; }
.prose strong { color: #fff; }
.prose--post { font-size: 1.06rem; }
.faq { display: grid; gap: 10px; }
.faq__item { border: 1px solid var(--line); border-radius: 16px; background: var(--surface); transition: border-color .3s, background .3s; }
.faq__item[open] { border-color: rgba(59,140,255,.4); background: rgba(59,140,255,.06); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 18px; font-family: var(--font-display); font-weight: 600; font-size: .98rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-2); position: relative; transition: transform .35s var(--ease), background .3s; }
.faq__item summary i::before, .faq__item summary i::after { content: ''; position: absolute; left: 50%; top: 50%; width: 10px; height: 2px; background: #fff; transform: translate(-50%, -50%); }
.faq__item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] summary i { transform: rotate(45deg); background: var(--primary); border-color: var(--primary); }
.faq__body { padding: 0 18px 18px; color: var(--muted); font-size: .95rem; line-height: 1.7; }
.faq__more { margin-top: 18px; text-align: center; }
.faq__more a { color: var(--primary); font-weight: 600; }
.faq__cta { margin-top: 32px; padding: 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); text-align: center; }
.faq__cta p { font-family: var(--font-display); font-weight: 600; margin-bottom: 14px; }
.faq__cta .page-hero__actions { justify-content: center; margin-top: 0; }
.post-grid { display: grid; gap: 16px; }
.post-card { border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; transition: transform .4s var(--ease), border-color .3s; }
.post-card:hover { transform: translateY(-4px); border-color: rgba(59,140,255,.4); }
.post-card__media { display: block; aspect-ratio: 16 / 10; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-card__meta { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; }
.post-card h2 { font-size: 1.15rem; line-height: 1.3; }
.post-card p { color: var(--muted); font-size: .92rem; }
.post-card__link { margin-top: auto; color: var(--primary); font-weight: 600; font-size: .9rem; padding-top: 6px; }
.page-hero__title--post { font-size: clamp(1.8rem, 4.5vw, 2.9rem); }
.post-hero { margin: 0 0 28px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-2); aspect-ratio: 16 / 9; }
.post-hero img { width: 100%; height: 100%; object-fit: cover; }
.post-cta { margin-top: 36px; padding: 22px 24px; border-radius: var(--radius); background: linear-gradient(135deg, rgba(59,140,255,.18), rgba(92,255,138,.08)); border: 1px solid rgba(59,140,255,.35); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.post-cta b { display: block; font-family: var(--font-display); }
.post-cta span { color: var(--muted); font-size: .9rem; }
.post-others { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.post-others h2 { font-size: 1.05rem; margin-bottom: 12px; }
.price-strip--page { margin-top: 0; }
@media (min-width: 768px) { .post-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .seo-grid { grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 40px; } .post-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .seo-side { position: sticky; top: calc(var(--header-h) + 16px); } }

/* ---------- Prose tables (SEO içerik) ---------- */
.prose .table-wrap { overflow-x: auto; margin: 0 0 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.prose table { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 420px; }
.prose th, .prose td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { font-family: var(--font-display); font-weight: 600; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); background: var(--surface); }
.prose tr:last-child td { border-bottom: 0; }
.prose td strong { color: #fff; }
.prose .ok { color: var(--green); font-weight: 600; }
.prose .warn { color: var(--amber); font-weight: 600; }
