:root {
  --turquoise: #12a7a7;
  --turquoise-dark: #087777;
  --aqua-soft: #dff7f3;
  --beige: #f4eadb;
  --sand: #d7bea0;
  --ink: #173332;
  --muted: #657775;
  --white: #ffffff;
  --line: rgba(23, 51, 50, 0.12);
  --shadow: 0 18px 50px rgba(18, 87, 88, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fffaf3;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body::selection {
  background: var(--aqua-soft);
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 30px rgba(19, 83, 83, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  font-size: 12px;
  color: currentColor;
  opacity: 0.78;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.lang-switch button {
  width: 42px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.lang-switch button.active {
  color: var(--turquoise-dark);
  background: var(--white);
}

.site-header.is-scrolled .lang-switch button.active {
  color: var(--white);
  background: var(--turquoise);
}

.header-phone {
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(5, 62, 64, 0.36), rgba(5, 62, 64, 0.05)),
    url("assets/site/hero-sea.jpg") center / cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(5, 42, 45, 0.44) 0%, rgba(5, 42, 45, 0.08) 44%, rgba(5, 42, 45, 0.72) 100%),
    radial-gradient(circle at 18% 72%, rgba(18, 167, 167, 0.28), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 148px 0 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--turquoise);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #aaf7ef;
}

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  overflow-wrap: break-word;
  hyphens: auto;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-content > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.65;
}

.hero-actions,
.mobile-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--white);
  background: var(--turquoise);
  box-shadow: 0 16px 34px rgba(3, 110, 111, 0.26);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn.light {
  color: var(--turquoise-dark);
  background: var(--white);
  border-color: var(--line);
}

.btn.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 750px;
  margin-top: 48px;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  margin-bottom: 4px;
  font-size: 28px;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 126px) 0;
}

.about-section,
.procedures-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.section-copy p,
.contact-copy p,
.water-panel p {
  max-width: 630px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.about-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(14, 76, 77, 0.16);
  backdrop-filter: blur(12px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.benefits {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  background: linear-gradient(180deg, #f7efe4 0%, #fffaf3 100%);
}

.benefits-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.benefits-intro h2 {
  margin-bottom: 0;
}

.benefits-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.rooms-section .section-heading,
.program-section .section-heading {
  max-width: 980px;
}

.benefit-layout,
.help-grid,
.procedure-grid {
  display: grid;
  gap: 18px;
}

.benefit-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: 24px;
  align-items: stretch;
}

.benefit-feature,
.benefit-card,
.help-grid article,
.procedure-grid article,
.room-card,
.booking-form {
  border: 1px solid rgba(23, 51, 50, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(21, 91, 90, 0.08);
}

.benefit-feature {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  color: var(--white);
}

.benefit-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 54, 55, 0.82), rgba(6, 54, 55, 0.18) 64%),
    linear-gradient(180deg, transparent, rgba(6, 54, 55, 0.5));
}

.benefit-feature img {
  position: absolute;
  inset: 0;
}

.benefit-feature div {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 520px;
  min-height: 540px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 52px);
}

.benefit-feature span {
  margin-bottom: 16px;
  color: #aaf7ef;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.benefit-feature h3 {
  max-width: 500px;
  margin-bottom: 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
}

.benefit-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.7;
}

.benefit-stack {
  display: grid;
  gap: 16px;
}

.benefit-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  min-height: 0;
  padding: 26px;
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.card-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--turquoise-dark);
  background: var(--aqua-soft);
  font-size: 13px;
  font-weight: 900;
}

ul {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
  line-height: 1.9;
}

.water-section {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
}

.water-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 116, 116, 0.96), rgba(19, 165, 158, 0.84)),
    url("assets/site/thermal-pool.jpg") center / cover;
  box-shadow: var(--shadow);
}

.water-panel .eyebrow,
.water-panel p {
  color: rgba(255, 255, 255, 0.84);
}

.water-panel h2 {
  color: var(--white);
}

.water-panel .disclaimer {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-left: 3px solid var(--beige);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
}

.mineral-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mineral-list span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
}

.help-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.help-grid article,
.procedure-grid article {
  overflow: hidden;
}

.help-grid article {
  padding: 24px;
}

.help-grid p,
.procedure-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.procedure-card img {
  height: 230px;
  object-position: center;
}

.procedure-main img {
  height: 420px;
}

.procedure-main div {
  padding: 26px;
}

.procedure-main span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--turquoise);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.procedure-card h3,
.procedure-card p {
  padding-left: 24px;
  padding-right: 24px;
}

.procedure-card h3 {
  margin-top: 22px;
  font-size: clamp(20px, 1.45vw, 24px);
  white-space: nowrap;
  overflow-wrap: normal;
  hyphens: none;
}

.procedure-card p {
  padding-bottom: 26px;
}

.rules-section {
  padding-top: 48px;
}

.tabs {
  display: inline-flex;
  gap: 5px;
  padding: 5px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.tabs button.active {
  color: var(--white);
  background: var(--turquoise);
}

.accordion {
  display: none;
  max-width: 850px;
}

.accordion.active {
  display: block;
}

details {
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(13, 84, 83, 0.06);
}

summary {
  padding: 20px 22px;
  font-weight: 900;
  cursor: pointer;
}

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

.rooms-section {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  background: linear-gradient(180deg, #ffffff 0%, #f8f4ed 100%);
}

.rooms-note {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin: -10px 0 28px;
}

.rooms-note p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.rooms-note .btn {
  flex: 0 0 auto;
}

.room-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.room-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(21, 91, 90, 0.08);
}

.room-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 6px;
  height: 320px;
  padding: 6px;
  overflow: hidden;
  background: #f1eadf;
}

.room-media img {
  width: 100%;
  height: 100%;
  min-width: 0;
  border-radius: 6px;
  cursor: zoom-in;
  transition: transform 0.25s ease, filter 0.25s ease;
  object-position: center;
}

.room-media img:hover,
.room-media img:focus {
  filter: brightness(0.94);
  transform: scale(1.015);
  outline: 0;
}

.room-card > div:not(.room-media) {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 330px;
  padding: 24px;
  border-top: 1px solid rgba(23, 51, 50, 0.08);
  background: var(--white);
}

.room-card p {
  color: var(--muted);
  line-height: 1.6;
}

.room-card ul {
  margin-bottom: 18px;
  font-size: 14px;
}

.room-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
}

.room-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  border: 1px solid rgba(18, 167, 167, 0.24);
  border-radius: 999px;
  color: var(--turquoise-dark);
  background: var(--aqua-soft);
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease;
}

.room-link:hover {
  transform: translateY(-2px);
  background: #c9f1ea;
}

.procedures-section {
  align-items: start;
}

.procedures-section .section-copy {
  position: sticky;
  top: 112px;
}

.procedures-section .section-copy .btn {
  margin-top: 10px;
}

.procedure-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.procedure-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.procedure-card {
  overflow: hidden;
  background: var(--white);
}

.procedure-grid .procedure-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: stretch;
}

.procedure-grid .procedure-card img {
  grid-row: 1 / 3;
  height: 100%;
  min-height: 170px;
}

.procedure-grid .procedure-card h3 {
  align-self: end;
  margin: 0;
  padding-top: 22px;
}

.procedure-grid .procedure-card p {
  align-self: start;
}

.procedure-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: stretch;
}

.procedure-main img {
  height: 100%;
  min-height: 360px;
}

.program-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  width: 100%;
  padding-left: max(18px, calc((100vw - 1160px) / 2));
  padding-right: max(18px, calc((100vw - 1160px) / 2));
  padding-top: clamp(72px, 10vw, 126px);
  padding-bottom: clamp(72px, 10vw, 126px);
  background: linear-gradient(180deg, #fffaf3 0%, var(--beige) 100%);
}

.program-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.program-card img {
  height: 100%;
}

.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 63, 65, 0) 45%, rgba(6, 63, 65, 0.78) 100%);
}

.program-metrics {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.program-metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.program-metrics strong,
.program-metrics span {
  display: block;
}

.program-metrics strong {
  margin-bottom: 4px;
  font-size: 24px;
}

.program-metrics span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.35;
}

.program-content > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.program-grid article {
  padding: 22px;
  border: 1px solid rgba(23, 51, 50, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(18, 87, 88, 0.08);
}

.program-grid strong {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--turquoise);
  font-size: 13px;
  font-weight: 900;
}

.program-grid h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.program-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.8fr);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  color: var(--turquoise-dark);
  font-weight: 800;
}

.booking-form {
  padding: 26px;
}

.booking-form h3 {
  margin-bottom: 20px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.booking-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.booking-form input:focus {
  outline: 3px solid rgba(18, 167, 167, 0.2);
  border-color: var(--turquoise);
}

.date-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.map-frame {
  grid-column: 1 / -1;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 42px clamp(18px, 4vw, 58px) 104px;
  color: var(--white);
  background: #0b4242;
}

.footer nav,
.footer-contacts {
  display: grid;
  gap: 10px;
}

.footer a {
  opacity: 0.9;
}

.footer a:hover {
  opacity: 1;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  padding: 10px;
  border: 1px solid rgba(23, 51, 50, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px rgba(12, 79, 79, 0.2);
  backdrop-filter: blur(16px);
}

.mobile-cta .btn {
  flex: 1 1 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 72px clamp(16px, 4vw, 56px);
  background: rgba(8, 30, 31, 0.82);
  backdrop-filter: blur(14px);
}

.lightbox.is-open {
  display: grid;
}

.lightbox figure {
  width: min(1120px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 170px);
  border-radius: var(--radius);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.lightbox figcaption {
  min-height: 24px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.lightbox-close {
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 1;
}

.lightbox-nav {
  top: 50%;
  width: 48px;
  height: 48px;
  font-size: 42px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .benefits-intro,
  .benefit-layout,
  .help-grid,
  .procedure-board,
  .procedure-main {
    grid-template-columns: 1fr;
  }

  .room-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .procedures-section .section-copy {
    position: static;
  }

  .program-section {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 430px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
    gap: 8px;
  }

  .header-phone {
    display: none;
  }

  .header-actions {
    position: fixed;
    top: 13px;
    left: 230px;
    gap: 6px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .lang-switch button {
    width: 34px;
  }

  .hero {
    min-height: 94svh;
  }

  .hero-content {
    width: min(1120px, calc(100% - 28px));
    padding-bottom: 106px;
  }

  h1 {
    max-width: 330px;
    font-size: clamp(28px, 7.5vw, 30px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .hero-content > p:not(.eyebrow) {
    max-width: 330px;
    font-size: 15px;
  }

  .hero-stats,
  .benefit-layout,
  .help-grid,
  .room-options,
  .procedure-grid,
  .procedure-board,
  .procedure-main,
  .water-panel,
  .about-section,
  .procedures-section,
  .contact-section,
  .footer {
    grid-template-columns: 1fr;
  }

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

  .about-visual {
    min-height: 380px;
  }

  .section,
  .program-section {
    width: min(100% - 28px, 1160px);
    margin: 0 auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .benefits,
  .water-section,
  .rooms-section,
  .program-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .benefit-feature,
  .benefit-feature div {
    min-height: 440px;
  }

  .benefit-card {
    padding: 22px;
  }

  .rooms-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .rooms-note .btn {
    width: 100%;
  }

  .room-options,
  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 320px;
  }

  .room-media {
    height: 260px;
  }

  .room-media img {
    min-height: 0;
  }

  .procedure-main img {
    height: 300px;
    min-height: 0;
  }

  .procedure-grid .procedure-card {
    grid-template-columns: 1fr;
  }

  .procedure-grid .procedure-card img {
    grid-row: auto;
    height: 220px;
    min-height: 0;
  }

  .date-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer {
    padding-bottom: 112px;
  }

  .mobile-cta {
    display: flex;
  }

  .lightbox {
    padding: 64px 14px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .lightbox-prev {
    left: 16px;
  }

  .lightbox-next {
    right: 16px;
  }
}

@media (max-width: 440px) {
  .lang-switch button {
    width: 36px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .tabs {
    display: grid;
    width: 100%;
    border-radius: var(--radius);
  }

  .tabs button {
    width: 100%;
  }
}
