:root {
  --ink: #211f35;
  --ink-soft: #3b3756;
  --muted: #676178;
  --paper: #fffaf2;
  --white: #ffffff;
  --sky: #ccf4ff;
  --mint: #bdf4c9;
  --pink: #ff4ea3;
  --orange: #ff8b2d;
  --yellow: #ffd84d;
  --blue: #1976f3;
  --purple: #8064ff;
  --line: rgba(33, 31, 53, 0.14);
  --shadow: 0 20px 60px rgba(31, 25, 61, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fffaf2 0%, #fff7e6 36%, #f4fbff 100%);
  color: var(--ink);
  font-family: Mulish, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  font-family: Kanit, system-ui, sans-serif;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.85rem, 6.1vw, 5.8rem);
}

h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  min-height: 5.2rem;
  padding: 0.55rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: 0 10px 30px rgba(31, 25, 61, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: clamp(7rem, 13vw, 11rem);
  height: 4rem;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.site-nav a {
  padding: 0.72rem 0.95rem;
  border-radius: 8px;
  color: var(--ink-soft);
  font-weight: 900;
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  background: var(--sky);
  color: var(--ink);
}

.site-nav a:last-child {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 78, 163, 0.28);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(31, 25, 61, 0.1);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 1.25rem;
  height: 3px;
  margin: 0.25rem auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  min-height: min(48rem, calc(100svh - 4.8rem));
  padding: clamp(1rem, 3.4vw, 3rem);
}

.hero {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  min-height: auto;
  padding-block: clamp(1.5rem, 3.2vw, 3rem);
}

.hero-overhaul {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 216, 77, 0.42), rgba(204, 244, 255, 0.42) 42%, rgba(255, 78, 163, 0.14)),
    repeating-linear-gradient(45deg, rgba(33, 31, 53, 0.035) 0 1px, transparent 1px 18px);
}

.hero-copy,
.page-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  padding: clamp(1.4rem, 4vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.76)),
    linear-gradient(135deg, rgba(255, 78, 163, 0.16), rgba(255, 216, 77, 0.16), rgba(204, 244, 255, 0.18));
  box-shadow: var(--shadow);
}

.hero-copy {
  min-height: clamp(28rem, 40vw, 38rem);
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.85rem, 5vw, 4.85rem);
}

.hero-logo {
  width: clamp(7rem, 15vw, 13rem);
  height: auto;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 12px 18px rgba(31, 25, 61, 0.14));
}

.hero-copy p,
.page-hero p,
.section-heading p {
  max-width: 43rem;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.eyebrow {
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.2rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 1000;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button:hover,
.button:focus-visible {
  background: var(--pink);
  border-color: var(--pink);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.trust-row span {
  padding: 0.5rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 1000;
}

.hero-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-self: stretch;
  min-height: clamp(28rem, 40vw, 38rem);
  max-height: 38rem;
}

.hero-collage img,
.hero-badge,
.page-hero > img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-collage .hero-main-photo {
  grid-row: auto;
}

.hero-collage img:nth-of-type(3),
.hero-collage img:nth-of-type(4) {
  min-height: 0;
}

.hero-badge {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: grid;
  place-items: center;
  width: 10rem;
  min-height: 10rem;
  padding: 1rem;
  background: var(--yellow);
  text-align: center;
  transform: rotate(3deg);
}

.hero-badge strong {
  display: block;
  color: var(--pink);
  font-family: Kanit, system-ui, sans-serif;
  font-size: 2.8rem;
  line-height: 0.9;
}

.hero-badge span {
  font-weight: 1000;
}

.section,
.testimonials,
.comfort-panel,
.cta {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1rem, 4vw, 3rem);
}

.section-heading {
  display: grid;
  gap: 0.65rem;
  max-width: 64rem;
  margin-bottom: clamp(1.6rem, 3vw, 2.6rem);
  padding-left: clamp(1rem, 2vw, 1.5rem);
  border-left: 0.6rem solid var(--pink);
}

.section-heading h2 {
  max-width: 13ch;
}

.comfort-panel {
  background:
    linear-gradient(135deg, #211f35 0%, #2e2850 52%, #143b65 100%);
  color: #fff;
}

.comfort-panel .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.comfort-panel .eyebrow,
.feature-band .eyebrow {
  color: var(--yellow);
}

.comfort-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.25rem);
}

.comfort-grid article,
.process-grid article,
blockquote,
.contact-panel,
.booking-form,
.split-section > div {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(31, 25, 61, 0.1);
}

.comfort-grid article > *,
.process-grid article > *,
blockquote > *,
.split-section > div > *,
.contact-panel > *,
.booking-form > * {
  position: relative;
  z-index: 1;
}

.comfort-grid article::after,
.process-grid article::after,
blockquote::after,
.split-section > div::after,
.contact-panel::after,
.booking-form::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.45rem;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(180deg, var(--pink), var(--yellow), var(--sky));
  content: "";
  pointer-events: none;
}

.comfort-grid article {
  display: grid;
  align-content: start;
  min-height: 13rem;
  padding: 1.35rem 1.25rem 1.35rem 1.55rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(204, 244, 255, 0.86));
  color: var(--ink);
}

.comfort-grid h3,
.process-grid h3,
.split-section h2 {
  max-width: none;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.comfort-grid h3::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 0.45rem;
  margin-bottom: 0.9rem;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--mint));
}

.services-showcase {
  background:
    linear-gradient(180deg, #fffaf2, #fff 42%, #f6fdff),
    repeating-linear-gradient(90deg, rgba(25, 118, 243, 0.05) 0 18px, transparent 18px 36px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: stretch;
}

.service-grid.expanded,
.feature-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 2px solid rgba(33, 31, 53, 0.12);
  border-top-width: 0.45rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(31, 25, 61, 0.12);
}

.service-card:nth-child(3n + 1) {
  border-top-color: var(--pink);
}

.service-card:nth-child(3n + 2) {
  border-top-color: var(--yellow);
}

.service-card:nth-child(3n) {
  border-top-color: var(--sky);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card div {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  padding: 1.25rem;
}

.service-card h2,
.service-card h3 {
  max-width: none;
  font-size: clamp(1.55rem, 2.55vw, 2.85rem);
  line-height: 0.98;
}

.service-number {
  width: fit-content;
  padding: 0.22rem 0.5rem;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-family: Kanit, system-ui, sans-serif;
  font-weight: 700;
}

.service-card small {
  display: block;
  margin-top: 0.6rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  color: var(--pink);
  font-weight: 1000;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, #211f35 0%, #342a58 58%, #173c6f 100%);
  color: #fff;
}

.feature-band > div {
  display: grid;
  gap: 0.5rem;
}

.feature-band h2 {
  max-width: 12ch;
}

.feature-band p {
  color: rgba(255, 255, 255, 0.8);
}

.feature-band img {
  width: 100%;
  max-height: 34rem;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 32rem;
  margin-top: 1.2rem;
}

.stats span {
  min-height: 7rem;
  padding: 1.2rem;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 1000;
}

.stats strong {
  display: block;
  color: var(--orange);
  font-family: Kanit, system-ui, sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.process-section {
  background:
    linear-gradient(90deg, rgba(189, 244, 201, 0.42), rgba(255, 216, 77, 0.32), rgba(204, 244, 255, 0.52));
}

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

.process-grid article {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 13rem;
  padding: 1.35rem 1.35rem 1.35rem 1.65rem;
  overflow: hidden;
}

.process-grid strong {
  display: block;
  color: rgba(255, 78, 163, 0.18);
  font-family: Kanit, system-ui, sans-serif;
  font-size: clamp(4rem, 7vw, 6rem);
  line-height: 0.8;
}

.moments-section {
  background: #fff;
}

.mosaic-gallery,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 0.75rem;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 10rem;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: #fff;
  cursor: zoom-in;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid .gallery-item:nth-child(1),
.gallery-grid .gallery-item:nth-child(6) {
  grid-column: auto;
  grid-row: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--pink);
  font-weight: 1000;
}

.testimonials {
  background:
    linear-gradient(180deg, #fffaf2, #f5fcff);
}

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

blockquote {
  margin: 0;
  padding: 1.45rem 1.35rem 1.45rem 1.75rem;
}

blockquote span {
  color: var(--orange);
  font-weight: 1000;
}

blockquote p {
  font-size: 1.08rem;
  font-weight: 900;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 1000;
}

.page-hero {
  min-height: 30rem;
  grid-template-columns: 1fr;
}

.page-hero.compact {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
}

.page-hero > img {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
}

.page-hero.compact > img {
  height: auto;
  max-height: 42rem;
  aspect-ratio: 4 / 5;
}

.about-hero,
.services-hero,
.contact-hero {
  background:
    linear-gradient(115deg, rgba(255, 216, 77, 0.46), rgba(204, 244, 255, 0.36), rgba(255, 78, 163, 0.16)),
    url("/assets/img/gallery/web/738493728_1647226576378785_6141666469052516169_n.webp") center / cover;
}

.about-hero {
  background-image:
    linear-gradient(115deg, rgba(255, 250, 242, 0.72), rgba(204, 244, 255, 0.18)),
    url("/assets/img/gallery/web/719224029_1725302648647790_1999680653506290981_n.webp");
}

.contact-hero {
  background-image:
    linear-gradient(115deg, rgba(255, 250, 242, 0.72), rgba(204, 244, 255, 0.2)),
    url("/assets/img/gallery/web/719638349_1784101382571914_2810613689510780419_n.webp");
}

.split-section,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1rem, 4vw, 3rem);
}

.split-section > div,
.contact-panel,
.booking-form {
  padding: 1.6rem 1.5rem 1.6rem 1.85rem;
}

.contact-panel {
  background: linear-gradient(145deg, #fff, rgba(204, 244, 255, 0.56));
}

.contact-panel h2 {
  max-width: 12ch;
}

.contact-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-soft);
  font-weight: 800;
}

.contact-list li::before {
  position: absolute;
  top: 0.63rem;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--pink);
  content: "";
}

.contact-panel a {
  color: var(--blue);
  font-weight: 900;
}

.booking-form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink-soft);
  font-weight: 1000;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.turnstile-field {
  min-height: 4.1rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(25, 118, 243, 0.2);
  border-color: var(--blue);
}

.notice {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  font-weight: 1000;
}

.notice.success {
  background: rgba(54, 180, 89, 0.16);
  color: #145b28;
}

.notice.error {
  background: rgba(255, 78, 163, 0.13);
  color: #8d124f;
}

.cta {
  padding-block: clamp(3rem, 5vw, 4.5rem);
  background:
    linear-gradient(135deg, var(--yellow), #fff 44%, var(--sky));
  text-align: center;
}

.cta h2 {
  margin-inline: auto;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  margin: 0;
  max-width: 44rem;
}

.site-footer a {
  display: inline-block;
  overflow-wrap: anywhere;
  color: #fff;
}

.site-footer > div a {
  display: block;
}

.footer-credit {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.82);
}

.footer-credit span {
  display: inline-block;
  margin: 0 0.45rem;
  color: rgba(255, 255, 255, 0.46);
}

.lightbox {
  width: min(92vw, 72rem);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
}

.lightbox img {
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
  background: #000;
}

.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  min-height: 2.6rem;
  padding: 0 0.9rem;
  border: 0;
  border-radius: 8px;
  background: #fff;
  font-weight: 1000;
}

@media (max-width: 1100px) {
  .hero,
  .page-hero.compact,
  .feature-band,
  .split-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-collage {
    min-height: 22rem;
    max-height: none;
  }

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

  .section-heading h2,
  .feature-band h2 {
    max-width: 16ch;
  }

  .mosaic-gallery,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 4.8rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    margin-top: 0.55rem;
    padding: 0.8rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 250, 242, 0.99);
    box-shadow: var(--shadow);
  }

  .site-nav a {
    min-height: 3.2rem;
    padding: 0.85rem 1rem;
    background: #fff;
    text-align: center;
  }

  .site-nav.is-open {
    display: flex;
  }

  .process-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    min-height: 4.6rem;
    padding-inline: 0.85rem;
  }

  .brand img {
    width: 7.2rem;
    height: 3.2rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section-heading {
    padding-left: 0.9rem;
    border-left-width: 0.45rem;
  }

  .section-heading p {
    font-size: 1rem;
  }

  .comfort-grid h3,
  .process-grid h3,
  .split-section h2 {
    font-size: 1.35rem;
  }

  .hero,
  .page-hero {
    padding: 0.75rem;
  }

  .hero-copy,
  .page-hero > div {
    padding: 1.15rem;
  }

  .page-hero.compact > img {
    max-height: 24rem;
    aspect-ratio: 4 / 3;
  }

  .hero-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 0.55rem;
    min-height: auto;
  }

  .hero-collage img {
    aspect-ratio: 1 / 0.82;
    height: auto;
  }

  .hero-collage .hero-main-photo {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-badge {
    position: static;
    width: auto;
    min-height: 5.75rem;
    grid-column: span 2;
    transform: none;
  }

  .comfort-grid,
  .service-grid,
  .service-grid.expanded,
  .feature-services {
    grid-template-columns: 1fr;
  }

  .comfort-grid article,
  .process-grid article,
  blockquote,
  .split-section > div,
  .contact-panel,
  .booking-form {
    padding-left: 1.45rem;
  }

  .service-card h2,
  .service-card h3 {
    font-size: clamp(1.65rem, 9vw, 2.35rem);
  }

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

  .stats span {
    min-height: auto;
  }

  .feature-band img {
    max-height: 24rem;
  }

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

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: span 2;
    grid-row: auto;
  }
}
