/*
╔══════════════════════════════════════════════════════════════════════╗
║  LATEST SIGNS & DRAW — css/style.css                               ║
║  Mobile-first. Shared across index.html, services.html,            ║
║  contact.html. Zero framework dependency.                          ║
║  Author: COPYDNA for Latest Signs & Draw, Sharjah UAE              ║
╚══════════════════════════════════════════════════════════════════════╝

  TABLE OF CONTENTS
  ─────────────────────────────────────────────────────
  01  CSS CUSTOM PROPERTIES (Design Tokens)
  02  RESET & BASE
  03  TYPOGRAPHY SCALE
  04  LAYOUT — Container
  05  UTILITY CLASSES
  06  SKIP LINK (Accessibility)
  07  BUTTONS
  08  NAVIGATION — Desktop
  09  NAVIGATION — Mobile Drawer
  10  HERO — Full (index.html)
  11  HERO — Inner / Short (services + contact)
  12  BREADCRUMB
  13  TRUST BAR
  14  SECTION HEADERS
  15  SERVICES GRID (index.html)
  16  EQUIPMENT GRID
  17  ABOUT SECTION
  18  GALLERY + LIGHTBOX
  19  TESTIMONIALS
  20  FAQ ACCORDION
  21  HOW TO ORDER (index + contact)
  22  SERVICE SECTIONS (services.html)
  23  SERVICE QUICK-JUMP NAV
  24  FEATURE CARDS
  25  CONTACT PAGE
  26  CTA BANNER
  27  FOOTER
  28  WHATSAPP FAB
  29  WHATSAPP ANIMATION
  30  MEDIA QUERIES
  ─────────────────────────────────────────────────────
*/


/* ═══════════════════════════════════════════════════════════
   01  CSS CUSTOM PROPERTIES
═══════════════════════════════════════════════════════════ */
:root {
  /* Brand Colours */
  --clr-navy:       #0A1F44;
  --clr-navy-mid:   #0d2a5c;
  --clr-navy-light: #1a3a6e;
  --clr-navy-deep:  #060f22;
  --clr-gold:       #C9A84C;
  --clr-gold-dark:  #a8893c;
  --clr-gold-light: #dfc078;
  --clr-gold-pale:  #f5e9c8;
  --clr-wa-green:   #25D366;
  --clr-wa-dark:    #1da851;
  --clr-white:      #ffffff;
  --clr-off-white:  #F7F7F5;
  --clr-cream:      #f0ece0;

  /* Text Colours */
  --clr-text-dark:  #0e1b32;
  --clr-text-body:  #3a3a4a;
  --clr-text-mid:   #5a5a6e;
  --clr-text-light: #8a8a9e;

  /* Semantic */
  --clr-bg-page:    #F7F7F5;
  --clr-bg-dark:    #0A1F44;
  --clr-bg-alt:     #eef1f6;
  --clr-border:     #d8d8e4;
  --clr-border-gold: rgba(201, 168, 76, 0.35);
  --clr-error:      #d32f2f;
  --clr-success:    #25D366;

  /* Typography */
  --font-head:  'Oswald', sans-serif;
  --font-body:  'Inter', sans-serif;

  /* Spacing scale — 4px base */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Borders & Shadows */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  20px;
  --radius-pill: 999px;

  --shadow-sm:  0 1px 4px rgba(10,31,68,0.10);
  --shadow-md:  0 4px 16px rgba(10,31,68,0.14);
  --shadow-lg:  0 8px 32px rgba(10,31,68,0.18);
  --shadow-xl:  0 16px 48px rgba(10,31,68,0.22);
  --shadow-gold: 0 0 0 3px rgba(201,168,76,0.40);

  /* Transitions */
  --trans-fast: 160ms ease;
  --trans-med:  280ms ease;
  --trans-slow: 420ms ease;

  /* Layout */
  --container-max: 1240px;
  --container-pad: 1.25rem;
  --nav-height:    68px;
  --nav-height-lg: 76px;
}


/* ═══════════════════════════════════════════════════════════
   02  RESET & BASE
═══════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--clr-text-body);
  background-color: var(--clr-bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4 {
  overflow-wrap: break-word;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

address {
  font-style: normal;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   03  TYPOGRAPHY SCALE
═══════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--clr-text-dark);
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1rem; }

p  { max-width: 68ch; }


/* ═══════════════════════════════════════════════════════════
   04  LAYOUT — Container
═══════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

@media (min-width: 640px)  { :root { --container-pad: 1.75rem; } }
@media (min-width: 1024px) { :root { --container-pad: 2.5rem;  } }


/* ═══════════════════════════════════════════════════════════
   05  UTILITY CLASSES
═══════════════════════════════════════════════════════════ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-3);
  display: block;
}
.section-label--light { color: var(--clr-gold-light); }

.section-heading {
  font-family: var(--font-head);
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--clr-text-dark);
  line-height: 1.15;
  margin-bottom: var(--sp-4);
}
.section-heading--light { color: var(--clr-white); }
.section-heading--md    { font-size: clamp(1.4rem, 3vw, 2rem); }

.section-header {
  margin-bottom: var(--sp-10);
}
.section-header--center {
  text-align: center;
}
.section-header--center p {
  margin-inline: auto;
}
.section-header--light .section-label  { color: var(--clr-gold-light); }
.section-header--light .section-heading { color: var(--clr-white); }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--trans-fast), color var(--trans-fast);
}
.link-more:hover {
  color: var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
}


/* ═══════════════════════════════════════════════════════════
   06  SKIP LINK (Accessibility)
═══════════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -999px;
  left: var(--sp-4);
  z-index: 9999;
  padding: var(--sp-3) var(--sp-5);
  background: var(--clr-gold);
  color: var(--clr-navy-deep);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
}
.skip-link:focus {
  top: var(--sp-4);
  outline: 3px solid var(--clr-navy);
  outline-offset: 2px;
}


/* ═══════════════════════════════════════════════════════════
   07  BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.7rem 1.5rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background-color var(--trans-fast),
    border-color var(--trans-fast),
    color var(--trans-fast),
    box-shadow var(--trans-fast),
    transform var(--trans-fast);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 3px solid var(--clr-gold);
  outline-offset: 3px;
}

/* Gold (primary) */
.btn--gold {
  background: var(--clr-gold);
  color: var(--clr-navy-deep);
  border-color: var(--clr-gold);
}
.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--clr-gold-dark);
  border-color: var(--clr-gold-dark);
  box-shadow: 0 6px 20px rgba(201,168,76,0.40);
  transform: translateY(-1px);
}

/* WhatsApp green solid */
.btn--wa-solid {
  background: var(--clr-wa-green);
  color: #ffffff;
  border-color: var(--clr-wa-green);
}
.btn--wa-solid:hover,
.btn--wa-solid:focus-visible {
  background: var(--clr-wa-dark);
  border-color: var(--clr-wa-dark);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
  transform: translateY(-1px);
}

/* Navy */
.btn--navy {
  background: var(--clr-navy);
  color: var(--clr-white);
  border-color: var(--clr-navy);
}
.btn--navy:hover {
  background: var(--clr-navy-mid);
  border-color: var(--clr-navy-mid);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Ghost (outlined) */
.btn--ghost {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.55);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}

/* Ghost dark (on light backgrounds) */
.btn--ghost-navy {
  background: transparent;
  color: var(--clr-navy);
  border-color: rgba(10,31,68,0.35);
}
.btn--ghost-navy:hover {
  background: rgba(10,31,68,0.06);
  border-color: var(--clr-navy);
}

/* Sizes */
.btn--lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* Full width on mobile */
.btn--full {
  width: 100%;
}

/* WhatsApp modifier — transparent icon tint on WA-paired buttons */
.btn--wa {
  /* Modifier class placed alongside btn--gold or btn--wa-solid.
     Adds a subtle WA brand reinforcement without overriding base colour. */
  letter-spacing: 0.05em;
}

/* Map button */
.btn--map {
  padding: 0.6rem 1.25rem;
  font-size: 0.825rem;
  background: var(--clr-off-white);
  color: var(--clr-navy);
  border-color: var(--clr-border);
}
.btn--map:hover {
  background: var(--clr-cream);
  border-color: var(--clr-navy);
}


/* ═══════════════════════════════════════════════════════════
   08  NAVIGATION — Desktop
═══════════════════════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  background: var(--clr-navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--trans-med);
}

/* Scrolled state — JS adds .nav--scrolled */
.nav--scrolled {
  box-shadow: 0 2px 20px rgba(10,31,68,0.35);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  height: var(--nav-height);
}

/* Logo */
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* Desktop nav links — hidden on mobile */
.nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-1);
  margin-left: var(--sp-4);
}

.nav__link {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  border-bottom: 2px solid transparent;
  transition:
    color var(--trans-fast),
    border-color var(--trans-fast),
    background var(--trans-fast);
}
.nav__link:hover {
  color: var(--clr-white);
  border-bottom-color: var(--clr-gold);
}
.nav__link--active {
  color: var(--clr-gold);
  border-bottom-color: var(--clr-gold);
  font-weight: 500;
}

/* Nav right group */
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-left: auto;
}

/* Phone — hidden on mobile */
.nav__tel {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: color var(--trans-fast);
}
.nav__tel:hover {
  color: var(--clr-gold);
}
.nav__tel-icon {
  color: var(--clr-gold);
  flex-shrink: 0;
}

/* Nav WhatsApp CTA — hidden below lg */
.nav__wa {
  display: none;
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

/* Burger button */
.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 6px;
  color: var(--clr-white);
  border-radius: var(--radius-sm);
  transition: background var(--trans-fast);
  flex-shrink: 0;
}
.nav__burger:hover {
  background: rgba(255,255,255,0.1);
}
.nav__burger-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--trans-med), opacity var(--trans-fast);
}

/* Burger — open state (JS adds .nav__burger--open) */
.nav__burger--open .nav__burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger--open .nav__burger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__burger--open .nav__burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ═══════════════════════════════════════════════════════════
   09  NAVIGATION — Mobile Drawer
═══════════════════════════════════════════════════════════ */
.mob-nav {
  background: var(--clr-navy-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--trans-med);
}

/* JS adds .mob-nav--open */
.mob-nav--open {
  max-height: 400px;
}

.mob-nav__links {
  padding: var(--sp-4) var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.mob-nav__link {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-md);
  border-left: 3px solid transparent;
  transition:
    background var(--trans-fast),
    color var(--trans-fast),
    border-color var(--trans-fast);
}
.mob-nav__link:hover {
  background: rgba(255,255,255,0.07);
  color: var(--clr-white);
  border-left-color: var(--clr-gold);
}
.mob-nav__link--active {
  color: var(--clr-gold);
  border-left-color: var(--clr-gold);
  background: rgba(201,168,76,0.08);
}

.mob-nav__wa {
  margin: var(--sp-3) var(--container-pad) var(--sp-6);
  font-size: 0.9rem;
}


/* ═══════════════════════════════════════════════════════════
   10  HERO — Full (index.html only)
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--clr-navy-deep);
}

/* Layer 1: Background image */
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.55) saturate(0.85);
}

/* Layer 2: Atmosphere gradient — navy tint from left */
.hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(10,31,68,0.92) 0%,
      rgba(10,31,68,0.78) 40%,
      rgba(10,31,68,0.45) 70%,
      rgba(10,31,68,0.22) 100%
    );
}

/* Layer 3: Dark overlay — extra text legibility */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(6,15,34,0.30) 0%,
      rgba(6,15,34,0.15) 50%,
      rgba(6,15,34,0.55) 100%
    );
}

/* Layer 4: Dot grid texture */
.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image: radial-gradient(rgba(201,168,76,0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Layer 5: Content */
.hero__content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding-block: var(--sp-20);
}

/* Centered variant (services + contact heroes) */
.hero__content--center {
  text-align: center;
}
.hero__content--center p {
  margin-inline: auto;
}
.hero__content--center .hero__btns {
  justify-content: center;
}

/* Eyebrow badge */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-4);
  background: rgba(201,168,76,0.12);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(201,168,76,0.25);
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

/* Hero H1 */
.hero__heading {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
  letter-spacing: -0.01em;
}
.hero__heading--md {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.hero__heading-accent {
  color: var(--clr-gold);
  display: inline;
}

/* Hero tagline / sub */
.hero__tagline,
.hero__sub {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  color: rgba(255,255,255,0.83);
  line-height: 1.75;
  margin-bottom: var(--sp-8);
  max-width: 56ch;
}
.hero__sub--center {
  margin-inline: auto;
  max-width: 52ch;
}

/* Hero buttons */
.hero__btns {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}
.hero__btns--center {
  align-items: center;
}

/* Hero credential pills */
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.pill__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-gold);
  flex-shrink: 0;
}

/* Scroll hint */
.hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: var(--sp-6);
  animation: bounce-down 2.2s ease-in-out infinite;
}
.hero__scroll-text {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════════════
   11  HERO — Inner / Short (services + contact)
═══════════════════════════════════════════════════════════ */
.hero--inner {
  min-height: clamp(360px, 48vh, 560px);
  background: var(--clr-navy);
}

/* Pure navy gradient for inner heroes — no image layer needed */
.hero--inner .hero__atmosphere {
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 100%,
      rgba(201,168,76,0.10) 0%,
      transparent 70%
    ),
    linear-gradient(
      175deg,
      rgba(6,15,34,0.65) 0%,
      rgba(10,31,68,0.05) 100%
    );
}

.hero--inner .hero__content {
  padding-block: var(--sp-16);
}


/* ═══════════════════════════════════════════════════════════
   12  BREADCRUMB
═══════════════════════════════════════════════════════════ */
.breadcrumb {
  margin-bottom: var(--sp-5);
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
  list-style: none;
  justify-content: center;
}
.breadcrumb__item {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.04em;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: '/';
  margin-right: var(--sp-2);
  opacity: 0.55;
}
.breadcrumb__link {
  color: rgba(255,255,255,0.65);
  transition: color var(--trans-fast);
}
.breadcrumb__link:hover { color: var(--clr-gold); }
.breadcrumb__item--active { color: var(--clr-gold); }


/* ═══════════════════════════════════════════════════════════
   13  TRUST BAR
═══════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--clr-navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-block: var(--sp-8);
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6) var(--sp-4);
}

.trust-bar__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.trust-bar__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  margin-top: 2px;
}

.trust-bar__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-bar__number-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.trust-bar__num {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: -0.02em;
}
.trust-bar__num--static {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}

.trust-bar__plus {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-gold);
}

.trust-bar__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  display: block;
  margin-top: 2px;
}


/* ═══════════════════════════════════════════════════════════
   15  SERVICES GRID (index.html preview cards)
═══════════════════════════════════════════════════════════ */
.services {
  padding-block: var(--sp-20);
  background: var(--clr-off-white);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition:
    border-color var(--trans-med),
    box-shadow var(--trans-med),
    transform var(--trans-med);
}
.service-card:hover {
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--clr-gold);
  transform: translateY(-3px);
}

.service-card__head {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(10,31,68,0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-navy);
  flex-shrink: 0;
  transition: background var(--trans-fast), color var(--trans-fast);
}
.service-card:hover .service-card__icon {
  background: var(--clr-navy);
  color: var(--clr-gold);
}

.service-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--clr-text-dark);
}

.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.service-card__item {
  font-size: 0.875rem;
  color: var(--clr-text-mid);
  padding-left: var(--sp-4);
  position: relative;
  line-height: 1.55;
}
.service-card__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-gold);
}

.services__footer {
  text-align: center;
  margin-top: var(--sp-8);
}


/* ═══════════════════════════════════════════════════════════
   16  EQUIPMENT GRID
═══════════════════════════════════════════════════════════ */
.equipment {
  padding-block: var(--sp-20);
  background: var(--clr-navy-deep);
}

.equipment__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

.eq-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: default;
}

.eq-card__media {
  position: absolute;
  inset: 0;
}
.eq-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.eq-card:hover .eq-card__media img {
  transform: scale(1.06);
}

.eq-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(10,31,68,0.20) 0%,
    rgba(10,31,68,0.85) 100%
  );
  transition: background var(--trans-med);
}
.eq-card:hover .eq-card__overlay {
  background: linear-gradient(
    175deg,
    rgba(10,31,68,0.25) 0%,
    rgba(10,31,68,0.90) 100%
  );
}

.eq-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-4);
  z-index: 2;
}

.eq-card__badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.30);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-2);
}

.eq-card__title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 4px;
}

.eq-card__sub {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.4;
}

.eq-card__border-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201,168,76,0);
  transition: border-color var(--trans-med);
  pointer-events: none;
}
.eq-card:hover .eq-card__border-glow {
  border-color: rgba(201,168,76,0.55);
  box-shadow: inset 0 0 20px rgba(201,168,76,0.08);
}


/* ═══════════════════════════════════════════════════════════
   17  ABOUT SECTION
═══════════════════════════════════════════════════════════ */
.about {
  padding-block: var(--sp-20);
  background: var(--clr-white);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
}

/* Stats wall — left column */
.about__stats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.stats-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

.stats-wall__item {
  background: var(--clr-navy);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-5);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform var(--trans-fast), box-shadow var(--trans-fast);
}
.stats-wall__item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.stats-wall__item--hours {
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-navy-mid) 100%);
}

.stats-wall__number-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: var(--sp-1);
}

.stats-wall__num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--clr-white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stats-wall__num--static {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
}

.stats-wall__plus {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}

.stats-wall__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  display: block;
}
.stats-wall__sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.38);
  display: block;
  margin-top: 2px;
}

/* About story + signals — right column */
.about__story {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.about__content p {
  color: var(--clr-text-body);
  font-size: 0.975rem;
  line-height: 1.8;
}
.about__content p + p {
  margin-top: var(--sp-4);
}

/* Trust signals */
.signals {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
}

.signal {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.signal__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(10,31,68,0.07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-navy);
  margin-top: 2px;
}

.signal__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.signal__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  display: block;
}

.signal__desc {
  font-size: 0.825rem;
  color: var(--clr-text-mid);
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════
   18  GALLERY + LIGHTBOX
═══════════════════════════════════════════════════════════ */
.gallery {
  padding-block: var(--sp-20);
  background: var(--clr-off-white);
}

/* Filter tabs */
.gallery__filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
  justify-content: center;
}

.gallery__filter {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-mid);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-pill);
  border: 1px solid var(--clr-border);
  background: var(--clr-white);
  cursor: pointer;
  transition:
    background var(--trans-fast),
    color var(--trans-fast),
    border-color var(--trans-fast),
    box-shadow var(--trans-fast);
}
.gallery__filter:hover {
  background: var(--clr-navy);
  color: var(--clr-white);
  border-color: var(--clr-navy);
}
.gallery__filter--active,
.gallery__filter[aria-selected='true'] {
  background: var(--clr-navy);
  color: var(--clr-gold);
  border-color: var(--clr-navy);
  box-shadow: var(--shadow-sm);
}

/* Gallery grid */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  outline: none;
}
.gallery__item:focus-visible {
  box-shadow: var(--shadow-gold);
}

/* Hidden by gallery.js filter */
.gallery__item[hidden] {
  display: none;
}

.gallery__item-media {
  position: absolute;
  inset: 0;
}
.gallery__item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans-slow);
}
.gallery__item:hover .gallery__item-media img,
.gallery__item:focus-visible .gallery__item-media img {
  transform: scale(1.08);
}

.gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(10,31,68,0.88) 100%
  );
  opacity: 0;
  transition: opacity var(--trans-med);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: var(--sp-4);
  gap: var(--sp-2);
}
.gallery__item:hover .gallery__item-overlay,
.gallery__item:focus-visible .gallery__item-overlay {
  opacity: 1;
}

.gallery__item-label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-white);
  text-align: center;
}

.gallery__item-zoom {
  color: var(--clr-gold);
  flex-shrink: 0;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-8) var(--sp-4);
  visibility: hidden;
  opacity: 0;
  transition:
    opacity var(--trans-med),
    visibility var(--trans-med);
}
.lightbox[aria-hidden='false'] {
  visibility: visible;
  opacity: 1;
}

.lightbox__backdrop {
  position: fixed;
  inset: 0;
  z-index: 9050;
  background: rgba(6,15,34,0.94);
  backdrop-filter: blur(6px);
  visibility: hidden;
  opacity: 0;
  transition:
    opacity var(--trans-med),
    visibility var(--trans-med);
}
.lightbox__backdrop.is-visible {
  visibility: visible;
  opacity: 1;
}

.lightbox__img-wrap {
  max-width: min(90vw, 900px);
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  display: block;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  z-index: 9200;
  color: var(--clr-white);
  background: rgba(10,31,68,0.75);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--trans-fast),
    color var(--trans-fast),
    border-color var(--trans-fast);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--clr-gold);
  color: var(--clr-navy-deep);
  border-color: var(--clr-gold);
}

.lightbox__close { top: var(--sp-4); right: var(--sp-4); }
.lightbox__prev  { left: var(--sp-3); top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: var(--sp-3); top: 50%; transform: translateY(-50%); }

.lightbox__caption {
  position: fixed;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.70);
  text-align: center;
  letter-spacing: 0.04em;
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════════════════
   19  TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.testimonials {
  padding-block: var(--sp-20);
  background: var(--clr-white);
  overflow: hidden;
}

.testi__strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.testi__card {
  background: var(--clr-off-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: box-shadow var(--trans-med), border-color var(--trans-med);
}
.testi__card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--clr-gold);
}

.testi__stars {
  display: flex;
  gap: 3px;
  color: var(--clr-gold);
  font-size: 0.875rem;
  margin-bottom: var(--sp-3);
}

.testi__quote {
  font-size: 0.938rem;
  color: var(--clr-text-body);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: var(--sp-5);
  position: relative;
  padding-left: var(--sp-5);
}
.testi__quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 2.5rem;
  color: var(--clr-gold);
  font-family: var(--font-head);
  line-height: 1;
}

.testi__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.testi__name {
  font-family: var(--font-head);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: block;
}

.testi__role {
  font-size: 0.775rem;
  color: var(--clr-text-light);
  display: block;
}

.testi__verified {
  font-size: 0.7rem;
  color: var(--clr-wa-green);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(37,211,102,0.10);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════════════════
   20  FAQ ACCORDION
═══════════════════════════════════════════════════════════ */
.faq {
  padding-block: var(--sp-20);
  background: var(--clr-off-white);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 800px;
  margin-inline: auto;
}

.faq__item {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}
.faq__item:has(.faq__answer:not([hidden])) {
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-sm);
}

.faq__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  background: transparent;
  font-family: var(--font-head);
  font-size: 0.975rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--clr-text-dark);
  cursor: pointer;
  transition: color var(--trans-fast);
}
.faq__btn:hover { color: var(--clr-navy-mid); }
.faq__btn[aria-expanded='true'] { color: var(--clr-navy); }

.faq__chevron {
  flex-shrink: 0;
  color: var(--clr-gold);
  transition: transform var(--trans-med);
}
.faq__btn[aria-expanded='true'] .faq__chevron {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  line-height: 1.75;
}
.faq__answer[hidden] {
  display: none;
}


/* ═══════════════════════════════════════════════════════════
   21  HOW TO ORDER (index.html) + HOW WE WORK (contact.html)
═══════════════════════════════════════════════════════════ */
.how-to-order,
.how-we-work {
  padding-block: var(--sp-20);
  background: var(--clr-navy);
}
.how-we-work {
  background: var(--clr-off-white);
}
.how-we-work .section-label { color: var(--clr-gold); }
.how-we-work .section-heading { color: var(--clr-text-dark); }

.steps__track {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  max-width: 900px;
  margin-inline: auto;
}

.step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  position: relative;
  transition: background var(--trans-med), border-color var(--trans-med);
}
.step:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(201,168,76,0.40);
}

/* how-we-work on light bg */
.how-we-work .step {
  background: var(--clr-white);
  border-color: var(--clr-border);
}
.how-we-work .step:hover {
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-md);
}
.how-we-work .step__title { color: var(--clr-text-dark); }
.how-we-work .step__body  { color: var(--clr-text-mid); }

.step__number {
  width: 44px;
  height: 44px;
  background: var(--clr-gold);
  color: var(--clr-navy-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--sp-4);
  flex-shrink: 0;
}

.step__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}

.step__body {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  max-width: 52ch;
}

/* Connector arrow between steps */
.step__connector {
  width: 2px;
  height: var(--sp-4);
  background: linear-gradient(180deg, var(--clr-gold) 0%, transparent 100%);
  margin-inline: auto;
  opacity: 0.45;
}

.how-to-order__cta {
  text-align: center;
  margin-top: var(--sp-10);
}
.how-to-order__note {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.50);
  margin-top: var(--sp-4);
  text-align: center;
  font-style: italic;
}


/* ═══════════════════════════════════════════════════════════
   22  SERVICE SECTIONS (services.html)
═══════════════════════════════════════════════════════════ */
.svc-section {
  padding-block: var(--sp-20);
  background: var(--clr-off-white);
}
.svc-section--dark {
  background: var(--clr-navy);
}
.svc-section--alt {
  background: var(--clr-white);
}

.svc-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.svc-section__identity {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.svc-section__icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(10,31,68,0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-navy);
}
.svc-section__icon-wrap--gold {
  background: rgba(201,168,76,0.14);
  color: var(--clr-gold);
}

.svc-section__heading {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--clr-text-dark);
  line-height: 1.12;
}
.svc-section__heading--light { color: var(--clr-white); }

.svc-section__desc {
  font-size: 0.975rem;
  color: var(--clr-text-mid);
  line-height: 1.8;
  max-width: 48ch;
}
.svc-section__desc--light {
  color: rgba(255,255,255,0.72);
}

.svc-section__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}


/* ═══════════════════════════════════════════════════════════
   23  SERVICE QUICK-JUMP NAV (services.html)
═══════════════════════════════════════════════════════════ */
.svc-nav {
  position: sticky;
  top: var(--nav-height);
  z-index: 800;
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 2px 12px rgba(10,31,68,0.06);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.svc-nav::-webkit-scrollbar { display: none; }

.svc-nav__list {
  display: flex;
  gap: 0;
  white-space: nowrap;
  padding-inline: var(--sp-4);
}

.svc-nav__link {
  display: block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-text-mid);
  padding: var(--sp-4) var(--sp-4);
  border-bottom: 2px solid transparent;
  transition:
    color var(--trans-fast),
    border-color var(--trans-fast);
  white-space: nowrap;
}
.svc-nav__link:hover,
.svc-nav__link--active {
  color: var(--clr-navy);
  border-bottom-color: var(--clr-gold);
}


/* ═══════════════════════════════════════════════════════════
   24  FEATURE CARDS (services.html expanded cards)
═══════════════════════════════════════════════════════════ */
.feat-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition:
    border-color var(--trans-med),
    box-shadow var(--trans-med),
    transform var(--trans-med);
}
.feat-card:hover {
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.feat-card--dark {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
.feat-card--dark:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(201,168,76,0.40);
}
.feat-card--highlight {
  background: rgba(10,31,68,0.04);
  border-color: var(--clr-gold);
}

.feat-card__icon {
  width: 38px;
  height: 38px;
  background: rgba(10,31,68,0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-navy);
  margin-bottom: var(--sp-3);
  flex-shrink: 0;
}
.feat-card--dark .feat-card__icon {
  background: rgba(201,168,76,0.10);
  color: var(--clr-gold);
}

.feat-card__title {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--clr-text-dark);
  margin-bottom: var(--sp-2);
}
.feat-card__title--light { color: var(--clr-white); }

.feat-card__body {
  font-size: 0.848rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
}
.feat-card__body--light { color: rgba(255,255,255,0.68); }


/* ═══════════════════════════════════════════════════════════
   25  CONTACT PAGE
═══════════════════════════════════════════════════════════ */

/* Contact hero pills */
.contact-hero__pills {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  align-items: center;
}

.contact-hero__pill {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(6px);
  text-decoration: none;
  transition:
    background var(--trans-fast),
    border-color var(--trans-fast),
    transform var(--trans-fast);
  width: 100%;
  max-width: 360px;
}
.contact-hero__pill:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

.contact-hero__pill--wa {
  border-color: rgba(37,211,102,0.35);
  background: rgba(37,211,102,0.10);
}
.contact-hero__pill--wa:hover {
  background: rgba(37,211,102,0.20);
  border-color: rgba(37,211,102,0.55);
}
.contact-hero__pill--wa svg { color: var(--clr-wa-green); }

.contact-hero__pill--tel {
  border-color: rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.08);
}
.contact-hero__pill--tel:hover {
  background: rgba(201,168,76,0.16);
  border-color: rgba(201,168,76,0.45);
}

.contact-hero__pill--email {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
}

.contact-hero__pill-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: left;
}
.contact-hero__pill-text strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-white);
  display: block;
}
.contact-hero__pill-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  display: block;
}

/* Contact main section */
.contact-main {
  padding-block: var(--sp-20);
  background: var(--clr-off-white);
}

.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
}

/* WhatsApp feature block */
.wa-feature {
  background: var(--clr-white);
  border: 1px solid rgba(37,211,102,0.30);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
  box-shadow: 0 2px 16px rgba(37,211,102,0.08);
}

.wa-feature__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--clr-wa-green);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
}

.wa-feature__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.wa-feature__title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.wa-feature__desc {
  font-size: 0.875rem;
  color: var(--clr-text-mid);
  line-height: 1.7;
  max-width: 48ch;
}

/* Contact detail cards */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-4);
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  transition: border-color var(--trans-fast), box-shadow var(--trans-fast);
}
.contact-detail:hover {
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-sm);
}

.contact-detail__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(10,31,68,0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-navy);
  margin-top: 2px;
}

.contact-detail__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-text-light);
  display: block;
}

.contact-detail__value {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--clr-text-dark);
  display: block;
  text-decoration: none;
  transition: color var(--trans-fast);
}
a.contact-detail__value:hover { color: var(--clr-navy); }
.contact-detail__value--addr {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--clr-text-mid);
  line-height: 1.65;
}

/* Opening hours rows */
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.hours-row--closed .hours-time { color: var(--clr-text-light); }
.hours-day { font-size: 0.875rem; color: var(--clr-text-mid); }
.hours-time { font-size: 0.875rem; font-weight: 600; color: var(--clr-text-dark); }

/* File formats block */
.file-formats {
  padding: var(--sp-4) var(--sp-5);
  background: var(--clr-white);
  border: 1px dashed var(--clr-border);
  border-radius: var(--radius-lg);
}

.file-formats__label {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--clr-text-mid);
  margin-bottom: var(--sp-3);
  letter-spacing: 0.04em;
}
.file-formats__label svg { color: var(--clr-wa-green); flex-shrink: 0; }

.file-formats__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.file-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--clr-navy);
  background: rgba(10,31,68,0.06);
  border: 1px solid rgba(10,31,68,0.14);
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  font-family: monospace;
}

.file-formats__note {
  font-size: 0.78rem;
  color: var(--clr-text-light);
  line-height: 1.6;
  margin-top: var(--sp-2);
  max-width: 100%;
}

/* Contact form */
.contact-form-wrap {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-6);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--sp-8);
}

.contact-form-wrap__header {
  margin-bottom: var(--sp-6);
}

.contact-form-wrap__title {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: var(--sp-2);
}

.contact-form-wrap__sub {
  font-size: 0.875rem;
  color: var(--clr-text-mid);
  max-width: 48ch;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
.form-row--full {
  grid-template-columns: 1fr;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-field__label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  letter-spacing: 0.03em;
}

.form-field__required {
  color: var(--clr-error);
  margin-left: 2px;
}

.form-field__input,
.form-field__select,
.form-field__textarea {
  padding: 0.7rem 1rem;
  background: var(--clr-off-white);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--clr-text-dark);
  transition:
    border-color var(--trans-fast),
    background var(--trans-fast),
    box-shadow var(--trans-fast);
  width: 100%;
  outline: none;
}
.form-field__input:focus,
.form-field__select:focus,
.form-field__textarea:focus {
  border-color: var(--clr-navy);
  background: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(10,31,68,0.10);
}
.form-field__input::placeholder,
.form-field__textarea::placeholder {
  color: var(--clr-text-light);
  font-size: 0.85rem;
}

.form-field__textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.7;
}

/* Custom select wrapper */
.form-field__select-wrap {
  position: relative;
}
.form-field__select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-field__select-arrow {
  position: absolute;
  right: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-text-mid);
  pointer-events: none;
}

.form-field__hint {
  font-size: 0.75rem;
  color: var(--clr-text-light);
  line-height: 1.5;
}

.form-field__error {
  font-size: 0.75rem;
  color: var(--clr-error);
  font-weight: 500;
  display: block;
  min-height: 1.2em;
}

.form-note {
  font-size: 0.8rem;
  color: var(--clr-text-light);
  text-align: center;
  margin-top: var(--sp-3);
  line-height: 1.6;
}
.form-note__link {
  color: var(--clr-wa-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-note__link:hover { color: var(--clr-wa-dark); }

/* Thank you state */
.form-thanks {
  text-align: center;
  padding: var(--sp-12) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.form-thanks[hidden] { display: none; }

.form-thanks__icon {
  font-size: 3rem;
  line-height: 1;
}

.form-thanks__title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-thanks__body {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  line-height: 1.8;
  max-width: 42ch;
}
.form-thanks__body a { color: var(--clr-wa-green); font-weight: 600; }

/* Map section */
.map-section {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-section__header {
  padding: var(--sp-5) var(--sp-6) var(--sp-4);
  border-bottom: 1px solid var(--clr-border);
}

.map-section__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--sp-1);
}

.map-section__addr {
  font-size: 0.8rem;
  color: var(--clr-text-light);
  line-height: 1.5;
}

.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--clr-bg-alt);
}
.map-container__iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-section__actions {
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid var(--clr-border);
  display: flex;
  justify-content: flex-start;
}

/* Trust badge (contact CTA) */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-pill);
}
.trust-badge svg { color: var(--clr-gold); flex-shrink: 0; }

.cta-banner__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}


/* Contact column layout helpers */
.contact-main__left,
.contact-main__right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

/* JS counter — number animates up from 0 */
.js-counter {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
  text-align: right;
}


/* ═══════════════════════════════════════════════════════════
   26  CTA BANNER
═══════════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--clr-navy);
  border-top: 1px solid rgba(201,168,76,0.20);
  padding-block: var(--sp-16);
  position: relative;
  overflow: hidden;
}

/* Subtle gold glow in background */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 120%,
    rgba(201,168,76,0.10) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  align-items: flex-start;
  position: relative;
}

.cta-banner__heading {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: var(--sp-3);
}

.cta-banner__sub {
  font-size: 0.975rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.75;
  max-width: 52ch;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  width: 100%;
}


/* ═══════════════════════════════════════════════════════════
   27  FOOTER
═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--clr-navy-deep);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: var(--sp-16) var(--sp-8);
  color: rgba(255,255,255,0.70);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

.footer__logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  margin-bottom: var(--sp-4);
}

.footer__tagline {
  font-size: 0.86rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 34ch;
  margin-bottom: var(--sp-5);
}

.footer__address {
  font-size: 0.83rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.50);
}
.footer__address a {
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: color var(--trans-fast);
}
.footer__address a:hover { color: var(--clr-gold); }

/* Footer columns */
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer__col--brand {
  /* First column — wider 1.8fr layout set by grid at lg breakpoint */
  display: flex;
  flex-direction: column;
}

/* Footer column heading already styled below */
.footer__col-heading {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-4);
  display: block;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__link {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.58);
  transition: color var(--trans-fast), padding-left var(--trans-fast);
}
.footer__link:hover {
  color: var(--clr-gold);
  padding-left: var(--sp-2);
}

/* Emirates tags */
.footer__emirates {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.footer__emirate {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.03em;
  transition: color var(--trans-fast), border-color var(--trans-fast);
}
.footer__emirate:hover {
  color: var(--clr-gold);
  border-color: rgba(201,168,76,0.35);
}

/* Footer bottom bar */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  max-width: none;
}

.footer__back-top {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.04em;
  transition: color var(--trans-fast);
}
.footer__back-top:hover { color: var(--clr-gold); }


/* ═══════════════════════════════════════════════════════════
   28  WHATSAPP FAB (Floating Action Button)
═══════════════════════════════════════════════════════════ */
.wa-fab {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-5);
  z-index: 2000;
  width: 58px;
  height: 58px;
  background: var(--clr-wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px rgba(37,211,102,0.50),
    0 2px 8px rgba(0,0,0,0.25);
  transition:
    transform var(--trans-fast),
    box-shadow var(--trans-fast),
    background var(--trans-fast);
  text-decoration: none;
}
.wa-fab:hover {
  transform: scale(1.10) translateY(-2px);
  box-shadow:
    0 8px 28px rgba(37,211,102,0.60),
    0 4px 12px rgba(0,0,0,0.25);
  background: var(--clr-wa-dark);
}
.wa-fab:focus-visible {
  outline: 3px solid var(--clr-gold);
  outline-offset: 3px;
}

.wa-fab__tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--clr-navy-deep);
  color: var(--clr-white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-fast);
  box-shadow: var(--shadow-md);
}
.wa-fab__tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--clr-navy-deep);
}
.wa-fab:hover .wa-fab__tooltip {
  opacity: 1;
}


/* ═══════════════════════════════════════════════════════════
   29  WHATSAPP ANIMATION (btn--wa-anim)
   All buttons with this class pulse for 20 seconds on load.
   main.js removes .btn--wa-anim after 20 seconds.
═══════════════════════════════════════════════════════════ */

/* Green glow pulse for WA buttons with gold base */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.60); }
  50%  { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Gold shimmer pulse for gold buttons */
@keyframes gold-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.55); }
  50%  { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

/* FAB pulse */
@keyframes fab-pulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.50), 0 0 0 0 rgba(37,211,102,0.60); }
  50%  { box-shadow: 0 4px 20px rgba(37,211,102,0.50), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.50), 0 0 0 0 rgba(37,211,102,0); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.75); }
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Apply animations */
.btn--wa-anim.btn--gold,
.btn--wa-anim.btn--ghost {
  animation: gold-pulse 1.8s ease-in-out infinite;
}

.btn--wa-anim.btn--wa-solid,
.btn--wa-anim.nav__wa {
  animation: wa-pulse 1.8s ease-in-out infinite;
}

/* Contact hero pills — WA variant */
.btn--wa-anim.contact-hero__pill--wa {
  animation: wa-pulse 1.8s ease-in-out infinite;
}

/* FAB */
.wa-fab.btn--wa-anim {
  animation: fab-pulse 1.8s ease-in-out infinite;
}

/* Honour prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .btn--wa-anim,
  .wa-fab.btn--wa-anim {
    animation: none;
  }
}


/* ═══════════════════════════════════════════════════════════
   30  MEDIA QUERIES — Mobile-First Breakpoints
   320px  →  base (already styled above)
   640px  →  sm   (tablet portrait)
   768px  →  md   (tablet landscape)
   1024px →  lg   (laptop)
   1280px →  xl   (wide desktop)
═══════════════════════════════════════════════════════════ */

/* ── sm: 640px ──────────────────────────── */
@media (min-width: 640px) {

  /* Nav */
  .nav__tel { display: flex; }

  /* Hero buttons in a row */
  .hero__btns {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero__btns--center { justify-content: center; }

  /* Trust bar — 4 columns */
  .trust-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Services grid — 2 columns */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Gallery grid — 3 columns */
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Testimonials — 2 col */
  .testi__strip {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Steps — horizontal */
  .steps__track {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .step { flex: 1; }
  .step__connector {
    width: var(--sp-6);
    height: 2px;
    background: linear-gradient(90deg, var(--clr-gold) 0%, transparent 100%);
    margin-top: 22px;
    flex-shrink: 0;
  }

  /* Contact hero pills — row */
  .contact-hero__pills {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .contact-hero__pill {
    width: auto;
    max-width: none;
  }

  /* Form row — 2 col */
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA banner actions — row */
  .cta-banner__actions {
    flex-direction: row;
    width: auto;
  }

  /* Equipment grid — 4 col on tablet */
  .equipment__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Service sections features — 2 col */
  .svc-section__features {
    grid-template-columns: repeat(2, 1fr);
  }

  /* About stats — keep 2 col, bigger */
  .stats-wall { gap: var(--sp-4); }

  /* Footer — 2 col */
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-8) var(--sp-6);
  }
}

/* ── md: 768px ──────────────────────────── */
@media (min-width: 768px) {

  :root { --nav-height: var(--nav-height-lg); }

  /* Nav WA CTA visible */
  .nav__wa { display: inline-flex; }

  /* Hero full height */
  .hero {
    min-height: calc(100svh - var(--nav-height-lg));
  }

  /* Svc section inner — 2 col */
  .svc-section__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
  }
  .svc-section__inner--reverse > :first-child {
    order: 2;
  }
  .svc-section__inner--reverse > :last-child {
    order: 1;
  }

  /* Contact main — 2 col */
  .contact-main__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
    align-items: start;
  }

  /* About — 2 col */
  .about__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  /* CTA banner inner — row */
  .cta-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .cta-banner__text { flex: 1; max-width: 56ch; }
  .cta-banner__actions { flex-shrink: 0; width: auto; }

  /* Stats wall — larger numbers */
  .stats-wall__num { font-size: clamp(2.2rem, 4vw, 3rem); }

  /* Gallery — keep 3 col */

  /* Map aspect ratio */
  .map-container { aspect-ratio: 16 / 7; }
}

/* ── lg: 1024px ─────────────────────────── */
@media (min-width: 1024px) {

  /* Show desktop nav links */
  .nav__links { display: flex; }

  /* Hide burger */
  .nav__burger { display: none; }

  /* Hero section — larger height */
  .hero__content { padding-block: var(--sp-24); }
  .hero--inner .hero__content { padding-block: var(--sp-20); }

  /* Services — 4 column */
  .services__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Equipment — 4 col (already set at 640px, confirm) */
  .equipment__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Gallery — 4 col */
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Testimonials — 4 col (or 2×2) */
  .testi__strip {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Svc section inner — wider gap */
  .svc-section__inner {
    gap: var(--sp-20);
  }

  /* Contact main — wider gap */
  .contact-main__grid {
    gap: var(--sp-16);
  }

  /* Footer — 4 col */
  .footer__grid {
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: var(--sp-8);
  }

  /* Lightbox nav — wider */
  .lightbox__prev { left: var(--sp-6); }
  .lightbox__next { right: var(--sp-6); }

  /* Contact hero pills — row */
  .contact-hero__pills {
    gap: var(--sp-4);
  }

  /* Trust bar items bigger icon */
  .trust-bar__icon {
    width: 48px;
    height: 48px;
  }

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

/* ── xl: 1280px ─────────────────────────── */
@media (min-width: 1280px) {

  /* Hero larger layout */
  .hero__content { padding-block: var(--sp-24); }

  /* Trust bar — tighter on wide */
  .trust-bar { padding-block: var(--sp-10); }

  /* Svc sections */
  .svc-section { padding-block: var(--sp-24); }

  /* Gallery — keep 4 col */
}

/* ── Print ──────────────────────────────── */
@media print {
  .nav__burger,
  .mob-nav,
  .wa-fab,
  .lightbox,
  .lightbox__backdrop {
    display: none !important;
  }

  .nav {
    position: static;
    background: white;
    color: black;
    border-bottom: 1px solid #ccc;
  }

  .hero {
    min-height: auto;
    background: white;
    color: black;
  }

  body {
    font-size: 12pt;
    color: black;
  }
}
