/* Su Spa — Soft UI Evolution / su & kum paleti */
:root {
  --c-primary: #0E4A52;
  --c-primary-600: #0B3C43;
  --c-primary-50: #E7F0F0;
  --c-accent: #B08A55;
  --c-accent-ink: #7A5A2E;
  --c-accent-soft: #D2B07C;
  --c-bg: #F6F1E9;
  --c-surface: #FFFFFF;
  --c-surface-2: #EFE8DC;
  --c-ink: #1B2B2E;
  --c-ink-2: #4A5A5D;
  --c-border: #E3D9C9;
  --c-wa: #1F9D55;

  --f-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --f-sans: "Raleway", "Helvetica Neue", Arial, sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --sh-1: 0 1px 2px rgba(14, 74, 82, .06), 0 2px 8px rgba(14, 74, 82, .06);
  --sh-2: 0 4px 12px rgba(14, 74, 82, .08), 0 16px 40px rgba(14, 74, 82, .10);

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --dur: 240ms;

  --header-h: 76px;
  --container: 1200px;
  --gutter: clamp(16px, 4vw, 32px);

  --z-header: 40;
  --z-callbar: 50;
  --z-drawer: 100;
  --z-lightbox: 200;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-bg);
  font-feature-settings: "lnum" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
button { font: inherit; cursor: pointer; }
a, button { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--c-accent); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--f-serif); font-weight: 600; line-height: 1.15; color: var(--c-primary); margin: 0 0 .5em; letter-spacing: .005em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.65rem); }
p { margin: 0 0 1em; }

.skip-link { position: absolute; left: 12px; top: -60px; background: var(--c-primary); color: #fff; padding: 10px 16px; border-radius: var(--r-sm); z-index: 999; }
.skip-link:focus { top: 12px; }
.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; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--tint { background: var(--c-surface-2); }
.section--dark { background: var(--c-primary); color: #E9F1F1; }
.section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-accent-ink); margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section--dark .eyebrow { color: var(--c-accent-soft); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--c-ink-2); max-width: 60ch; }
.section--dark .lead { color: #C9DADB; }
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow::after { content: ""; width: 28px; height: 1px; background: currentColor; }

.icon { width: 20px; height: 20px; flex: none; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon--fill { fill: currentColor; stroke: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 12px 24px; border-radius: var(--r-pill);
  font-weight: 700; font-size: .95rem; letter-spacing: .02em; text-decoration: none;
  border: 1.5px solid transparent;
  transition: background-color var(--dur) var(--ease-out), color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out), transform 160ms var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--c-primary); color: #fff; box-shadow: var(--sh-1); }
.btn--primary:hover { background: var(--c-primary-600); box-shadow: var(--sh-2); }
.btn--accent { background: var(--c-accent); color: #1B1408; }
.btn--accent:hover { background: var(--c-accent-soft); }
.btn--ghost { border-color: currentColor; color: var(--c-primary); background: transparent; }
.btn--ghost:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }
.btn--light { border-color: rgba(255,255,255,.7); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.btn--light:hover { background: #fff; color: var(--c-primary); }
.btn--wa { background: var(--c-wa); color: #fff; }
.btn--wa:hover { background: #178046; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Header */
.topbar { background: var(--c-primary-600); color: #D5E3E4; font-size: .85rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; min-height: 40px; }
.topbar a { color: #fff; text-decoration: none; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar .icon { width: 16px; height: 16px; color: var(--c-accent-soft); }

.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(246, 241, 233, .92); backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.site-header.is-scrolled { border-color: var(--c-border); box-shadow: 0 6px 24px rgba(14,74,82,.06); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--c-primary); }
.brand__mark { width: 40px; height: 40px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--f-serif); font-size: 1.85rem; font-weight: 600; letter-spacing: .01em; }
.brand__tag { font-size: .62rem; font-weight: 700; letter-spacing: .3em; color: var(--c-accent-ink); margin-top: 5px; }

.nav { display: none; }
.nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.nav a {
  position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px;
  font-weight: 600; font-size: .95rem; color: var(--c-ink); text-decoration: none; border-radius: var(--r-pill);
  transition: color var(--dur);
}
.nav a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 8px; height: 1.5px; background: var(--c-accent); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease-out); }
.nav a:hover { color: var(--c-primary); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--c-primary); }

.header-cta { display: none; }
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px;
  border-radius: 50%; border: 1px solid var(--c-border); background: var(--c-surface); color: var(--c-primary);
}
.menu-toggle .icon { width: 22px; height: 22px; }
.header-call-mobile {
  display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%;
  background: var(--c-primary); color: #fff;
}
.header-actions { display: flex; align-items: center; gap: 8px; }

@media (min-width: 1024px) {
  .nav { display: block; }
  .header-cta { display: inline-flex; }
  .menu-toggle, .header-call-mobile { display: none; }
}
@media (max-width: 640px) {
  .topbar { display: none; }
  .brand__name { font-size: 1.6rem; }
  .brand__mark { width: 34px; height: 34px; }
  :root { --header-h: 68px; }
}

/* Drawer (side-to-side mobile menu) */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(8, 30, 33, .55); z-index: var(--z-drawer);
  opacity: 0; visibility: hidden; transition: opacity 280ms var(--ease-out), visibility 0s linear 280ms;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 380px); z-index: calc(var(--z-drawer) + 1);
  background: var(--c-bg); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 320ms var(--ease-out); visibility: hidden;
  padding: max(16px, env(safe-area-inset-top)) 20px max(20px, env(safe-area-inset-bottom));
  box-shadow: -20px 0 60px rgba(8, 30, 33, .25);
}
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer-overlay.is-open { opacity: 1; visibility: visible; transition: opacity 280ms var(--ease-out); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--c-border); }
.drawer__close { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--c-border); background: var(--c-surface); color: var(--c-primary); display: inline-flex; align-items: center; justify-content: center; }
.drawer nav ul { list-style: none; margin: 16px 0; padding: 0; }
.drawer nav a {
  display: flex; align-items: center; justify-content: space-between; min-height: 56px; padding: 0 8px;
  font-family: var(--f-serif); font-size: 1.6rem; font-weight: 600; color: var(--c-primary); text-decoration: none;
  border-bottom: 1px solid var(--c-border);
}
.drawer nav a[aria-current="page"] { color: var(--c-accent-ink); }
.drawer nav a .icon { color: var(--c-accent); }
.drawer__foot { margin-top: auto; display: grid; gap: 10px; }
.drawer__foot .btn { width: 100%; }
.drawer__addr { font-size: .9rem; color: var(--c-ink-2); display: flex; gap: 10px; margin: 8px 0 4px; }
.drawer__addr .icon { color: var(--c-accent); margin-top: 3px; }
body.no-scroll { overflow: hidden; }

/* Hero slider */
.hero { position: relative; height: min(88svh, 820px); min-height: 540px; overflow: hidden; background: var(--c-primary-600); color: #fff; }
.hero__slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 900ms ease, visibility 0s linear 900ms; }
.hero__slide.is-active { opacity: 1; visibility: visible; transition: opacity 900ms ease; }
.hero__slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 7s linear; }
.hero__slide.is-active img { transform: scale(1); }
.hero__slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 32, 36, .82) 0%, rgba(7, 32, 36, .55) 45%, rgba(7, 32, 36, .15) 100%), linear-gradient(0deg, rgba(7,32,36,.55), transparent 40%); }
.hero__content { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.hero__inner { max-width: 640px; padding-bottom: 40px; }
.hero__inner > * { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.hero__slide.is-active .hero__inner > * { opacity: 1; transform: none; }
.hero__slide.is-active .hero__inner > *:nth-child(2) { transition-delay: 120ms; }
.hero__slide.is-active .hero__inner > *:nth-child(3) { transition-delay: 220ms; }
.hero__slide.is-active .hero__inner > *:nth-child(4) { transition-delay: 320ms; }
.hero .eyebrow { color: var(--c-accent-soft); }
.hero__title { color: #fff; font-size: clamp(2.5rem, 6vw, 4.6rem); margin-bottom: 18px; }
.hero__title em { font-style: italic; color: var(--c-accent-soft); font-weight: 500; }
.hero__text { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: #DCE7E8; max-width: 52ch; margin-bottom: 28px; }
.hero__controls { position: absolute; z-index: 3; left: 0; right: 0; bottom: clamp(20px, 4vw, 40px); }
.hero__controls .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.hero__dots { display: flex; gap: 6px; }
.hero__dot { width: 44px; height: 44px; border: 0; background: transparent; padding: 0; display: inline-flex; align-items: center; justify-content: center; }
.hero__dot span { display: block; width: 28px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.4); overflow: hidden; position: relative; }
.hero__dot span::after { content: ""; position: absolute; inset: 0; background: var(--c-accent-soft); transform: scaleX(0); transform-origin: left; }
.hero__dot[aria-current="true"] span::after { animation: dotfill var(--hero-interval, 6500ms) linear forwards; }
.hero.is-paused .hero__dot[aria-current="true"] span::after { animation-play-state: paused; }
@keyframes dotfill { to { transform: scaleX(1); } }
.hero__arrows { display: flex; gap: 10px; }
.hero__arrow {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.45); background: rgba(255,255,255,.08);
  color: #fff; display: inline-flex; align-items: center; justify-content: center; backdrop-filter: blur(6px);
  transition: background-color var(--dur), color var(--dur);
}
.hero__arrow:hover { background: #fff; color: var(--c-primary); }
.hero__counter { font-family: var(--f-serif); font-size: 1.2rem; color: #DCE7E8; margin-right: 8px; min-width: 60px; }
.hero__counter b { color: #fff; font-size: 1.6rem; font-weight: 600; }
@media (max-width: 640px) {
  .hero { min-height: 560px; height: 82svh; }
  .hero__arrows { display: none; }
  .hero__slide::after { background: linear-gradient(0deg, rgba(7,32,36,.9) 0%, rgba(7,32,36,.55) 55%, rgba(7,32,36,.35) 100%); }
  .hero__content { align-items: flex-end; }
  .hero__inner { padding-bottom: 96px; }
  .hero .btn-row .btn { flex: 1 1 auto; }
}

/* Trust strip */
.trust { background: var(--c-surface); border-bottom: 1px solid var(--c-border); }
.trust__grid { display: grid; grid-template-columns: repeat(2, 1fr); }
.trust__item { display: flex; align-items: center; gap: 14px; padding: 22px 12px; }
.trust__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--c-primary-50); color: var(--c-primary); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.trust__item strong { display: block; font-size: .98rem; color: var(--c-ink); line-height: 1.3; }
.trust__item span { font-size: .85rem; color: var(--c-ink-2); line-height: 1.4; }
@media (min-width: 900px) {
  .trust__grid { grid-template-columns: repeat(4, 1fr); }
  .trust__item + .trust__item { border-left: 1px solid var(--c-border); padding-left: 24px; }
}

/* Service cards */
.cards { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--c-surface); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1);
  display: flex; flex-direction: column; transition: box-shadow var(--dur) var(--ease-out), transform var(--dur) var(--ease-out);
}
.card:hover { box-shadow: var(--sh-2); transform: translateY(-4px); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--c-surface-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.chip { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; letter-spacing: .04em; padding: 4px 12px; border-radius: var(--r-pill); background: var(--c-primary-50); color: var(--c-primary); }
.chip .icon { width: 14px; height: 14px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--c-ink-2); font-size: .97rem; }
.card__link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; text-decoration: none; min-height: 44px; }
.card__link .icon { transition: transform var(--dur) var(--ease-out); }
.card__link:hover .icon { transform: translateX(4px); }

/* Split / about */
.split { display: grid; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split--rev > :first-child { order: 2; } }
.stack-media { position: relative; padding: 0 0 48px 48px; }
.stack-media__main { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--sh-2); }
.stack-media__main img { width: 100%; height: 100%; object-fit: cover; }
.stack-media__sub { position: absolute; left: 0; bottom: 0; width: 46%; aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; border: 6px solid var(--c-bg); box-shadow: var(--sh-2); }
.stack-media__sub img { width: 100%; height: 100%; object-fit: cover; }
.stack-media__badge {
  position: absolute; right: -8px; top: 28px; background: var(--c-accent); color: #1B1408; border-radius: var(--r-md);
  padding: 14px 18px; box-shadow: var(--sh-2); max-width: 170px; line-height: 1.3; font-weight: 700; font-size: .9rem;
}
.stack-media__badge b { display: block; font-family: var(--f-serif); font-size: 1.9rem; line-height: 1; margin-bottom: 4px; }
@media (max-width: 640px) { .stack-media { padding: 0 0 36px 24px; } .stack-media__badge { right: 8px; } }
.checklist { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .icon { color: var(--c-accent-ink); margin-top: 4px; }

/* Feature grid */
.features { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features { grid-template-columns: repeat(4, 1fr); } }
.feature { padding: 28px 24px; border-radius: var(--r-lg); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); }
.feature__icon { width: 52px; height: 52px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; background: rgba(210,176,124,.16); color: var(--c-accent-soft); margin-bottom: 18px; }
.feature__icon .icon { width: 24px; height: 24px; }
.feature h3 { font-size: 1.45rem; margin-bottom: 6px; }
.feature p { color: #C9DADB; font-size: .95rem; margin: 0; }
.section:not(.section--dark) .feature { background: var(--c-surface); border-color: var(--c-border); box-shadow: var(--sh-1); }
.section:not(.section--dark) .feature__icon { background: var(--c-primary-50); color: var(--c-primary); }
.section:not(.section--dark) .feature p { color: var(--c-ink-2); }

/* Gallery */
.gallery { columns: 2 160px; column-gap: 14px; }
@media (min-width: 900px) { .gallery { columns: 3 240px; column-gap: 18px; } }
.gallery__item { break-inside: avoid; margin: 0 0 14px; border-radius: var(--r-md); overflow: hidden; position: relative; display: block; width: 100%; padding: 0; border: 0; background: var(--c-surface-2); }
@media (min-width: 900px) { .gallery__item { margin-bottom: 18px; } }
.gallery__item img { width: 100%; height: auto; transition: transform 600ms var(--ease-out); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,32,36,.55), transparent 50%); opacity: 0; transition: opacity var(--dur); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item:hover::after, .gallery__item:focus-visible::after { opacity: 1; }
.gallery__zoom { position: absolute; right: 12px; bottom: 12px; z-index: 1; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--c-primary); display: inline-flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(6px); transition: opacity var(--dur), transform var(--dur) var(--ease-out); }
.gallery__item:hover .gallery__zoom, .gallery__item:focus-visible .gallery__zoom { opacity: 1; transform: none; }
@media (hover: none) { .gallery__zoom { opacity: 1; transform: none; } }

.gallery-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 900px) { .gallery-strip { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: repeat(2, 220px); gap: 16px; } .gallery-strip > :first-child { grid-row: span 2; } }
.gallery-strip .gallery__item { margin: 0; height: 100%; }
.gallery-strip .gallery__item img { height: 100%; object-fit: cover; aspect-ratio: auto; }
@media (max-width: 899px) { .gallery-strip .gallery__item { aspect-ratio: 1; } .gallery-strip > :first-child { grid-column: span 2; aspect-ratio: 16 / 10; } }

/* Gallery slider (carousel) */
.carousel { position: relative; }
.carousel__track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 8px; scrollbar-width: none; overscroll-behavior-x: contain; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide { flex: 0 0 min(82%, 520px); scroll-snap-align: start; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 3; position: relative; background: var(--c-surface-2); }
.carousel__slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel__slide figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 20px 16px; color: #fff; font-family: var(--f-serif); font-size: 1.35rem; font-weight: 600; background: linear-gradient(0deg, rgba(7,32,36,.75), transparent); }
.carousel__nav { display: flex; gap: 10px; justify-content: flex-end; margin-top: 16px; }
.carousel__btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--c-border); background: var(--c-surface); color: var(--c-primary); display: inline-flex; align-items: center; justify-content: center; transition: background-color var(--dur), color var(--dur); }
.carousel__btn:hover { background: var(--c-primary); color: #fff; }
.carousel__btn:disabled { opacity: .4; cursor: default; background: var(--c-surface); color: var(--c-primary); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: var(--z-lightbox); background: rgba(6, 22, 25, .94); display: none; align-items: center; justify-content: center; padding: 64px 16px; }
.lightbox.is-open { display: flex; animation: fadein 220ms var(--ease-out); }
@keyframes fadein { from { opacity: 0; } }
.lightbox__img { max-width: min(1100px, 100%); max-height: 100%; border-radius: var(--r-md); object-fit: contain; box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.lightbox__btn { position: absolute; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: rgba(255,255,255,.08); color: #fff; display: inline-flex; align-items: center; justify-content: center; }
.lightbox__btn:hover { background: rgba(255,255,255,.2); }
.lightbox__close { top: 12px; right: 12px; }
.lightbox__prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 12px; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); color: #cfdcdd; font-size: .9rem; letter-spacing: .1em; }
@media (max-width: 640px) { .lightbox__prev, .lightbox__next { top: auto; bottom: 16px; transform: none; } .lightbox__prev { left: calc(50% - 64px); } .lightbox__next { right: calc(50% - 64px); } }

/* Page hero */
.page-hero { position: relative; padding: clamp(80px, 12vw, 140px) 0 clamp(56px, 8vw, 88px); color: #fff; background: var(--c-primary-600); overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,32,36,.85), rgba(7,32,36,.35)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: #DCE7E8; max-width: 58ch; font-size: 1.1rem; margin: 0; }
.breadcrumb { list-style: none; display: flex; gap: 8px; padding: 0; margin: 0 0 18px; font-size: .85rem; color: #BFD1D2; }
.breadcrumb a { color: var(--c-accent-soft); text-decoration: none; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; opacity: .6; }

/* Service detail list */
.svc-list { display: grid; gap: 28px; }
.svc {
  display: grid; gap: 0; background: var(--c-surface); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1);
}
@media (min-width: 800px) { .svc { grid-template-columns: 5fr 7fr; } .svc:nth-child(even) .svc__media { order: 2; } }
.svc__media { min-height: 260px; background: var(--c-surface-2); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
@media (min-width: 800px) { .svc__media img { aspect-ratio: auto; } }
.svc__body { padding: clamp(24px, 4vw, 44px); display: flex; flex-direction: column; justify-content: center; }
.svc__body p { color: var(--c-ink-2); }
.svc__benefits { list-style: none; padding: 0; margin: 0 0 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.svc__benefits li { font-size: .85rem; font-weight: 600; padding: 6px 12px; border-radius: var(--r-pill); border: 1px solid var(--c-border); color: var(--c-ink-2); display: inline-flex; gap: 6px; align-items: center; }
.svc__benefits .icon { width: 14px; height: 14px; color: var(--c-accent-ink); }

.svc-nav { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 12px; margin-bottom: 24px; scrollbar-width: thin; }
.svc-nav a { flex: none; min-height: 44px; display: inline-flex; align-items: center; padding: 0 16px; border-radius: var(--r-pill); background: var(--c-surface); border: 1px solid var(--c-border); color: var(--c-ink); text-decoration: none; font-weight: 600; font-size: .9rem; transition: background-color var(--dur), color var(--dur); }
.svc-nav a:hover { background: var(--c-primary); color: #fff; border-color: var(--c-primary); }

/* Steps */
.steps { display: grid; gap: 20px; counter-reset: step; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding: 28px 24px 24px; background: var(--c-surface); border-radius: var(--r-lg); box-shadow: var(--sh-1); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--f-serif); font-size: 2.6rem; font-weight: 600; color: var(--c-accent); line-height: 1; display: block; margin-bottom: 10px; }
.step h3 { font-size: 1.4rem; }
.step p { color: var(--c-ink-2); margin: 0; }

/* CTA band */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--c-primary); color: #fff; padding: clamp(36px, 6vw, 64px); display: grid; gap: 24px; align-items: center; }
@media (min-width: 900px) { .cta-band { grid-template-columns: 1.4fr 1fr; } }
.cta-band::before { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; border: 1px solid rgba(210,176,124,.35); box-shadow: 0 0 0 40px rgba(210,176,124,.06), 0 0 0 90px rgba(210,176,124,.04); }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: #C9DADB; margin: 0; }
.cta-band .btn-row { position: relative; justify-content: flex-start; }
@media (min-width: 900px) { .cta-band .btn-row { justify-content: flex-end; } }
.cta-phone { font-family: var(--f-serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; color: var(--c-accent-soft); text-decoration: none; display: inline-block; margin-top: 10px; }

/* Contact */
.contact-grid { display: grid; gap: 28px; }
@media (min-width: 960px) { .contact-grid { grid-template-columns: 5fr 7fr; } }
.info-list { display: grid; gap: 14px; }
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--c-surface); border-radius: var(--r-md); box-shadow: var(--sh-1); text-decoration: none; color: inherit; transition: box-shadow var(--dur); }
a.info-card:hover { box-shadow: var(--sh-2); }
.info-card__icon { width: 48px; height: 48px; flex: none; border-radius: 50%; background: var(--c-primary-50); color: var(--c-primary); display: inline-flex; align-items: center; justify-content: center; }
.info-card small { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--c-accent-ink); }
.info-card strong { display: block; font-size: 1.05rem; color: var(--c-ink); line-height: 1.45; font-weight: 600; }
.map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-1); background: var(--c-surface-2); min-height: 320px; }
.map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 8px 0; border-bottom: 1px dashed var(--c-border); }
.hours td:last-child { text-align: right; font-weight: 600; }

.form { background: var(--c-surface); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 40px); box-shadow: var(--sh-1); }
.form-grid { display: grid; gap: 18px; }
@media (min-width: 640px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 6px; color: var(--c-ink); }
.field .req { color: #B42318; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 48px; padding: 12px 14px; font: inherit; font-size: 1rem; color: var(--c-ink);
  background: var(--c-bg); border: 1.5px solid var(--c-border); border-radius: var(--r-sm);
  transition: border-color var(--dur), box-shadow var(--dur);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 4px rgba(14,74,82,.12); }
.field.has-error input, .field.has-error select { border-color: #B42318; }
.field__error { display: none; color: #B42318; font-size: .85rem; margin-top: 6px; }
.field.has-error .field__error { display: block; }
.form__note { font-size: .85rem; color: var(--c-ink-2); margin: 14px 0 0; }

/* Footer */
.site-footer { background: #0A2F34; color: #B9CCCD; padding: clamp(56px, 8vw, 88px) 0 0; font-size: .95rem; }
.site-footer a { color: #E6EFEF; text-decoration: none; }
.site-footer a:hover { color: var(--c-accent-soft); }
.footer-grid { display: grid; gap: 36px; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.site-footer h4 { font-family: var(--f-sans); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--c-accent-soft); margin-bottom: 16px; font-weight: 700; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 4px; }
.site-footer ul a { display: inline-flex; min-height: 36px; align-items: center; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand__tag { color: var(--c-accent-soft); }
.footer-brand p { margin-top: 16px; max-width: 34ch; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; padding: 4px 0; }
.footer-contact .icon { color: var(--c-accent-soft); margin-top: 4px; width: 18px; height: 18px; }
.footer-bottom { margin-top: 48px; border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .85rem; color: #8FA9AB; }

/* Mobile call bar + floating */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: var(--z-callbar);
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 10px 12px max(10px, env(safe-area-inset-bottom));
  background: rgba(246,241,233,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--c-border);
  box-shadow: 0 -8px 24px rgba(14,74,82,.08);
}
.callbar .btn { min-height: 52px; font-size: 1rem; }
.callbar .btn--primary { animation: ring-pulse 2.8s var(--ease-out) infinite; }
@keyframes ring-pulse { 0%, 70%, 100% { box-shadow: 0 0 0 0 rgba(14,74,82,.35); } 35% { box-shadow: 0 0 0 10px rgba(14,74,82,0); } }
body { padding-bottom: 76px; }
@media (min-width: 1024px) {
  .callbar { display: none; }
  body { padding-bottom: 0; }
}
.fab-call {
  position: fixed; right: 24px; bottom: 24px; z-index: var(--z-callbar); display: none;
  align-items: center; gap: 12px; padding: 10px 22px 10px 10px; border-radius: var(--r-pill);
  background: var(--c-primary); color: #fff; text-decoration: none; box-shadow: var(--sh-2);
  transition: transform var(--dur) var(--ease-out), background-color var(--dur);
}
.fab-call:hover { background: var(--c-primary-600); transform: translateY(-2px); }
.fab-call__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--c-accent); color: #1B1408; display: inline-flex; align-items: center; justify-content: center; animation: ring-pulse 2.8s var(--ease-out) infinite; }
.fab-call small { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--c-accent-soft); font-weight: 700; line-height: 1.2; }
.fab-call strong { font-size: 1.05rem; letter-spacing: .02em; line-height: 1.2; }
@media (min-width: 1024px) { .fab-call { display: inline-flex; opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity var(--dur), transform var(--dur) var(--ease-out), background-color var(--dur); } .fab-call.is-visible { opacity: 1; transform: none; pointer-events: auto; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

.prose { max-width: 72ch; }
.prose h2 { font-size: 1.8rem; margin-top: 1.6em; }

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