:root {
  --black: #0d0e10;
  --carbon: #16181c;
  --carbon-soft: #20242a;
  --gold: #c5a059;
  --copper: #b96c2f;
  --orange: #f47b25;
  --speed: #ffcc00;
  --white: #ffffff;
  --titanium: #c6cbd3;
  --muted: #8d94a0;
  --line: rgba(197, 160, 89, 0.32);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 123, 37, 0.18), transparent 30rem),
    radial-gradient(circle at 80% 26%, rgba(197, 160, 89, 0.14), transparent 28rem),
    linear-gradient(135deg, var(--black) 0%, #111317 48%, #08090b 100%);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(197, 160, 89, 0.08), transparent 34%, transparent 66%, rgba(244, 123, 37, 0.08)),
    #050506;
  transition: opacity 0.32s ease, visibility 0.32s ease;
}

.preloader::before,
.preloader::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: rgba(255, 255, 255, 0.018);
  animation: doorOpen 1.1s ease forwards;
}

.preloader::before {
  left: 0;
  transform-origin: left;
}

.preloader::after {
  right: 0;
  transform-origin: right;
}

.preloader__panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.preloader__panel::before {
  content: "";
  position: absolute;
  inset: -34px;
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 0 80px rgba(244, 123, 37, 0.16);
}

.preloader img {
  position: relative;
  width: min(310px, 72vw);
  filter: drop-shadow(0 24px 54px rgba(244, 123, 37, 0.24));
  animation: logoReveal 0.9s ease both;
}

.preloader p {
  position: relative;
  margin: 0;
  color: var(--gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 5vw, 2.7rem);
}

.preloader__track {
  position: relative;
  width: min(360px, 76vw);
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.preloader__track span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, transparent, var(--copper), var(--speed), var(--gold), transparent);
  animation: loadBar 0.9s ease forwards;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 50;
  padding-inline: 16px;
}

.header-shell {
  width: min(1180px, 100%);
  min-height: 78px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 9px 12px 9px 18px;
  border: 1px solid rgba(197, 160, 89, 0.38);
  border-radius: 999px;
  background: rgba(13, 14, 16, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

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

.brand img {
  width: 128px;
  height: 58px;
  object-fit: contain;
}

.brand span {
  display: none;
  max-width: 160px;
  color: var(--white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand span b {
  display: inline;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.desktop-nav a {
  padding: 12px 14px;
  border-radius: 999px;
  color: var(--titanium);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--speed);
  background: rgba(197, 160, 89, 0.1);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 204, 0, 0.36);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--speed), var(--gold) 52%, var(--copper));
  color: #140f05;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 14px 38px rgba(255, 204, 0, 0.24);
  white-space: nowrap;
}

.btn--shimmer::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 44%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.82), transparent);
  animation: shimmer 2.8s ease-in-out infinite;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.btn--hero {
  min-height: 64px;
  padding: 0 34px;
  font-size: 1rem;
}

.btn--small {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.74rem;
}

.btn--whatsapp {
  border-color: rgba(255, 204, 0, 0.36);
  background: linear-gradient(135deg, var(--speed), var(--gold) 52%, var(--copper));
  color: #140f05;
  box-shadow: 0 12px 30px rgba(255, 204, 0, 0.18);
}

.btn--pulse {
  animation: ctaPulse 1.65s ease-in-out infinite;
}

.menu-toggle,
.drawer-close,
.mobile-drawer,
.drawer-backdrop {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  padding: 136px 0 76px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -12vw 0 -12vw;
  height: 35%;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.28), transparent),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 18px);
  transform: skewY(-4deg);
}

.hero__shine {
  position: absolute;
  inset: 8% 50% auto auto;
  width: 54vw;
  height: 54vw;
  z-index: -1;
  transform: translateX(50%);
  background: radial-gradient(circle, rgba(244, 123, 37, 0.2), rgba(197, 160, 89, 0.1) 30%, transparent 64%);
}

.hero__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero__visual {
  position: relative;
  width: min(540px, 92vw);
  min-height: 315px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    rgba(22, 24, 28, 0.62);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 204, 0, 0.15);
  border-radius: 30px;
}

.hero__visual img {
  width: min(430px, 78vw);
  filter: drop-shadow(0 34px 62px rgba(0, 0, 0, 0.72));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--speed);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 930px;
  margin-bottom: 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.05rem, 7.1vw, 6.5rem);
  line-height: 0.94;
}

.section-title {
  max-width: 760px;
  margin-bottom: 18px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  line-height: 1.12;
  font-weight: 900;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
}

h3 {
  margin-bottom: 14px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.28rem;
}

.hero__copy {
  max-width: 720px;
  margin-inline: auto;
  color: var(--titanium);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.spec-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  color: var(--titanium);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-strip span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.metrics {
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

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

.metrics__grid div {
  min-height: 126px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.metrics__grid div:last-child {
  border-right: 0;
}

.metrics strong {
  color: var(--gold);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 2rem;
}

.metrics span {
  color: var(--titanium);
  font-weight: 700;
}

.section {
  padding-block: 104px;
}

.section__head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section__head--center {
  margin-inline: auto;
  text-align: center;
}

.section__head p:not(.eyebrow) {
  color: var(--titanium);
  line-height: 1.7;
}

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

.service-card {
  min-height: 342px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(197, 160, 89, 0.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 0%, rgba(244, 123, 37, 0.13), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(18, 20, 24, 0.76);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 204, 0, 0.62);
}

.service-card.is-hidden {
  display: none;
}

.service-card__tag {
  width: fit-content;
  margin: 0 auto 22px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #171104;
  background: linear-gradient(135deg, var(--speed), var(--copper));
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3 {
  text-align: center;
}

.service-card p {
  align-self: stretch;
  color: var(--titanium);
  line-height: 1.65;
}

.service-card__actions {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.gallery {
  background: rgba(255, 255, 255, 0.025);
}

.carousel,
.testimonial-carousel {
  position: relative;
}

.carousel-track,
.testimonial-track {
  position: relative;
  min-height: 440px;
}

.gallery-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 34px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.98);
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: 34px;
  background:
    linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.88)),
    var(--image) center / cover no-repeat;
  box-shadow: var(--shadow);
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.gallery-card.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.gallery-card span {
  width: fit-content;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(13, 14, 16, 0.72);
  color: var(--speed);
  font-family: Montserrat, Inter, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.carousel-btn {
  display: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 204, 0, 0.5);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.carousel-dot.is-active {
  width: 28px;
  background: linear-gradient(135deg, var(--speed), var(--gold));
}

.process {
  padding-block: 92px;
  background:
    linear-gradient(90deg, rgba(197, 160, 89, 0.08), transparent 42%),
    #0a0b0d;
}

.process__head {
  margin-bottom: 30px;
}

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

.process__steps span {
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  border-radius: 0 18px 18px 0;
  background: rgba(255, 255, 255, 0.055);
  color: var(--titanium);
  font-weight: 800;
  text-align: center;
}

.testimonial-track {
  min-height: 330px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  opacity: 0;
  transform: scale(0.98);
  pointer-events: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.gallery-card.is-active,
.testimonial-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.testimonial-card {
  display: grid;
  align-content: space-between;
  gap: 28px;
  min-height: 245px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(18, 20, 24, 0.78);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  text-align: left;
}

.testimonial-card p {
  margin: 0;
  color: var(--titanium);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  font-weight: 800;
  line-height: 1.55;
}

.testimonial-card strong {
  color: var(--gold);
  font-size: 1rem;
}

.about {
  background: rgba(255, 255, 255, 0.025);
}

.about__inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  gap: 28px;
  min-height: 430px;
}

.about__media {
  min-height: 100%;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22)),
    var(--image) center / contain no-repeat;
  background-color: rgba(18, 20, 24, 0.78);
  box-shadow: var(--shadow);
}

.about__content {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(197, 160, 89, 0.24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 123, 37, 0.11), transparent 18rem),
    rgba(255, 255, 255, 0.045);
}

.about__content p {
  margin: 0;
  color: var(--titanium);
  font-size: 1rem;
  line-height: 1.75;
}

.about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.booking {
  padding-block: 78px;
  border-block: 1px solid rgba(255, 204, 0, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 204, 0, 0.14), rgba(244, 123, 37, 0.08)),
    var(--carbon);
}

.booking__inner {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
  gap: 34px;
}

.booking__content {
  max-width: 760px;
  display: grid;
  justify-items: start;
}

.booking p:not(.eyebrow) {
  color: var(--titanium);
  line-height: 1.7;
}

.booking__media {
  min-height: 360px;
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42)),
    var(--image) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 20px;
}

.contact-card,
.map-card {
  overflow: hidden;
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.052);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 26px;
  padding: 30px;
}

.contact-card img {
  width: 180px;
  margin-inline: auto;
}

.contact-card ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-card strong {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
}

.contact-card span,
.contact-card a:not(.btn) {
  color: var(--titanium);
  line-height: 1.55;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  filter: grayscale(0.4) contrast(1.06) saturate(0.88);
}

.site-footer {
  background: #070809;
}

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding-block: 34px;
}

.site-footer img {
  width: 120px;
  justify-self: center;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 18px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 60px;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.float-btn svg {
  width: 29px;
  height: 29px;
  fill: #fff;
}

.float-btn--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.float-btn--whatsapp {
  background: #25d366;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -55%;
  }
  48%,
  100% {
    left: 120%;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 14px 38px rgba(255, 204, 0, 0.24), 0 0 0 0 rgba(255, 204, 0, 0.34);
  }
  50% {
    box-shadow: 0 18px 48px rgba(255, 204, 0, 0.38), 0 0 0 9px rgba(255, 204, 0, 0);
  }
}

@keyframes loadBar {
  to {
    transform: scaleX(1);
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }
}

@keyframes doorOpen {
  to {
    transform: scaleX(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
  }

  .header-shell {
    grid-template-columns: auto 1fr auto;
    border-radius: 28px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    justify-self: end;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    flex: 0 0 2px;
    border-radius: 999px;
    background: var(--white);
  }

  .mobile-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 80;
    width: min(86vw, 360px);
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 28px;
    transform: translateX(104%);
    background: rgba(13, 14, 16, 0.96);
    border-left: 1px solid var(--line);
    box-shadow: -28px 0 70px rgba(0, 0, 0, 0.46);
    transition: transform 0.24s ease;
  }

  .mobile-drawer.is-open {
    transform: translateX(0);
  }

  .mobile-drawer img {
    width: 150px;
    margin: 0 auto 12px;
  }

  .mobile-drawer a:not(.btn) {
    color: var(--titanium);
    font-weight: 900;
    text-transform: uppercase;
  }

  .drawer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 28px;
    line-height: 1;
  }

  .drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: none;
    background: rgba(0, 0, 0, 0.62);
  }

  .drawer-backdrop.is-open {
    display: block;
  }

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

  .about__inner,
  .booking__inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonial-track {
    min-height: 640px;
  }

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

  .map-card iframe {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .preloader__track span {
    animation-duration: 1.2s;
  }

  .site-header {
    padding-inline: 10px;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 68px;
    padding: 8px 8px 8px 14px;
  }

  .brand img {
    width: 58px;
    height: 50px;
  }

  .brand span {
    display: block;
    max-width: none;
    font-size: 0.92rem;
    line-height: 0.96;
  }

  .brand span b {
    display: block;
  }

  .menu-toggle {
    justify-self: end;
  }

  .hero {
    padding: 118px 0 54px;
  }

  .hero__visual {
    min-height: 258px;
    padding: 22px;
    border-radius: 28px;
  }

  h1 {
    font-size: clamp(2.72rem, 15vw, 4.1rem);
  }

  .section-title {
    font-size: clamp(1.35rem, 7vw, 1.9rem);
  }

  .btn--hero,
  .hero__actions .btn {
    width: 100%;
  }

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

  .metrics__grid div {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

  .section,
  .process,
  .booking {
    padding-block: 72px;
  }

  .booking__media {
    min-height: 260px;
    border-radius: 24px;
  }

  .about__media {
    min-height: 300px;
    border-radius: 24px;
  }

  .about__content {
    border-radius: 24px;
    text-align: center;
  }

  .about__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking__content {
    justify-items: stretch;
    text-align: center;
  }

  .carousel-track {
    min-height: 330px;
  }

  .gallery-card {
    padding: 22px;
    border-radius: 24px;
  }

  .testimonial-track {
    min-height: 360px;
  }

  .testimonial-slide {
    display: block;
  }

  .testimonial-card {
    display: none;
    min-height: 225px;
    padding: 24px 22px;
    border-radius: 18px;
  }

  .testimonial-card.is-active {
    display: grid;
  }

  .testimonial-card p {
    font-size: clamp(0.98rem, 4.6vw, 1.12rem);
  }

  .testimonial-card strong {
    font-size: 0.9rem;
  }

  .contact-card,
  .map-card {
    border-radius: 24px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    padding-bottom: 112px;
  }

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .float-btn svg {
    width: 24px;
    height: 24px;
  }

}
