/* LPG MAX — самостоятельная статическая версия. */

500&family=Manrope:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');

:root {
  color: #111;
  background: #f6f6f3;
  font-family: 'Manrope', Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { min-width: 320px; margin: 0; overflow-x: hidden; background: #f6f6f3; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; touch-action: manipulation; }
a { color: inherit; }
:focus-visible { outline: 3px solid #111; outline-offset: 4px; }
::selection { color: #fff; background: #111; }

:root {
  --ink: #4a303a;
  --ink-soft: #73545f;
  --paper: #fff9f7;
  --cream: #f9ece9;
  --line: rgba(90, 53, 66, 0.15);
  --green: #a65d76;
  --green-light: #f5e0e6;
  --gold: #dfb88f;
  --rose: #c98498;
  --rose-light: #f7e1e6;
  --surface: rgba(255, 252, 251, 0.78);
  --shadow-soft: 0 18px 48px rgba(102, 59, 75, 0.12);
  --animal-print: url('../images/lpg-max-zebra-stripes.webp');
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --serif: 'Playfair Display', Georgia, serif;
  --mono: 'DM Mono', 'Courier New', monospace;
}

::selection { color: #fff; background: #111; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 11px 15px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  background: var(--green);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(1180px, calc(100% - 72px));
  margin: 0 auto;
}

.section { scroll-margin-top: 82px; }

.reveal-ready [data-reveal] {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 28px, 0);
  transition: opacity 680ms ease, transform 780ms cubic-bezier(.16, 1, .3, 1), filter 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-ready [data-reveal="left"] { transform: translate3d(-32px, 0, 0); }
.reveal-ready [data-reveal="right"] { transform: translate3d(32px, 0, 0); }
.reveal-ready [data-reveal].is-visible { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0); }

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  color: var(--ink);
  background: rgba(255, 250, 248, 0.76);
  border-bottom: 1px solid rgba(166, 93, 118, 0.13);
  transition: background 280ms ease, border-color 280ms ease, box-shadow 280ms ease, backdrop-filter 280ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 249, 247, 0.9);
  border-color: rgba(166, 93, 118, 0.17);
  box-shadow: 0 10px 34px rgba(100, 54, 71, 0.12);
  backdrop-filter: blur(16px) saturate(135%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, calc(100% - 72px));
  min-height: 80px;
  margin: 0 auto;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand img {
  width: 52px;
  height: 52px;
  padding: 3px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  transition: transform 350ms cubic-bezier(.2, .9, .25, 1), box-shadow 350ms ease;
}

.brand:hover img { box-shadow: 0 7px 18px rgba(0, 0, 0, .22); transform: rotate(-5deg) scale(1.05); }

.brand span {
  display: grid;
  max-width: 150px;
  gap: 2px;
  text-transform: uppercase;
}

.brand strong { font-size: 11px; line-height: 1.1; letter-spacing: .11em; }
.brand small { font-size: 7px; font-weight: 700; line-height: 1.25; letter-spacing: .03em; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  margin-left: auto;
}

.main-nav > a:not(.nav-booking) {
  position: relative;
  color: rgba(74, 48, 58, 0.8);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.main-nav > a:not(.nav-booking)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: '';
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.nav-booking):hover { color: var(--green); }
.main-nav > a:not(.nav-booking):hover::after { transform: scaleX(1); transform-origin: left; }

.nav-booking, .button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-decoration: none;
  overflow: hidden;
  background: linear-gradient(120deg, #b96e85, #9d536b 58%, #85445c);
  border: 1px solid var(--green);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(154, 75, 103, 0.28), 0 0 0 5px rgba(201, 132, 152, 0.08);
  transition: transform 260ms cubic-bezier(.2, .8, .2, 1), background 220ms ease, border-color 220ms ease, box-shadow 260ms ease;
}

.nav-booking::after, .button::after { position: absolute; z-index: -1; top: -80%; right: auto; bottom: -80%; left: -42%; width: 42%; content: ''; opacity: .56; pointer-events: none; background: linear-gradient(90deg, transparent, rgba(255,255,255,.85), transparent); transform: skewX(-24deg) translateX(-260%); transition: transform 700ms cubic-bezier(.16, 1, .3, 1); }

.nav-booking { display: none; padding: 12px 16px; }
.button { min-height: 54px; padding: 0 23px; }
.button-small { min-height: 40px; padding: 0 16px; font-size: 11px; }
.button:hover, .nav-booking:hover { background: linear-gradient(120deg, #cb8198, #a75670 58%, #8d475f); border-color: #8d475f; box-shadow: 0 18px 36px rgba(105, 54, 73, 0.32), 0 0 0 7px rgba(201, 132, 152, 0.12); transform: translateY(-4px); }
.button:hover::after, .nav-booking:hover::after { transform: skewX(-24deg) translateX(720%); }
.button:active, .nav-booking:active { box-shadow: 0 5px 15px rgba(0, 0, 0, .18); transform: translateY(0) scale(.985); }
.button svg, .nav-booking svg { transition: transform 180ms ease; }
.button:hover svg, .nav-booking:hover svg { transform: translateX(3px); }

.menu-toggle { display: none; color: inherit; background: transparent; border: 0; cursor: pointer; }

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: max(760px, 100dvh);
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(120deg, #fff9f7 0%, #f9e8e9 58%, #f3dce2 100%);
}

.hero::before, .hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: '';
  pointer-events: none;
}

.hero::before {
  opacity: 1;
  background: linear-gradient(rgba(255, 249, 247, .84), rgba(255, 249, 247, .84)), radial-gradient(circle at 85% 16%, rgba(231, 175, 188, 0.56), transparent 21%), radial-gradient(circle at 18% 84%, rgba(248, 216, 204, 0.72), transparent 28%), var(--animal-print) center / 360px repeat;
  background-blend-mode: normal, normal, normal, soft-light;
}

.hero::after {
  inset: auto auto 4% 5%;
  width: min(26vw, 420px);
  height: min(26vw, 420px);
  opacity: .52;
  background: repeating-radial-gradient(ellipse at center, transparent 0 23px, rgba(196, 120, 143, .2) 24px 25px, transparent 26px 42px);
  border-radius: 50%;
  animation: haloBreathe 9s ease-in-out infinite alternate;
}

.hero-image {
  position: absolute;
  z-index: 0;
  top: 116px;
  right: clamp(32px, 7vw, 138px);
  bottom: 40px;
  left: auto;
  width: min(44vw, 645px);
  height: auto;
  object-fit: cover;
  object-position: 72% center;
  opacity: 1;
  border: 9px solid rgba(255,255,255,.65);
  border-radius: 48% 48% 26px 26px / 34% 34% 26px 26px;
  box-shadow: 0 28px 62px rgba(108, 56, 76, .25), 24px 26px 0 rgba(226, 163, 180, .24);
  animation: heroFloat 8s ease-in-out infinite alternate;
}

.hero-overlay {
  display: none;
}

.flower { position: absolute; z-index: 0; width: 190px; height: 190px; opacity: .52; pointer-events: none; background: var(--flower-bloom) center / contain no-repeat; filter: drop-shadow(0 11px 16px rgba(174, 93, 119, .12)); animation: flowerFloat 10s ease-in-out infinite alternate; }
.flower-hero-one { top: 98px; left: 2.5%; width: clamp(120px, 13vw, 210px); height: clamp(120px, 13vw, 210px); opacity: .4; animation-delay: -4s; }
.flower-hero-two { right: 1.5%; bottom: 5%; width: clamp(100px, 10vw, 165px); height: clamp(100px, 10vw, 165px); opacity: .35; animation-duration: 12s; }
.flower-about { top: 20px; right: 3%; width: clamp(150px, 16vw, 235px); height: clamp(150px, 16vw, 235px); opacity: .26; animation-delay: -3s; }
.flower-about-two { bottom: -58px; left: 4%; width: clamp(105px, 12vw, 175px); height: clamp(105px, 12vw, 175px); opacity: .2; animation-duration: 12s; animation-delay: -7s; }
.flower-format { bottom: -52px; left: 2%; width: clamp(160px, 19vw, 270px); height: clamp(160px, 19vw, 270px); opacity: .25; animation-duration: 13s; animation-delay: -6s; }
.flower-format-two { top: 34px; right: 6%; width: clamp(100px, 11vw, 165px); height: clamp(100px, 11vw, 165px); opacity: .2; animation-duration: 11s; animation-delay: -2s; }
.flower-services { top: 32px; right: 2.5%; width: clamp(115px, 12vw, 185px); height: clamp(115px, 12vw, 185px); opacity: .22; animation-delay: -2s; }
.flower-services-two { bottom: 48px; left: 4%; width: clamp(95px, 10vw, 155px); height: clamp(95px, 10vw, 155px); opacity: .18; animation-duration: 12s; animation-delay: -6s; }
.flower-results { right: 3%; bottom: 35px; width: clamp(130px, 14vw, 215px); height: clamp(130px, 14vw, 215px); opacity: .22; animation-duration: 12s; animation-delay: -7s; }
.flower-results-two { top: 72px; right: 36%; width: clamp(78px, 8vw, 125px); height: clamp(78px, 8vw, 125px); opacity: .15; animation-duration: 11s; animation-delay: -3s; }
.flower-gallery { top: 34px; right: 4%; width: clamp(115px, 12vw, 190px); height: clamp(115px, 12vw, 190px); opacity: .2; animation-delay: -5s; }
.flower-gallery-two { bottom: 26px; left: 3%; width: clamp(100px, 11vw, 170px); height: clamp(100px, 11vw, 170px); opacity: .17; animation-duration: 12s; animation-delay: -8s; }
.flower-booking { top: -58px; right: 8%; width: clamp(180px, 20vw, 300px); height: clamp(180px, 20vw, 300px); opacity: .18; filter: drop-shadow(0 14px 22px rgba(255, 202, 218, .16)) brightness(1.2); animation-duration: 14s; animation-delay: -4s; }
.flower-booking-two { right: 43%; bottom: -64px; width: clamp(100px, 12vw, 180px); height: clamp(100px, 12vw, 180px); opacity: .16; animation-duration: 12s; animation-delay: -7s; }
.flower-contacts { right: 4%; bottom: -64px; width: clamp(165px, 19vw, 280px); height: clamp(165px, 19vw, 280px); opacity: .21; animation-delay: -8s; }
.flower-contacts-two { top: 24px; left: 5%; width: clamp(95px, 10vw, 160px); height: clamp(95px, 10vw, 160px); opacity: .18; animation-duration: 11s; animation-delay: -3s; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: min(1180px, calc(100% - 72px));
  padding: 150px 0 110px;
}

.hero-inner::before {
  position: absolute;
  top: 50%;
  left: -42px;
  width: 1px;
  height: 122px;
  content: '';
  opacity: .78;
  background: linear-gradient(var(--green), transparent);
  transform: translateY(-50%);
}

.hero-inner > * { animation: heroEnter 760ms cubic-bezier(.16, 1, .3, 1) both; }
.hero-inner .eyebrow { animation-delay: 80ms; }
.hero-inner h1 { animation-delay: 160ms; }
.hero-inner .hero-description { animation-delay: 250ms; }
.hero-inner .hero-actions { animation-delay: 340ms; }
.hero-inner .hero-location { animation-delay: 430ms; }
.hero .eyebrow { color: var(--green); }
.hero h1 { max-width: 560px; color: var(--ink); text-shadow: none; }
.hero h1.hero-title-architecture { width: 100%; min-width: 0; max-width: 615px; font-size: clamp(46px, 3.6vw, 56px); line-height: 1.03; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.77);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-dark { color: var(--green); }
.eyebrow-dot { width: 7px; height: 7px; background: var(--gold); border-radius: 50%; animation: softPulse 2.4s ease-in-out infinite; }

h1, h2, h3, h4, p { margin-top: 0; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: 0.98;
  font-style: italic;
  text-shadow: 0 5px 30px rgba(0, 0, 0, .16);
}

.hero-description {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.62;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-bottom: 31px; }

.button-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.54);
  border-color: rgba(166, 93, 118, 0.35);
  box-shadow: none;
}

.button-ghost:hover { color: var(--ink); background: #fff; border-color: #fff; box-shadow: none; }

.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(74, 48, 58, 0.72);
  font-size: 12px;
}

.scroll-cue {
  position: absolute;
  z-index: 1;
  right: 50px;
  bottom: 42px;
  display: grid;
  width: 30px;
  height: 51px;
  padding: 5px;
  place-items: start center;
  border: 1px solid rgba(166, 93, 118, 0.46);
  border-radius: 22px;
}

.scroll-cue span { width: 3px; height: 9px; background: var(--green); border-radius: 9px; animation: scrollDot 1.5s ease-in-out infinite; }

.care-ribbon { overflow: hidden; color: #704052; background: #f3cdd7; border-top: 1px solid rgba(255,255,255,.48); border-bottom: 1px solid rgba(166,93,118,.18); }
.care-ribbon-track { display: flex; align-items: center; width: max-content; min-width: 100%; gap: 22px; padding: 13px 0 14px; font-family: var(--mono); font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; animation: ribbonMove 24s linear infinite; }
.care-ribbon-track span { white-space: nowrap; }
.care-ribbon-track i { display: block; flex: 0 0 18px; width: 18px; height: 18px; font-size: 0; font-style: normal; background: var(--flower-bloom) center / contain no-repeat; filter: drop-shadow(0 2px 3px rgba(166, 93, 118, .16)); }

.about { position: relative; padding: 130px 0 92px; overflow: hidden; background: radial-gradient(circle at 6% 12%, rgba(184, 117, 106, .09), transparent 22%), var(--paper); }
.about::before, .format::after, .services::after, .results::after, .gallery::before, .contacts::before { position: absolute; z-index: 0; inset: 0; content: ''; opacity: .06; pointer-events: none; background: var(--animal-print) center / 350px repeat; mix-blend-mode: multiply; }

.about::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 410px;
  height: 410px;
  content: '';
  opacity: .45;
  border: 1px solid rgba(184, 117, 106, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(184, 117, 106, .035), 0 0 0 110px rgba(184, 117, 106, .02);
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(310px, 0.86fr) minmax(400px, 1.14fr);
  align-items: center;
  gap: clamp(65px, 9vw, 145px);
}

.about-visual { position: relative; max-width: 430px; }

.about-visual::before {
  position: absolute;
  top: -22px;
  right: -22px;
  z-index: 0;
  width: 52%;
  height: 55%;
  content: '';
  border: 1px solid var(--gold);
  transition: transform 650ms cubic-bezier(.16, 1, .3, 1);
}

.about-visual::after {
  position: absolute;
  z-index: 1;
  right: -32px;
  bottom: 28px;
  width: 70px;
  height: 70px;
  content: '';
  opacity: 0.75;
  background: repeating-linear-gradient(145deg, var(--ink) 0 4px, transparent 4px 10px);
  transition: transform 650ms cubic-bezier(.16, 1, .3, 1);
}

.about-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 0.77;
  object-fit: cover;
  object-position: 35% center;
  filter: saturate(.9) brightness(1.03) contrast(1.02);
  box-shadow: 0 18px 36px rgba(103, 57, 73, .12);
  transition: transform 800ms cubic-bezier(.16, 1, .3, 1), filter 500ms ease, box-shadow 500ms ease;
}

@media (hover: hover) {
  .about-visual:hover::before { transform: translate(8px, -8px); }
  .about-visual:hover::after { transform: translate(-7px, 7px) rotate(-8deg); }
  .about-visual:hover img { filter: saturate(1) brightness(1.04) contrast(1.02); box-shadow: 0 25px 48px rgba(103, 57, 73, .2); transform: scale(1.018); }
}

.image-note {
  position: absolute;
  z-index: 2;
  right: -45px;
  bottom: 0;
  padding: 15px 17px;
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #c98299, #8d4d63);
  box-shadow: 0 10px 24px rgba(152, 76, 102, .24);
}

.about-copy { max-width: 590px; }
.about-copy h2, .section-heading h2, .contacts h2 { margin-bottom: 25px; color: var(--ink); font-size: clamp(38px, 4.1vw, 60px); line-height: 1.05; }
.about-copy > p:not(.eyebrow) { max-width: 540px; margin-bottom: 14px; color: var(--ink-soft); font-size: 15px; line-height: 1.72; }

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.benefit { padding: 22px 18px 0 0; }
.benefit + .benefit { padding-left: 18px; border-left: 1px solid var(--line); }
.benefit-icon { display: grid; width: 43px; height: 43px; margin-bottom: 17px; color: var(--green); place-items: center; border: 1px solid rgba(166, 93, 118, 0.38); border-radius: 50%; transition: color 240ms ease, background 240ms ease, border-color 240ms ease, transform 300ms cubic-bezier(.2, .8, .2, 1); }
.benefit h3 { margin-bottom: 7px; color: var(--ink); font-size: 13px; line-height: 1.35; }
.benefit p { margin: 0; color: #74766e; font-size: 11px; line-height: 1.5; }

@media (hover: hover) {
  .benefit:hover .benefit-icon { color: #fff; background: var(--green); border-color: var(--green); transform: translateY(-3px) rotate(-5deg); }
}

.format { position: relative; padding: 125px 0; overflow: hidden; background: linear-gradient(120deg, #f9edee, #f3e4e7); }
.format::before { position: absolute; top: -220px; right: -155px; width: 570px; height: 570px; content: ''; opacity: .46; border: 1px solid rgba(201, 132, 152, .24); border-radius: 50%; box-shadow: 0 0 0 46px rgba(201, 132, 152, .05), 0 0 0 92px rgba(201, 132, 152, .03); }
.format-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: clamp(50px, 9vw, 135px); }
.format-statement h2 { margin-bottom: 22px; color: var(--ink); font-size: clamp(39px, 4.2vw, 59px); line-height: 1.04; }
.format-statement > p:not(.eyebrow) { max-width: 365px; margin: 0; color: #656961; font-size: 14px; line-height: 1.7; }
.format-list { border-top: 1px solid rgba(32,34,31,.2); }
.format-item { display: grid; grid-template-columns: 53px 1fr; gap: 19px; padding: 24px 0; border-bottom: 1px solid rgba(32,34,31,.2); transition: padding 300ms cubic-bezier(.2, .8, .2, 1), background 300ms ease; }
.format-item > span { display: grid; width: 43px; height: 43px; color: var(--green); place-items: center; border: 1px solid rgba(166,93,118,.42); border-radius: 50%; transition: color 260ms ease, background 260ms ease, transform 300ms cubic-bezier(.2, .8, .2, 1); }
.format-item h3 { margin-bottom: 7px; color: var(--ink); font-size: 14px; }
.format-item p { max-width: 430px; margin: 0; color: #666961; font-size: 12px; line-height: 1.58; }

@media (hover: hover) {
  .format-item:hover { padding-right: 12px; padding-left: 12px; background: rgba(255, 255, 255, .24); }
  .format-item:hover > span { color: #fff; background: var(--green); transform: rotate(-7deg); }
}

.services { position: relative; padding: 120px 0 135px; overflow: hidden; background: linear-gradient(180deg, #fbf3f1 0%, #f7e8ea 100%); }
.services::before { position: absolute; top: 110px; left: -90px; width: 250px; height: 250px; content: ''; opacity: .42; background: repeating-linear-gradient(145deg, transparent 0 12px, rgba(201, 132, 152, .15) 13px 14px); border-radius: 50%; }
.services .container { position: relative; z-index: 1; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 54px; }
.section-heading h2 { margin-bottom: 0; }
.section-aside { max-width: 255px; margin: 0 0 3px; color: #6d7069; font-size: 12px; line-height: 1.6; }

.procedure-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 68px; }
.procedure-card { position: relative; min-height: 214px; padding: 26px 25px 25px; overflow: hidden; background: rgba(255, 252, 251, .66); border: 1px solid rgba(166, 93, 118, .18); border-radius: 18px; box-shadow: 0 2px 0 rgba(255, 255, 255, .42) inset; transition: transform 320ms var(--ease-out), background 320ms ease, box-shadow 320ms ease, border-color 320ms ease; }
.procedure-card::after { position: absolute; right: -24px; bottom: -34px; width: 104px; height: 104px; content: ''; opacity: .12; pointer-events: none; background: var(--flower-bloom) center / contain no-repeat; transform: rotate(18deg); }
.procedure-card > * { position: relative; z-index: 1; }
.procedure-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.procedure-card-top p { flex: 1; margin: 0; color: var(--green); font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: .09em; line-height: 1.45; text-transform: uppercase; }
.procedure-card-booking { flex: 0 0 auto; padding: 7px 10px; color: #fff; font-size: 9px; font-weight: 700; line-height: 1; text-decoration: none; background: var(--green); border-radius: 999px; box-shadow: 0 5px 13px rgba(154, 75, 103, .18); transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease; }
.procedure-card-booking:hover { color: #fff; background: #85445c; box-shadow: 0 8px 16px rgba(154, 75, 103, .28); transform: translateY(-2px); }
.procedure-card-booking:focus-visible { outline: 3px solid rgba(185, 110, 133, .45); outline-offset: 3px; }
.procedure-card h3 { max-width: 225px; margin-bottom: 11px; color: var(--ink); font-family: var(--serif); font-size: 24px; font-weight: 500; letter-spacing: -.035em; line-height: 1.02; }
.procedure-card span { display: block; max-width: 280px; color: #69615e; font-size: 12px; line-height: 1.62; }
.procedure-card-expand { display: inline-flex; align-items: center; gap: 6px; min-height: 38px; margin-top: 14px; padding: 0; color: var(--green); font: inherit; font-size: 11px; font-weight: 700; cursor: pointer; background: transparent; border: 0; border-bottom: 1px solid rgba(166, 93, 118, .38); transition: color 180ms ease, border-color 180ms ease; }
.procedure-card-expand:hover { color: #85445c; border-color: #85445c; }
.procedure-card-expand:focus-visible { outline: 3px solid rgba(185, 110, 133, .42); outline-offset: 4px; }
.procedure-channel { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; max-width: 760px; margin: -44px auto 24px; padding: 18px 22px; color: var(--ink); text-decoration: none; background: rgba(255, 252, 251, .72); border: 1px solid rgba(166, 93, 118, .24); border-radius: 16px; box-shadow: 0 10px 24px rgba(102, 59, 75, .07); transition: background 200ms ease, border-color 200ms ease, transform 200ms ease; }
.procedure-channel span { color: var(--green); font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.procedure-channel strong { font-family: var(--serif); font-size: 19px; font-weight: 500; letter-spacing: -.02em; }
.procedure-channel:hover { color: var(--ink); background: #fff; border-color: rgba(166, 93, 118, .45); transform: translateY(-2px); }
.procedure-channel:hover svg { color: var(--green); transform: translateX(3px); }
.procedure-channel svg { transition: color 180ms ease, transform 180ms ease; }
.procedure-card:nth-child(2) { --reveal-delay: 65ms; }
.procedure-card:nth-child(3) { --reveal-delay: 120ms; }
.procedure-card:nth-child(4) { --reveal-delay: 40ms; }
.procedure-card:nth-child(5) { --reveal-delay: 105ms; }
.procedure-card:nth-child(6) { --reveal-delay: 165ms; }
.procedure-card:nth-child(7) { --reveal-delay: 75ms; }
.procedure-card:nth-child(8) { --reveal-delay: 135ms; }
.procedure-card:nth-child(9) { --reveal-delay: 190ms; }

@media (hover: hover) {
  .procedure-card:hover { background: rgba(255, 255, 255, .92); border-color: rgba(166, 93, 118, .36); box-shadow: var(--shadow-soft); transform: translateY(-5px); }
}

.procedure-booking { display: flex; align-items: center; justify-content: space-between; gap: 28px; max-width: 760px; margin: 0 auto; padding: 25px 28px; background: rgba(255, 252, 251, .62); border: 1px solid rgba(166, 93, 118, .2); border-radius: 18px; }
.procedure-booking p { max-width: 385px; margin: 0; color: #656961; font-size: 14px; line-height: 1.55; }

.results { position: relative; padding: 120px 0 128px; overflow: hidden; background: linear-gradient(180deg, #f8e8eb 0%, #fff9f7 100%); }
.results::before { position: absolute; top: -155px; left: -130px; width: 370px; height: 370px; content: ''; opacity: .34; border: 1px solid rgba(201, 132, 152, .28); border-radius: 50%; box-shadow: 0 0 0 36px rgba(201, 132, 152, .05), 0 0 0 72px rgba(201, 132, 152, .03); }
.results .container { position: relative; z-index: 1; }
.results-heading { margin-bottom: 48px; }
.results-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.result-card { grid-column: span 2; overflow: hidden; background: var(--surface); border: 1px solid rgba(166, 93, 118, .14); border-radius: 20px; box-shadow: 0 11px 26px rgba(100, 54, 71, .1); transition: transform 350ms var(--ease-out), box-shadow 350ms ease; }
.result-card:nth-child(n + 4) { grid-column: span 3; }
.result-card img { display: block; width: 100%; aspect-ratio: 7 / 5; object-fit: cover; transition: transform 850ms cubic-bezier(.16, 1, .3, 1), filter 400ms ease; }
.result-caption { display: grid; gap: 5px; padding: 17px 18px 18px; }
.result-caption span { color: var(--green); font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.result-caption h3 { margin: 0; color: var(--ink); font-size: 14px; line-height: 1.3; }
.result-card:nth-child(2) { --reveal-delay: 70ms; }
.result-card:nth-child(3) { --reveal-delay: 120ms; }
.result-card:nth-child(4) { --reveal-delay: 70ms; }
.result-card:nth-child(5) { --reveal-delay: 120ms; }

@media (hover: hover) {
  .result-card:hover { box-shadow: 0 20px 42px rgba(128, 68, 88, .19); transform: translateY(-7px); }
  .result-card:hover img { filter: saturate(1.08) contrast(1.02); transform: scale(1.045); }
}

.gallery { position: relative; padding: 128px 0; overflow: hidden; background: radial-gradient(circle at 92% 6%, rgba(184, 117, 106, .1), transparent 23%), var(--paper); }
.gallery .container { position: relative; z-index: 1; }
.gallery-heading { margin-bottom: 48px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 210px; gap: 14px; }
.gallery-card { position: relative; display: block; min-width: 0; padding: 0; overflow: hidden; cursor: zoom-in; background: var(--ink); border: 0; border-radius: 22px; box-shadow: 0 15px 32px rgba(100, 54, 71, .12); }
.gallery-card::after { position: absolute; inset: 0; content: ''; background: linear-gradient(0deg, rgba(90, 43, 61, 0.52), transparent 58%); opacity: .16; transition: opacity 320ms ease; }
.gallery-card img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 750ms cubic-bezier(.16, 1, .3, 1), filter 400ms ease; }
.gallery-card:hover::after { opacity: 1; }
.gallery-card:hover img { filter: saturate(1.08) contrast(1.04); transform: scale(1.06); }
.gallery-wide { grid-column: span 2; grid-row: span 2; }
.gallery-wide img { object-position: 52% center; }
.gallery-tall { grid-row: span 2; }
.gallery-tall img { object-position: center 35%; }
.gallery-luxor img { filter: grayscale(1) contrast(1.08); }
.gallery-luxor:hover img { filter: grayscale(.82) contrast(1.1); }
.gallery-detail img { object-position: center 35%; }
.gallery-angle img { object-position: 57% center; }
.gallery-treatment img { object-position: center; filter: grayscale(1) contrast(1.06); }
.gallery-cabinet img, .gallery-wall img, .gallery-zebra-bed img { filter: grayscale(.9) contrast(1.05); }
.gallery-card:nth-child(2) { --reveal-delay: 80ms; }
.gallery-card:nth-child(3) { --reveal-delay: 130ms; }
.gallery-card:nth-child(4) { --reveal-delay: 180ms; }
.gallery-card:nth-child(5) { --reveal-delay: 70ms; }
.gallery-card:nth-child(6) { --reveal-delay: 115ms; }
.gallery-card:nth-child(7) { --reveal-delay: 155ms; }
.gallery-card:nth-child(8) { --reveal-delay: 195ms; }
.gallery-expand { position: absolute; z-index: 2; right: 14px; bottom: 12px; display: grid; width: 30px; height: 30px; color: #fff; font-size: 23px; font-weight: 300; line-height: 1; opacity: 0; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; transition: opacity 220ms ease, transform 220ms ease; }
.gallery-card:hover .gallery-expand { opacity: 1; transform: rotate(90deg); }

.booking-cta { padding: 0 0 126px; background: var(--paper); }
.cta-card { position: relative; display: flex; min-height: 420px; overflow: hidden; color: #fff; background: linear-gradient(120deg, #593541, #754557 68%, #966375); border-radius: 28px; box-shadow: 0 20px 55px rgba(100, 54, 71, .2); }
.cta-card::before { position: absolute; top: -120px; left: 42%; width: 340px; height: 340px; content: ''; opacity: .52; pointer-events: none; background: radial-gradient(circle, rgba(255, 218, 220, .46), transparent 68%); border-radius: 50%; animation: ctaGlow 7s ease-in-out infinite alternate; }
.cta-card::after { position: absolute; right: -110px; bottom: -160px; width: 540px; height: 540px; content: ''; border: 1px solid rgba(245, 219, 200, 0.42); border-radius: 50%; }
.cta-copy { position: relative; z-index: 1; max-width: 580px; padding: 68px clamp(35px, 7vw, 100px); }
.cta-copy h2 { margin-bottom: 20px; font-size: clamp(43px, 5vw, 68px); line-height: 0.98; }
.cta-copy > p:not(.eyebrow) { max-width: 385px; margin-bottom: 27px; color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.65; }
.cta-art { position: absolute; top: 0; right: 0; bottom: 0; display: flex; align-items: flex-end; justify-content: flex-end; width: 47%; overflow: hidden; }
.cta-art::before { position: absolute; top: 14%; right: 8%; width: 75%; height: 73%; content: ''; opacity: 0.5; background: repeating-linear-gradient(140deg, transparent 0 23px, rgba(255, 238, 229, .85) 24px 28px, transparent 29px 45px); border-radius: 45% 55% 47% 53% / 57% 37% 63% 43%; animation: ctaDrift 16s ease-in-out infinite alternate; }
.cta-curve { position: absolute; right: 18%; bottom: -38%; width: 330px; height: 330px; border: 1px solid rgba(255, 232, 222, .36); border-radius: 50%; transform: rotate(18deg); }
.cta-art span { position: relative; right: 30px; bottom: 30px; color: rgba(255,255,255,.15); font-family: var(--serif); font-size: clamp(62px, 9vw, 135px); font-style: italic; line-height: .76; letter-spacing: -0.09em; text-align: right; }

.contacts { position: relative; padding: 115px 0 125px; overflow: hidden; background: linear-gradient(122deg, #f5e6e7, #eadbe1); }
.contacts-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 90px; }
.contacts h2 { margin-bottom: 20px; }
.contact-location { display: flex; align-items: center; gap: 8px; margin: 0; color: #696c64; font-size: 13px; }
.contact-action-area { padding-left: 12px; border-left: 1px solid rgba(32,34,31,.24); }
.phone-link { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 28px; color: var(--ink); font-family: var(--serif); font-size: clamp(25px, 3vw, 36px); font-weight: 500; letter-spacing: -0.04em; text-decoration: none; }
.phone-link svg { color: var(--green); }
.phone-link:hover { color: var(--green); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.contact-button { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 14px; color: var(--ink); font-size: 11px; font-weight: 700; text-decoration: none; border: 1px solid rgba(32,34,31,.32); border-radius: 999px; transition: color 180ms ease, background 180ms ease, transform 180ms ease; }
.contact-button:hover { color: #fff; background: var(--green); border-color: var(--green); transform: translateY(-2px); }
.contact-button-dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.contact-button-dark:hover { background: var(--green); }
.max-mark { color: var(--green); font-family: var(--mono); font-size: 10px; letter-spacing: .03em; }

.site-footer { padding: 38px 0 30px; color: rgba(255,255,255,.72); background: #452d36; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; align-items: center; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 43px; height: 43px; padding: 2px; object-fit: contain; background: #fff; border-radius: 50%; }
.footer-brand p { max-width: 170px; margin: 0; color: #fff; font-size: 10px; font-weight: 700; line-height: 1.35; text-transform: uppercase; }
.footer-note, .copyright { margin: 0; font-size: 10px; line-height: 1.5; }
.footer-links { display: flex; justify-content: flex-end; gap: 18px; }
.footer-links a { color: #fff; font-size: 10px; font-weight: 700; text-decoration: none; }
.footer-links a:hover { color: #f3cbd7; }
.copyright { grid-column: 1 / -1; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.16); }

.mobile-booking { display: none; }

.lightbox { position: fixed; z-index: 50; inset: 0; display: grid; padding: 30px; background: rgba(10, 12, 10, .92); cursor: zoom-out; animation: fadeIn 220ms ease both; place-items: center; }
.lightbox figure { display: flex; flex-direction: column; max-width: min(1000px, 92vw); max-height: 90vh; margin: 0; cursor: default; animation: lightboxEnter 360ms cubic-bezier(.16, 1, .3, 1) both; }
.lightbox figure img { display: block; width: auto; max-width: 100%; max-height: calc(90vh - 42px); object-fit: contain; }
.lightbox figcaption { padding-top: 10px; color: rgba(255,255,255,.72); font-size: 11px; text-align: center; }
.lightbox-close { position: absolute; top: 22px; right: 24px; display: grid; width: 44px; height: 44px; padding: 0; color: #fff; cursor: pointer; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.32); border-radius: 50%; place-items: center; }
.lightbox-close:hover { background: var(--green); border-color: var(--green); }
.procedure-modal { position: fixed; z-index: 60; inset: 0; display: grid; padding: clamp(18px, 4vw, 52px); overflow-y: auto; cursor: zoom-out; background: rgba(59, 37, 46, .72); backdrop-filter: blur(12px); animation: fadeIn 220ms ease both; place-items: center; }
.procedure-modal-card { position: relative; width: min(740px, 100%); max-height: min(760px, calc(100dvh - 36px)); padding: clamp(30px, 5vw, 58px); overflow-y: auto; cursor: default; background: linear-gradient(rgba(255, 250, 248, .96), rgba(255, 250, 248, .96)), var(--animal-print) center / 330px repeat; border: 1px solid rgba(255,255,255,.65); border-radius: 26px; box-shadow: 0 28px 70px rgba(38, 20, 28, .35); animation: lightboxEnter 300ms var(--ease-out) both; }
.procedure-modal-close { position: absolute; top: 18px; right: 18px; display: grid; width: 44px; height: 44px; padding: 0; color: var(--ink); cursor: pointer; background: rgba(255,255,255,.76); border: 1px solid rgba(166, 93, 118, .24); border-radius: 50%; transition: color 180ms ease, background 180ms ease, transform 180ms ease; place-items: center; }
.procedure-modal-close:hover { color: #fff; background: var(--green); transform: rotate(90deg); }
.procedure-modal-close:focus-visible { outline: 3px solid rgba(255,255,255,.85); outline-offset: 3px; }
.procedure-modal-type { margin: 0 54px 15px 0; color: var(--green); font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .1em; line-height: 1.45; text-transform: uppercase; }
.procedure-modal-card h2 { max-width: 560px; margin-bottom: 20px; color: var(--ink); font-size: clamp(40px, 5.2vw, 60px); line-height: .98; }
.procedure-modal-lead { max-width: 590px; margin-bottom: 24px; color: var(--ink-soft); font-size: 16px; line-height: 1.68; }
.procedure-modal-details { display: grid; gap: 15px; max-width: 590px; padding: 24px 0; border-top: 1px solid rgba(90, 53, 66, .18); border-bottom: 1px solid rgba(90, 53, 66, .18); }
.procedure-modal-details p { margin: 0; color: #5d4a50; font-size: 15px; line-height: 1.72; }
.procedure-modal-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; margin-top: 28px; }
.procedure-modal-channel { display: inline-flex; align-items: center; gap: 7px; min-height: 44px; color: var(--green); font-size: 12px; font-weight: 700; text-decoration: none; }
.procedure-modal-channel:hover { color: #85445c; text-decoration: underline; }

@keyframes heroScale { from { transform: scale(1.07); } to { transform: scale(1); } }
@keyframes heroFloat { from { transform: translate3d(0, 0, 0) rotate(-1.5deg); } to { transform: translate3d(0, -14px, 0) rotate(1.2deg); } }
@keyframes flowerFloat { from { transform: translate3d(0, 0, 0) rotate(-8deg) scale(.94); } to { transform: translate3d(0, -18px, 0) rotate(9deg) scale(1.04); } }
@keyframes heroEnter { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollDot { 0%, 100% { transform: translateY(0); opacity: .5; } 45% { transform: translateY(21px); opacity: 1; } }
@keyframes ribbonMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes haloBreathe { from { transform: scale(.94) rotate(0deg); opacity: .36; } to { transform: scale(1.08) rotate(12deg); opacity: .7; } }
@keyframes ctaGlow { from { transform: translate3d(-30px, 10px, 0) scale(.88); } to { transform: translate3d(55px, 55px, 0) scale(1.13); } }
@keyframes softPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(186, 155, 93, .38); } 50% { box-shadow: 0 0 0 6px rgba(186, 155, 93, 0); } }
@keyframes ctaDrift { from { transform: rotate(-12deg) translate3d(0, 0, 0); } to { transform: rotate(-5deg) translate3d(-16px, 12px, 0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes lightboxEnter { from { opacity: 0; transform: scale(.96) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }

@media (max-width: 1050px) {
  .header-inner { width: min(100% - 48px, 1180px); }
  .main-nav { gap: 18px; }
  .main-nav > a:not(.nav-booking) { font-size: 11px; }
  .about-grid { gap: 65px; }
  .benefit-list { grid-template-columns: 1fr; }
  .benefit { display: flex; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .benefit + .benefit { padding-left: 0; border-left: 0; }
  .benefit-icon { flex: 0 0 auto; width: 36px; height: 36px; margin: 0; }
  .benefit p { max-width: 240px; }
}

@media (max-width: 800px) {
  .container { width: min(100% - 40px, 610px); }
  .header-inner { width: calc(100% - 40px); min-height: 68px; }
  .brand img { width: 43px; height: 43px; }
  .brand strong { font-size: 10px; }
  .brand small { font-size: 7px; }
  .header-booking { display: none; }
  .menu-toggle { display: grid; width: 42px; height: 42px; padding: 0; place-items: center; }
  .main-nav { position: absolute; top: 68px; right: 0; left: 0; display: grid; gap: 0; padding: 10px 20px 20px; visibility: hidden; background: #51333f; opacity: 0; transform: translateY(-8px); transition: visibility 180ms, opacity 180ms, transform 180ms; }
  .main-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .main-nav > a:not(.nav-booking) { padding: 15px 0; color: #fff; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.13); }
  .main-nav > a:not(.nav-booking)::after { display: none; }
  .nav-booking { display: inline-flex; width: max-content; margin-top: 17px; }
  .hero { min-height: 720px; color: #fff; background: #533440; }
  .flower-hero-one { top: 76px; left: -48px; opacity: .22; }
  .flower-hero-two { display: none; }
  .flower-about { right: -43px; opacity: .2; }
  .flower-about-two { bottom: -42px; left: -40px; opacity: .14; }
  .flower-format { left: -62px; opacity: .18; }
  .flower-format-two { top: 24px; right: -42px; opacity: .14; }
  .flower-services { top: 20px; right: -45px; opacity: .16; }
  .flower-services-two { bottom: 18px; left: -42px; opacity: .13; }
  .flower-results { right: -53px; bottom: 14px; opacity: .16; }
  .flower-results-two { top: 48px; right: 24%; opacity: .12; }
  .flower-gallery { top: 12px; right: -48px; opacity: .15; }
  .flower-gallery-two { bottom: 12px; left: -42px; opacity: .13; }
  .flower-booking { top: -70px; right: -46px; opacity: .15; }
  .flower-booking-two { right: 32%; bottom: -52px; opacity: .12; }
  .flower-contacts { right: -68px; bottom: -78px; opacity: .16; }
  .flower-contacts-two { top: 14px; left: -42px; opacity: .13; }
  .hero-image { z-index: -2; inset: 0; width: 100%; height: 100%; object-position: 61% center; opacity: .56; border: 0; border-radius: 0; box-shadow: none; animation: heroScale 13s cubic-bezier(.16, .85, .25, 1) both; }
  .hero-overlay { position: absolute; z-index: -1; inset: 0; display: block; background: linear-gradient(90deg, rgba(75,43,56,.94) 0%, rgba(102,55,73,.76) 78%, rgba(121,65,85,.46) 100%), linear-gradient(0deg, rgba(74,41,54,.68), transparent 42%); }
  .hero .eyebrow, .hero-description, .hero-location { color: rgba(255,255,255,.8); }
  .hero h1 { color: #fff; text-shadow: 0 5px 30px rgba(0,0,0,.16); }
  .hero h1.hero-title-architecture { font-size: clamp(40px, 6.3vw, 52px); }
  .button-ghost { color: #fff; background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.58); }
  .hero-inner { padding: 125px 0 90px; }
  .care-ribbon-track { font-size: 9px; }
  h1 { max-width: 600px; font-size: clamp(48px, 9.5vw, 70px); }
  .about, .gallery { padding: 90px 0; }
  .results { padding: 90px 0; }
  .format { padding: 90px 0; }
  .format-grid { grid-template-columns: 1fr; gap: 45px; }
  .services { padding: 90px 0 100px; }
  .about-grid, .contacts-grid { grid-template-columns: 1fr; gap: 58px; }
  .about-visual { width: min(84%, 430px); margin-left: 8px; }
  .about-copy { max-width: 610px; }
  .section-heading { align-items: start; flex-direction: column; gap: 4px; margin-bottom: 38px; }
  .section-aside { max-width: 390px; }
  .procedure-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 54px; }
  .procedure-booking { max-width: none; }
  .results-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .result-card, .result-card:nth-child(n + 4) { grid-column: auto; }
  .result-card:last-child { grid-column: 1 / -1; width: calc(50% - 7px); justify-self: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .gallery-wide { grid-column: span 2; grid-row: span 1; }
  .gallery-tall { grid-row: span 2; }
  .booking-cta { padding-bottom: 90px; }
  .cta-card { min-height: 440px; }
  .cta-art { width: 52%; opacity: .75; }
  .cta-copy { padding: 60px 44px; }
  .contacts { padding: 90px 0; }
  .contact-action-area { padding-top: 28px; padding-left: 0; border-top: 1px solid rgba(32,34,31,.24); border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-note { max-width: 210px; justify-self: end; text-align: right; }
  .footer-links { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 560px) {
  body { padding-bottom: 72px; }
  .container { width: calc(100% - 32px); }
  .header-inner { width: calc(100% - 32px); }
  .brand { gap: 8px; }
  .brand span { max-width: 112px; }
  .hero { min-height: 690px; }
  .hero-inner { padding-top: 110px; padding-bottom: 70px; }
  .hero-image { object-position: 59% 50%; }
  h1 { margin-bottom: 22px; font-size: clamp(44px, 12vw, 59px); line-height: 1.01; }
  .hero-description { max-width: 350px; margin-bottom: 28px; font-size: 14px; line-height: 1.58; }
  .hero-actions { align-items: stretch; flex-direction: column; width: min(100%, 288px); margin-bottom: 25px; }
  .hero-actions .button { width: 100%; }
  .button { min-height: 52px; }
  .scroll-cue { right: 17px; bottom: 23px; width: 26px; height: 46px; }
  .care-ribbon-track { gap: 17px; padding: 12px 0; font-size: 8px; letter-spacing: .12em; }
  .about, .gallery { padding: 70px 0; }
  .results { padding: 70px 0; }
  .format { padding: 70px 0; }
  .format-grid { gap: 33px; }
  .format-statement h2 { font-size: 40px; }
  .format-statement > p:not(.eyebrow) { font-size: 13px; }
  .format-item { grid-template-columns: 46px 1fr; gap: 13px; padding: 19px 0; }
  .format-item > span { width: 38px; height: 38px; }
  .format-item h3 { margin-bottom: 5px; font-size: 13px; }
  .format-item p { font-size: 11px; }
  .services { padding: 72px 0 78px; }
  .results-heading { margin-bottom: 30px; }
  .results-grid { grid-template-columns: 1fr; gap: 12px; }
  .result-card, .result-card:nth-child(n + 4), .result-card:last-child { grid-column: auto; width: auto; }
  .result-caption { padding: 14px 15px 16px; }
  .result-caption h3 { font-size: 13px; }
  .about-visual { width: calc(100% - 22px); margin-bottom: -6px; }
  .about-visual::after { right: -18px; width: 51px; height: 51px; }
  .image-note { right: -20px; padding: 11px 12px; font-size: 8px; }
  .about-copy h2, .section-heading h2, .contacts h2 { margin-bottom: 19px; font-size: clamp(35px, 10vw, 47px); }
  .about-copy > p:not(.eyebrow) { font-size: 14px; line-height: 1.66; }
  .benefit-list { margin-top: 29px; }
  .procedure-grid { grid-template-columns: 1fr; gap: 10px; margin-bottom: 42px; }
  .procedure-card { min-height: 0; padding: 22px 20px 21px; }
  .procedure-card-top { margin-bottom: 10px; }
  .procedure-card-top p { font-size: 8px; }
  .procedure-card-booking { padding: 7px 9px; font-size: 9px; }
  .procedure-card h3 { margin-bottom: 8px; font-size: 23px; }
  .procedure-card span { max-width: 305px; font-size: 12px; line-height: 1.55; }
  .procedure-channel { grid-template-columns: 1fr auto; gap: 4px 12px; margin: -28px 0 20px; padding: 17px 18px; }
  .procedure-channel span { grid-column: 1 / -1; }
  .procedure-channel strong { font-size: 17px; line-height: 1.15; }
  .hero h1.hero-title-architecture { font-size: clamp(32px, 9.2vw, 40px); line-height: 1.06; }
  .desktop-break { display: none; }
  .procedure-booking { align-items: flex-start; flex-direction: column; gap: 18px; padding: 22px 20px; }
  .gallery-heading { margin-bottom: 30px; }
  .gallery-grid { grid-auto-rows: 162px; gap: 8px; }
  .gallery-expand { display: none; }
  .booking-cta { padding-bottom: 70px; }
  .cta-card { min-height: 430px; }
  .cta-card::after { right: -300px; bottom: -210px; width: 480px; height: 480px; }
  .cta-copy { padding: 49px 27px; }
  .cta-copy h2 { font-size: 48px; }
  .cta-copy > p:not(.eyebrow) { max-width: 275px; font-size: 13px; }
  .cta-art { display: none; }
  .contacts { padding: 72px 0; }
  .phone-link { margin-bottom: 23px; font-size: 26px; }
  .contact-actions { display: grid; grid-template-columns: 1fr; }
  .contact-button { justify-content: flex-start; min-height: 48px; padding: 0 16px; }
  .contact-button svg:last-child { margin-left: auto; }
  .site-footer { padding: 29px 0 23px; }
  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
  .footer-note { max-width: 260px; justify-self: start; text-align: left; }
  .footer-links { grid-column: auto; }
  .copyright { grid-column: auto; padding-top: 14px; }
  .mobile-booking { position: fixed; z-index: 20; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 68px; padding: 0 20px; color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; background: var(--green); box-shadow: 0 -8px 20px rgba(0,0,0,.14); }
  .lightbox { padding: 19px; }
  .lightbox-close { top: 12px; right: 12px; width: 39px; height: 39px; }
  .procedure-modal { padding: 14px; }
  .procedure-modal-card { max-height: calc(100dvh - 28px); padding: 48px 23px 26px; border-radius: 18px; }
  .procedure-modal-close { top: 12px; right: 12px; width: 40px; height: 40px; }
  .procedure-modal-card h2 { margin-bottom: 15px; font-size: clamp(35px, 10vw, 46px); }
  .procedure-modal-lead { margin-bottom: 19px; font-size: 14px; line-height: 1.62; }
  .procedure-modal-details { gap: 13px; padding: 18px 0; }
  .procedure-modal-details p { font-size: 14px; line-height: 1.65; }
  .procedure-modal-actions { align-items: stretch; flex-direction: column; gap: 8px; margin-top: 20px; }
  .procedure-modal-actions .button { width: 100%; }
}

body.dialog-open { overflow: hidden; }

.gallery-card:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }

.lightbox {
  z-index: 50;
  background: rgba(10, 13, 11, .94);
  backdrop-filter: blur(10px);
}

.lightbox figure { position: relative; filter: drop-shadow(0 22px 45px rgba(0, 0, 0, .42)); }
.lightbox figure img { border-radius: 3px; }
.lightbox figcaption { display: flex; align-items: center; justify-content: center; gap: 7px; color: rgba(255,255,255,.8); font-family: var(--mono); letter-spacing: .03em; }

.lightbox-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  color: #fff;
  cursor: pointer;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms var(--ease-out);
  place-items: center;
}

.lightbox-previous { left: max(20px, calc((100vw - 1140px) / 2)); }
.lightbox-next { right: max(20px, calc((100vw - 1140px) / 2)); }
.lightbox-arrow:hover { background: var(--green); border-color: var(--green); }
.lightbox-previous:hover { transform: translate(-3px, -50%); }
.lightbox-next:hover { transform: translate(3px, -50%); }

@media (max-width: 800px) {
  .hero-inner::before { left: -22px; }
  .lightbox-arrow { width: 46px; height: 46px; }
  .lightbox-previous { left: 13px; }
  .lightbox-next { right: 13px; }
}

@media (max-width: 560px) {
  .hero::after { bottom: -45px; left: -80px; width: 260px; height: 260px; opacity: .2; }
  .hero-inner::before { display: none; }
  .cta-card { border-radius: 14px; }
  .lightbox-arrow { top: auto; bottom: 16px; width: 42px; height: 42px; transform: none; }
  .lightbox-previous { left: calc(50% - 49px); }
  .lightbox-next { right: calc(50% - 49px); }
  .lightbox-arrow:hover { transform: none; }
  .lightbox figcaption { padding: 12px 92px 0; line-height: 1.45; }
}

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

/* Monochrome zebra theme — all decorative florals are intentionally removed. */
:root {
  --ink: #111;
  --ink-soft: #474747;
  --paper: #fbfbf9;
  --cream: #eeeeeb;
  --line: rgba(0, 0, 0, .18);
  --green: #111;
  --green-light: #e6e6e3;
  --gold: #6a6a6a;
  --rose: #505050;
  --rose-light: #ededeb;
  --surface: rgba(255, 255, 255, .9);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, .12);
  --animal-print: url('../images/lpg-max-zebra-stripes.webp');
}

body { color: var(--ink); background: #f6f6f3; }
::selection { color: #fff; background: #111; }
:focus-visible { outline-color: #111; }
.flower { display: none !important; }

.site-header {
  background: rgba(255, 255, 255, .9);
  border-color: rgba(0, 0, 0, .14);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .97);
  border-color: rgba(0, 0, 0, .2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.main-nav > a:not(.nav-booking) { color: rgba(0, 0, 0, .78); }
.main-nav > a:not(.nav-booking):hover { color: #111; }

.nav-booking,
.button {
  background: #111;
  border-color: #111;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .22), 0 0 0 5px rgba(0, 0, 0, .05);
}

.button:hover,
.nav-booking:hover {
  background: #393939;
  border-color: #393939;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .26), 0 0 0 6px rgba(0, 0, 0, .07);
}

.hero { background: #efefed; }

.hero::before {
  background: linear-gradient(rgba(255, 255, 255, .78), rgba(255, 255, 255, .78)), var(--animal-print) center / 420px repeat;
}

.hero::after {
  opacity: .17;
  background: repeating-radial-gradient(ellipse at center, transparent 0 23px, rgba(0, 0, 0, .2) 24px 25px, transparent 26px 42px);
}

.hero-image {
  border-color: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 50px rgba(0, 0, 0, .22), 18px 20px 0 rgba(0, 0, 0, .12);
  filter: grayscale(.12) contrast(1.03);
}

.hero .button-ghost {
  color: #111;
  background: rgba(255, 255, 255, .76);
  border-color: rgba(0, 0, 0, .45);
  box-shadow: none;
}

.hero .button-ghost:hover { color: #fff; background: #111; border-color: #111; }
.hero-actions .button:not(.button-ghost),
.hero-actions .button:not(.button-ghost) svg { color: #fff !important; }

.care-ribbon { color: #fff; background: #111; border-color: rgba(255, 255, 255, .18); }
.care-ribbon-track i { flex: 0 0 5px; width: 5px; height: 5px; background: #fff; border-radius: 50%; filter: none; }

.about,
.gallery,
.booking-cta { background: #fbfbf9; }

.format,
.services,
.results,
.contacts { background: #eeeeeb; }

.about::before,
.format::after,
.services::after,
.results::after,
.gallery::before,
.contacts::before {
  opacity: .045;
  background: var(--animal-print) center / 380px repeat;
}

.about::after,
.format::before,
.results::before {
  opacity: .18;
  border-color: rgba(0, 0, 0, .2);
  box-shadow: 0 0 0 46px rgba(0, 0, 0, .045), 0 0 0 92px rgba(0, 0, 0, .025);
}

.services::before { opacity: .13; background: repeating-linear-gradient(145deg, transparent 0 12px, rgba(0, 0, 0, .18) 13px 14px); }
.image-note { background: #111; box-shadow: 0 10px 24px rgba(0, 0, 0, .2); }

.benefit-icon,
.format-item > span {
  color: #111;
  border-color: rgba(0, 0, 0, .38);
}

.benefit p,
.format-statement > p:not(.eyebrow),
.format-item p,
.section-aside,
.procedure-booking p,
.contact-location { color: #555; }

.benefit:hover .benefit-icon,
.format-item:hover > span {
  color: #fff;
  background: #111;
  border-color: #111;
}

.procedure-card,
.procedure-channel,
.procedure-booking,
.result-card {
  background: rgba(255, 255, 255, .91);
  border-color: rgba(0, 0, 0, .17);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
}

.procedure-card::after {
  right: -28px;
  bottom: -34px;
  background: var(--animal-print) center / 108px repeat;
  opacity: .06;
  transform: rotate(8deg);
}

.procedure-card-top p,
.procedure-channel span,
.procedure-card-expand,
.procedure-modal-type,
.procedure-modal-channel,
.phone-link svg,
.max-mark { color: #111; }

.procedure-card-booking { background: #111; box-shadow: 0 5px 13px rgba(0, 0, 0, .2); }
.procedure-card-booking:hover { background: #393939; box-shadow: 0 8px 16px rgba(0, 0, 0, .28); }
.procedure-card-booking:focus-visible,
.procedure-card-expand:focus-visible { outline-color: rgba(0, 0, 0, .58); }
.procedure-card span { color: #4d4d4d; }
.procedure-card-expand { border-color: rgba(0, 0, 0, .38); }
.procedure-card-expand:hover,
.procedure-modal-channel:hover { color: #444; border-color: #444; }
.procedure-channel:hover { background: #fff; border-color: rgba(0, 0, 0, .45); }
.procedure-channel:hover svg { color: #111; }

.result-card { box-shadow: 0 11px 26px rgba(0, 0, 0, .1); }
.gallery-card { background: #111; box-shadow: 0 15px 32px rgba(0, 0, 0, .16); }
.gallery-card::after { background: linear-gradient(0deg, rgba(0, 0, 0, .68), transparent 58%); }
.gallery-card:hover img { filter: saturate(.78) contrast(1.06); }
.gallery-luxor:hover img { filter: grayscale(.82) contrast(1.1); }
.gallery-treatment:hover img { filter: grayscale(.82) contrast(1.1); }
.gallery-cabinet:hover img, .gallery-wall:hover img, .gallery-zebra-bed:hover img { filter: grayscale(.65) contrast(1.1); }

.cta-card {
  background: #111;
  box-shadow: 0 20px 55px rgba(0, 0, 0, .22);
}

.cta-card::before { display: none; }
.cta-art::before { animation: none; }

.cta-card::after,
.cta-curve { border-color: rgba(255, 255, 255, .34); }
.cta-art::before { background: repeating-linear-gradient(140deg, transparent 0 23px, rgba(255, 255, 255, .55) 24px 28px, transparent 29px 45px); }
.cta-card .button { color: #111; background: #fff; border-color: #fff; box-shadow: none; }
.cta-card .button:hover { color: #fff; background: #3a3a3a; border-color: #3a3a3a; box-shadow: none; }

.contact-action-area { border-color: rgba(0, 0, 0, .24); }
.phone-link:hover { color: #444; }
.contact-button { border-color: rgba(0, 0, 0, .32); }
.contact-button:hover,
.contact-button-dark:hover { color: #fff; background: #333; border-color: #333; }
.contact-button-dark { background: #111; border-color: #111; }

.site-footer { background: #111; }
.footer-links a:hover { color: #d2d2d2; }

.lightbox-arrow:hover,
.lightbox-close:hover { background: #333; border-color: #333; }

.procedure-modal { background: rgba(0, 0, 0, .76); }

.procedure-modal-card {
  background: linear-gradient(rgba(255, 255, 255, .95), rgba(255, 255, 255, .95)), var(--animal-print) center / 330px repeat;
  border-color: rgba(255, 255, 255, .76);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
}

.procedure-modal-close { border-color: rgba(0, 0, 0, .24); }
.procedure-modal-close:hover { color: #fff; background: #111; }
.procedure-modal-details { border-color: rgba(0, 0, 0, .18); }
.procedure-modal-details p { color: #353535; }

@media (max-width: 800px) {
  .main-nav { background: #111; }
  .hero { background: #111; }
  .hero::before { background: linear-gradient(rgba(0, 0, 0, .68), rgba(0, 0, 0, .56)), var(--animal-print) center / 330px repeat; }
  .hero-overlay { background: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .61)); }
  .hero .eyebrow,
  .hero-description,
  .hero-location { color: rgba(255, 255, 255, .84); }
  .hero h1 { color: #fff; }
  .hero .button-ghost { color: #fff; background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .58); }
  .hero .button-ghost:hover { color: #111; background: #fff; border-color: #fff; }
}

@media (max-width: 560px) {
  .mobile-booking { background: #111; }
}
