.hero,
.page-hero {
  background: var(--ink);
  color: white;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.page-hero.compact {
  min-height: 560px;
}

.news-hero {
  min-height: 500px;
}

.news-hero .page-hero-content {
  max-width: 680px;
}

.news-hero h1 {
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.02;
}

.hero-bg {
  animation: heroDrift 18s cubic-bezier(0.19, 1, 0.22, 1) both;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(9, 25, 35, 0.9), rgba(9, 25, 35, 0.5), rgba(9, 25, 35, 0.2));
  inset: 0;
  position: absolute;
}

.hero-content,
.page-hero-content {
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  max-width: 760px;
  padding-top: clamp(150px, 21vh, 230px);
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-bottom: 260px;
}

.hero-content p:not(.eyebrow),
.page-hero-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  max-width: 650px;
}

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

.hero-booking {
  bottom: 36px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: min(100% - 64px, 1900px);
  z-index: 4;
}

.stats-band {
  padding-bottom: 48px;
  padding-top: 48px;
}

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

.stat-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.stat-item strong {
  color: var(--deep);
  display: block;
  font-size: 36px;
  margin-bottom: 6px;
}

.stat-item span {
  color: var(--muted);
}

.split-section {
  align-items: start;
  display: grid;
  gap: 64px;
  grid-template-columns: 1.1fr 0.9fr;
}

.section-head {
  margin-bottom: 34px;
  max-width: 760px;
}

.section-head.inline {
  align-items: end;
  display: flex;
  justify-content: space-between;
  max-width: none;
}

.features-section {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(280px, 0.42fr) 1fr;
}

.feature-summary {
  position: sticky;
  top: 110px;
}

.feature-summary h2 {
  max-width: 520px;
}

.feature-summary p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  margin-top: 18px;
}

.feature-grid {
  display: grid;
  gap: 0;
  border-block: 1px solid var(--line);
}

.feature-item {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: 54px 1fr;
  padding: 24px 0;
}

.feature-item + .feature-item {
  border-top: 1px solid var(--line);
}

.feature-item h3 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 8px;
}

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

.food-nearby-grid article,
.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.feature-icon {
  align-items: center;
  background: rgba(51, 131, 142, 0.12);
  border: 1px solid rgba(51, 131, 142, 0.22);
  border-radius: 14px;
  color: var(--deep);
  display: inline-flex;
  font-size: 20px;
  height: 48px;
  justify-content: center;
  width: 48px;
}

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

.room-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(9, 25, 35, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  transition:
    box-shadow 0.55s cubic-bezier(0.19, 1, 0.22, 1),
    transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
}

.room-card:hover {
  box-shadow: 0 26px 70px rgba(9, 25, 35, 0.14);
  transform: translateY(-5px);
}

.room-image,
.room-card > img {
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
}

.room-image img,
.room-card > img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
}

.room-card:hover .room-image img {
  transform: scale(1.04);
}

.room-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
  min-width: 0;
}

.room-meta,
.news-card time {
  color: var(--sand);
  font-size: 13px;
  font-weight: 800;
}

.room-body h2,
.room-body h3 {
  font-size: clamp(24px, 2.1vw, 34px);
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 14px;
  overflow-wrap: anywhere;
}

.room-body h2 a,
.room-body h3 a {
  display: block;
}

.room-body p {
  color: var(--muted);
}

.room-body > p:not(.room-meta) {
  flex: 1;
}

.room-bottom {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin: 22px -24px -24px;
  min-height: 70px;
  padding: 18px 24px;
}

.amenity-row,
.amenity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amenity-row span,
.amenity-list span {
  background: rgba(12, 52, 70, 0.08);
  border-radius: 999px;
  color: var(--deep);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
}

.media-panel {
  align-items: stretch;
  background: var(--ink);
  border-radius: var(--radius);
  color: white;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
}

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

.media-panel div {
  padding: 48px;
}

.media-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.2fr 0.8fr 1fr;
}

.gallery-grid figure {
  background: var(--paper);
  border-radius: var(--radius);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.gallery-grid img {
  aspect-ratio: 1 / 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.gallery-grid figcaption {
  background: rgba(9, 25, 35, 0.64);
  bottom: 10px;
  border-radius: var(--radius);
  color: white;
  font-weight: 700;
  left: 10px;
  padding: 8px 10px;
  position: absolute;
}

.food-nearby-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}

.testimonial-shell {
  position: relative;
}

.testimonial-viewport {
  overflow: hidden;
  padding: 4px 0 8px;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 0 0 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(9, 25, 35, 0.08);
  display: flex;
  flex: 0 0 min(420px, calc(100vw - 56px));
  flex-direction: column;
  min-height: 330px;
  padding: 30px;
  scroll-snap-align: start;
}

.testimonial-card p {
  color: var(--ink);
  flex: 1;
  font-size: 18px;
  line-height: 1.65;
}

.testimonial-card span {
  color: var(--muted);
  display: block;
  margin-top: 6px;
}

.rating {
  color: var(--sand);
  margin-bottom: 18px;
}

.carousel-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 8px;
}

.carousel-actions button {
  background: var(--ink);
  border: 0;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  height: 42px;
  transition: opacity 0.25s ease, transform 0.25s ease;
  width: 42px;
}

.carousel-actions button:not(:disabled):hover {
  transform: translateY(-2px);
}

.carousel-actions button:disabled {
  cursor: default;
  opacity: 0.35;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-item button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-weight: 800;
  justify-content: space-between;
  padding: 22px;
  text-align: left;
  width: 100%;
}

.faq-item div {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.is-open div {
  display: block;
}

.documents-hero {
  background: linear-gradient(180deg, rgba(9, 25, 35, 0.055), rgba(248, 244, 238, 0));
  padding: 148px max(20px, calc((100vw - 1040px) / 2)) 30px;
}

.documents-hero > div {
  max-width: 680px;
}

.documents-hero h1 {
  font-size: clamp(32px, 3.3vw, 46px);
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 12px;
}

.documents-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
  max-width: 600px;
}

.documents-section {
  max-width: 1040px;
}

.documents-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.document-list {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(9, 25, 35, 0.06);
  overflow: hidden;
}

.document-row {
  align-items: center;
  color: var(--ink);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  min-width: 0;
  padding: 24px 26px;
  text-decoration: none;
  transition: background 220ms ease, transform 220ms ease;
}

.document-row + .document-row {
  border-top: 1px solid var(--line);
}

.document-row:hover {
  background: rgba(51, 174, 182, 0.07);
  transform: translateX(2px);
}

.document-row span {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.document-row small {
  color: var(--sand);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.document-row strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.document-row em {
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  line-height: 1.5;
}

.document-row b {
  color: var(--aqua);
  flex: 0 0 auto;
  font-size: 15px;
}

.muted-row {
  opacity: 0.7;
}

.document-summary,
.document-side {
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(9, 25, 35, 0.05);
  padding: 24px;
}

.document-summary {
  position: sticky;
  top: 112px;
}

.document-summary ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 18px 0 20px;
  padding: 0;
}

.document-summary li {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  padding-left: 18px;
  position: relative;
}

.document-summary li::before {
  background: var(--aqua);
  border-radius: 50%;
  content: '';
  height: 6px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 6px;
}

.document-summary p:not(.eyebrow),
.document-side p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.document-detail-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 260px minmax(0, 1fr);
}

.document-side {
  position: sticky;
  top: 112px;
}

.document-side dl {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.document-side dt {
  color: var(--sand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.document-side dd {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  margin: 5px 0 0;
}

.document-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(9, 25, 35, 0.06);
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 100%;
  padding: clamp(26px, 4vw, 48px);
}

.document-card h2 {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.12;
  margin-bottom: 22px;
}

.document-card h3 {
  color: var(--deep);
  font-size: 18px;
  line-height: 1.25;
  margin-top: 32px;
}

.document-card h3:first-child {
  margin-top: 0;
}

.document-card p,
.document-card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.76;
}

.document-card strong {
  color: var(--ink);
}

.document-card ul,
.document-card ol {
  margin: 18px 0 0;
  padding-left: 22px;
}

.document-card a {
  color: var(--deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.document-card hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 30px 0;
}

.rules-note {
  background: rgba(51, 174, 182, 0.11);
  border-left: 3px solid var(--aqua);
  border-radius: 0 8px 8px 0;
  margin-top: 22px;
  padding: 14px 16px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-bar a {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep);
  font-weight: 800;
  padding: 10px 14px;
}

.filter-bar a.is-active {
  background: var(--deep);
  color: white;
}

.room-detail-layout,
.contact-page {
  align-items: start;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) 410px;
}

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

.detail-gallery img:first-child {
  grid-column: 1 / -1;
}

.detail-gallery img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.content-block,
.booking-aside {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 18px;
  padding: 28px;
}

.room-facts {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.room-facts div {
  display: flex;
  justify-content: space-between;
}

.room-facts span {
  color: var(--muted);
}

.booking-aside .booking-form {
  box-shadow: none;
  margin-top: 22px;
  padding: 24px;
}

.booking-aside .booking-grid,
.contact-page .booking-grid {
  grid-template-columns: 1fr;
}

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

.news-list-section {
  padding-top: 76px;
}

.news-list-section .news-grid {
  gap: 38px 30px;
}

.news-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.news-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.news-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.news-card h2,
.news-card h3 {
  font-size: 21px;
  letter-spacing: 0;
  line-height: 1.22;
  margin-bottom: 12px;
}

.news-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
  margin-bottom: 24px;
}

.news-card .text-link {
  margin-top: auto;
}

.pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 54px;
}

.pagination a,
.pagination span {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep);
  display: inline-flex;
  font-size: 14px;
  font-weight: 800;
  min-height: 42px;
  min-width: 42px;
  justify-content: center;
  padding: 0 16px;
}

.pagination a:hover,
.pagination .is-active {
  background: var(--deep);
  border-color: var(--deep);
  color: white;
}

.pagination .is-disabled {
  color: rgba(38, 70, 83, 0.38);
  cursor: not-allowed;
}

.article-body {
  background: var(--paper);
  border-radius: var(--radius);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 80px;
  max-width: 860px;
  padding: 48px;
}

.contact-card {
  display: grid;
  gap: 14px;
}

.contact-map-section {
  padding-top: 10px;
}

.contact-map {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(9, 25, 35, 0.08);
  height: min(620px, 70vh);
  min-height: 420px;
  overflow: hidden;
}

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

.price-page {
  color: #fff;
  min-height: 100vh;
  overflow: hidden;
  padding: 140px 20px 72px;
  position: relative;
}

.price-bg {
  filter: blur(5px);
  height: calc(100% + 18px);
  inset: -9px;
  object-fit: cover;
  position: absolute;
  transform: scale(1.02);
  width: calc(100% + 18px);
}

.price-overlay {
  background:
    linear-gradient(180deg, rgba(9, 25, 35, 0.18), rgba(15, 91, 91, 0.78)),
    linear-gradient(90deg, rgba(9, 25, 35, 0.34), rgba(255, 255, 255, 0.08), rgba(9, 25, 35, 0.26));
  inset: 0;
  position: absolute;
}

.price-shell {
  margin: 0 auto;
  max-width: 1220px;
  position: relative;
  z-index: 1;
}

.price-head {
  text-align: center;
}

.price-head img {
  height: auto;
  margin: 0 auto 54px;
  max-width: min(620px, 88vw);
  width: 100%;
}

.price-head h1 {
  color: #fff;
  font-size: clamp(46px, 8vw, 88px);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.price-head p {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.price-board {
  display: grid;
  gap: 14px;
  margin: 58px auto 0;
  max-width: 1040px;
}

.price-board-head,
.price-board-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
}

.price-board-head {
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  overflow: hidden;
  padding: 0 18px;
  text-transform: uppercase;
}

.price-board-head > span {
  align-items: center;
  display: flex;
  min-height: 62px;
}

.price-board-head > div,
.price-amount-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.price-board-head > div > span {
  align-items: center;
  display: grid;
  gap: 6px;
  justify-items: center;
  min-height: 62px;
  text-align: center;
}

.price-period-icon {
  color: #fff;
  display: block;
  font-size: 19px;
  line-height: 1;
  margin: 0 auto;
}

.price-board-row {
  align-items: stretch;
  min-height: 92px;
}

.price-service {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px 0 0 24px;
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  padding: 18px 20px;
}

.price-service span:last-child {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.price-service-icon {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 12px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 34px;
  font-size: 18px;
  height: 34px;
  justify-content: center;
  line-height: 1;
  text-align: center;
  width: 34px;
}

.price-service strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
  white-space: normal;
}

.price-service em {
  color: rgba(255, 255, 255, 0.92);
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  white-space: normal;
}

.price-amount-grid {
  align-items: stretch;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(35, 112, 116, 0.4));
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-left: 0;
  border-radius: 0 24px 24px 0;
  box-shadow: inset 22px 0 34px rgba(255, 255, 255, 0.13);
  overflow: hidden;
}

.price-amount-grid span {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 28px;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  min-height: 92px;
  padding: 18px 12px;
}

.price-amount-grid span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.price-mobile-list {
  display: none;
}

.price-document-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 26px;
}

.price-document-links a {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  padding: 12px 18px;
  text-decoration: none;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.price-document-links a:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}

.price-times {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr auto 1fr;
  margin-top: 92px;
}

.price-times article {
  border: 4px dotted #fff200;
  border-radius: 24px;
  display: grid;
  gap: 28px;
  min-height: 170px;
  padding: 36px 30px;
  place-items: center;
  text-align: center;
}

.price-times article span {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.price-times article strong {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  text-transform: uppercase;
}

.meal-times {
  display: grid;
  gap: 26px;
  min-width: 230px;
  text-align: center;
}

.meal-times p {
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.15;
}

.meal-times strong {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
}

.price-note {
  background: rgba(8, 35, 40, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.45);
  border-radius: 28px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.45;
  margin-top: 108px;
  padding: 42px;
  text-align: center;
}

.price-contacts {
  display: grid;
  gap: 24px;
  justify-content: center;
  margin-top: 70px;
  text-align: center;
}

.price-contacts a {
  color: #fff;
  font-size: clamp(26px, 3vw, 36px);
  text-decoration: none;
}
