/* ============================================================
   DOMINIC PERFECT SHINE — Main Stylesheet
   Brand: Deep Black + Gold + White
   ============================================================ */

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  /* Brand Colours */
  --gold:          #C9A84C;
  --gold-light:    #E2C070;
  --gold-dark:     #9A7530;
  --gold-glow:     rgba(201, 168, 76, 0.18);
  --bg-black:      #080808;
  --bg-deep:       #0D0D0D;
  --bg-card:       #111111;
  --bg-card2:      #161616;
  --border-subtle: rgba(201, 168, 76, 0.18);
  --text-white:    #F5F5F5;
  --text-muted:    #A0A0A0;
  --text-dim:      #6B6B6B;

  /* Spacing */
  --section-py:  80px;
  --container-w: 1200px;

  /* Typography */
  --font-main:   'Excon', sans-serif;
  --fs-xl:  clamp(2.2rem,  5vw, 4rem);
  --fs-lg:  clamp(1.6rem,  3vw, 2.6rem);
  --fs-md:  clamp(1.1rem,  2vw, 1.5rem);
  --fs-body: 1rem;
  --fs-sm:  0.875rem;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.3s;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--bg-black);
  color: var(--text-white);
  line-height: 1.65;
  font-size: var(--fs-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Page Loader ─────────────────────────────────────────── */
#dps-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
#dps-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.loader-ring {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border-subtle);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Utility ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.section-title {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}

.section-title span {
  color: var(--gold);
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--text-muted);
  max-width: 680px;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* ── Gold Button ─────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4); }
.btn-gold:hover::before { opacity: 1; }
.btn-gold span { position: relative; z-index: 1; }

/* ── Outline Button ──────────────────────────────────────── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn-outline:hover { background: var(--gold); color: #000; }

/* ── WhatsApp Float ──────────────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 800;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
.whatsapp-btn img { width: 30px; height: 30px; }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 1.2rem clamp(1.25rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.navbar.scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border-subtle);
}

.navbar__logo img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar__links a {
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color var(--dur), background var(--dur);
}
.navbar__links a:hover,
.navbar__links a.active {
  color: var(--gold);
  background: var(--gold-glow);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.navbar__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(13, 13, 13, 0.98);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  margin-top: 0.5rem;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: background var(--dur), color var(--dur);
}
.navbar__mobile a:hover, .navbar__mobile a.active {
  background: var(--gold-glow);
  color: var(--gold);
}

@media (max-width: 768px) {
  .navbar__links   { display: none; }
  .navbar__hamburger { display: flex; }
}

.navbar__wrapper {
  display: flex;
  flex-direction: column;
}

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Multi-video carousel */
.hero__media .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__media .hero-slide.active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(253deg, rgba(0,0,0,0) 50%, rgba(8,8,8,0.9) 90%),
    linear-gradient(0deg, rgba(8,8,8,0.88) 0%, rgba(0,0,0,0) 60%);
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 0 0 8vh;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero__badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  width: fit-content;
}

.hero__title {
  font-size: var(--fs-xl);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-white);
}

.hero__subtitle {
  font-size: var(--fs-md);
  color: var(--text-muted);
  font-weight: 300;
}

/* ── About Short ─────────────────────────────────────────── */
.about-short {
  padding: var(--section-py) 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
.about-short p { color: var(--text-muted); max-width: 700px; }

/* ── Services Section ────────────────────────────────────── */
.services-section {
  padding: var(--section-py) 0;
}
.services-section .section-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  group: true;
}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover img { transform: scale(1.07); }

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,8,8,0.9) 0%, rgba(0,0,0,0) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  gap: 0.75rem;
}
.service-card__overlay h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}
.service-card__overlay .btn-outline {
  align-self: flex-start;
  padding: 0.4rem 1.1rem;
  font-size: 0.75rem;
}

/* ── Stats Section ───────────────────────────────────────── */
.stats-section {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-deep));
}
.stats-section::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-item p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Why Us Section ──────────────────────────────────────── */
.whyus-section {
  padding: var(--section-py) 0;
}
.whyus-section .intro-text {
  max-width: 720px;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.whyus-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.whyus-item:last-child { border-bottom: none; }
.whyus-item.reverse { direction: rtl; }
.whyus-item.reverse > * { direction: ltr; }

.whyus-item__img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.whyus-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.whyus-item:hover .whyus-item__img img { transform: scale(1.04); }

.whyus-item__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.whyus-item__text h3 {
  font-size: var(--fs-lg);
  font-weight: 800;
  color: var(--text-white);
}
.whyus-item__text p { color: var(--text-muted); }

@media (max-width: 768px) {
  .whyus-item { grid-template-columns: 1fr; }
  .whyus-item.reverse { direction: ltr; }
}

/* ── Brands Section ──────────────────────────────────────── */
.brands-section {
  padding: var(--section-py) 0;
  overflow: hidden;
}
.brands-section .text-center { text-align: center; max-width: 600px; margin-inline: auto; }
.brands-section .text-center p { color: var(--text-muted); margin-top: 0.75rem; }

.brand-track-wrap {
  margin-top: 3rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #fff 10%, #fff 90%, transparent);
}
.brand-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollTrack 30s linear infinite;
}
.brand-track.reverse { animation-direction: reverse; }
.brand-track img {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.brand-track img:hover { opacity: 1; filter: brightness(0) invert(0.8) sepia(1) saturate(5) hue-rotate(5deg); }
@keyframes scrollTrack {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Gallery Slider ──────────────────────────────────────── */
.gallery-track-wrap {
  margin-top: 1.5rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #fff 8%, #fff 92%, transparent);
}
.gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scrollTrack 40s linear infinite;
}
.gallery-track.reverse { animation-direction: reverse; margin-top: 1rem; }
.gallery-track img {
  height: 220px;
  width: auto;
  border-radius: 12px;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity var(--dur);
}
.gallery-track img:hover { opacity: 1; }

/* ── Before/After Video ──────────────────────────────────── */
.before-after-section {
  padding: var(--section-py) 0;
}

/* Before/After carousel */
.ba-carousel { position: relative; }
.ba-slide { display: none; }
.ba-slide.active { display: block; }
.ba-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.ba-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.ba-dot.active {
  background: var(--gold, #C9A84C);
  transform: scale(1.3);
}
.video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 2rem;
}
.video-wrap video { width: 100%; border-radius: 16px; }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-white);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  background: rgba(0,0,0,0.35);
  transition: background var(--dur);
  border-radius: 16px;
}
.video-play-btn:hover { background: rgba(0,0,0,0.55); }
.video-play-btn svg { width: 48px; height: 48px; }

/* ── Benefits Grid (Coating / PPF pages) ─────────────────── */
.benefits-section {
  padding: var(--section-py) 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.benefit-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.benefit-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}
.benefit-card h4 { font-weight: 700; font-size: 1rem; color: var(--text-white); }
.benefit-card p  { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.5; }

/* ── Packages Section ────────────────────────────────────── */
.packages-section {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.packages-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/Xl6Lwgh06sJD.jpg') center/cover no-repeat;
  filter: brightness(0.12);
}
.packages-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.package-card {
  background: rgba(13,13,13,0.9);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  backdrop-filter: blur(10px);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.package-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}
.package-card.featured {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}
.package-card.featured .pkg-badge {
  display: inline-block;
  padding: 0.2rem 0.75rem;
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  width: fit-content;
}
.pkg-badge { display: none; }
.package-card h3 { font-size: 1.3rem; font-weight: 800; color: var(--text-white); }
.package-card p  { font-size: var(--fs-sm); color: var(--text-muted); }
.package-card .price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
}
.package-card hr { border: none; border-top: 1px solid var(--border-subtle); }
.pkg-features { display: flex; flex-direction: column; gap: 0.6rem; }
.pkg-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.pkg-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Instagram Embed ─────────────────────────────────────── */
.instagram-section {
  padding: var(--section-py) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  padding: 5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand img { height: 56px; width: auto; max-width: 180px; object-fit: contain; margin-bottom: 1.25rem; }
.footer__brand p { color: var(--text-muted); max-width: 380px; font-size: var(--fs-sm); }

.footer__contact { display: flex; flex-direction: column; gap: 1.5rem; }
.footer__contact-group p { font-weight: 700; font-size: var(--fs-sm); color: var(--text-white); margin-bottom: 0.5rem; }
.footer__contact-group a {
  display: block;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  transition: color var(--dur);
}
.footer__contact-group a:hover { color: var(--gold); }

.footer__nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__nav a { font-size: var(--fs-sm); color: var(--text-muted); transition: color var(--dur); }
.footer__nav a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-dim);
}
.footer__bottom a { color: var(--gold); }

/* ── Coating / PPF Hero bg image ─────────────────────────── */
.hero--image .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 50%;
}

/* ── Process Steps ───────────────────────────────────────── */
.process-section {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/u0o2dcQ22GuX.jpg') center/cover no-repeat;
  filter: brightness(0.1);
}
.process-scroll {
  position: relative;
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.process-card {
  flex-shrink: 0;
  width: 220px;
  background: rgba(13,13,13,0.9);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.process-card .step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.process-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-white); }
.process-card p  { font-size: var(--fs-sm); color: var(--text-muted); line-height: 1.5; }

/* ── Scroll animations ───────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ── PPF Comparison Grid ─────────────────────────────────── */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  width: 100%;
}
@media (max-width: 600px) {
  .comparison-grid { grid-template-columns: 1fr; }
}

/* ── Global Mobile Overrides ─────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-py: 56px; }

  /* hero: push content below fixed navbar */
  .hero__content { padding-top: 100px; padding-bottom: 6vh; }

  /* section headings */
  .section-title { font-size: clamp(1.4rem, 7vw, 2rem); }

  /* about-short full-width text */
  .about-short p { max-width: 100%; }

  /* services grid: 2 cols on tablet, 1 col on phone */
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

  /* stats: 2 cols */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* benefits: 1 col */
  .benefits-grid { grid-template-columns: 1fr; }

  /* packages: 1 col */
  .packages-grid { grid-template-columns: 1fr; }

  /* gallery track images smaller */
  .gallery-track img { height: 160px; }

  /* video play button text hide on small */
  .video-play-btn span { display: none; }
}

/* ── Admin login link ────────────────────────────────────── */
.admin-link {
  display: none; /* hidden; navigate manually via /admin */
}
