/* =============================================
   ISLAND EXOTICS 242 — style.css
   Palette:
     Matte Black   #0A0A0C  (primary dark)
     Gunmetal      #111116  (card/section dark)
     Slate         #1C1C24  (elevated dark)
     Gold          #D4A017  (primary accent)
     Gold Light    #F0C040  (hover gold)
     Chrome        #C0C0C0  (secondary silver)
     White         #F8F8FA  (text)
     Gray          #8A8A9A  (muted text)
   Fonts: Barlow Condensed (display), Barlow (body)
   Designed by Prizmek
============================================= */

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

:root {
  --black:      #0A0A0C;
  --gun:        #111116;
  --slate:      #1C1C24;
  --slate-2:    #22222C;
  --gold:       #D4A017;
  --gold-lt:    #F0C040;
  --gold-dim:   rgba(212,160,23,0.12);
  --gold-glow:  rgba(212,160,23,0.25);
  --chrome:     #C0C0C0;
  --chrome-dim: rgba(192,192,192,0.1);
  --white:      #F8F8FA;
  --gray:       #8A8A9A;
  --border-dk:  rgba(255,255,255,0.06);
  --border-gold:rgba(212,160,23,0.2);
  --radius:     12px;
  --radius-sm:  7px;
  --t:          0.26s ease;

  /* Iridescent gradient — vinyl film simulation */
  --iri: linear-gradient(90deg,
    #FF6B6B, #FF9A3C, #FFD700, #7CFC00, #00CED1,
    #4169E1, #8A2BE2, #FF1493, #FF6B6B
  );
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* =============================================
   TYPOGRAPHY
============================================= */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-eyebrow--gold { color: var(--gold); }
.section-eyebrow--gold::before { background: var(--gold); }

.section-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.section-h2 em {
  font-style: normal;
  color: var(--gold);
}
.section-h2--light { color: var(--white); }

/* =============================================
   BUTTONS
============================================= */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--gold-glow);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: border-color var(--t), color var(--t);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--chrome);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(192,192,192,0.25);
  cursor: pointer;
  transition: border-color var(--t), color var(--t);
}
.btn-outline:hover { border-color: var(--chrome); color: #fff; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  transition: background var(--t), transform var(--t);
}
.btn-whatsapp:hover { background: #1DAA56; transform: translateY(-2px); }

/* =============================================
   IRIDESCENT RIBBON (top of page)
============================================= */
.iridescent-ribbon {
  height: 4px;
  background: var(--iri);
  background-size: 300% 100%;
  animation: iriShift 6s linear infinite;
}
@keyframes iriShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* =============================================
   IRIDESCENT DIVIDER
============================================= */
.iri-divider {
  background: var(--gun);
  padding: 16px 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.iri-bar {
  height: 3px;
  background: var(--iri);
  background-size: 300% 100%;
  border-radius: 2px;
  animation: iriShift 6s linear infinite;
  margin-bottom: 10px;
}
.iri-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  text-align: center;
}

/* Footer iridescent bar */
.iri-footer-bar {
  height: 3px;
  background: var(--iri);
  background-size: 300% 100%;
  animation: iriShift 6s linear infinite;
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 68px;
  padding: 0 40px;
  background: rgba(10,10,12,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,160,23,0.12);
  transition: background var(--t);
}
.navbar.scrolled { background: rgba(10,10,12,1); }
.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-text-wrap { display: flex; flex-direction: column; }
.logo-island {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.logo-242 {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-social {
  color: rgba(255,255,255,0.35);
  font-size: 18px;
  transition: color var(--t);
}
.nav-social:hover { color: var(--gold); }
.btn-nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--chrome);
  border: 1px solid rgba(192,192,192,0.2);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: border-color var(--t), color var(--t);
  white-space: nowrap;
}
.btn-nav-phone:hover { border-color: var(--chrome); color: #fff; }
.btn-nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--black);
  transition: background var(--t), box-shadow var(--t);
  white-space: nowrap;
}
.btn-nav-cta:hover { background: var(--gold-lt); box-shadow: 0 0 20px var(--gold-glow); }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 22px;
  cursor: pointer;
}

/* =============================================
   HERO
============================================= */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.3) saturate(0.6);
  transform: scale(1.04);
  animation: heroImgReveal 1.4s 0.2s cubic-bezier(0.4,0,0.2,1) forwards;
  transform-origin: center;
}
@keyframes heroImgReveal {
  from { clip-path: inset(0 100% 0 0); transform: scale(1.08); }
  to   { clip-path: inset(0 0% 0 0);   transform: scale(1.04); }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(10,10,12,0.95) 0%, rgba(10,10,12,0.7) 55%, rgba(10,10,12,0.4) 100%),
    radial-gradient(ellipse at 10% 80%, rgba(212,160,23,0.08) 0%, transparent 45%);
}
.hero-watermark {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(200px, 35vw, 500px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  padding: 140px 40px 100px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow-bar {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--iri);
  background-size: 200%;
  animation: iriShift 4s linear infinite;
  flex-shrink: 0;
  border-radius: 1px;
}
.hero-content { max-width: 680px; }
.hero-h1 {
  display: flex;
  flex-direction: column;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(80px, 13vw, 160px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.h1-line {
  display: block;
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.7s forwards;
}
.h1-line--1 { color: var(--white); animation-delay: 0.2s; }
.h1-line--2 {
  animation-delay: 0.38s;
  /* Iridescent rainbow — same moving gradient as the eyebrow line */
  background: linear-gradient(90deg,
    #FF6B6B, #FF9A3C, #FFD700, #7CFC00, #00CED1,
    #4169E1, #8A2BE2, #FF1493, #FF6B6B
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInLeft 0.7s 0.38s forwards, iriShift 6s linear infinite;
}
.h1-dot {
  /* Plain gold dot — visible against any background */
  -webkit-text-fill-color: var(--gold);
  color: var(--gold);
}
@keyframes slideInLeft {
  to { opacity: 1; transform: translateX(0); }
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.48);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-services-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hss-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 100px;
  transition: border-color var(--t), color var(--t);
}
.hss-item:hover { border-color: var(--gold); color: var(--gold); }
.hss-item i { font-size: 13px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero stats card */
.hero-stats-card {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius);
  padding: 18px 28px;
  backdrop-filter: blur(8px);
  align-self: flex-start;
}
.hsc-item { text-align: center; }
.hsc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
  display: inline;
  letter-spacing: 0.02em;
  line-height: 1;
}
.hsc-suf { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; color: var(--chrome); }
.hsc-label { display: block; font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.3); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 3px; }
.hsc-div { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

.hero-wave { position: relative; z-index: 3; line-height: 0; margin-top: auto; }
.hero-wave svg { width: 100%; height: 60px; display: block; }

/* =============================================
   SERVICES
============================================= */
.services { padding: 100px 40px; background: var(--black); }
.services-inner { max-width: 1360px; margin: 0 auto; }
.services-hdr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}
.services-sub { font-size: 15px; color: var(--gray); font-weight: 300; line-height: 1.75; align-self: end; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
}
.svc-card {
  background: var(--gun);
  position: relative;
  overflow: hidden;
  transition: background var(--t);
}
.svc-card:hover { background: var(--slate); }
.svc-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.svc-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.75) saturate(0.7) grayscale(0.2);
}
.svc-card:hover .svc-img-wrap img { transform: scale(1.07); filter: brightness(0.85) saturate(1); }
/* Iridescent shine on image hover */
.svc-img-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(212,160,23,0.1) 50%, transparent 100%);
  opacity: 0;
  transition: opacity var(--t);
}
.svc-card:hover .svc-img-shine { opacity: 1; }
.svc-body { padding: 24px 22px 28px; }
.svc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 8px;
}
.svc-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}
.svc-body p { font-size: 13px; line-height: 1.72; color: var(--gray); font-weight: 300; margin-bottom: 16px; }
.svc-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t);
}
.svc-link:hover { gap: 10px; }
/* Animated gold border on left edge */
.svc-glow-border {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--t);
  box-shadow: 0 0 12px var(--gold-glow);
}
.svc-card:hover .svc-glow-border { opacity: 1; }

/* =============================================
   TINTING SECTION
============================================= */
.tinting-section { background: var(--gun); padding: 100px 40px; }
.tinting-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.tinting-p { font-size: 15px; color: var(--gray); font-weight: 300; line-height: 1.75; margin-bottom: 28px; }
.tinting-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.tf-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}
.tf-item i { color: var(--gold); font-size: 16px; }

/* Tint meter */
.tint-meter {
  background: var(--slate);
  border: 1px solid var(--border-dk);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 20px;
}
.tint-meter-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.tint-grades { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.tg-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color var(--t);
}
.tg-row:hover { border-color: rgba(212,160,23,0.25); }
.tg-swatch {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.tg-info { flex: 1; min-width: 0; }
.tg-pct {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.tg-name { font-size: 12px; font-weight: 600; color: var(--white); display: block; margin-top: 1px; }
.tg-desc { font-size: 11px; color: var(--gray); display: block; font-weight: 300; }
.tg-gradient-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.tg-bar {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 100%);
  border: 1px solid rgba(255,255,255,0.1);
}

.tinting-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,160,23,0.15);
}
.tinting-img-wrap img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: brightness(0.8) saturate(0.75); }
.tinting-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,12,0.7) 0%, transparent 60%);
}
.tinting-img-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(10,10,12,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,160,23,0.35);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   WRAPS SECTION
============================================= */
.wraps-section { padding: 100px 40px; background: var(--black); }
.wraps-inner { max-width: 1360px; margin: 0 auto; }
.wraps-sub { font-size: 15px; color: var(--gray); font-weight: 300; line-height: 1.75; max-width: 600px; margin-bottom: 52px; }

.wrap-finishes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 52px;
}
.wf-card {
  background: var(--gun);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), border-color var(--t);
  text-align: center;
}
.wf-card:hover { transform: translateY(-4px); border-color: var(--border-gold); }
.wf-swatch {
  height: 80px;
  width: 100%;
}
.wf-matte       { background: linear-gradient(135deg, #2A2A2A, #3D3D3D); }
.wf-gloss       { background: linear-gradient(135deg, #1A1A1A, #555, #1A1A1A); }
.wf-satin       { background: linear-gradient(135deg, #222, #4A4A4A, #222); }
.wf-chrome      { background: linear-gradient(135deg, #888, #FFF, #888, #C0C0C0); }
.wf-color-shift {
  background: var(--iri);
  background-size: 200%;
  animation: iriShift 4s linear infinite;
}
.wf-custom      { background: linear-gradient(135deg, #1a0a20, #3d1a5c, #0a1a3d, #0a2a1a); }
.wf-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 8px 4px;
}
.wf-card p {
  font-size: 11px;
  color: var(--gray);
  font-weight: 300;
  padding: 0 8px 12px;
  line-height: 1.5;
}

.wraps-cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--gun);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 32px 36px;
  flex-wrap: wrap;
}
.wcs-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}
.wcs-text p { font-size: 14px; color: var(--gray); font-weight: 300; }
.wcs-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* =============================================
   GALLERY
============================================= */
.gallery { background: var(--gun); padding: 100px 40px; }
.gallery-inner { max-width: 1360px; margin: 0 auto; }
.gallery-sub { font-size: 15px; color: var(--gray); font-weight: 300; max-width: 560px; line-height: 1.75; margin-bottom: 48px; }
.gallery-sub a { color: var(--gold); transition: color var(--t); }
.gallery-sub a:hover { color: var(--gold-lt); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 4px;
  margin-bottom: 36px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--slate);
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: brightness(0.8) saturate(0.75);
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(0.6) saturate(1.2); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,12,0.88) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--t);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery-footer { text-align: center; }

/* =============================================
   WHY IE242
============================================= */
.why { padding: 100px 40px; background: var(--black); }
.why-inner { max-width: 1360px; margin: 0 auto; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
  margin-top: 52px;
}
.why-card {
  background: var(--gun);
  padding: 32px 26px;
  transition: background var(--t);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.why-card:hover { background: var(--slate); }
.why-card:hover::before { transform: scaleX(1); }
.wc-icon { font-size: 26px; color: var(--gold); margin-bottom: 14px; }
.why-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p { font-size: 13px; line-height: 1.7; color: var(--gray); font-weight: 300; }

/* =============================================
   FAQ
============================================= */
.faq { background: var(--gun); padding: 100px 40px; }
.faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-left { position: sticky; top: 90px; }
.faq-sub { font-size: 14px; color: var(--gray); font-weight: 300; line-height: 1.7; margin-bottom: 24px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-align: left;
  transition: color var(--t);
}
.faq-q:hover { color: var(--gold); }
.fa { flex-shrink: 0; font-size: 17px; color: var(--gold); transition: transform var(--t); }
.faq-q[aria-expanded="true"] .fa { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s ease; }
.faq-a.open { max-height: 300px; padding-bottom: 20px; }
.faq-a p { font-size: 14px; line-height: 1.8; color: var(--gray); font-weight: 300; }

/* =============================================
   CONTACT
============================================= */
.contact { background: var(--slate-2); padding: 100px 40px; }
.contact-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-sub { font-size: 15px; color: var(--gray); font-weight: 300; line-height: 1.75; margin-bottom: 28px; }
.contact-methods { display: flex; flex-direction: column; gap: 10px; }
.cm-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dk);
  border-radius: var(--radius);
  transition: border-color var(--t), background var(--t);
}
.cm-item:hover { border-color: var(--border-gold); background: var(--gold-dim); }
.cm-wa:hover  { border-color: rgba(37,211,102,0.35); background: rgba(37,211,102,0.06); }
.cm-ig:hover  { border-color: rgba(228,64,95,0.35); background: rgba(228,64,95,0.06); }
.cm-icon {
  width: 38px; height: 38px;
  background: var(--gold-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.cm-wa .cm-icon  { background: rgba(37,211,102,0.1); color: #25D366; }
.cm-ig .cm-icon  { background: rgba(228,64,95,0.1); color: #E4405F; }
.cm-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }
.cm-val { font-size: 13px; font-weight: 600; color: var(--white); margin-top: 1px; }

.contact-form { display: flex; flex-direction: column; gap: 13px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 12px 14px;
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.18); }
.form-group select option { background: #1C1C24; color: var(--white); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim); }
.btn-form-submit { align-self: flex-start; margin-top: 4px; }
.cf-success {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gold);
  padding: 12px 14px;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
}
.cf-success.show { display: flex; }
.form-note { font-size: 12px; color: rgba(255,255,255,0.25); margin-top: 6px; }
.form-note a { color: var(--gold); transition: color var(--t); }
.form-note a:hover { color: var(--gold-lt); }

/* =============================================
   FOOTER
============================================= */
.footer { background: #050507; padding: 72px 40px 28px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-top: 28px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}
.footer-logo-sub { font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 0.18em; text-transform: uppercase; }
.footer-tagline { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.28); font-weight: 300; max-width: 260px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.38);
  font-size: 16px;
  transition: border-color var(--t), color var(--t);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a,
.footer-col ul li { font-size: 13px; color: rgba(255,255,255,0.38); font-weight: 300; transition: color var(--t); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; }
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.18); }
.footer-credit a { color: var(--gold); }

/* =============================================
   SCROLL ANIMATIONS
============================================= */
[data-aos] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-aos].aos-animate { opacity: 1; transform: translateY(0); }
[data-aos][data-aos-delay="60"]  { transition-delay: 0.06s; }
[data-aos][data-aos-delay="80"]  { transition-delay: 0.08s; }
[data-aos][data-aos-delay="120"] { transition-delay: 0.12s; }
[data-aos][data-aos-delay="160"] { transition-delay: 0.16s; }
[data-aos][data-aos-delay="240"] { transition-delay: 0.24s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1200px) {
  .wrap-finishes { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-top > div:last-child { display: none; }
}

@media (max-width: 1024px) {
  .services-hdr { grid-template-columns: 1fr; gap: 14px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tinting-inner { grid-template-columns: 1fr; gap: 52px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 220px 220px 220px; }
  .gallery-item--tall { grid-row: span 1; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }
  .contact-inner { grid-template-columns: 1fr; gap: 52px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-top > div:last-child { display: block; }
  .wraps-cta-strip { flex-direction: column; gap: 20px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(10,10,12,0.99);
    padding: 24px 20px; gap: 18px;
    border-bottom: 1px solid rgba(212,160,23,0.15);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-actions .btn-nav-phone { display: none; }
  .hamburger { display: block; }
  .hero-inner { padding: 100px 20px 80px; }
  .hero-h1 { font-size: clamp(64px, 16vw, 100px); }
  .services { padding: 72px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .tinting-section { padding: 72px 20px; }
  .tinting-features { grid-template-columns: 1fr; }
  .wraps-section { padding: 72px 20px; }
  .wrap-finishes { grid-template-columns: repeat(2, 1fr); }
  .gallery { padding: 72px 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .why { padding: 72px 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .faq { padding: 72px 20px; }
  .contact { padding: 72px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 60px 20px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .iri-divider { padding: 16px 20px; }
}

@media (max-width: 480px) {
  .wrap-finishes { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item--tall { grid-row: span 1; }
  .hero-services-strip { gap: 6px; }
  .hss-item { font-size: 10px; padding: 5px 10px; }
}
