:root {
  --ink: #321b18;
  --muted: #7d625e;
  --paper: #fff7f3;
  --white: #ffffff;
  --red: #b94a42;
  --red-dark: #8f2f29;
  --red-soft: #f9e4df;
  --rose: #f5d7d1;
  --seal: #a23a33;
  --gold: #c39a55;
  --line: #edd6cf;
  --shadow: 0 22px 60px rgba(115, 47, 40, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(185, 74, 66, 0.11), transparent 24%),
    linear-gradient(90deg, rgba(185, 74, 66, 0.07) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 42px 42px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.93);
  border-bottom: 1px solid rgba(222, 216, 204, 0.84);
  backdrop-filter: blur(14px);
}

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

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

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

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.05;
}

.brand small {
  color: var(--seal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

nav a {
  padding: 8px 10px;
  color: var(--muted);
  font-size: 14px;
}

nav a:hover {
  color: var(--ink);
}

.call-link,
.button,
.phone-panel,
.service-details a {
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.call-link {
  padding: 10px 14px;
  color: var(--white);
  background: var(--red-dark);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.call-link:hover,
.button:hover,
.phone-panel:hover,
.service-details a:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: min(620px, calc(100vh - 122px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #f3dfd5;
}

.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.78) 40%, rgba(251, 250, 246, 0.1) 82%),
    linear-gradient(0deg, rgba(90, 32, 24, 0.32), transparent 46%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: clamp(24px, 4vw, 46px) clamp(20px, 6vw, 72px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--seal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.08;
}

h1 {
  max-width: 650px;
  font-size: clamp(42px, 6vw, 70px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 24px;
}

.hero p:not(.eyebrow),
.intro p,
.contact-section p,
.location-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 18px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 900;
}

.button.primary {
  color: var(--white);
  background: var(--red-dark);
  box-shadow: 0 14px 28px rgba(90, 32, 24, 0.2);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
}

.intro,
.comfort-section,
.section,
.prices-section,
.location-section,
.contact-section {
  padding: clamp(44px, 8vw, 90px) clamp(20px, 6vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(185, 74, 66, 0.08), transparent 34%),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.comfort-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(245, 215, 209, 0.68), transparent 28%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

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

.comfort-grid article {
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(162, 58, 51, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(115, 47, 40, 0.08);
}

.comfort-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--seal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.comfort-grid h3 {
  font-size: 21px;
}

.comfort-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

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

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(90, 32, 24, 0.08);
}

.service-card.is-open {
  border-color: color-mix(in srgb, var(--card-accent), var(--line) 35%);
  box-shadow: 0 20px 55px rgba(90, 32, 24, 0.13);
}

.service-button {
  display: grid;
  width: 100%;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.service-button:focus-visible {
  outline: 3px solid rgba(142, 47, 36, 0.42);
  outline-offset: -3px;
}

.service-photo {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f2dbd1;
}

.service-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 260ms ease;
}

.service-button:hover .service-photo img {
  transform: scale(1.04);
}

.service-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(90, 32, 24, 0.42), transparent 52%),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.34), transparent 26%);
}

.service-seal {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  min-width: 58px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  color: var(--white);
  background: var(--seal);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(90, 32, 24, 0.24);
}

.service-body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.service-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.12;
}

.service-description {
  min-height: 78px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.service-options {
  display: grid;
  gap: 13px;
  padding-top: 4px;
}

.service-option {
  position: relative;
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: var(--red-dark);
  background: var(--red-soft);
  border: 1px solid rgba(127, 32, 26, 0.12);
  border-radius: 999px;
}

.service-option em {
  position: absolute;
  top: -9px;
  right: 10px;
  padding: 3px 7px;
  color: var(--ink);
  background: #f6d884;
  border: 1px solid rgba(127, 32, 26, 0.12);
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  font-weight: 950;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px rgba(115, 47, 40, 0.12);
}

.service-option strong,
.service-option small,
.service-option-dots {
  display: block;
}

.service-option-dots {
  flex: 1;
  min-width: 18px;
  height: 2px;
  background-image: radial-gradient(circle, rgba(127, 32, 26, 0.42) 1.2px, transparent 1.4px);
  background-position: center;
  background-repeat: repeat-x;
  background-size: 7px 2px;
}

.service-option strong {
  color: var(--seal);
  font-size: clamp(21px, 2vw, 25px);
  font-weight: 950;
  line-height: 1;
}

.service-option small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.service-prompt {
  display: inline-flex;
  width: max-content;
  margin-top: 2px;
  color: var(--seal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-details {
  padding: 0 18px 18px;
  border-top: 1px solid rgba(222, 216, 204, 0.7);
  background:
    linear-gradient(90deg, rgba(142, 47, 36, 0.07), transparent),
    #fffdf9;
}

.service-details h3 {
  padding-top: 16px;
  color: var(--card-accent);
  font-size: 20px;
}

.service-details ul {
  margin: 12px 0 16px;
  padding-left: 20px;
  color: var(--muted);
}

.service-details li + li {
  margin-top: 8px;
}

.service-details a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  font-weight: 800;
}

.prices-section {
  background:
    linear-gradient(180deg, rgba(178, 50, 37, 0.11), rgba(178, 50, 37, 0)),
    var(--white);
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  color: var(--muted);
  background: #f8ece4;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table td:nth-child(3) {
  color: var(--seal);
  font-size: 20px;
  font-weight: 900;
}

.price-table td:last-child {
  max-width: 420px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.recommended-badge {
  display: inline-flex;
  width: max-content;
  margin: 0 8px 4px 0;
  padding: 4px 8px;
  color: var(--ink);
  background: #f6d884;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

.price-card-grid {
  display: none;
}

.price-card-toggle {
  display: none;
}

.price-card {
  padding: 18px;
  border: 1px solid rgba(127, 32, 26, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(90, 32, 24, 0.08);
}

.price-card + .price-card {
  margin-top: 12px;
}

.price-card-head {
  display: flex;
  gap: 12px;
  align-items: start;
  justify-content: space-between;
}

.price-card h3 {
  font-size: 22px;
}

.price-card strong {
  color: var(--seal);
  font-size: 25px;
  line-height: 1;
}

.price-duration {
  width: max-content;
  margin: 12px 0;
  padding: 7px 10px;
  color: var(--red-dark);
  background: var(--red-soft);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.price-best {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.price-best span {
  display: block;
  margin-bottom: 3px;
  color: var(--seal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-card-grid:not(.is-expanded) .price-card.is-extra {
  display: none;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1.25fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  background: #f8ece4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reviews-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
}

.reviews-score,
.review-card {
  border: 1px solid rgba(127, 32, 26, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(90, 32, 24, 0.08);
}

.reviews-score {
  padding: 22px;
}

.reviews-score h2 {
  font-size: clamp(27px, 3.2vw, 40px);
}

.reviews-score p {
  margin: 10px 0 0;
  color: var(--muted);
}

.reviews-score a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--seal);
  font-weight: 900;
}

.stars {
  margin-top: 14px;
  color: var(--gold);
  font-size: 24px;
  letter-spacing: 0.04em;
}

.reviews-carousel {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.review-track {
  display: grid;
  grid-auto-columns: calc((100% - 28px) / 3);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-height: 214px;
  padding: 18px;
  scroll-snap-align: start;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.15;
}

.review-card span {
  margin-top: 4px;
  color: var(--seal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.review-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.carousel-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

.carousel-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--red-dark);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.carousel-button:focus-visible,
.review-dots button:focus-visible {
  outline: 3px solid rgba(157, 43, 33, 0.34);
  outline-offset: 2px;
}

.review-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.review-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(127, 32, 26, 0.24);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.review-dots button.is-active {
  width: 24px;
  background: var(--red-dark);
  border-radius: 999px;
}

.map-link {
  margin-top: 14px;
}

.opening-hours {
  display: grid;
  width: max-content;
  max-width: 100%;
  margin: 18px 0 4px;
  padding: 14px 16px;
  color: var(--white);
  background: var(--red-dark);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(115, 47, 40, 0.12);
}

.opening-hours span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.opening-hours strong {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.1;
}

.map-frame {
  overflow: hidden;
  min-height: 410px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}

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

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 28px;
  align-items: center;
}

.availability-note {
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  font-weight: 700;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.phone-panel {
  display: grid;
  gap: 8px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(197, 154, 74, 0.22), transparent 36%),
    var(--red-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.message-panel {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(162, 58, 51, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(115, 47, 40, 0.08);
}

.message-panel span,
.phone-panel span {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.phone-panel span {
  color: rgba(255, 255, 255, 0.78);
}

.message-panel span {
  color: var(--seal);
}

.message-panel strong,
.phone-panel strong {
  line-height: 1.1;
}

.phone-panel strong {
  font-size: clamp(25px, 4vw, 38px);
}

.message-panel strong {
  font-size: 20px;
}

.whatsapp-panel::after,
.sms-panel::after {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  flex: 0 0 38px;
  color: var(--white);
  border-radius: 50%;
  font-weight: 950;
}

.whatsapp-panel::after {
  content: "W";
  background: #25d366;
}

.sms-panel::after {
  content: "SMS";
  background: var(--red-dark);
  font-size: 11px;
}

.share-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(40px, 7vw, 78px) clamp(20px, 6vw, 72px);
  background:
    radial-gradient(circle at 12% 18%, rgba(246, 216, 132, 0.26), transparent 28%),
    linear-gradient(135deg, rgba(162, 58, 51, 0.12), rgba(255, 247, 243, 0.9));
  border-top: 1px solid var(--line);
}

.share-section p:not(.section-kicker) {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}

.share-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.share-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(162, 58, 51, 0.16);
  border-radius: var(--radius);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(115, 47, 40, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.share-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(115, 47, 40, 0.13);
}

.share-button svg,
.share-button span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  flex: 0 0 22px;
}

.share-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.share-button span {
  color: var(--white);
  background: var(--red-dark);
  border-radius: 50%;
  font-size: 12px;
  line-height: 1;
}

.native-share,
.copy-link {
  color: var(--white);
  background: var(--red-dark);
}

.native-share span,
.copy-link span {
  background: rgba(255, 255, 255, 0.16);
}

.whatsapp span {
  background: #25d366;
}

.facebook span {
  background: #1877f2;
}

.x-twitter span {
  background: #111111;
}

.linkedin span {
  background: #0a66c2;
  border-radius: 5px;
  font-size: 11px;
}

.email span {
  background: var(--gold);
}

.copy-status {
  grid-column: 2;
  min-height: 20px;
  margin: -10px 0 0;
  color: var(--seal);
  font-size: 13px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 72px);
  color: #f7f4ee;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer .credit,
.site-footer .copyright {
  flex-basis: 100%;
  color: rgba(247, 244, 238, 0.64);
  font-size: 12px;
}

.site-footer .copyright a {
  color: rgba(247, 244, 238, 0.86);
  font-weight: 800;
}

@media (max-width: 880px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  nav {
    order: 3;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .call-link {
    justify-self: start;
  }

  .intro,
  .location-section,
  .contact-section,
  .share-section {
    grid-template-columns: 1fr;
  }

  .copy-status {
    grid-column: 1;
  }

  .reviews-panel {
    grid-template-columns: 1fr;
  }

  .review-track {
    grid-auto-columns: minmax(260px, 86%);
  }

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

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

@media (max-width: 620px) {
  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: min(640px, calc(100vh - 128px));
    align-items: center;
  }

  .hero-art {
    object-position: 67% center;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.88) 62%, rgba(251, 250, 246, 0.24) 100%);
  }

  .hero-content {
    padding-top: 58px;
  }

  h1 {
    font-size: 42px;
  }

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

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

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

  .price-table-wrap {
    display: none;
  }

  .price-card-grid {
    display: block;
  }

  .price-card-toggle {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    color: var(--white);
    background: var(--red-dark);
    border: 0;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 15px;
    font-weight: 900;
  }

  .service-description {
    min-height: auto;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 330px;
    height: 330px;
  }

  .phone-panel {
    padding: 22px;
  }

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

@media (max-width: 420px) {
  .share-actions {
    grid-template-columns: 1fr;
  }
}
