/* ============================================================
   WELCOME TYRE HOUSE & WHEEL ALIGNMENT CENTER
   MASTER STYLESHEET
   Mobile-First | Monochrome Luxury | Image-Rich | Futuristic
   ============================================================

   01. Custom Properties
   02. Reset & Base
   03. Typography
   04. Utilities
   05. Container
   06. Buttons
   07. Section Labels & Headers
   08. Navbar
   09. Mobile Menu
   10. Hero
   11. Image Strip
   12. About
   13. Split Image
   14. Services
   15. Stats
   16. Gallery
   17. CTA Band
   18. Contact & Form
   19. Footer
   20. Floating Call
   21. Back To Top
   22. Scroll Reveal
   23. Lightbox
   24. Scrollbar
   25. Media Queries
   ============================================================ */


/* ============================================================
   01. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* ── Pure Monochrome ── */
  --black:           #000000;
  --near-black:      #0A0A0A;
  --off-black:       #111111;
  --dark:            #181818;
  --dark-mid:        #222222;
  --charcoal:        #2A2A2A;
  --mid-dark:        #333333;
  --mid:             #555555;
  --grey:            #777777;
  --grey-light:      #999999;
  --silver:          #AAAAAA;
  --muted:           #CCCCCC;
  --light-grey:      #DDDDDD;
  --pale:            #E8E8E8;
  --near-white:      #F0F0F0;
  --off-white:       #F6F6F6;
  --white:           #FFFFFF;

  /* ── Opacity helpers ── */
  --w10:             rgba(255,255,255,0.10);
  --w15:             rgba(255,255,255,0.15);
  --w25:             rgba(255,255,255,0.25);
  --w40:             rgba(255,255,255,0.40);
  --w55:             rgba(255,255,255,0.55);
  --w70:             rgba(255,255,255,0.70);
  --w85:             rgba(255,255,255,0.85);
  --b05:             rgba(0,0,0,0.05);
  --b10:             rgba(0,0,0,0.10);
  --b20:             rgba(0,0,0,0.20);
  --b40:             rgba(0,0,0,0.40);
  --b60:             rgba(0,0,0,0.60);
  --b75:             rgba(0,0,0,0.75);
  --b85:             rgba(0,0,0,0.85);
  --b92:             rgba(0,0,0,0.92);

  /* ── Fonts ── */
  --ff:              'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-display:      'Playfair Display', Georgia, serif;

  /* ── Type Scale ── */
  --fs-2xs:          0.625rem;
  --fs-xs:           0.75rem;
  --fs-sm:           0.875rem;
  --fs-base:         1rem;
  --fs-md:           1.125rem;
  --fs-lg:           1.25rem;
  --fs-xl:           1.5rem;
  --fs-2xl:          1.875rem;
  --fs-3xl:          2.25rem;
  --fs-4xl:          2.75rem;
  --fs-5xl:          3.25rem;
  --fs-6xl:          4rem;
  --fs-7xl:          5rem;
  --fs-8xl:          6rem;

  /* ── Weights ── */
  --fw-light:        300;
  --fw-regular:      400;
  --fw-medium:       500;
  --fw-semi:         600;
  --fw-bold:         700;
  --fw-extra:        800;
  --fw-black:        900;

  /* ── Line Heights ── */
  --lh-none:         1;
  --lh-tight:        1.12;
  --lh-snug:         1.28;
  --lh-base:         1.55;
  --lh-relaxed:      1.72;

  /* ── Letter Spacing ── */
  --ls-tight:       -0.03em;
  --ls-snug:        -0.015em;
  --ls-normal:       0em;
  --ls-wide:         0.04em;
  --ls-wider:        0.08em;
  --ls-widest:       0.14em;
  --ls-ultra:        0.22em;

  /* ── Spacing ── */
  --sp-1:  0.25rem;  --sp-2:  0.5rem;   --sp-3:  0.75rem;
  --sp-4:  1rem;     --sp-5:  1.25rem;  --sp-6:  1.5rem;
  --sp-7:  1.75rem;  --sp-8:  2rem;     --sp-10: 2.5rem;
  --sp-12: 3rem;     --sp-14: 3.5rem;   --sp-16: 4rem;
  --sp-20: 5rem;     --sp-24: 6rem;     --sp-32: 8rem;

  /* ── Radius ── */
  --r-0:   0;
  --r-xs:  2px;
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  16px;
  --r-full:9999px;

  /* ── Shadows ── */
  --sh-xs:     0 1px 2px var(--b05);
  --sh-sm:     0 2px 8px var(--b10);
  --sh-md:     0 4px 20px var(--b10);
  --sh-lg:     0 8px 40px var(--b20);
  --sh-xl:     0 20px 60px var(--b20);
  --sh-2xl:    0 32px 80px rgba(0,0,0,0.28);
  --sh-white:  0 0 40px rgba(255,255,255,0.06);
  --sh-glow:   0 0 60px rgba(255,255,255,0.08);
  --sh-hover:  0 24px 64px var(--b20);

  /* ── Transitions ── */
  --tr-fast:   120ms ease;
  --tr-base:   250ms ease;
  --tr-mid:    400ms ease;
  --tr-slow:   600ms ease;
  --tr-xslow:  800ms ease;
  --tr-xxslow: 1200ms ease;

  /* ── Cubic Beziers ── */
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);

  /* ── Z-Index ── */
  --z-base:    1;
  --z-above:   10;
  --z-sticky:  100;
  --z-overlay: 200;
  --z-modal:   300;
  --z-float:   500;
  --z-top:     999;

  /* ── Layout ── */
  --nav-h:     64px;
  --max-w:     1280px;
  --px:        1.25rem;
  --sec-py:    4rem;
}


/* ============================================================
   02. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--ff);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-base);
  color: var(--white);
  background-color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video {
  display: block;
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter var(--tr-slow);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr-base), opacity var(--tr-base);
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

::selection {
  background: var(--white);
  color: var(--black);
}


/* ============================================================
   03. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--white);
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl);  }
h4 { font-size: var(--fs-lg);  }

p {
  color: var(--grey-light);
  line-height: var(--lh-relaxed);
}

strong, b {
  font-weight: var(--fw-semi);
  color: var(--white);
}

.heading-em {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-normal);
}


/* ============================================================
   04. UTILITIES
   ============================================================ */
.text-center    { text-align: center; }
.sec-pad        { padding-block: var(--sec-py); }
.reveal-up,
.reveal-left,
.reveal-right   { opacity: 0; }


/* ============================================================
   05. CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}


/* ============================================================
   06. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--ff);
  font-weight: var(--fw-semi);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background-color var(--tr-base),
    color            var(--tr-base),
    border-color     var(--tr-base),
    transform        var(--tr-base),
    box-shadow       var(--tr-base);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, var(--w10) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.5s var(--ease-out-expo);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:active { transform: scale(0.97); }

/* White */
.btn--white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--near-white);
  box-shadow: var(--sh-glow);
  transform: translateY(-2px);
}

/* Black */
.btn--black {
  background: var(--black);
  color: var(--white);
  border-color: var(--w25);
}
.btn--black:hover {
  background: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--w40);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Sizes */
.btn--sm { font-size: var(--fs-2xs); padding: 0.5rem 1rem; }
.btn--lg { font-size: var(--fs-sm); padding: 0.9rem 2rem; }
.btn--full { width: 100%; }


/* ============================================================
   07. SECTION LABELS & HEADERS
   ============================================================ */
.sec-label {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}

.sec-label--center { justify-content: center; }

.sec-label__line {
  height: 1px;
  width: 28px;
  background: var(--w40);
  flex-shrink: 0;
}

.sec-label__text {
  font-size: var(--fs-2xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-ultra);
  text-transform: uppercase;
  color: var(--grey);
}

.sec-heading {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-extra);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--white);
  margin-bottom: var(--sp-4);
}

.sec-sub {
  font-size: var(--fs-sm);
  color: var(--grey);
  line-height: var(--lh-relaxed);
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: var(--sp-10);
}

.sec-header { margin-bottom: var(--sp-10); }


/* ============================================================
   08. NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-sticky);
  background: transparent;
  padding-block: var(--sp-4);
  transition:
    background var(--tr-slow),
    box-shadow var(--tr-slow),
    padding    var(--tr-mid),
    transform  var(--tr-mid);
}

.nav.scrolled {
  background: var(--b92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--w10);
  padding-block: var(--sp-3);
}

.nav.nav-hide { transform: translateY(-100%); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.logo__mark {
  width: 40px; height: 40px;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  font-style: italic;
  flex-shrink: 0;
  transition: transform var(--tr-base), box-shadow var(--tr-base);
}

.nav__logo:hover .logo__mark {
  transform: rotate(-6deg) scale(1.06);
  box-shadow: var(--sh-glow);
}

.logo__text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }

.logo__name {
  font-size: 12px;
  font-weight: var(--fw-black);
  letter-spacing: var(--ls-widest);
  color: var(--white);
}

.logo__sub {
  font-size: 8px;
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-ultra);
  text-transform: uppercase;
  color: var(--w40);
}

/* Desktop Nav */
.nav__menu { display: none; }

.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__link {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--w70);
  padding: var(--sp-2) var(--sp-3);
  position: relative;
  transition: color var(--tr-base);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  width: 50%; height: 1px;
  background: var(--white);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform var(--tr-base);
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link--active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.nav__phone {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wide);
  color: var(--w70);
}

.nav__phone i { font-size: 10px; }
.nav__phone:hover { color: var(--white); }

.nav__actions > .btn--white { display: none; }

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  padding: 4px;
}

.burger__line {
  width: 100%; height: 1.5px;
  background: var(--white);
  transition: transform var(--tr-mid), opacity var(--tr-fast);
  transform-origin: center;
}

.burger.open .burger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open .burger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open .burger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   09. MOBILE MENU
   ============================================================ */
.mob-nav {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--near-black);
  border-top: 1px solid var(--w10);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--tr-slow);
}

.mob-nav.open { max-height: 480px; }

.mob-nav__inner {
  padding: var(--sp-6) var(--px) var(--sp-8);
}

.mob-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  margin-bottom: var(--sp-6);
}

.mob-nav__link {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--w70);
  padding: var(--sp-3) var(--sp-4);
  transition: color var(--tr-base), background var(--tr-base);
}

.mob-nav__link:hover {
  color: var(--white);
  background: var(--w10);
}

.mob-nav__foot {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--w10);
}

.mob-nav__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--white);
  padding: var(--sp-3);
}


/* ============================================================
   10. HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: grayscale(100%) brightness(0.45) contrast(1.15);
  animation: heroZoom 22s var(--ease-in-out) alternate infinite;
}

@keyframes heroZoom {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1);    }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--b60) 0%, transparent 30%),
    linear-gradient(to top, var(--black) 0%, transparent 50%),
    linear-gradient(135deg, var(--b85) 0%, transparent 60%);
}

/* Content */
.hero__content {
  position: relative;
  z-index: var(--z-base);
  padding-top: calc(var(--nav-h) + var(--sp-12));
  padding-bottom: var(--sp-20);
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--w55);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-ultra);
  text-transform: uppercase;
  margin-bottom: var(--sp-8);
}

.hero__badge-line {
  width: 32px; height: 1px;
  background: var(--w40);
}

/* Heading */
.hero__heading {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--white);
  margin-bottom: var(--sp-6);
  text-shadow: 0 4px 40px var(--b40);
}

.hero__heading-em {
  display: block;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: var(--fw-medium);
  color: var(--w85);
  letter-spacing: 0;
}

/* Subtext */
.hero__sub {
  font-size: var(--fs-sm);
  color: var(--w55);
  line-height: var(--lh-relaxed);
  max-width: 460px;
  margin-bottom: var(--sp-8);
}

/* CTA */
.hero__cta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* Scroll */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  z-index: var(--z-base);
  animation: scrollFloat 2.5s ease-in-out infinite;
}

.scroll-mouse {
  width: 18px; height: 30px;
  border: 1.5px solid var(--w25);
  border-radius: var(--r-full);
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-wheel {
  width: 2px; height: 6px;
  background: var(--white);
  border-radius: var(--r-full);
  animation: wheelDrop 2s ease-in-out infinite;
}

.scroll-label {
  font-size: 8px;
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-ultra);
  text-transform: uppercase;
  color: var(--w25);
}

@keyframes scrollFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(5px); }
}

@keyframes wheelDrop {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(9px); }
}


/* ============================================================
   11. IMAGE STRIP
   ============================================================ */
.img-strip {
  position: relative;
  overflow: hidden;
}

.img-strip__inner {
  position: relative;
}

.img-strip__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.35) contrast(1.1);
  transition: transform var(--tr-xxslow);
}

.img-strip:hover .img-strip__img { transform: scale(1.03); }

.img-strip__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--b85) 0%, var(--b40) 60%, var(--b75) 100%);
}

.img-strip__text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--sp-3);
}

.img-strip__label {
  font-size: var(--fs-2xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-ultra);
  text-transform: uppercase;
  color: var(--w40);
}

.img-strip__quote {
  font-family: var(--ff-display);
  font-size: var(--fs-lg);
  font-style: italic;
  font-weight: var(--fw-regular);
  color: var(--w70);
  letter-spacing: 0;
  line-height: var(--lh-snug);
}

.img-strip__quote--lg { font-size: var(--fs-xl); }

.img-strip--tall .img-strip__img { height: 320px; }


/* ============================================================
   12. ABOUT
   ============================================================ */
.about { background: var(--near-black); }

.about__grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-12);
}

.about__img-frame {
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-xl);
}

.about__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.55) contrast(1.15);
  transition: transform var(--tr-xslow), filter var(--tr-slow);
}

.about__img-frame:hover .about__img {
  transform: scale(1.03);
  filter: grayscale(100%) brightness(0.65) contrast(1.1);
}

/* Rating */
.about__rating {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  padding: var(--sp-4) var(--sp-5);
  background: var(--w10);
  border: 1px solid var(--w10);
  width: fit-content;
}

.rating__stars {
  display: flex;
  gap: 2px;
}

.rating__stars i {
  color: var(--white);
  font-size: var(--fs-sm);
}

.rating__num {
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--white);
  line-height: 1;
}

.rating__label {
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--grey);
}

.about__lead {
  font-size: var(--fs-base);
  color: var(--grey-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}

.about__body {
  font-size: var(--fs-sm);
  color: var(--grey);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-8);
}

/* Address */
.about__address {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-5);
  background: var(--off-black);
  border: 1px solid var(--w10);
  margin-bottom: var(--sp-8);
}

.addr__row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--grey);
}

.addr__row i {
  color: var(--white);
  font-size: var(--fs-xs);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.addr__row a {
  color: var(--white);
  font-weight: var(--fw-medium);
}

.addr__row a:hover { opacity: 0.7; }


/* ============================================================
   13. SPLIT IMAGE
   ============================================================ */
.split-img {
  display: flex;
  flex-direction: column;
}

.split-img__left,
.split-img__right {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.split-img__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.35) contrast(1.1);
  transition: transform var(--tr-xslow), filter var(--tr-slow);
  position: absolute;
  inset: 0;
}

.split-img__left:hover .split-img__photo,
.split-img__right:hover .split-img__photo {
  transform: scale(1.04);
  filter: grayscale(100%) brightness(0.45) contrast(1.1);
}

.split-img__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--b85) 0%, var(--b20) 100%);
}

.split-img__label {
  position: absolute;
  bottom: var(--sp-5);
  left: var(--sp-5);
  z-index: var(--z-base);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.split-img__label span {
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  letter-spacing: var(--ls-ultra);
  text-transform: uppercase;
  color: var(--w55);
}

.split-img__label strong {
  font-size: var(--fs-lg);
  font-weight: var(--fw-extra);
  letter-spacing: var(--ls-tight);
  color: var(--white);
}


/* ============================================================
   14. SERVICES
   ============================================================ */
.services { background: var(--black); }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}

.svc-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  cursor: default;
}

.svc-card__bg {
  position: absolute;
  inset: 0;
}

.svc-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.3) contrast(1.15);
  transition: transform var(--tr-xslow), filter var(--tr-slow);
}

.svc-card:hover .svc-card__img {
  transform: scale(1.06);
  filter: grayscale(100%) brightness(0.4) contrast(1.1);
}

.svc-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--b92) 0%, var(--b40) 50%, var(--b20) 100%);
  transition: background var(--tr-slow);
}

.svc-card:hover .svc-card__overlay {
  background: linear-gradient(to top, var(--b92) 0%, var(--b60) 50%, var(--b40) 100%);
}

.svc-card__body {
  position: relative;
  z-index: var(--z-base);
  padding: var(--sp-6);
  width: 100%;
}

.svc-card__icon {
  width: 42px; height: 42px;
  border: 1.5px solid var(--w25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-md);
  color: var(--white);
  margin-bottom: var(--sp-4);
  transition: background var(--tr-base), border-color var(--tr-base);
}

.svc-card:hover .svc-card__icon {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.svc-card__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: var(--sp-2);
  letter-spacing: var(--ls-snug);
}

.svc-card__text {
  font-size: var(--fs-xs);
  color: var(--w55);
  line-height: var(--lh-relaxed);
  max-width: 280px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--tr-mid), transform var(--tr-mid);
}

.svc-card:hover .svc-card__text {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile always visible */
@media (max-width: 767px) {
  .svc-card__text {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* ============================================================
   15. STATS
   ============================================================ */
.stats {
  position: relative;
  padding-block: var(--sp-16);
  overflow: hidden;
}

.stats__bg {
  position: absolute;
  inset: 0;
}

.stats__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.15) contrast(1.2);
}

.stats__overlay {
  position: absolute;
  inset: 0;
  background: var(--b85);
}

.stats__inner {
  position: relative;
  z-index: var(--z-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-8);
}

.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat__num {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-black);
  color: var(--white);
  line-height: 1;
  letter-spacing: var(--ls-tight);
  font-feature-settings: "tnum";
}

.stat__plus {
  font-size: var(--fs-xl);
  font-weight: var(--fw-black);
  color: var(--white);
}

.stat__label {
  font-size: var(--fs-2xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-ultra);
  text-transform: uppercase;
  color: var(--w40);
  margin-top: var(--sp-1);
}

.stat__rule {
  display: none;
  width: 1px; height: 48px;
  background: var(--w10);
  align-self: center;
}


/* ============================================================
   16. GALLERY
   ============================================================ */
.gallery { background: var(--near-black); }

.gal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3);
}

.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--off-black);
}

.gal-item__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.45) contrast(1.1);
  transition: transform var(--tr-xslow), filter var(--tr-slow);
}

.gal-item:hover .gal-item__img {
  transform: scale(1.06);
  filter: grayscale(100%) brightness(0.55) contrast(1.1);
}

.gal-item__overlay {
  position: absolute;
  inset: 0;
  background: var(--b60);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tr-mid);
}

.gal-item__overlay i {
  font-size: var(--fs-xl);
  color: var(--white);
  transform: scale(0.7);
  transition: transform var(--tr-mid);
}

.gal-item:hover .gal-item__overlay { opacity: 1; }
.gal-item:hover .gal-item__overlay i { transform: scale(1); }


/* ============================================================
   17. CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-20);
  background: var(--black);
}

.cta-band__bg {
  position: absolute;
  inset: 0;
}

.cta-band__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.2) contrast(1.2);
}

.cta-band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--b92) 0%, var(--b75) 50%, var(--b85) 100%);
}

.cta-band__content {
  position: relative;
  z-index: var(--z-base);
  text-align: center;
}

.cta-band__eyebrow {
  display: block;
  font-size: var(--fs-2xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-ultra);
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: var(--sp-5);
}

.cta-band__heading {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-black);
  color: var(--white);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  margin-bottom: var(--sp-5);
}

.cta-band__sub {
  font-size: var(--fs-sm);
  color: var(--w55);
  margin: 0 auto var(--sp-8);
  max-width: 400px;
}

.cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}


/* ============================================================
   18. CONTACT & FORM
   ============================================================ */
.contact { background: var(--black); }

.contact__grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
}

/* Info Cards */
.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.c-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--off-black);
  border: 1px solid var(--w10);
  transition: border-color var(--tr-base);
}

.c-card:hover { border-color: var(--w25); }

.c-card__icon {
  width: 42px; height: 42px;
  border: 1.5px solid var(--w15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: var(--fs-md);
  flex-shrink: 0;
  transition: background var(--tr-base), border-color var(--tr-base);
}

.c-card:hover .c-card__icon {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.c-card strong {
  display: block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: var(--sp-1);
}

.c-card span {
  font-size: var(--fs-sm);
  color: var(--grey-light);
  display: block;
  line-height: 1.6;
}

.c-card__link {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--white);
  display: block;
  line-height: 1.6;
  transition: opacity var(--tr-base);
}

.c-card__link:hover { opacity: 0.6; }

/* Map */
.contact__map {
  border: 1px solid var(--w10);
  overflow: hidden;
}

.map__placeholder {
  background: var(--off-black);
  padding: var(--sp-10) var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-3);
}

.map__placeholder i {
  font-size: var(--fs-3xl);
  color: var(--w25);
}

.map__placeholder span {
  font-size: var(--fs-sm);
  color: var(--grey);
}

/* Call Button */
.contact__call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  padding: var(--sp-5);
  background: var(--white);
  color: var(--black);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  transition: background var(--tr-base), box-shadow var(--tr-base), transform var(--tr-base);
}

.contact__call-btn:hover {
  background: var(--near-white);
  box-shadow: var(--sh-glow);
  transform: translateY(-2px);
}

.contact__call-btn i {
  font-size: var(--fs-md);
}

/* ── Form ── */
.contact__form-wrap {
  background: var(--near-black);
  border: 1px solid var(--w10);
  padding: var(--sp-8) var(--sp-5);
}

.inq-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-head { margin-bottom: var(--sp-2); }

.form-head__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-extra);
  color: var(--white);
  margin-bottom: var(--sp-2);
  letter-spacing: var(--ls-tight);
}

.form-head__sub {
  font-size: var(--fs-sm);
  color: var(--grey);
  margin: 0;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.fg__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semi);
  color: var(--w70);
}

.fg__req { color: var(--white); margin-left: 2px; }

.fg__wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.fg__wrap--ta { align-items: flex-start; }

.fg__icon {
  position: absolute;
  left: var(--sp-4);
  color: var(--grey);
  font-size: var(--fs-sm);
  pointer-events: none;
  z-index: 1;
  transition: color var(--tr-base);
}

.fg__icon--top { top: var(--sp-4); }

.fg__input,
.fg__select,
.fg__textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4) var(--sp-3) 2.6rem;
  border: 1px solid var(--w15);
  border-bottom: 2px solid var(--w25);
  background: transparent;
  font-size: var(--fs-sm);
  color: var(--white);
  transition:
    border-color var(--tr-base),
    box-shadow   var(--tr-base);
  appearance: none;
  -webkit-appearance: none;
}

.fg__input::placeholder,
.fg__textarea::placeholder {
  color: var(--grey);
}

.fg__input:focus,
.fg__select:focus,
.fg__textarea:focus {
  outline: none;
  border-color: var(--w40);
  border-bottom-color: var(--white);
  box-shadow: 0 2px 0 0 var(--white);
}

.fg__wrap:has(:focus) .fg__icon { color: var(--white); }

/* Select */
.fg__wrap--select { position: relative; }
.fg__select { padding-right: 2.5rem; cursor: pointer; }

.fg__arrow {
  position: absolute;
  right: var(--sp-4);
  color: var(--grey);
  font-size: var(--fs-xs);
  pointer-events: none;
}

/* Textarea */
.fg__textarea {
  resize: vertical;
  min-height: 100px;
  padding-top: var(--sp-4);
}

/* Validation */
.fg__input.is-invalid,
.fg__select.is-invalid {
  border-bottom-color: var(--white);
  box-shadow: 0 2px 0 0 var(--white);
}

.fg__input.is-valid,
.fg__select.is-valid {
  border-bottom-color: var(--grey);
}

.fg__error {
  font-size: var(--fs-xs);
  color: var(--white);
  font-weight: var(--fw-medium);
  min-height: 1em;
}

/* Status */
.form-status {
  padding: var(--sp-4);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  display: none;
}

.form-status.success {
  display: block;
  background: var(--w10);
  border: 1px solid var(--w25);
  color: var(--white);
}

.form-status.error {
  display: block;
  background: var(--w10);
  border: 1px solid var(--w25);
  color: var(--white);
}


/* ============================================================
   19. FOOTER
   ============================================================ */
.footer { background: var(--black); }

.footer__main {
  padding-block: var(--sp-16) var(--sp-10);
  border-top: 1px solid var(--w10);
  border-bottom: 1px solid var(--w10);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
}

/* Logo */
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.logo__mark--ft { width: 38px; height: 38px; }
.logo__name--ft { color: var(--white); }
.logo__sub--ft  { color: var(--w25); }

.footer__logo:hover .logo__mark--ft {
  transform: rotate(-6deg) scale(1.06);
  box-shadow: var(--sh-glow);
}

.footer__desc {
  font-size: var(--fs-sm);
  color: var(--grey);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-6);
  max-width: 270px;
}

.footer__socials {
  display: flex;
  gap: var(--sp-3);
}

.footer__social {
  width: 36px; height: 36px;
  border: 1px solid var(--w10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w40);
  font-size: var(--fs-sm);
  transition: all var(--tr-base);
}

.footer__social:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--sh-glow);
}

/* Columns */
.footer__heading {
  font-size: var(--fs-2xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-ultra);
  text-transform: uppercase;
  color: var(--w55);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  position: relative;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 18px; height: 1px;
  background: var(--w40);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__links a {
  font-size: var(--fs-sm);
  color: var(--w40);
  transition: color var(--tr-base), padding-left var(--tr-base);
}

.footer__links a:hover {
  color: var(--white);
  padding-left: var(--sp-1);
}

/* Address */
.footer__addr {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}

.footer__addr-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.footer__addr-row i {
  color: var(--white);
  font-size: var(--fs-xs);
  width: 14px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__addr-row span,
.footer__addr-row a {
  font-size: var(--fs-sm);
  color: var(--w40);
  line-height: 1.6;
  transition: color var(--tr-base);
}

.footer__addr-row a:hover { color: var(--white); }

/* Hours */
.footer__hours {
  padding: var(--sp-4) var(--sp-5);
  background: var(--w10);
  border: 1px solid var(--w10);
}

.footer__hours-title {
  font-size: var(--fs-2xs);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-3);
}

.footer__hours p {
  font-size: var(--fs-xs);
  color: var(--w40);
  margin: 0;
  line-height: 1.9;
}

/* Bottom */
.footer__bottom {
  padding-block: var(--sp-6);
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
}

.footer__bottom-inner p {
  font-size: var(--fs-xs);
  color: var(--w25);
  margin: 0;
  line-height: 1.7;
}

.footer__credits {
  color: var(--w15) !important;
}

.footer__credits strong {
  color: var(--w40);
  font-weight: var(--fw-semi);
}


/* ============================================================
   20. FLOATING CALL
   ============================================================ */
.float-call {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: var(--z-float);
  width: 52px; height: 52px;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  box-shadow: var(--sh-glow), var(--sh-lg);
  transition: transform var(--tr-base), box-shadow var(--tr-base);
  animation: callFloat 3s ease-in-out infinite;
}

.float-call:hover {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(255,255,255,0.15), var(--sh-xl);
  animation: none;
}

.float-call__tip {
  position: absolute;
  right: calc(100% + var(--sp-3));
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--black);
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semi);
  white-space: nowrap;
  padding: var(--sp-2) var(--sp-3);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--tr-base);
}

.float-call__tip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--white);
}

.float-call:hover .float-call__tip { opacity: 1; }

@keyframes callFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}


/* ============================================================
   21. BACK TO TOP
   ============================================================ */
.btt {
  position: fixed;
  bottom: calc(var(--sp-6) + 60px);
  right: var(--sp-6);
  z-index: var(--z-float);
  width: 40px; height: 40px;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
  box-shadow: var(--sh-glow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--tr-base), transform var(--tr-base), background var(--tr-base);
}

.btt.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.btt:hover {
  background: var(--near-white);
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(255,255,255,0.12);
}


/* ============================================================
   22. SCROLL REVEAL
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Stagger */
.svc-grid .svc-card:nth-child(1) { transition-delay: 0ms; }
.svc-grid .svc-card:nth-child(2) { transition-delay: 80ms; }
.svc-grid .svc-card:nth-child(3) { transition-delay: 160ms; }
.svc-grid .svc-card:nth-child(4) { transition-delay: 240ms; }
.svc-grid .svc-card:nth-child(5) { transition-delay: 320ms; }
.svc-grid .svc-card:nth-child(6) { transition-delay: 400ms; }

.gal-grid .gal-item:nth-child(1) { transition-delay: 0ms; }
.gal-grid .gal-item:nth-child(2) { transition-delay: 60ms; }
.gal-grid .gal-item:nth-child(3) { transition-delay: 120ms; }
.gal-grid .gal-item:nth-child(4) { transition-delay: 180ms; }
.gal-grid .gal-item:nth-child(5) { transition-delay: 240ms; }
.gal-grid .gal-item:nth-child(6) { transition-delay: 300ms; }
.gal-grid .gal-item:nth-child(7) { transition-delay: 360ms; }
.gal-grid .gal-item:nth-child(8) { transition-delay: 420ms; }

.hero__content .reveal-up:nth-child(1) { transition-delay: 300ms; }
.hero__content .reveal-up:nth-child(2) { transition-delay: 500ms; }
.hero__content .reveal-up:nth-child(3) { transition-delay: 700ms; }
.hero__content .reveal-up:nth-child(4) { transition-delay: 900ms; }


/* ============================================================
   23. LIGHTBOX (JS injected, CSS ready)
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--tr-mid), visibility var(--tr-mid);
}

.lightbox.active { opacity: 1; visibility: visible; }

.lightbox__bg {
  position: absolute;
  inset: 0;
  background: var(--b92);
  backdrop-filter: blur(6px);
}

.lightbox__wrap {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 960px;
}

.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  margin: auto;
  display: block;
  box-shadow: var(--sh-2xl);
  transform: scale(0.92);
  transition: transform var(--tr-mid) var(--ease-out-expo);
  filter: grayscale(100%) brightness(0.7) contrast(1.1);
}

.lightbox.active .lightbox__img { transform: scale(1); }

.lightbox__close {
  position: absolute;
  top: -48px; right: 0;
  width: 40px; height: 40px;
  background: var(--w10);
  border: 1px solid var(--w15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-md);
  cursor: pointer;
  transition: background var(--tr-base), transform var(--tr-base);
}

.lightbox__close:hover {
  background: var(--white);
  color: var(--black);
  transform: rotate(90deg);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: var(--w10);
  border: 1px solid var(--w15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-base);
  cursor: pointer;
  z-index: 2;
  transition: background var(--tr-base);
}

.lightbox__nav:hover { background: var(--white); color: var(--black); }
.lightbox__nav--prev { left: -56px; }
.lightbox__nav--next { right: -56px; }

.lightbox__count {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wider);
  color: var(--w40);
}

@media (max-width: 767px) {
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__close { top: -40px; right: 4px; }
  .lightbox__nav { width: 36px; height: 36px; font-size: var(--fs-sm); }
}


/* ============================================================
   24. SCROLLBAR
   ============================================================ */
::-webkit-scrollbar         { width: 5px; }
::-webkit-scrollbar-track   { background: var(--black); }
::-webkit-scrollbar-thumb   { background: var(--w25); }
::-webkit-scrollbar-thumb:hover { background: var(--white); }


/* ============================================================
   25. MEDIA QUERIES
   ============================================================ */

/* 400px */
@media (min-width: 400px) {
  .hero__cta { flex-direction: row; flex-wrap: wrap; }
}

/* 600px */
@media (min-width: 600px) {
  :root { --px: 1.5rem; }

  .hero__heading { font-size: var(--fs-5xl); }
  .sec-heading   { font-size: var(--fs-3xl); }

  .svc-grid { grid-template-columns: repeat(2, 1fr); }

  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gal-item__img { height: 100%; }
  .gal-item--wide { grid-column: span 2; }

  .split-img { flex-direction: row; }
  .split-img__left, .split-img__right { flex: 1; min-height: 280px; }

  .img-strip__img   { height: 280px; }
  .img-strip__quote { font-size: var(--fs-xl); }
  .img-strip--tall .img-strip__img { height: 400px; }

  .stats__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--sp-10);
  }
  .stat__rule { display: block; }

  .cta-band__actions { flex-direction: row; justify-content: center; }
  .cta-band__heading { font-size: var(--fs-3xl); }

  .about__img { height: 360px; }
}

/* 768px */
@media (min-width: 768px) {
  :root {
    --nav-h: 72px;
    --sec-py: var(--sp-20);
    --px: 2rem;
  }

  .nav__menu     { display: flex; }
  .nav__phone    { display: flex; }
  .nav__actions > .btn--white { display: inline-flex; }
  .burger        { display: none; }

  .hero__heading { font-size: var(--fs-5xl); }

  .contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--sp-10);
    align-items: start;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-10) var(--sp-8);
  }

  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .about__img { height: 420px; }
}

/* 1024px */
@media (min-width: 1024px) {
  :root {
    --sec-py: var(--sp-24);
    --px: var(--sp-8);
  }

  .hero__heading  { font-size: var(--fs-6xl); }
  .sec-heading    { font-size: var(--fs-4xl); }
  .sec-sub        { font-size: var(--fs-base); }

  .about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
  }
  .about__img { height: 500px; }

  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-card { min-height: 360px; }

  .gal-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
  }
  .gal-item--wide { grid-column: span 2; }
  .gal-item--tall { grid-row: span 2; }

  .stats__inner { flex-wrap: nowrap; justify-content: space-around; gap: 0; }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: var(--sp-8);
  }

  .img-strip__img   { height: 340px; }
  .img-strip--tall .img-strip__img { height: 480px; }
  .img-strip__quote { font-size: var(--fs-2xl); }
  .img-strip__quote--lg { font-size: var(--fs-3xl); }

  .split-img__left, .split-img__right { min-height: 380px; }
  .split-img__label strong { font-size: var(--fs-xl); }

  .cta-band__heading { font-size: var(--fs-4xl); }

  .contact__form-wrap { padding: var(--sp-10) var(--sp-8); }
}

/* 1280px */
@media (min-width: 1280px) {
  :root { --px: var(--sp-6); }

  .hero__heading { font-size: var(--fs-7xl); }

  .gal-grid { grid-auto-rows: 250px; }

  .img-strip__img { height: 380px; }
  .img-strip--tall .img-strip__img { height: 520px; }
  .img-strip__quote--lg { font-size: var(--fs-4xl); }
}

/* 1440px */
@media (min-width: 1440px) {
  :root { --max-w: 1360px; }
  .hero__heading { font-size: var(--fs-8xl); }
}

/* Reduced Motion */
@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;
  }
  .reveal-up, .reveal-left, .reveal-right {
    opacity: 1; transform: none; transition: none;
  }
  .hero__bg-img { animation: none; transform: none; }
  img { filter: grayscale(100%); transition: none; }
}