/* ============================================================
   ELITE WINDOW TINTING – MUSTANG OK
   Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --gold:       #F2C94C;
  --gold-light: #FAE07A;
  --gold-dim:   #C49B28;
  --gold-pale:  rgba(242,201,76,0.12);
  --black:      #080808;
  --dark:       #101010;
  --dark2:      #161616;
  --dark3:      #1e1e1e;
  --text:       #e8e4dc;
  --text-muted: #8a8580;
  --white:      #f5f1ea;
  --border:     rgba(242,201,76,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
a { color: inherit; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }

.gold-rule { width: 56px; height: 1px; background: var(--gold); margin: 1.4rem 0 2rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.95rem 2.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.95rem 2.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.95rem 2.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }

/* ── NAV ── */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 3.5rem;
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}

.nav-brand { text-decoration: none; }
.nav-brand .wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  display: block;
  line-height: 1;
}
.nav-brand .sub {
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 0.4rem 1.1rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
  list-style: none;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 0.55rem 1.4rem;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown li a:hover { color: var(--gold); background: rgba(242,201,76,0.05); }

.nav-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.12em;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--gold-light); }

/* Mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span { display: block; width: 24px; height: 1px; background: var(--text); transition: transform 0.3s, opacity 0.3s; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  padding: 2rem;
  overflow-y: auto;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── AREAS TICKER ── */
.areas-ticker {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 1;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 22s linear infinite;
}
.ticker-track span {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 2rem;
  border-right: 1px solid rgba(242,201,76,0.18);
  white-space: nowrap;
}
.ticker-track span.hl { color: var(--gold); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── PHOTO GALLERY UPLOADER ── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4px;
  margin-top: 2.5rem;
}
.photo-slot {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid var(--border);
  cursor: pointer;
  group: true;
}
.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.photo-slot:hover img { transform: scale(1.04); }
.photo-slot .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.photo-slot:hover .overlay { opacity: 1; }
.overlay-icon { stroke: var(--gold); fill: none; width: 36px; height: 36px; }

.photo-slot.upload-btn {
  border: 1px dashed rgba(242,201,76,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}
.photo-slot.upload-btn:hover { border-color: var(--gold); background: rgba(242,201,76,0.04); }
.upload-btn svg { stroke: rgba(242,201,76,0.5); fill: none; width: 32px; height: 32px; }
.upload-btn span { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }

.photo-slot .remove-btn {
  position: absolute;
  top: 8px; right: 8px;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 28px; height: 28px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.7rem;
  z-index: 10;
  line-height: 1;
}
.photo-slot:hover .remove-btn { display: flex; }

/* ── FOOTER ── */
#site-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 5rem 3.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1fr 1.1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand .wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}
.footer-brand .sub {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.85; max-width: 300px; }

.footer-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.78rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.8rem; }
.footer-contact-item svg { stroke: var(--gold); fill: none; width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.78rem; color: var(--text-muted); }
.footer-contact-item a { font-size: 0.78rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.68rem; color: rgba(138,133,128,0.5); }
.footer-seo { font-size: 0.65rem; color: rgba(138,133,128,0.35); }

/* ── INNER PAGE HERO ── */
.page-hero {
  padding: 7rem 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(242,201,76,0.06) 0%, transparent 65%),
    linear-gradient(160deg, #080808 0%, #121008 60%, #080808 100%);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(242,201,76,0.012) 60px,
    rgba(242,201,76,0.012) 61px
  );
}
.page-hero-content { position: relative; z-index: 2; max-width: 780px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.2); }

/* ── SECTION LAYOUT ── */
.site-section { padding: 6.5rem 3.5rem; }
.site-section.dark { background: var(--dark); }
.site-section.darker { background: var(--dark2); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); }
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.5rem; max-width: 520px; }
.cta-band-actions { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.cta-phone {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: color 0.2s;
}
.cta-phone:hover { color: var(--gold-light); }

/* ── XPEL BADGE ── */
.xpel-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(242,201,76,0.28);
  padding: 0.45rem 1.1rem;
  margin-top: 1.2rem;
}
.xpel-badge .xb1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.xpel-badge .xb2 {
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  #site-nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .site-section { padding: 5rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
  .cta-band { grid-template-columns: 1fr; padding: 3.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  #site-footer { padding: 4rem 1.5rem 2rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .photo-gallery { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

/* ── LOGO IN NAV ── */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-text .wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  display: block;
}
.nav-brand-text .sub {
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-top: 3px;
}
@media (max-width: 960px) {
  .nav-logo-img { height: 40px; }
  .nav-brand-text { display: none; }
}

/* ── FOOTER MAP COLUMN ── */
.footer-map-col h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-map-col iframe { pointer-events: none; }
.footer-map-col > a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(242,201,76,0.25);
  padding: 0.45rem 1rem;
  transition: background 0.2s;
}
.footer-map-col > a:hover { background: rgba(242,201,76,0.06); }

/* ── CALL BUTTON ── */
.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 0.55rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-call-btn:hover { background: var(--gold-light); }
.nav-call-btn svg { flex-shrink: 0; }

/* ── FOOTER CALL BUTTON ── */
.footer-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.8rem 1.6rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 1rem;
  border: none;
}
.footer-call-btn:hover { background: var(--gold-light); }

/* ── NAV DROPDOWN ARROW FIX ── */
.nav-arrow {
  font-size: 0.5rem;
  display: inline-block;
  transition: transform 0.2s;
  margin-left: 2px;
  vertical-align: middle;
}
.nav-links > li:hover .nav-arrow { transform: rotate(180deg); }
.has-dropdown { display: flex; align-items: center; gap: 2px; }

/* ── LOGO IN NAV - BLEND FIX ── */
.nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  
  filter: brightness(1.05) contrast(1.02);
  flex-shrink: 0;
}
/* Make sure nav brand aligns nicely with logo */
.nav-brand {
  display: flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  text-decoration: none !important;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* ── FOOTER LOGO ── */
.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  
  filter: brightness(1.02) contrast(1.02);
  margin-bottom: 0.8rem;
  display: block;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE OVERHAUL - Mobile / Tablet / Desktop
   ═══════════════════════════════════════════════════ */

/* ── ALL IMAGES - crisp rendering ── */
img {
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* ── GALLERY RESPONSIVE ── */
@media (max-width: 768px) {
  .gal-grid { grid-template-columns: 1fr !important; }
  .gal-grid .gal-item[style*="grid-column:span 2"],
  .gal-grid .gal-item[style*="grid-column:span 3"] {
    grid-column: span 1 !important;
  }
  .gal-item[style*="aspect-ratio:16/8"] { aspect-ratio: 4/3 !important; }
  .gal-item[style*="aspect-ratio:21/8"] { aspect-ratio: 4/3 !important; }
  .gal-item[style*="aspect-ratio:16/9"] { aspect-ratio: 4/3 !important; }
  .gal-item.wide { aspect-ratio: 4/3 !important; }
  .gallery-tabs { gap: 0; }
  .gallery-tab { padding: 0.6rem 0.8rem; font-size: 0.5rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .gal-grid { grid-template-columns: repeat(2,1fr) !important; }
  .gal-grid .gal-item[style*="grid-column:span 3"] {
    grid-column: span 2 !important;
  }
}

/* ── SERVICE CARDS RESPONSIVE ── */
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr !important; }
  .svc-card-img { height: 180px !important; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2,1fr) !important; }
}

/* ── WHY US GRID ── */
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr !important; }
  .why-features { grid-template-columns: 1fr !important; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2,1fr) !important; }
}

/* ── AREAS GRID RESPONSIVE ── */
@media (max-width: 600px) {
  .areas-grid { grid-template-columns: 1fr !important; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .areas-grid { grid-template-columns: repeat(2,1fr) !important; }
}

/* ── REVIEWS RESPONSIVE ── */
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr !important; }
}

/* ── FOOTER RESPONSIVE ── */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 1.5rem !important; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr !important; }
}

/* ── HERO RESPONSIVE ── */
@media (max-width: 600px) {
  .hero-stats { flex-wrap: wrap; gap: 1.5rem !important; }
  .hh1, .hero-title { font-size: clamp(2rem, 8vw, 3rem) !important; }
}

/* ── TWO-COL LAYOUTS RESPONSIVE ── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .contact-layout { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .family-grid { grid-template-columns: 1fr !important; }
}

/* ── TRUST BADGES RESPONSIVE ── */
@media (max-width: 768px) {
  [style*="grid-template-columns: repeat(4,1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
}
@media (max-width: 480px) {
  [style*="grid-template-columns: repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── ANNOUNCEMENT BAR RESPONSIVE ── */
@media (max-width: 768px) {
  #announcement-bar,
  [style*="background:#F2C94C"][style*="padding:0.5rem"] {
    flex-direction: column;
    text-align: center;
    padding: 0.7rem 1rem !important;
    gap: 0.5rem !important;
  }
}

/* ── FLOATING BUTTONS RESPONSIVE ── */
@media (max-width: 480px) {
  #float-btns {
    bottom: 0.8rem !important;
    right: 0.8rem !important;
  }
  #float-btns a {
    padding: 0.65rem 1rem !important;
    font-size: 0.58rem !important;
  }
}

/* ── CONTACT FORM RESPONSIVE ── */
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr !important; }
  .svc-grid { grid-template-columns: 1fr !important; }
}

/* ── PPF PACKAGES RESPONSIVE ── */
@media (max-width: 768px) {
  .ppf-packages { grid-template-columns: 1fr !important; }
}

/* ── PHOTO ASPECT RATIOS ON MOBILE ── */
@media (max-width: 600px) {
  .svc-card-img { height: 160px !important; }
  [style*="height:340px"] { height: 220px !important; }
  [style*="height:320px"] { height: 200px !important; }
  [style*="height:300px"] { height: 200px !important; }
  [style*="height:360px"] { height: 220px !important; }
}

/* ── TICKER RESPONSIVE ── */
@media (max-width: 480px) {
  .ticker-track span, .areas-track span, .ttrack span {
    padding: 0 1rem !important;
    font-size: 0.44rem !important;
  }
}

/* ── SECTION PADDING RESPONSIVE ── */
@media (max-width: 600px) {
  .site-section { padding: 3rem 1.2rem !important; }
  .sec { padding: 2.5rem 1.2rem !important; }
  section { padding: 2.5rem 1.2rem !important; }
  #site-footer { padding: 2.5rem 1.2rem 1.5rem !important; }
  .page-hero { padding: 7rem 1.2rem 3rem !important; }
  .cta-band { padding: 2.5rem 1.2rem !important; }
}

/* ── FAMILY / STORY SECTION ── */
@media (max-width: 900px) {
  [style*="grid-template-columns: 1fr 1fr"][style*="gap: 5rem"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* ── STATS ROW ON MOBILE ── */
@media (max-width: 480px) {
  [style*="display:grid;grid-template-columns:repeat(4,1fr)"][style*="gap:2px"][style*="padding"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
}


/* ═══════════════════════════════════════
   MOBILE RESPONSIVE OVERHAUL v2
   ═══════════════════════════════════════ */

/* ── NAV - hide call button on mobile, show hamburger ── */
@media (max-width: 960px) {
  .nav-call-btn { display: none !important; }
  .nav-logo-img { height: 34px !important; }
  #site-nav { padding: 0.75rem 1rem !important; }
}

/* ── ANNOUNCEMENT BAR - stack on mobile ── */
@media (max-width: 640px) {
  div[style*="background:#F2C94C"][style*="padding:0.5rem"] {
    flex-direction: column !important;
    padding: 0.6rem 1rem !important;
    gap: 0.4rem !important;
    text-align: center !important;
  }
  div[style*="background:#F2C94C"][style*="padding:0.5rem"] > div {
    justify-content: center !important;
  }
  div[style*="background:#F2C94C"][style*="padding:0.5rem"] > span {
    font-size: 0.5rem !important;
  }
}

/* ── FLOATING BUTTONS - stay visible and properly sized on mobile ── */
@media (max-width: 480px) {
  #float-btns {
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    flex-direction: row !important;
    gap: 0 !important;
    align-items: stretch !important;
    border-top: 1px solid rgba(242,201,76,0.3) !important;
  }
  #float-btns a {
    flex: 1 !important;
    justify-content: center !important;
    border-radius: 0 !important;
    padding: 0.85rem 0.5rem !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.1em !important;
  }
  #float-btns a:first-child {
    background: #F2C94C !important;
    color: #080808 !important;
    border-right: 1px solid rgba(8,8,8,0.2) !important;
  }
  #float-btns a:last-child {
    background: #0a0a0a !important;
    color: #F2C94C !important;
    border: none !important;
    border-left: 1px solid rgba(242,201,76,0.3) !important;
  }
  /* Add padding to page bottom so content isn't hidden behind fixed bar */
  body { padding-bottom: 56px !important; }
}

/* ── HERO - mobile ── */
@media (max-width: 600px) {
  .hero, #hero { padding: 4.5rem 1.2rem 3rem !important; min-height: auto !important; }
  .hh1, .hero-title, h1.hh1 {
    font-size: 2.2rem !important;
    line-height: 1.1 !important;
  }
  .hdesc { font-size: 0.72rem !important; max-width: 100% !important; }
  .hbtns, .hero-actions { flex-direction: column !important; }
  .hbtns a, .hero-actions a, .hbtns button, .hero-actions button {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }
  .hstats, .hero-stats { gap: 1.5rem !important; flex-wrap: wrap !important; }
  .snum, .stat-num { font-size: 1.6rem !important; }
  .hline { display: none !important; }
}

/* ── SERVICES GRID - mobile ── */
@media (max-width: 640px) {
  .sgrid, .services-grid {
    grid-template-columns: 1fr !important;
  }
  .simg, .svc-card-img, .si { height: 160px !important; }
}
@media (min-width: 641px) and (max-width: 900px) {
  .sgrid, .services-grid {
    grid-template-columns: repeat(2,1fr) !important;
  }
}

/* ── WHY GRID - mobile ── */
@media (max-width: 640px) {
  .wgrid, .why-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 380px) {
  .wgrid, .why-grid { grid-template-columns: 1fr !important; }
}

/* ── AREAS GRID - mobile ── */
@media (max-width: 640px) {
  .agrid, .areas-grid { grid-template-columns: 1fr 1fr !important; gap: 2px !important; }
}
@media (max-width: 380px) {
  .agrid, .areas-grid { grid-template-columns: 1fr !important; }
}

/* ── REVIEWS - mobile ── */
@media (max-width: 768px) {
  .rgrid, .reviews-grid { grid-template-columns: 1fr !important; }
}

/* ── TRUST BADGES - mobile ── */
@media (max-width: 640px) {
  div[style*="repeat(4,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
}

/* ── FAMILY SECTION - mobile ── */
@media (max-width: 900px) {
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:5rem"],
  div[style*="grid-template-columns: 1fr 1fr"][style*="gap: 5rem"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 2.5rem 1.2rem !important;
  }
}

/* ── CTA BAND - mobile ── */
@media (max-width: 640px) {
  .cta-band, .cta {
    grid-template-columns: 1fr !important;
    padding: 2.5rem 1.2rem !important;
    gap: 1.2rem !important;
    text-align: center !important;
  }
  .cta-band-actions, .cacts { align-items: center !important; }
  .cta-phone, .cph { font-size: 1.3rem !important; }
}

/* ── SERVICE INFO SECTIONS - mobile ── */
@media (max-width: 900px) {
  #auto-info > div,
  #ppf-info > div,
  #ceramic-info > div,
  #res-info > div,
  #comm-info > div,
  #wind-info > div,
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:4rem"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* ── PAGE HERO - mobile ── */
@media (max-width: 600px) {
  .page-hero { padding: 6rem 1.2rem 2.5rem !important; }
  .page-hero h1, .page-hero .section-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem) !important;
  }
  .breadcrumb { font-size: 0.5rem !important; }
}

/* ── CONTACT FORM - mobile ── */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr !important; }
  .svc-grid { grid-template-columns: 1fr !important; }
  .contact-layout { padding: 1.5rem 1.2rem !important; }
}

/* ── FOOTER - mobile ── */
@media (max-width: 768px) {
  .footer-grid, .fgrid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }
  #site-footer { padding: 2.5rem 1.2rem 1.5rem !important; }
}
@media (max-width: 480px) {
  .footer-grid, .fgrid { grid-template-columns: 1fr !important; }
  .footer-bottom, .fbot {
    flex-direction: column !important;
    text-align: center !important;
    gap: 0.4rem !important;
  }
}

/* ── TICKER - mobile ── */
@media (max-width: 480px) {
  .ticker-track span, .ttrack span {
    padding: 0 1rem !important;
    font-size: 0.42rem !important;
  }
}

/* ── OKLAHOMA #1 BANNER - mobile ── */
@media (max-width: 768px) {
  div[style*="border-bottom:1px solid rgba(242,201,76,0.2)"][style*="padding:1.4rem"] {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 1rem 1.2rem !important;
    gap: 0.8rem !important;
  }
  div[style*="border-bottom:1px solid rgba(242,201,76,0.2)"][style*="padding:1.4rem"] > div {
    flex-wrap: wrap !important;
    gap: 0.8rem !important;
  }
  div[style*="width:1px;height:20px"] { display: none !important; }
}

/* ── SECTION PADDING - mobile ── */
@media (max-width: 600px) {
  .site-section, .sec { padding: 2.8rem 1.2rem !important; }
  section { padding-left: 1.2rem !important; padding-right: 1.2rem !important; }
  h2.section-title, h2.sh2, h2.h2 { font-size: clamp(1.5rem, 5vw, 2rem) !important; }
}

/* ── MID PAGE CTA STRIP - mobile ── */
@media (max-width: 640px) {
  div[style*="Ready to Protect"],
  div[style*="linear-gradient(90deg,#0e0c08"] {
    flex-direction: column !important;
    padding: 2rem 1.2rem !important;
    gap: 1rem !important;
    text-align: center !important;
  }
  div[style*="linear-gradient(90deg,#0e0c08"] > div:last-child {
    justify-content: center !important;
    width: 100% !important;
  }
}

/* ── PREVENT HORIZONTAL SCROLL ── */
html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}
* { max-width: 100%; }
img { max-width: 100% !important; }


/* ── HERO EYEBROW MOBILE FIX ── */
@media (max-width: 600px) {
  .hero-eyebrow::before { width: 20px !important; }
  .hero-eyebrow { 
    flex-wrap: wrap !important; 
    margin-bottom: 0.8rem !important;
    font-size: 0.46rem !important;
  }
}

/* ── ANNOUNCEMENT BAR MOBILE ── */
@media (max-width: 600px) {
  /* Gold announcement bar at very top */
  body > div[style*="background:#F2C94C"],
  div[style*="background:#F2C94C"][style*="0.5rem"] {
    padding: 0.5rem 1rem !important;
    gap: 0.4rem !important;
    flex-wrap: wrap !important;
  }
  div[style*="background:#F2C94C"] > span[style*="font-size:0.58rem"] {
    font-size: 0.46rem !important;
    text-align: center !important;
    width: 100% !important;
  }
  div[style*="background:#F2C94C"] > div {
    width: 100% !important;
    justify-content: center !important;
  }
}


/* ── MID-PAGE CTA MOBILE FIX ── */
@media (max-width: 640px) {
  /* Mid page CTA strip */
  div[style*="Ready to Protect"] {
    flex-direction: column !important;
    padding: 1.5rem 1.2rem !important;
    text-align: center !important;
    gap: 1rem !important;
  }
  div[style*="Ready to Protect"] > div:last-child {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0.6rem !important;
  }
  div[style*="Ready to Protect"] > div:last-child a {
    width: 100% !important;
    justify-content: center !important;
    padding: 0.85rem 1rem !important;
  }
}

/* ── ANNOUNCEMENT BAR MOBILE ── */
@media (max-width: 640px) {
  .ann-desktop { display: none !important; }
  .ann-mobile { display: grid !important; }
}
@media (min-width: 641px) {
  .ann-mobile { display: none !important; }
  .ann-desktop { display: flex !important; }
}

@media (max-width: 768px) { .ann-bar { display: none !important; } }

/* ── ACCESSIBILITY ── */
.skip-to-main:focus {
  left: 0 !important;
  outline: 3px solid #F2C94C;
}

/* Ensure focus styles are visible */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid #F2C94C;
  outline-offset: 2px;
}

/* Improve button contrast */
.btn-ghost:focus, .btng:focus {
  outline: 2px solid #F2C94C;
}

/* ── LOCATION PAGE SERVICE GRID ── */
@media (max-width: 640px) {
  .svc-loc-grid {
    grid-template-columns: repeat(2,1fr) !important;
  }
}
@media (max-width: 380px) {
  .svc-loc-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── SERVICES TICKER - scrolls right to left like locations ── */
.services-ticker {
  border-top: 1px solid rgba(242,201,76,0.1) !important;
  border-bottom: 1px solid rgba(242,201,76,0.1) !important;
  background: rgba(242,201,76,0.03) !important;
}
.services-ticker .ticker-track {
  animation: ticker 22s linear infinite;
}
.services-ticker .ticker-track span.hl {
  color: var(--gold);
  font-weight: 600;
}
