:root {
  --bg: #f7f9ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #0c1d2b;
  --muted: #3e4850;
  --primary: #00658d;
  --primary-strong: #003e58;
  --aqua: #00aeef;
  --mint: #d0e7ea;
  --line: rgba(28, 78, 105, 0.14);
  --shadow: 0 24px 70px rgba(10, 46, 68, 0.12);
  --radius: 8px;
  --content: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 20%, rgba(126, 215, 189, 0.24), transparent 28rem),
    radial-gradient(circle at 78% 8%, rgba(75, 198, 222, 0.22), transparent 30rem),
    var(--bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.forma-back-link {
  position: fixed;
  z-index: 90;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(12, 29, 43, 0.88);
  color: #fff;
  box-shadow: 0 18px 44px rgba(12, 29, 43, 0.28);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.forma-back-link:hover,
.forma-back-link:focus-visible {
  transform: translateY(-3px);
  background: var(--aqua);
  color: var(--primary-strong);
  outline: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

#ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bubble-layer {
  position: fixed;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.soap-bubble {
  position: absolute;
  left: var(--bubble-left);
  bottom: -90px;
  width: var(--bubble-size);
  height: var(--bubble-size);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.92) 0 7%, transparent 8%),
    radial-gradient(circle at 72% 78%, rgba(0, 174, 239, 0.2), transparent 34%),
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.34), rgba(130, 207, 255, 0.12) 56%, rgba(255, 255, 255, 0.04));
  box-shadow:
    inset -8px -10px 18px rgba(0, 101, 141, 0.08),
    inset 7px 8px 18px rgba(255, 255, 255, 0.56),
    0 0 18px rgba(0, 174, 239, 0.14);
  opacity: 0;
  animation: bubbleRise var(--bubble-duration) linear var(--bubble-delay) infinite;
}

.soap-bubble::after {
  content: "";
  position: absolute;
  top: 22%;
  left: 24%;
  width: 24%;
  height: 24%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  filter: blur(1px);
}

@keyframes bubbleRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.72);
  }
  10% {
    opacity: var(--bubble-opacity);
  }
  48% {
    transform: translate3d(var(--bubble-drift), -52vh, 0) scale(1);
  }
  90% {
    opacity: var(--bubble-opacity);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(var(--bubble-drift) * -0.65), -112vh, 0) scale(1.16);
  }
}

.site-header {
  position: fixed;
  top: 20px;
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 0 40px;
}

.nav-shell {
  width: min(var(--content), 100%);
  height: 72px;
  margin: 0 auto;
  padding: 0 14px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 40px rgba(13, 58, 82, 0.12);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, var(--primary), var(--aqua) 58%, var(--mint)),
    #fff;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.42);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta {
  min-height: 48px;
  padding: 0 22px;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 14px 32px rgba(0, 106, 145, 0.22);
}

.button {
  padding: 0 28px;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 18px 44px rgba(0, 106, 145, 0.24);
}

.button-soft {
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(0, 106, 145, 0.09);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: var(--primary);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 40px 64px;
}

.page-hero {
  min-height: 520px;
  padding: 170px 40px 84px;
  display: flex;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(48px, 4vw, 82px);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.62;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.96) 0%, rgba(247, 251, 255, 0.76) 46%, rgba(247, 251, 255, 0.12) 100%),
    linear-gradient(180deg, rgba(247, 251, 255, 0.08), var(--bg));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
  animation: slowZoom 24s ease-in-out infinite alternate;
}

.hero-content {
  width: min(var(--content), 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.booking-copy h2 {
  margin: 0;
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 4vw, 64px);
  line-height: 1.12;
}

.hero-text {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 42px;
}

.hero-stats {
  width: min(720px, 100%);
  margin: 74px 0 0;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
}

.hero-stats dt {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section {
  width: min(var(--content), calc(100% - 80px));
  margin: 0 auto;
  padding: 118px 0;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit,
.step,
.price-card,
.review-card,
.booking-form {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.benefit {
  min-height: 270px;
  padding: 34px;
  border-radius: 16px;
}

.icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 17px;
  color: var(--primary);
  background: rgba(75, 198, 222, 0.16);
  font-size: 0;
}

.icon::before {
  font-size: 25px;
}

.icon:nth-child(1)::before {
  content: "✦";
}

.benefit h2,
.service-card h3,
.step h3,
.price-card h3 {
  margin: 0 0 12px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.25;
}

.benefit p,
.step p,
.service-card p,
.booking-copy p,
.price-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.section-heading h2,
.booking-copy h2 {
  max-width: 800px;
  font-size: clamp(38px, 3.2vw, 60px);
  line-height: 1.08;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: repeat(2, 330px);
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.service-card.large {
  grid-row: span 2;
}

.service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(5, 28, 42, 0.08), rgba(5, 28, 42, 0.74));
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #fff;
}

.service-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.service-card p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.84);
}

.steps,
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  min-height: 240px;
  padding: 30px;
  border-radius: var(--radius);
}

.step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border-radius: 14px;
  color: #fff;
  background: var(--primary);
  font-weight: 800;
}

.pricing {
  padding-top: 90px;
}

.price-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  padding: 34px;
  border-radius: var(--radius);
}

.price-card.featured {
  color: #fff;
  background: linear-gradient(145deg, var(--primary), #06364a);
  transform: translateY(-14px);
}

.price {
  margin: 0 0 26px;
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
}

.featured .price,
.featured li {
  color: #fff;
}

.price-card ul {
  min-height: 142px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(82, 101, 116, 0.16);
}

.featured li {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.calculator-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.calculator-card,
.faq details {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.calculator-card {
  padding: 34px;
}

.calculator-card h2,
.faq h2 {
  margin: 0 0 22px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 32px;
  line-height: 1.2;
}

.calc-field {
  display: grid;
  gap: 10px;
  margin: 22px 0;
  font-weight: 800;
}

.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.calc-row span {
  color: var(--primary);
}

.calculator-card input[type="range"] {
  width: 100%;
  accent-color: var(--aqua);
}

.room-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.room-button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
}

.room-button.active {
  color: #fff;
  background: var(--primary);
}

.extra-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  font-weight: 700;
}

.estimate {
  margin-top: 26px;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
}

.estimate span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.estimate strong {
  display: block;
  margin-top: 6px;
  color: var(--primary);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 38px;
}

.faq {
  max-width: 900px;
}

.faq details {
  margin-top: 14px;
  padding: 0 22px;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  cursor: pointer;
  font-weight: 800;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.reviews {
  padding-top: 70px;
}

.review-card {
  padding: 64px;
  border-radius: 28px;
}

.review-card blockquote {
  max-width: 1060px;
  margin: 0;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(30px, 3vw, 54px);
  line-height: 1.18;
}

.review-card cite {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.booking {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: start;
}

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
}

.split-section img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.content-panel {
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.content-panel h2 {
  margin: 0 0 20px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(34px, 2.6vw, 52px);
  line-height: 1.08;
}

.content-panel p,
.content-panel li {
  color: var(--muted);
  line-height: 1.7;
}

.content-panel ul {
  margin: 24px 0 0;
  padding-left: 22px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-item {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-item h2 {
  margin: 0 0 8px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 23px;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.map-card {
  min-height: 560px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-copy {
  position: sticky;
  top: 130px;
}

.booking-copy p:last-child {
  max-width: 520px;
  margin-top: 22px;
  font-size: 18px;
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border-radius: var(--radius);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  padding: 15px 16px;
  outline: none;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(75, 198, 222, 0.16);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  width: min(var(--content), calc(100% - 80px));
  margin: 0 auto 40px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
}

.footer p,
.footer address {
  color: var(--muted);
}

.footer address {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-style: normal;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@media (max-width: 1180px) {
  .hero {
    min-height: 920px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 12px;
    padding: 0 16px;
  }

  .nav-shell {
    height: 64px;
    padding: 0 10px 0 18px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 88px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 118px 20px 44px;
  }

  .page-hero {
    min-height: 430px;
    padding: 128px 20px 60px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1.08;
  }

  .page-hero p:not(.eyebrow) {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.55;
  }

  .hero-media {
    inset: 38% 0 0 0;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(247, 251, 255, 0.98) 0%, rgba(247, 251, 255, 0.9) 44%, rgba(247, 251, 255, 0.2) 100%),
      linear-gradient(180deg, rgba(247, 251, 255, 0), var(--bg));
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-stats,
  .benefits,
  .service-grid,
  .price-grid,
  .booking,
  .split-section,
  .contact-layout,
  .calculator-layout {
    grid-template-columns: 1fr;
  }

  .split-section img,
  .map-card {
    min-height: 360px;
  }

  .hero-stats {
    margin-top: 40px;
  }

  .section {
    width: calc(100% - 40px);
    padding: 78px 0;
  }

  .service-grid {
    grid-template-rows: none;
  }

  .service-card.large {
    grid-row: auto;
  }

  .service-card {
    min-height: 420px;
  }

  .price-card.featured {
    transform: none;
  }

  .review-card {
    padding: 34px;
  }

  .booking-copy {
    position: static;
  }

  .footer {
    width: calc(100% - 40px);
    margin-bottom: 24px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .forma-back-link {
    left: 16px;
    right: 16px;
    bottom: 18px;
    width: auto;
    min-height: 44px;
    justify-content: center;
    padding: 0 14px;
    font-size: 12px;
  }

  .brand {
    font-size: 19px;
  }

  .page-hero {
    padding: 126px 20px 48px;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.1;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 360px;
  }
}

