@font-face {
  font-family: "PranavaSans";
  src: url("Assets/92zatBhPNqw73oTd4g.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
}

body {
  font-family: "PranavaSans", "Segoe UI", sans-serif;
  background: #050505;
  color: #f2f2f2;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 1000;
  padding: 24px 0;
}

.site-header .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  height: clamp(52px, 6vw, 60px);
  width: auto;
  object-fit: contain;
  transition: transform 180ms ease;
}

.brand__text {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.brand__name {
  font-size: 0.88rem;
  font-weight: 600;
}

.brand__tagline {
  font-size: 0.62rem;
  opacity: 0.7;
}

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

.main-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-cta {
  margin-left: 32px;
}

.nav-cta .cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-list a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  position: relative;
  transition: color 180ms ease;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: #f8bf2c;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-list a:hover {
  color: #f8bf2c;
}

.nav-list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta .cta-link::after {
  content: none;
}

.cta-link {
  padding: 10px 24px;
  border: 1px solid #f8bf2c;
  border-radius: 999px;
  color: #f8bf2c;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: background-color 180ms ease, color 180ms ease,
    box-shadow 180ms ease;
}

.cta-link:hover {
  color: #f8bf2c;
  box-shadow: 0 12px 26px rgba(248, 191, 44, 0.25);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(248, 191, 44, 0.35);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
  background-color: rgba(15, 15, 15, 0.75);
  transition: background-color 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #f8bf2c;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle:hover {
  border-color: rgba(248, 191, 44, 0.85);
  background-color: rgba(19, 19, 19, 0.95);
  box-shadow: 0 8px 20px rgba(248, 191, 44, 0.18);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 960px) {
  .site-header .container {
    flex-wrap: wrap;
    row-gap: 16px;
    justify-content: space-between;
    padding: 0 50px;
  }

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

  .cta-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .main-nav {
    display: block;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.96);
    padding: clamp(18px, 6vw, 28px);
    border-radius: 18px;
    margin-top: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    flex-direction: column;
    gap: clamp(14px, 4vw, 18px);
    align-items: flex-start;
  }

  .brand__logo {
    height: clamp(38px, 12vw, 48px);
  }
}

@media (max-width: 640px) {
  .nav-list a {
    font-size: 0.9rem;
  }
  .site-header .container {
    padding: 0 15px;
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  padding: clamp(96px, 18vw, 160px) 0 clamp(64px, 10vw, 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.55) 45%,
      rgba(0, 0, 0, 0.38) 100%
    ),
    url("Assets/gallery-2.jpg") center/cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.68) 0%,
    rgba(0, 0, 0, 0.52) 45%,
    rgba(0, 0, 0, 0.38) 100%
  );
  z-index: 0;
}

.hero__content {
  width: min(760px, 92%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 1;
}

.hero__eyebrow {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.88;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.14;
  margin: 0;
}

.hero__description {
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
  opacity: 0.9;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 14px 38px;
  border-radius: 999px;
  background: #f8a820;
  color: #1d1d1d;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease,
    background-color 180ms ease;
  box-shadow: 0 18px 42px rgba(248, 168, 32, 0.4);
}

.hero__cta:hover {
  background: #0d0d0d;
  color: #ffd264;
  box-shadow: 0 24px 52px rgba(12, 12, 12, 0.32);
}

.services {
  position: relative;
  padding: clamp(80px, 12vw, 120px) 0 clamp(80px, 12vw, 120px);
  background: #050505;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 12% 18%,
      rgba(248, 191, 44, 0.08),
      transparent 55%
    ),
    radial-gradient(
      circle at 85% 28%,
      rgba(144, 217, 255, 0.08),
      transparent 60%
    );
  pointer-events: none;
  opacity: 0.6;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services__intro {
  max-width: 760px;
  text-align: center;
  margin: 0 auto clamp(60px, 8vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.services__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(248, 191, 44, 0.9);
}

.services__title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin: 0;
  line-height: 1.2;
  color: #f7f7f7;
}

.services__description {
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(240, 240, 240, 0.75);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.services__cta {
  margin-top: clamp(40px, 6vw, 64px);
  display: flex;
  justify-content: center;
}

.services__cta-link {
  padding: 14px 36px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #0f0f0f;
  background: #f8bf2c;
  border-color: transparent;
  transition: transform 180ms ease, box-shadow 220ms ease,
    background-color 180ms ease;
}

.services__cta-link:hover {
  background-color: #ffd05b;
  color: #0f0f0f;
  box-shadow: 0 18px 38px rgba(248, 191, 44, 0.38);
  transform: translateY(-2px);
}

.highlights {
  margin: clamp(64px, 10vw, 90px) 0;
  padding: clamp(48px, 8vw, 72px) 0;
  background: #f7f7f7;
  color: #0f0f0f;
}

.highlights__container {
  display: grid;
  gap: clamp(32px, 5vw, 48px);
}

.highlights__header {
  text-align: center;
  display: grid;
  gap: 12px;
}

.highlights__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(15, 15, 15, 0.45);
}

.highlights__title {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  color: inherit;
  letter-spacing: 0.08em;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 32px);
}

.highlight-card {
  background: #ffffff;
  border-radius: 18px;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid rgba(15, 15, 15, 0.08);
  text-align: center;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 24px);
  min-height: clamp(200px, 28vw, 240px);
}

.highlight-card__metric {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #0f0f0f;
  margin: 0;
}

.highlight-card__label {
  font-size: clamp(0.95rem, 2.4vw, 1.05rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 15, 15, 0.56);
  margin: 0;
}

@media (max-width: 1100px) {
  .highlights__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .highlights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .highlights__grid {
    grid-template-columns: 1fr;
  }
}

.about {
  position: relative;
  display: grid;
  place-items: stretch;
  min-height: clamp(620px, 100vh, 860px);
  margin: clamp(72px, 12vw, 120px) 0;
  border-radius: clamp(18px, 3vw, 28px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  background-color: #050505;
  color: #f4f4f4;
  isolation: isolate;
}

.about__media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 56vw, 640px);
  border-radius: clamp(18px, 3vw, 28px);
  overflow: hidden;
}

.about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      120deg,
      rgba(8, 8, 8, 0.65) 0%,
      rgba(8, 8, 8, 0.3) 35%,
      rgba(8, 8, 8, 0.55) 68%,
      rgba(8, 8, 8, 0.78) 100%
    ),
    rgba(5, 5, 5, 0.25);
  z-index: 1;
}

.about__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.about__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(36px, 4vw, 52px) clamp(24px, 6vw, 64px);
}

.about__container {
  width: min(1080px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 6vw, 64px);
  flex-wrap: wrap;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2.6vw, 18px);
  max-width: clamp(300px, 40vw, 800px);
}

.about__badge {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.about__title {
  margin: 0;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  color: #ffffff;
}

.about__title-em {
  font-style: italic;
  color: #f8bf2c;
}

.about__description {
  margin: 0;
  font-size: clamp(0.98rem, 1.6vw, 1.08rem);
  line-height: 1.7;
  color: rgba(244, 244, 244, 0.82);
}

.about__cta {
  margin-top: clamp(22px, 4vw, 36px);
}

.about__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 36px;
  border-radius: 999px;
  background: #f8a820;
  color: #0d0d0d;
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 220ms ease,
    background-color 180ms ease, color 180ms ease;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.about__cta-button:hover {
  transform: translateY(-2px);
  background-color: #ffb94a;
  color: #161616;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.32);
}

.about__stats {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 5vw, 48px);
  flex-wrap: wrap;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
}

.about-stat__figure {
  font-size: clamp(1.9rem, 4.2vw, 2.8rem);
  font-weight: 600;
  color: #f8bf2c;
}

.about-stat__label {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 244, 244, 0.72);
}

.amenities {
  padding: clamp(72px, 12vw, 120px) 0;
  background: #f9f9f9;
  color: #0f0f0f;
  position: relative;
  overflow: hidden;
}

.amenities::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 12% 18%,
      rgba(248, 191, 44, 0.12),
      transparent 46%
    ),
    radial-gradient(
      circle at 88% 82%,
      rgba(72, 112, 196, 0.12),
      transparent 54%
    );
  opacity: 0.35;
  pointer-events: none;
}

.amenities__container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(40px, 6vw, 64px);
}

.amenities__header {
  text-align: center;
  display: grid;
  gap: clamp(12px, 3vw, 20px);
  max-width: min(820px, 92%);
  margin: 0 auto;
}

.amenities__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(15, 15, 15, 0.45);
}

.amenities__title {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0f0f0f;
}

.amenities__description {
  margin: 0 auto;
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  line-height: 1.75;
  color: rgba(15, 15, 15, 0.68);
}

.amenities__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 32px);
}

.amenity-card {
  background: #ffffff;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 32px);
  border: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 18px 34px rgba(15, 15, 15, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 24px);
  min-height: clamp(220px, 30vw, 260px);
  text-align: center;
  transition: transform 200ms ease, box-shadow 220ms ease,
    border-color 200ms ease;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(15, 15, 15, 0.12);
  border-color: rgba(248, 191, 44, 0.45);
}

.amenity-card__icon {
  font-family: "Material Symbols Outlined", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.6rem, 4.2vw, 3rem);
  color: #f8bf2c;
}

.amenity-card__divider {
  width: 1px;
  height: clamp(28px, 6vw, 42px);
  background: linear-gradient(
    180deg,
    rgba(248, 191, 44, 0.7),
    rgba(248, 191, 44, 0.1)
  );
}

.amenity-card__title {
  margin: 0;
  font-size: clamp(1rem, 2.4vw, 1.1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 15, 15, 0.82);
}

.why-choose-us {
  padding: clamp(80px, 12vw, 120px) 0;
  background: #0f2c26;
  color: #f5f5f5;
}

.why-choose-us__container {
  display: grid;
  gap: clamp(36px, 6vw, 64px);
  justify-items: center;
}

.why-choose-us__header {
  text-align: center;
  max-width: min(760px, 92%);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 3vw, 20px);
}

.why-choose-us__badge {
  font-size: 0.76rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244, 244, 244, 0.68);
}

.why-choose-us__title {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin: 0;
  color: #ffffff;
}

.why-choose-us__subtitle {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.7;
  color: rgba(244, 244, 244, 0.78);
}

.why-choose-us__grid {
  width: min(1080px, 92%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(230px, auto));
  gap: clamp(18px, 3vw, 26px);
}

.why-card {
  position: relative;
  border-radius: 26px;
  background: rgba(12, 48, 41, 0.9);
  border: 1px solid rgba(124, 198, 180, 0.12);
  padding: clamp(22px, 3.2vw, 28px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 16px);
  transition: transform 200ms ease, box-shadow 220ms ease,
    border-color 200ms ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.28);
  border-color: rgba(124, 198, 180, 0.32);
}

.why-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f8bf2c;
  background: rgba(248, 191, 44, 0.12);
  font-size: 1.42rem;
}

.why-card__title {
  margin: 0;
  font-size: 1.15rem;
  color: #ffffff;
}

.why-card__description {
  margin: 0;
  line-height: 1.6;
  color: rgba(245, 245, 245, 0.74);
}

.why-card--feature {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
  padding: 0;
  overflow: hidden;
  border: none;
  background: transparent;
  box-shadow: none;
}

.why-card--feature:hover {
  transform: none;
  border-color: none;
  box-shadow: none;
}

.why-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-choose-us__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 6vw, 48px);
}

.why-choose-us__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 18px) clamp(36px, 6vw, 48px);
  border-radius: 999px;
  background: #f8a820;
  color: #0d0d0d;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 220ms ease,
    background-color 180ms ease, color 180ms ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.why-choose-us__cta-button:hover {
  transform: translateY(-2px);
  background-color: #ffb94a;
  color: #1a1a1a;
  box-shadow: 0 26px 48px rgba(0, 0, 0, 0.28);
}

.service-card {
  position: relative;
  padding: 28px 26px 30px;
  border: 1px solid rgba(248, 191, 44, 0.08);
  border-radius: 18px;
  background: linear-gradient(
    140deg,
    rgba(24, 24, 24, 0.82) 0%,
    rgba(12, 12, 12, 0.74) 52%,
    rgba(8, 8, 8, 0.68) 100%
  );
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 180ms ease, transform 180ms ease,
    box-shadow 180ms ease, background 220ms ease;
  border-color: rgba(248, 191, 44, 0.35);
}

.service-card:hover {
  border-color: rgba(248, 191, 44, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 36px rgba(12, 12, 12, 0.45);
  background: linear-gradient(
    140deg,
    rgba(28, 28, 28, 0.92) 0%,
    rgba(14, 14, 14, 0.82) 56%,
    rgba(10, 10, 10, 0.78) 100%
  );
}

.service-card__index {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(248, 191, 44, 0.7);
}

.service-card__title {
  font-size: 1.05rem;
  margin: 0;
  color: #f6f6f6;
  line-height: 1.35;
}

.service-card__summary {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(232, 232, 232, 0.72);
}

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

.services__grid.is-expanded .service-card--hidden {
  display: flex;
}

.services__show-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(32px, 5vw, 48px);
}

.services__show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: clamp(12px, 2.5vw, 16px) clamp(32px, 5vw, 48px);
  border: 1px solid rgba(248, 191, 44, 0.4);
  border-radius: 999px;
  background: transparent;
  color: rgba(248, 191, 44, 0.9);
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 220ms ease;
  text-transform: uppercase;
}

.services__show-more-btn:hover {
  background: rgba(248, 191, 44, 0.1);
  border-color: rgba(248, 191, 44, 0.6);
  color: #f8bf2c;
  transform: translateY(-2px);
}

.services__show-more-btn[aria-expanded="true"] .services__show-more-icon {
  transform: rotate(180deg);
}

.services__show-more-icon {
  transition: transform 220ms ease;
  font-size: 1.1em;
}

.hero__foreground {
  position: absolute;
  top: 0;
  left: 50%;
  width: max(1440px, 100vw);
  transform: translate(-50%, 0%);
  pointer-events: none;
  z-index: 1;
}

.hero__content,
.hero__visual {
  position: relative;
  z-index: 2;
}

.hero__visual {
  display: none;
}

.hero__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: clamp(10px, 2vw, 24px);
  box-shadow: 0 32px 60px rgba(26, 36, 45, 0.28);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 115%,
    rgba(248, 168, 32, 0.14),
    transparent 45%
  );
  z-index: 0;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-top: clamp(120px, 24vw, 160px);
    padding-bottom: clamp(64px, 16vw, 96px);
  }

  .hero__title {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}

@media (max-width: 560px) {
  .hero__title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero__description {
    font-size: 0.95rem;
  }

  .hero__cta {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .amenities__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .amenities__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .amenities__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .about__overlay {
    bottom: clamp(28px, 6vw, 64px);
  }
}

@media (max-width: 960px) {
  .about {
    min-height: auto;
    margin: clamp(48px, 12vw, 80px) 0 clamp(42px, 10vw, 72px);
  }

  .about__media {
    min-height: clamp(320px, 68vw, 480px);
    border-radius: clamp(18px, 6vw, 26px);
  }

  .about__overlay {
    position: static;
    transform: none;
    display: block;
    padding: clamp(32px, 8vw, 48px) 0 clamp(38px, 9vw, 56px);
    background-color: #050505;
  }

  .about__container {
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(20px, 7vw, 36px);
    width: min(640px, 96%);
  }

  .about__stats {
    width: 100%;
    gap: clamp(18px, 6vw, 28px);
  }
}

@media (max-width: 640px) {
  .about__title {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .about__content {
    max-width: none;
    width: 100%;
  }

  .about__description {
    font-size: clamp(0.95rem, 3.6vw, 1.02rem);
  }

  .about__stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 7vw, 24px);
  }

  .about-stat {
    min-width: 0;
    padding: clamp(14px, 4vw, 18px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(6, 6, 6, 0.55);
  }

  .about-stat:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
    max-width: clamp(220px, 72vw, 320px);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about__cta-button {
    width: 100%;
    justify-content: center;
  }

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

  .amenity-card {
    min-height: clamp(200px, 58vw, 240px);
  }

  .why-choose-us__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    width: 100%;
  }

  .why-card--feature {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 4 / 3.2;
    border-radius: 22px;
  }
}

@media (max-width: 480px) {
  .about__overlay {
    padding: clamp(28px, 10vw, 44px) 0 clamp(34px, 10vw, 50px);
  }

  .about__badge {
    letter-spacing: 0.24em;
  }

  .about__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(12px, 9vw, 20px);
  }

  .about-stat {
    padding: clamp(12px, 8vw, 18px);
  }

  .about-stat:nth-child(3) {
    max-width: clamp(200px, 80vw, 280px);
  }

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

  .amenity-card {
    min-height: clamp(220px, 78vw, 260px);
    padding: clamp(20px, 8vw, 28px);
  }

  .amenity-card__icon {
    font-size: clamp(2.6rem, 12vw, 3rem);
  }

  .amenity-card__title {
    font-size: clamp(0.95rem, 4.6vw, 1.05rem);
  }

  .why-choose-us {
    padding: clamp(64px, 16vw, 92px) 0;
  }

  .why-choose-us__grid {
    grid-template-columns: 1fr;
    gap: clamp(16px, 8vw, 24px);
  }

  .why-card {
    padding: clamp(18px, 7vw, 24px);
  }

  .why-card--feature {
    aspect-ratio: 4 / 3;
    order: -1;
  }
}

.testimonials {
  padding: clamp(90px, 14vw, 140px) 0;
  background: #ffffff;
  color: #1a1a1a;
}

.testimonials__container {
  display: grid;
  gap: clamp(36px, 6vw, 64px);
}

.testimonials__header {
  display: grid;
  gap: clamp(16px, 3vw, 24px);
  align-content: start;
  position: relative;
}

.testimonials__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(24, 24, 24, 0.55);
}

.testimonials__title {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
  line-height: 1.1;
  color: #121212;
}

.testimonials__subtitle {
  margin: 0;
  max-width: min(620px, 90%);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: rgba(32, 32, 32, 0.7);
}

.testimonials__controls {
  display: inline-flex;
  gap: 14px;
  margin-top: clamp(10px, 2vw, 16px);
}

.testimonials__control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(16, 16, 16, 0.15);
  background: rgba(249, 249, 249, 0.9);
  color: #121212;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease,
    transform 180ms ease, border-color 180ms ease;
}

.testimonials__control:hover {
  background-color: rgba(248, 168, 32, 0.15);
  border-color: rgba(248, 168, 32, 0.5);
  color: #a66a00;
  transform: translateY(-2px);
}

.testimonial-card {
  border-radius: clamp(28px, 5vw, 36px);
  background: linear-gradient(135deg, rgba(248, 168, 32, 0.12) 0%, #ffffff 70%);
  border: 1px solid rgba(248, 168, 32, 0.2);
  padding: clamp(32px, 6vw, 56px);
  display: grid;
  gap: clamp(22px, 4vw, 36px);
  width: min(960px, 100%);
}

.testimonial-card__quote {
  margin: 0;
  font-size: clamp(1.22rem, 3vw, 1.64rem);
  line-height: 1.75;
  font-weight: 400;
  color: rgba(26, 26, 26, 0.94);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
}

.testimonial-card__avatar {
  width: clamp(68px, 11vw, 86px);
  height: clamp(68px, 11vw, 86px);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(248, 168, 32, 0.35);
}

.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-card__name {
  font-size: clamp(1.05rem, 2.4vw, 1.22rem);
  font-weight: 600;
  color: #171717;
}

.testimonial-card__role {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 26, 26, 0.55);
}

.testimonials__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(36px, 8vw, 52px);
}

.testimonials__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3.6vw, 18px) clamp(36px, 6.4vw, 48px);
  border-radius: 999px;
  background: #f8a820;
  color: #161616;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 220ms ease,
    background-color 180ms ease, color 180ms ease;
  box-shadow: 0 16px 34px rgba(248, 168, 32, 0.28);
}

.testimonials__cta-button:hover {
  transform: translateY(-2px);
  background-color: #ffb94a;
  color: #101010;
  box-shadow: 0 22px 48px rgba(248, 168, 32, 0.32);
}

.blog {
  padding: clamp(80px, 12vw, 120px) 0 clamp(90px, 14vw, 130px);
  background: #050505;
  color: #f4f4f4;
}

.blog__container {
  display: grid;
  gap: clamp(42px, 8vw, 60px);
}

.blog__header {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 4vw, 24px);
  background: linear-gradient(
    160deg,
    rgba(30, 30, 30, 0.92) 0%,
    rgba(12, 12, 12, 0.88) 80%
  );
  padding: clamp(28px, 5vw, 46px);
  border-radius: 28px;
  border: 1px solid rgba(248, 191, 44, 0.14);
  box-shadow: 0 26px 52px rgba(5, 5, 5, 0.28);
}

.blog__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(248, 191, 44, 0.62);
}

.blog__badge {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(248, 191, 44, 0.8);
  box-shadow: 0 0 0 4px rgba(248, 191, 44, 0.22);
}

.blog__intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(20px, 6vw, 36px);
  width: 100%;
  flex-wrap: wrap;
}

.blog__title {
  flex: 1 1 420px;
  margin: 0;
  max-width: 680px;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  color: #ffffff;
}

.blog__subtitle {
  flex: 1 1 320px;
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.68;
  color: rgba(240, 240, 240, 0.7);
}

.blog__all-link {
  align-self: flex-start;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(248, 191, 44, 0.6);
  color: #f8bf2c;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-weight: 600;
  transition: background-color 180ms ease, color 180ms ease,
    transform 180ms ease, border-color 180ms ease;
}

.blog__all-link:hover {
  background-color: rgba(248, 191, 44, 0.18);
  border-color: rgba(248, 191, 44, 0.8);
  color: #ffd76a;
  transform: translateY(-2px);
}

.blog__grid {
  display: grid;
  gap: clamp(24px, 4vw, 32px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  background: linear-gradient(
    150deg,
    rgba(20, 20, 20, 0.92) 0%,
    rgba(9, 9, 9, 0.86) 100%
  );
  border-radius: 26px;
  border: 1px solid rgba(248, 191, 44, 0.12);
  box-shadow: 0 18px 36px rgba(5, 5, 5, 0.45);
  overflow: hidden;
  display: grid;
  gap: clamp(18px, 3vw, 24px);
  padding-bottom: clamp(22px, 3vw, 30px);
  transition: transform 200ms ease, box-shadow 220ms ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(248, 191, 44, 0.38);
  box-shadow: 0 32px 52px rgba(4, 4, 4, 0.52);
}

.blog-card__media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.05);
  filter: saturate(1.1);
}

.blog-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 clamp(22px, 3vw, 28px);
  color: rgba(248, 191, 44, 0.66);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-wrap: wrap;
  row-gap: 6px;
}

.blog-card__title {
  margin: 0;
  padding: 0 clamp(22px, 3vw, 28px);
  font-size: clamp(1.32rem, 2.6vw, 1.54rem);
  color: #ffffff;
  line-height: 1.5;
}

.blog-card__excerpt {
  margin: 0;
  padding: 0 clamp(22px, 3vw, 28px);
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(240, 240, 240, 0.7);
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 clamp(22px, 3vw, 28px);
  color: #f8bf2c;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.blog-card__link:hover {
  color: #ffd76a;
  transform: translateX(4px);
}

.blog__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 7vw, 44px);
}

.blog__cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3.6vw, 18px) clamp(36px, 6vw, 48px);
  border-radius: 999px;
  background: #f8a820;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(248, 191, 44, 0.68);
  box-shadow: 0 18px 36px rgba(248, 168, 32, 0.28);
  transition: transform 180ms ease, box-shadow 220ms ease,
    background-color 180ms ease, color 180ms ease;
}

.blog__cta-button:hover {
  transform: translateY(-2px);
  background-color: #ffb94a;
  color: #111;
  box-shadow: 0 24px 44px rgba(248, 168, 32, 0.34);
}

.map-section {
  padding: clamp(72px, 12vw, 120px) 0 clamp(90px, 12vw, 130px);
  background: radial-gradient(
      circle at top right,
      rgba(248, 191, 44, 0.12),
      transparent 58%
    ),
    #f7f7f7;
  color: #151515;
}

.map-section__container {
  display: grid;
  gap: clamp(32px, 6vw, 48px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.map-section__content {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 3vw, 28px);
}

.map-section__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(21, 21, 21, 0.55);
}

.map-section__title {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.1rem);
  line-height: 1.1;
}

.map-section__description {
  margin: 0;
  font-size: clamp(1rem, 2.1vw, 1.16rem);
  line-height: 1.7;
  color: rgba(21, 21, 21, 0.72);
}

.map-section__address {
  font-style: normal;
  line-height: 1.8;
  font-size: 1rem;
  color: rgba(21, 21, 21, 0.82);
}

.map-section__directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 32px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #fbb02d 0%, #f59a0f 100%);
  color: #111111;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 220ms ease,
    background-color 180ms ease, border-color 180ms ease;
  box-shadow: 0 18px 36px rgba(245, 154, 15, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.18);
}

.map-section__directions:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(245, 154, 15, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.24);
  background: linear-gradient(135deg, #ffc145 0%, #f8aa1d 100%);
}

.map-section__map {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 48px rgba(8, 8, 8, 0.12);
  background: #ffffff;
  border: 1px solid rgba(21, 21, 21, 0.08);
  min-height: 420px;
}

.map-section__map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

@media (max-width: 1080px) {
  .map-section__container {
    grid-template-columns: 1fr;
  }

  .map-section__map {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .map-section {
    padding: clamp(56px, 16vw, 84px) 0;
  }

  .map-section__map {
    border-radius: 22px;
    min-height: 320px;
  }

  .map-section__map iframe {
    min-height: 320px;
  }

  .map-section__directions {
    width: 100%;
    justify-content: center;
    box-shadow: 0 16px 32px rgba(245, 154, 15, 0.26),
      0 0 0 1px rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 1080px) {
  .blog__header {
    align-items: center;
    text-align: center;
  }

  .blog__intro {
    flex-direction: column;
    align-items: center;
  }

  .blog__title {
    max-width: 100%;
  }

  .blog__subtitle {
    max-width: 640px;
  }

  .blog__all-link {
    align-self: center;
    margin-left: 0;
  }

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

@media (max-width: 720px) {
  .blog {
    padding-top: clamp(48px, 14vw, 72px);
    padding-bottom: clamp(48px, 14vw, 72px);
  }

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

  .blog-card {
    gap: clamp(16px, 6vw, 22px);
  }

  .blog-card__meta,
  .blog-card__title,
  .blog-card__excerpt,
  .blog-card__link {
    padding: 0 clamp(18px, 6vw, 26px);
  }

  .blog__title {
    font-size: clamp(1.9rem, 7vw, 2.5rem);
    flex: 0 0 auto;
  }

  .blog__subtitle {
    font-size: clamp(0.95rem, 4vw, 1.05rem);
    text-align: center;
    flex: 0 0 auto;
  }

  .blog__all-link {
    width: 100%;
    justify-content: center;
    margin-top: clamp(12px, 5vw, 18px);
  }

  .blog__cta-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .blog__header {
    padding: clamp(18px, 7vw, 28px);
    border-radius: 22px;
  }

  .blog__intro {
    gap: clamp(12px, 7vw, 18px);
    align-items: center;
    text-align: center;
  }

  .blog__eyebrow {
    letter-spacing: 0.2em;
  }

  .blog-card__media {
    aspect-ratio: 16 / 11;
  }

  .blog-card__link {
    justify-content: center;
  }

  .blog__cta-button {
    padding: clamp(14px, 5vw, 18px);
  }
}

.testimonials__viewport {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  gap: 0;
  transition: transform 320ms ease;
  width: 100%;
}

.testimonial-card {
  flex: 0 0 100%;
  padding-inline: clamp(24px, 4vw, 36px);
  box-sizing: border-box;
}

.testimonial-track.is-animating {
  transition: transform 320ms ease;
}

@media (max-width: 820px) {
  .testimonials__controls {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .testimonial-card {
    padding: clamp(28px, 10vw, 42px);
  }

  .testimonial-card__author {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-card__avatar {
    width: clamp(64px, 18vw, 78px);
    height: clamp(64px, 18vw, 78px);
  }

  .testimonials__controls {
    order: 3;
  }
}

body.is-disclaimer-open {
  overflow: hidden;
}

.disclaimer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 6vw, 48px);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
  z-index: 9999;
}

.disclaimer-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.disclaimer-modal__content {
  position: relative;
  width: min(720px, 100%);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  background: linear-gradient(135deg, #071123 0%, #101a2f 60%, #0b101c 100%);
  padding: clamp(28px, 6vw, 48px);
  border-radius: 28px;
  border: 1px solid rgba(248, 191, 44, 0.22);
  box-shadow: 0 32px 88px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.07);
  color: #f1f5f9;
}

.disclaimer-modal__header {
  margin-bottom: clamp(18px, 4vw, 28px);
}

.disclaimer-modal__title {
  font-size: clamp(2rem, 6vw, 2.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: clamp(6px, 2vw, 12px);
}

.disclaimer-modal__subtitle {
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  color: rgba(255, 255, 255, 0.82);
}

.disclaimer-modal__body {
  display: grid;
  gap: clamp(14px, 3vw, 18px);
  font-size: clamp(0.98rem, 3.6vw, 1.05rem);
  line-height: 1.7;
  color: rgba(224, 235, 255, 0.88);
}

.disclaimer-modal__body a {
  color: #f8bf2c;
  text-decoration: underline;
}

.disclaimer-modal__actions {
  margin-top: clamp(22px, 5vw, 32px);
  display: flex;
  justify-content: flex-end;
}

.disclaimer-modal__button {
  padding: clamp(12px, 3.8vw, 16px) clamp(26px, 7vw, 38px);
  border-radius: 999px;
  border: none;
  font-size: clamp(0.98rem, 3.2vw, 1.05rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #f8bf2c;
  color: #04070e;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease,
    background-color 180ms ease;
}

.disclaimer-modal__button:hover,
.disclaimer-modal__button:focus-visible {
  background-color: #ffcc4c;
  box-shadow: 0 18px 44px rgba(248, 191, 44, 0.28);
  transform: translateY(-1px);
}

.disclaimer-modal__close {
  position: absolute;
  top: clamp(18px, 3vw, 24px);
  right: clamp(18px, 3vw, 24px);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(2, 6, 12, 0.6);
  color: #f8bf2c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease, transform 180ms ease;
}

.disclaimer-modal__close:hover,
.disclaimer-modal__close:focus-visible {
  background: rgba(12, 18, 32, 0.9);
  border-color: rgba(248, 191, 44, 0.6);
  box-shadow: 0 16px 36px rgba(248, 191, 44, 0.24);
  transform: translateY(-1px);
}

.disclaimer-modal__close i {
  font-size: 1.35rem;
  line-height: 1;
}

@media (max-width: 640px) {
  .disclaimer-modal__content {
    border-radius: 22px;
  }

  .disclaimer-modal__actions {
    justify-content: center;
  }

  .disclaimer-modal__button {
    width: 100%;
    justify-content: center;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.enquiry-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 6vw, 52px);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
  z-index: 9998;
}

.enquiry-modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.enquiry-modal__content {
  position: relative;
  width: min(540px, 100%);
  background: linear-gradient(140deg, #080b11 0%, #121620 60%, #10131a 100%);
  border-radius: 28px;
  border: 1px solid rgba(248, 191, 44, 0.18);
  padding: clamp(28px, 6vw, 44px);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #f5f5f5;
}

.enquiry-modal__header {
  text-align: center;
  margin-bottom: clamp(22px, 5vw, 32px);
}

.enquiry-modal__title {
  font-size: clamp(2rem, 6vw, 2.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: clamp(8px, 2vw, 12px);
}

.enquiry-modal__subtitle {
  font-size: clamp(0.98rem, 3.4vw, 1.1rem);
  color: rgba(226, 235, 255, 0.78);
}

.enquiry-modal__form {
  display: grid;
  gap: clamp(16px, 4vw, 20px);
}

.enquiry-modal__field {
  width: 100%;
}

.enquiry-modal__field input,
.enquiry-modal__field textarea,
.enquiry-modal__country input {
  width: 100%;
  padding: clamp(14px, 4vw, 18px) clamp(16px, 4vw, 20px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 13, 19, 0.9);
  color: #eaeaea;
  font-size: clamp(0.95rem, 3.4vw, 1.02rem);
  transition: border-color 180ms ease, box-shadow 180ms ease,
    background-color 180ms ease;
}

.enquiry-modal__field input::placeholder,
.enquiry-modal__field textarea::placeholder {
  color: rgba(235, 235, 235, 0.5);
}

.enquiry-modal__field input:focus,
.enquiry-modal__field textarea:focus,
.enquiry-modal__country input:focus {
  outline: none;
  border-color: rgba(248, 191, 44, 0.55);
  box-shadow: 0 0 0 3px rgba(248, 191, 44, 0.18);
  background: rgba(20, 24, 34, 0.95);
}

.enquiry-modal__field--split {
  display: grid;
  grid-template-columns: minmax(110px, 140px) 1fr;
  gap: clamp(12px, 3vw, 16px);
}

.enquiry-modal__country input {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: default;
}

.enquiry-modal__field--textarea textarea {
  resize: vertical;
  min-height: clamp(100px, 24vw, 140px);
}

.enquiry-modal__submit {
  width: 100%;
  padding: clamp(16px, 4.2vw, 18px);
  border-radius: 999px;
  border: none;
  background: #f8bf2c;
  color: #070911;
  font-size: clamp(1rem, 3.6vw, 1.08rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease,
    background-color 180ms ease;
}

.enquiry-modal__submit:hover,
.enquiry-modal__submit:focus-visible {
  background: #ffcc4c;
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(248, 191, 44, 0.28);
  outline: none;
}

.enquiry-modal__close {
  position: absolute;
  top: clamp(18px, 3vw, 22px);
  right: clamp(18px, 3vw, 22px);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(2, 6, 12, 0.6);
  color: #f8bf2c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease,
    box-shadow 180ms ease, transform 180ms ease;
}

.enquiry-modal__close:hover,
.enquiry-modal__close:focus-visible {
  background: rgba(12, 18, 32, 0.9);
  border-color: rgba(248, 191, 44, 0.6);
  box-shadow: 0 16px 36px rgba(248, 191, 44, 0.24);
  transform: translateY(-1px);
}

.enquiry-modal__close i {
  font-size: 1.35rem;
  line-height: 1;
}

@media (max-width: 540px) {
  .enquiry-modal__content {
    border-radius: 22px;
  }

  .enquiry-modal__field--split {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: #a5b2b8;
  color: #f5f7f9;
  padding: clamp(60px, 10vw, 84px) 0 clamp(32px, 6vw, 48px);
}

.site-footer__container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 64px);
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 3vw, 20px);
}

.site-footer__column--about {
  max-width: 480px;
}

.site-footer__heading {
  font-size: clamp(1.6rem, 3.6vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: capitalize;
  margin: 0;
  color: #ffffff;
}

.site-footer__subheading {
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  margin: 0;
  color: #ffffff;
}

.site-footer__description {
  margin: 0;
  font-size: clamp(0.98rem, 2.2vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__social {
  display: flex;
  gap: 14px;
  list-style: none;
  margin: clamp(12px, 3vw, 18px) 0 0;
  padding: 0;
}

.site-footer__social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 18, 24, 0.85);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease,
    color 180ms ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  background: #ffffff;
  color: #0f2230;
  transform: translateY(-3px);
  text-decoration: none;
}

.site-footer__links,
.site-footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(8px, 2.2vw, 12px);
}

.site-footer__links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 160ms ease;
}

.site-footer__links a:hover {
  color: #ffffff;
}

.site-footer__contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
  font-size: clamp(0.98rem, 2.4vw, 1.05rem);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__contact-list i {
  font-size: 1.1rem;
  line-height: 1.2;
  color: #ffffff;
}

.site-footer__contact-list a {
  color: inherit;
  text-decoration: none;
}

.site-footer__contact-list a:hover {
  color: #ffffff;
}

.site-footer__bottom {
  text-align: center;
  margin-top: clamp(40px, 8vw, 60px);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 960px) {
  .site-footer__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-footer__container {
    grid-template-columns: 1fr;
  }

  .site-footer__social {
    justify-content: flex-start;
  }
}

.hero__badge {
  position: absolute;
  right: -3%;
  bottom: -2%;
  width: clamp(120px, 18vw, 180px);
  height: clamp(120px, 18vw, 180px);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero__badge img {
  width: 70%;
  height: auto;
  display: block;
}

@media (max-width: 720px) {
  .hero__badge {
    position: static;
    margin: clamp(24px, 8vw, 32px) auto 0;
  }
}

.enquiry-widget {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 4vw, 28px);
  width: min(320px, 86vw);
  z-index: 999;
  backdrop-filter: blur(18px);
  background: rgba(6, 14, 22, 0.88);
  border-radius: 26px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(248, 191, 44, 0.25);
  padding: clamp(28px, 5vw, 34px) clamp(18px, 4vw, 24px) clamp(20px, 4vw, 28px);
  display: grid;
  gap: clamp(20px, 4vw, 24px);
}

.enquiry-widget__toggle {
  position: absolute;
  top: clamp(10px, 2.6vw, 16px);
  right: clamp(10px, 2.6vw, 16px);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(248, 191, 44, 0.4);
  background: rgba(12, 22, 34, 0.75);
  color: #f8bf2c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease,
    color 160ms ease, transform 160ms ease;
}

.enquiry-widget__toggle:hover,
.enquiry-widget__toggle:focus-visible {
  background: rgba(248, 191, 44, 0.25);
  color: #ffffff;
  border-color: rgba(248, 191, 44, 0.75);
  transform: translateY(-1px);
}

.enquiry-widget__toggle-icon {
  font-size: 1.3rem;
}

.enquiry-widget__body {
  display: block;
  margin-top: clamp(16px, 4vw, 22px);
}

.enquiry-widget__form {
  display: grid;
  gap: clamp(12px, 3vw, 18px);
}

.enquiry-widget__title {
  margin: 0;
  font-size: clamp(1.2rem, 3.4vw, 1.5rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f8bf2c;
}

.enquiry-widget__subtitle {
  margin: 0;
  font-size: clamp(0.9rem, 2.4vw, 1rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.enquiry-widget__field {
  display: block;
}

.enquiry-widget__field input,
.enquiry-widget__field textarea {
  width: 100%;
  padding: clamp(12px, 3vw, 14px);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 22, 34, 0.85);
  color: #ffffff;
  font-size: 0.95rem;
  transition: border-color 160ms ease, box-shadow 180ms ease;
}

.enquiry-widget__field input::placeholder,
.enquiry-widget__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.enquiry-widget__field input:focus,
.enquiry-widget__field textarea:focus {
  outline: none;
  border-color: rgba(248, 191, 44, 0.6);
  box-shadow: 0 0 0 3px rgba(248, 191, 44, 0.18);
  background: rgba(18, 30, 42, 0.92);
}

.enquiry-widget__split {
  display: grid;
  grid-template-columns: minmax(80px, 110px) 1fr;
  gap: clamp(10px, 3vw, 14px);
}

.enquiry-widget__field--code input {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  cursor: default;
}

.enquiry-widget__field--textarea textarea {
  resize: vertical;
}

.enquiry-widget__submit {
  padding: clamp(12px, 3.6vw, 14px) clamp(18px, 6vw, 24px);
  border-radius: 999px;
  border: none;
  background: #f8bf2c;
  color: #121212;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 200ms ease,
    background-color 160ms ease;
}

.enquiry-widget__submit:hover,
.enquiry-widget__submit:focus-visible {
  background: #ffd367;
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(248, 191, 44, 0.32);
}

.enquiry-widget.is-collapsed {
  width: auto;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border: none;
  box-shadow: none;
}

.enquiry-widget.is-collapsed .enquiry-widget__body {
  display: none;
}

.enquiry-widget.is-collapsed .enquiry-widget__toggle {
  position: static;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: #f8bf2c;
  color: #121212;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.enquiry-widget.is-collapsed .enquiry-widget__toggle:hover,
.enquiry-widget.is-collapsed .enquiry-widget__toggle:focus-visible {
  background: #ffd367;
  color: #000f1a;
}

.enquiry-widget.is-manual-open {
  backdrop-filter: blur(18px);
}

@media (max-width: 640px) {
  .enquiry-widget {
    width: min(300px, 88vw);
    right: clamp(12px, 8vw, 18px);
    left: auto;
    transform: none;
    bottom: clamp(16px, 14vw, 28px);
  }
}
