:root {
  --black: #030303;
  --black-soft: #0b0b0b;
  --charcoal: #151515;
  --gold: #d6ad52;
  --gold-bright: #f4d884;
  --cream: #f7f1df;
  --muted: #b7ad98;
  --line: rgba(244, 216, 132, 0.22);
  --glass: rgba(15, 15, 15, 0.66);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(214, 173, 82, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(214, 173, 82, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
  z-index: -2;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  z-index: 30;
  width: 100%;
  padding: 18px clamp(16px, 4vw, 52px);
  transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(3, 3, 3, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-lockup {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-logo,
.hero-mark img,
.footer-brand img,
.logo-fallback {
  grid-area: 1 / 1;
}

.brand-logo,
.hero-mark img,
.footer-brand img {
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 0 18px rgba(214, 173, 82, 0.42));
}

.logo-fallback {
  display: none;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 28%, rgba(244, 216, 132, 0.24), rgba(0, 0, 0, 0.84));
  color: var(--gold-bright);
  font-family: Cinzel, Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 0 26px rgba(214, 173, 82, 0.22);
}

.hero-mark .logo-fallback {
  width: 92px;
  height: 92px;
  font-size: 1.28rem;
}

.footer-brand .logo-fallback {
  width: 52px;
  height: 52px;
  font-size: 0.84rem;
}

.asset-missing {
  display: none;
}

.asset-missing + .logo-fallback {
  display: grid;
}

.brand-copy strong,
.footer-brand span {
  display: block;
  font-family: Cinzel, Georgia, serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  display: block;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links a {
  position: relative;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold-bright);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold-bright);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 150px clamp(20px, 7vw, 96px) 70px;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28vh;
  background: linear-gradient(to top, var(--black), transparent);
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
  background:
    radial-gradient(circle at 74% 48%, rgba(214, 173, 82, 0.22), transparent 27%),
    linear-gradient(105deg, rgba(0, 0, 0, 0.97) 0%, rgba(0, 0, 0, 0.78) 42%, rgba(0, 0, 0, 0.34) 100%),
    url("gallery-10.jpeg") center/cover;
}

.hero-car {
  position: absolute;
  right: clamp(-120px, -8vw, -20px);
  bottom: 4vh;
  width: min(760px, 68vw);
  aspect-ratio: 16 / 7;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(214,173,82,0.06));
  border-bottom: 3px solid rgba(244, 216, 132, 0.55);
  border-radius: 58% 38% 12px 12px / 72% 72% 12px 12px;
  filter: blur(0.2px) drop-shadow(0 26px 70px rgba(0, 0, 0, 0.8));
  opacity: 0.74;
  animation: floatCar 6s ease-in-out infinite;
}

.light-streak {
  position: absolute;
  width: 42vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0.45;
  animation: sweep 6s ease-in-out infinite;
}

.streak-a {
  top: 36%;
  right: 6%;
}

.streak-b {
  top: 62%;
  right: 20%;
  animation-delay: 1.2s;
}

.hero-content {
  min-width: 0;
  width: 100%;
  max-width: 760px;
}

.hero-mark {
  width: fit-content;
  margin-bottom: 18px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: Cinzel, Georgia, serif;
}

h1 {
  max-width: 850px;
  font-size: clamp(3.1rem, 8vw, 6.8rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text,
.booking-copy p,
.payment-card p,
.service-card p,
.tier-card li,
.site-footer p {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.hero-text {
  max-width: 670px;
  margin: 24px 0 0;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.hero-actions,
.floating-contact,
.payment-card .btn {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  margin-top: 30px;
  background: linear-gradient(135deg, #b88a2a, #f6df91 48%, #9d6d1a);
  color: #070707;
  box-shadow: 0 16px 46px rgba(214, 173, 82, 0.28);
}

.btn-ghost {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
}

.glass-panel,
.tier-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.025));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 640px;
  margin-top: 36px;
  border-radius: 8px;
  overflow: hidden;
}

.hero-stats div {
  padding: 20px;
  background: rgba(0, 0, 0, 0.35);
}

.hero-stats strong {
  display: block;
  color: var(--gold-bright);
  font-size: 1.7rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: clamp(74px, 10vw, 130px) clamp(20px, 7vw, 96px);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.section-intro {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.concierge-cta {
  margin-top: 24px;
}

.service-grid,
.membership-services,
.addon-grid,
.emergency-grid,
.tier-grid,
.gallery-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}

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

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

.service-card,
.mini-card,
.tier-card,
.booking-form,
.payment-card {
  border-radius: 8px;
}

.service-card {
  min-height: 280px;
  padding: 30px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.tier-card:hover,
.gallery-grid figure:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 216, 132, 0.52);
}

.service-card span {
  color: var(--gold);
  font-weight: 800;
}

.service-card h3,
.tier-card h3 {
  margin: 32px 0 14px;
}

.membership {
  background:
    linear-gradient(180deg, rgba(214, 173, 82, 0.05), transparent),
    var(--black-soft);
}

.compact-heading {
  margin-top: clamp(48px, 7vw, 78px);
  margin-bottom: 26px;
}

.compact-heading h2 {
  max-width: 760px;
  font-size: clamp(1.7rem, 3.6vw, 3.1rem);
}

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

.addon-grid span {
  min-height: 84px;
  display: grid;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--cream);
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.addon-grid span:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 216, 132, 0.52);
  background: rgba(214, 173, 82, 0.08);
}

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

.mini-card {
  padding: 24px;
}

.mini-card h3 {
  font-size: 1.05rem;
}

.mini-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

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

.tier-card {
  position: relative;
  padding: 34px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.tier-card.featured {
  background: linear-gradient(145deg, rgba(214, 173, 82, 0.22), rgba(255, 255, 255, 0.045));
}

.tier-card.black-label {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.7), rgba(214, 173, 82, 0.12));
}

.tier-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--black);
  background: var(--gold-bright);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price {
  margin: 18px 0;
  color: var(--gold-bright);
  font-size: 2.6rem;
  font-weight: 800;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

.tier-card ul {
  margin: 0;
  padding: 0 0 0 18px;
}

.tier-action {
  width: 100%;
}

.signature-band {
  padding-block: clamp(44px, 7vw, 82px);
  background:
    linear-gradient(110deg, rgba(214, 173, 82, 0.18), transparent 34%),
    linear-gradient(290deg, rgba(170, 18, 22, 0.16), transparent 32%),
    #070707;
}

.signature-content {
  display: grid;
  grid-template-columns: auto minmax(0, 820px);
  gap: clamp(22px, 5vw, 48px);
  align-items: center;
  max-width: 1120px;
}

.signature-content img,
.payment-logo img {
  border-radius: 8px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(214, 173, 82, 0.32));
}

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

.gallery-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  cursor: zoom-in;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.gallery-grid figure:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.gallery-grid figure:nth-child(n + 13) {
  display: none;
}

.gallery-grid.is-expanded figure {
  display: block;
}

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(8) {
  grid-row: span 2;
}

.gallery-grid figure:nth-child(4),
.gallery-grid figure:nth-child(6),
.gallery-grid figure:nth-child(10),
.gallery-grid figure:nth-child(20),
.gallery-grid figure:nth-child(34) {
  grid-column: span 2;
}

.gallery-grid figure:nth-child(14),
.gallery-grid figure:nth-child(22),
.gallery-grid figure:nth-child(36) {
  grid-row: span 2;
}

.gallery-more {
  margin-top: 28px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-orientation: from-image;
  filter: saturate(0.9) contrast(1.08);
  transition: transform 0.7s ease, filter 0.25s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.12);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 46px);
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox img {
  max-width: min(1120px, 92vw);
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.74), 0 0 32px rgba(214, 173, 82, 0.18);
}

.gallery-lightbox p {
  max-width: min(860px, 90vw);
  margin: 18px 0 0;
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox-close:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.testimonials {
  background:
    linear-gradient(180deg, transparent, rgba(214, 173, 82, 0.055)),
    var(--black);
}

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

.testimonial-card {
  position: relative;
  min-height: 250px;
  padding: 30px;
  border-radius: 8px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.testimonial-card::before {
  content: "5.0";
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 32px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-bright);
  font-weight: 900;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 216, 132, 0.52);
}

.testimonial-card p {
  margin: 0 0 24px;
  color: var(--cream);
  font-size: 1.02rem;
}

.testimonial-card strong {
  display: block;
  color: var(--gold-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
}

.booking-copy {
  max-width: 560px;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

input,
select {
  min-height: 50px;
  border: 1px solid rgba(244, 216, 132, 0.24);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(0, 0, 0, 0.54);
  color: var(--cream);
  font: inherit;
}

input:focus,
select:focus {
  outline: 2px solid rgba(244, 216, 132, 0.38);
  border-color: var(--gold-bright);
}

.booking-form .btn {
  width: 100%;
}

.booking-result {
  min-height: 26px;
  margin: 0;
  color: var(--gold-bright);
}

.booking-text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #070707;
  background: var(--gold-bright);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-text-link[hidden] {
  display: none;
}

.payment-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: clamp(24px, 5vw, 48px);
  position: relative;
  overflow: hidden;
}

.payment-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -15%;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(244, 216, 132, 0.16), transparent 62%);
  pointer-events: none;
}

.payment-copy {
  position: relative;
  z-index: 1;
}

.payment-logo {
  display: inline-flex;
  padding: 8px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
}

.payment-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.payment-highlights span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qr-frame {
  position: relative;
  z-index: 1;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #080808;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 18px 60px rgba(214, 173, 82, 0.18);
  transform: rotate(1deg);
  transition: transform 0.25s ease;
}

.qr-frame:hover {
  transform: rotate(0deg) translateY(-4px);
}

.qr-frame.is-missing::before {
  content: "Add paypalqr.png";
  display: grid;
  place-items: center;
  width: 260px;
  height: 260px;
  border: 1px dashed rgba(0, 0, 0, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, #f8f8f8, #e8d9aa);
  color: #080808;
}

.qr-frame img {
  width: 260px;
  height: 260px;
  object-fit: contain;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 7vw, 96px);
  border-top: 1px solid var(--line);
  background: #030303;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.footer-contact p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-bright);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.footer-links a:hover {
  transform: translateY(-2px);
  border-color: var(--gold-bright);
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.floating-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 66px;
  min-height: 44px;
  border-radius: 999px;
  color: #070707;
  background: var(--gold-bright);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-contact a + a {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.08);
}

.section-watch {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-ready .section-watch {
  opacity: 1;
  transform: translateY(0);
}

.section-watch.is-visible,
.js-ready .section-watch.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatCar {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-12px, -8px, 0); }
}

@keyframes sweep {
  0%, 100% { transform: translateX(0); opacity: 0.18; }
  50% { transform: translateX(-80px); opacity: 0.6; }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(3, 3, 3, 0.94);
    backdrop-filter: blur(18px);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .nav-links a {
    padding: 16px;
    border-bottom: 1px solid rgba(244, 216, 132, 0.12);
  }

  .service-grid,
  .membership-services,
  .addon-grid,
  .emergency-grid,
  .tier-grid,
  .testimonial-grid,
  .booking,
  .payment-card {
    grid-template-columns: 1fr;
  }

  .signature-content {
    grid-template-columns: 1fr;
  }

  .signature-content img {
    width: 112px;
  }

  .hero-content,
  .hero-stats {
    max-width: 100%;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-grid figure,
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(4),
  .gallery-grid figure:nth-child(6),
  .gallery-grid figure:nth-child(8),
  .gallery-grid figure:nth-child(10),
  .gallery-grid figure:nth-child(14),
  .gallery-grid figure:nth-child(20),
  .gallery-grid figure:nth-child(22),
  .gallery-grid figure:nth-child(34),
  .gallery-grid figure:nth-child(36) {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .brand-copy strong {
    max-width: 190px;
    font-size: 0.76rem;
    line-height: 1.15;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-mark img {
    width: 132px;
    height: 132px;
  }

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

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

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

  .payment-card {
    padding-bottom: 110px;
  }

  .gallery-lightbox {
    padding-bottom: 86px;
  }

  .gallery-lightbox img {
    max-height: 68vh;
  }

  .payment-highlights {
    display: grid;
  }

  .qr-frame img {
    width: min(230px, 70vw);
    height: min(230px, 70vw);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact {
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .floating-contact {
    left: 14px;
    right: 14px;
    justify-content: center;
  }

  .floating-contact a {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
