:root {
  --ink: #17211e;
  --ink-soft: #42504a;
  --green: #315d50;
  --green-dark: #24463d;
  --green-pale: #e7efea;
  --coral: #c96745;
  --coral-dark: #ad4f32;
  --paper: #ffffff;
  --mist: #f2f5f2;
  --line: #d7dfda;
  --shadow: 0 18px 40px rgba(23, 33, 30, 0.1);
  --max-width: 1180px;
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(201, 103, 69, 0.45);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  text-wrap: balance;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h2 {
  margin-bottom: 20px;
  font-size: 44px;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-150%);
}

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

.section {
  padding: 112px 0;
}

.section-inner {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f2c6b6;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  color: var(--paper);
  background: var(--coral);
  border-color: var(--coral);
}

.button-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
}

.button-ghost {
  color: var(--paper);
  background: rgba(23, 33, 30, 0.3);
  border-color: rgba(255, 255, 255, 0.58);
}

.button-ghost:hover {
  background: rgba(23, 33, 30, 0.58);
  border-color: var(--paper);
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
  color: var(--paper);
  background: var(--coral);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header:has(.mobile-menu:not([hidden])) {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px rgba(23, 33, 30, 0.08);
}

.header-inner {
  display: grid;
  width: min(var(--max-width), calc(100% - 48px));
  min-height: var(--header-height);
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--paper);
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.15;
}

.brand-copy strong {
  overflow-wrap: anywhere;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 600;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
}

.menu-button svg {
  width: 21px;
  height: 21px;
}

.mobile-menu {
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 10px 0 22px;
  border-top: 1px solid var(--line);
}

.mobile-menu a {
  display: block;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(820px, 88svh);
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background-color: var(--ink);
  background-image: url("assets/hero-massage.jpg");
  background-position: center 42%;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(12, 21, 18, 0.62);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 142px 0 92px;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: 68px;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-details {
  display: flex;
  margin: 34px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 12px 28px;
  list-style: none;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.hero-details li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-details svg {
  width: 17px;
  height: 17px;
  color: #f2c6b6;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100% - var(--max-width)) / 2));
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-scroll svg {
  width: 17px;
  height: 17px;
}

.trust-band {
  padding: 26px 0;
  background: var(--green-dark);
  color: var(--paper);
}

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

.trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 15px;
  padding: 5px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-item > svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  color: #f2c6b6;
}

.trust-item div {
  display: grid;
}

.trust-item strong {
  font-size: 14px;
}

.trust-item span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

.section-heading h2 {
  max-width: 720px;
}

.split-heading {
  display: grid;
  margin-bottom: 44px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 70px;
}

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

.split-heading > p {
  margin: 0 0 4px;
  color: var(--ink-soft);
}

.featured-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mist);
}

.service-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.service-card:first-child .service-image img {
  object-position: 48% center;
}

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

.service-body {
  position: relative;
  padding: 25px;
}

.service-number {
  position: absolute;
  top: -18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--paper);
  background: var(--green);
  border: 3px solid var(--paper);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.service-body p {
  min-height: 76px;
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 14px;
}

.service-body a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
}

.service-body a:hover,
.text-link:hover {
  color: var(--coral-dark);
}

.service-body a svg,
.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.service-body a:hover svg,
.text-link:hover svg {
  transform: translateX(3px);
}

.service-list {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-row {
  display: grid;
  min-width: 0;
  padding: 26px 20px;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}

.service-row:first-child {
  padding-left: 0;
}

.service-row:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-row > svg {
  width: 27px;
  height: 27px;
  color: var(--coral);
}

.service-row h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.service-row p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.45;
}

.icon-link {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  color: var(--green);
  background: var(--green-pale);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.icon-link:hover {
  color: var(--paper);
  background: var(--green);
}

.icon-link svg {
  width: 17px;
  height: 17px;
}

.experience-section {
  display: grid;
  padding: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--green-pale);
}

.experience-media {
  min-height: 650px;
}

.experience-media img {
  height: 100%;
  object-fit: cover;
}

.experience-copy {
  display: flex;
  max-width: 680px;
  min-height: 650px;
  justify-content: center;
  padding: 90px max(48px, calc((100vw - var(--max-width)) / 2));
  flex-direction: column;
}

.experience-lead {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 18px;
}

.check-list {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-list svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 4px;
  color: var(--paper);
  background: var(--green);
  border-radius: 50%;
}

.centered-heading {
  margin-bottom: 48px;
  text-align: center;
}

.centered-heading h2 {
  margin-right: auto;
  margin-left: auto;
}

.visit-steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  counter-reset: visit;
}

.visit-steps li {
  position: relative;
  min-height: 260px;
  padding: 38px;
  border: 1px solid var(--line);
  border-right: 0;
}

.visit-steps li:first-child {
  border-radius: 6px 0 0 6px;
}

.visit-steps li:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 6px 6px 0;
}

.visit-steps li > svg {
  width: 32px;
  height: 32px;
  margin-bottom: 32px;
  color: var(--coral);
}

.visit-steps p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.step-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: #b8c5be;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.booking-section {
  color: var(--paper);
  background: var(--ink);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  align-items: start;
  gap: 90px;
}

.booking-copy h2 {
  margin-bottom: 22px;
  color: var(--paper);
}

.booking-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.contact-summary {
  display: grid;
  margin-top: 42px;
  gap: 20px;
}

.contact-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-summary-item > svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 3px;
  color: #f2c6b6;
}

.contact-summary-item div {
  display: grid;
}

.contact-summary-item span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-summary-item strong {
  margin-top: 2px;
  font-size: 15px;
}

.booking-form {
  display: grid;
  padding: 38px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 6px;
  gap: 17px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.booking-form label {
  display: grid;
  gap: 7px;
}

.booking-form label > span {
  font-size: 13px;
  font-weight: 700;
}

.booking-form label small {
  color: #6e7a75;
  font-weight: 400;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  background: #fbfcfb;
  border: 1px solid #c8d2cc;
  border-radius: 4px;
}

.booking-form textarea {
  min-height: 104px;
  resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--green);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  display: flex;
  margin: -3px 0 0;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: #67746e;
  font-size: 12px;
  text-align: center;
}

.form-note svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
}

.faq-section {
  background: var(--mist);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(500px, 1.25fr);
  gap: 90px;
}

.faq-grid .section-heading > p:last-child {
  max-width: 430px;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid #bdc9c2;
}

.faq-list details {
  border-bottom: 1px solid #bdc9c2;
}

.faq-list summary {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--coral);
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -4px 42px 22px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.site-footer {
  padding: 70px 0 24px;
  color: var(--paper);
  background: #101714;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(120px, 0.7fr));
  gap: 46px;
}

.footer-brand p {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-nav strong {
  margin-bottom: 5px;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-nav a,
.footer-nav span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.footer-nav a:hover {
  color: var(--paper);
}

.footer-nav a[aria-disabled="true"] {
  cursor: not-allowed;
}

.footer-bottom {
  display: flex;
  margin-top: 55px;
  padding-top: 20px;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.contact-dock {
  position: fixed;
  z-index: 90;
  top: 50%;
  right: 16px;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.contact-button {
  position: relative;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--paper);
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(13, 25, 20, 0.2);
  transition: transform 160ms ease, filter 160ms ease;
}

.contact-button:hover {
  filter: brightness(0.92);
  transform: translateX(-3px);
}

.contact-button svg {
  width: 23px;
  height: 23px;
}

.contact-button span {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  padding: 6px 9px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translate(5px, -50%);
  transition: opacity 150ms ease, transform 150ms ease;
  white-space: nowrap;
}

.contact-button:hover span,
.contact-button:focus-visible span {
  opacity: 1;
  transform: translate(0, -50%);
}

.contact-button.whatsapp {
  background: #1f9d55;
}

.contact-button.email {
  background: var(--coral);
}

.contact-button.telegram {
  background: #2186c4;
}

.contact-button[aria-disabled="true"] {
  cursor: not-allowed;
}

.toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  max-width: min(390px, calc(100% - 48px));
  padding: 13px 16px;
  color: var(--paper);
  background: var(--ink);
  border-left: 4px solid var(--coral);
  border-radius: 4px;
  box-shadow: var(--shadow);
  font-size: 13px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

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

@media (max-width: 1020px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: inline-flex;
  }

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

  .trust-grid {
    gap: 18px;
  }

  .trust-item {
    padding: 5px 18px;
  }

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

  .service-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .service-card:last-child .service-image {
    aspect-ratio: auto;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .service-row,
  .service-row:first-child,
  .service-row:last-child {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-row:last-child {
    border-bottom: 0;
  }

  .experience-copy {
    padding: 70px 46px;
  }

  .booking-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .booking-copy {
    max-width: 680px;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 0.7fr);
  }

  .footer-nav[data-license-block] {
    grid-column: 2 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 78px 0;
  }

  .section-inner,
  .header-inner,
  .hero-content,
  .mobile-menu {
    width: min(100% - 32px, var(--max-width));
  }

  h2 {
    font-size: 36px;
  }

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

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    font-size: 9px;
  }

  .hero {
    min-height: min(700px, 86svh);
    background-position: 58% center;
  }

  .hero-shade {
    background: rgba(12, 21, 18, 0.67);
  }

  .hero-content {
    padding: 116px 0 76px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: 46px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-details {
    display: grid;
    margin-top: 26px;
    gap: 8px;
  }

  .hero-scroll {
    display: none;
  }

  .trust-band {
    padding: 20px 0;
  }

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

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .split-heading {
    margin-bottom: 32px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .featured-services {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    display: block;
    grid-column: auto;
  }

  .service-card:last-child .service-image {
    aspect-ratio: 4 / 3;
  }

  .service-body p {
    min-height: 0;
  }

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

  .experience-media {
    min-height: 360px;
  }

  .experience-copy {
    min-height: 0;
    padding: 68px 24px;
  }

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

  .visit-steps li,
  .visit-steps li:first-child,
  .visit-steps li:last-child {
    min-height: 220px;
    border: 1px solid var(--line);
    border-bottom: 0;
    border-radius: 0;
  }

  .visit-steps li:first-child {
    border-radius: 6px 6px 0 0;
  }

  .visit-steps li:last-child {
    border-bottom: 1px solid var(--line);
    border-radius: 0 0 6px 6px;
  }

  .booking-grid {
    gap: 42px;
  }

  .booking-form {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    gap: 34px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-nav[data-license-block] {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding-bottom: 76px;
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-dock {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    padding: 8px max(14px, env(safe-area-inset-right)) calc(8px + env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 26px rgba(23, 33, 30, 0.1);
    transform: none;
  }

  .contact-button {
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 4px;
  }

  .contact-button:hover {
    transform: none;
  }

  .contact-button span {
    position: static;
    display: none;
  }

  .toast {
    right: 16px;
    bottom: 78px;
    left: 16px;
    max-width: none;
  }
}

@media (max-width: 390px) {
  .brand-copy small {
    display: none;
  }

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

  h2 {
    font-size: 32px;
  }

  .service-row {
    grid-template-columns: 32px minmax(0, 1fr) 34px;
    gap: 10px;
  }

  .visit-steps li {
    padding: 32px 26px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-nav[data-license-block] {
    grid-column: auto;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
