/* ============================================================
   Fresh Paint Auto Restoration — Main Stylesheet
   Brand colors: Orange #ED742E + Blue #1E5FA8
   ============================================================ */

/* ----- Custom Properties ----- */
:root {
  --accent:          #ED742E;
  --accent-dark:     #c45c1f;
  --accent-light:    #f5916a;
  --blue:            #1E5FA8;
  --blue-dark:       #164d8a;
  --blue-light:      #4a8ccf;
  --bg:              #0a0e14;
  --surface:         #0f1520;
  --surface-2:       #16202e;
  --surface-3:       #1e2b3e;
  --border:          #1e2d42;
  --text:            #e8edf5;
  --text-muted:      #7a8fa8;
  --text-subtle:     #4a5c70;
  --white:           #ffffff;
  --black:           #000000;

  --font-heading:    'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:       'Inter', system-ui, -apple-system, sans-serif;

  --radius:          6px;
  --radius-lg:       12px;
  --transition:      0.25s ease;
  --transition-med:  0.4s ease;
  --section-pad:     clamp(64px, 8vw, 120px);
  --container:       1240px;
  --header-h:        120px;

  --shadow-sm:       0 2px 8px rgba(0,0,0,.4);
  --shadow-md:       0 8px 32px rgba(0,0,0,.5);
  --shadow-lg:       0 20px 60px rgba(0,0,0,.6);
}

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.1; letter-spacing: 0.02em; color: var(--white); }

/* ----- Accessibility ----- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--accent);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: top var(--transition);
}
.skip-link:focus { top: 16px; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ----- Layout Utilities ----- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.section { padding-block: var(--section-pad); }
.section--dark   { background: var(--bg); }
.section--surface { background: var(--surface); }
.section--surface-2 { background: var(--surface-2); }

.section-header { text-align: center; margin-bottom: clamp(40px, 5vw, 72px); }
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(237,116,46,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(30,95,168,.25);
  border-color: var(--blue-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,95,168,.3);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
}
.btn-blue:hover, .btn-blue:focus-visible {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,95,168,.35);
}

/* ----- HEADER ----- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition-med), box-shadow var(--transition-med);
  background: transparent;
}
/* Container inside flex header must stretch to full width */
#site-header > .container {
  flex: 1;
  min-width: 0;
}
#site-header.scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}
.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-logo img {
  height: 112px;
  width: auto;
  max-width: 540px;
  object-fit: contain;
  object-position: left center;
}
.site-logo .custom-logo-link {
  display: flex;
  align-items: center;
}
.site-logo .text-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1.1;
}
.site-logo .text-logo span { color: var(--accent); }
/* Hide mobile CTA inside nav on desktop */
.mobile-cta { display: none; }

/* Nav */
#primary-nav { display: flex; align-items: center; }
#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
#primary-nav a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}
#primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width var(--transition);
}
#primary-nav a:hover,
#primary-nav .current-menu-item > a {
  color: var(--white);
}
#primary-nav a:hover::after,
#primary-nav .current-menu-item > a::after { width: 60%; }

.header-cta { margin-left: 20px; }
.header-cta .btn { padding: 14px 32px; font-size: 1.05rem; font-weight: 700; letter-spacing: 0.08em; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius);
  transition: background var(--transition);
  position: relative; /* ensure it stacks above nav overlay */
  z-index: 2001;
}
.nav-toggle:hover { background: rgba(255,255,255,.08); }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ----- HERO (split layout: text left | image right) ----- */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--bg);
}

/* Subtle dark gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #060b12 0%, #0a1628 60%, #0d1a30 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(30,95,168,.12) 0%, transparent 60%);
}

/* Full-viewport two-column grid — no container constraint */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* LEFT column — padding lives here, not on the outer wrapper */
.hero-content {
  /* top must always clear the fixed header (--header-h) plus breathing room */
  padding-top: calc(var(--header-h) + clamp(24px, 3vh, 52px));
  padding-bottom: clamp(48px, 6vh, 80px);
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(237,116,46,.12);
  border: 1px solid rgba(237,116,46,.3);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
}
.hero-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  text-transform: uppercase;
  line-height: 0.93;
  margin-bottom: 24px;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.hero-title .accent { color: var(--accent); }

.hero-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 36px;
}

/* Trust signals row */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.hero-trust-item svg { color: var(--accent); flex-shrink: 0; }

/* RIGHT column — image panel */
.hero-image-panel {
  position: relative;
  height: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Gradient fade on left edge so it blends into the dark bg */
.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    rgba(10,14,20,.4) 20%,
    transparent 50%
  );
  z-index: 1;
  pointer-events: none;
}

/* Orange accent vertical bar on far right */
.hero-image-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent) 0%, var(--blue) 100%);
  z-index: 2;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.35);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll svg { opacity: .4; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ----- ABOUT ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}
.about-image-wrap:hover img { transform: scale(1.04); }
.about-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--blue);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  font-family: var(--font-heading);
  line-height: 1.1;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent);
}
.about-image-badge .num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
}
.about-image-badge .label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: .9; }
.about-text h2 { margin-bottom: 20px; font-size: clamp(2rem, 3.5vw, 3rem); text-transform: uppercase; }
.about-text .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(237,116,46,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}
.about-feature-text strong { display: block; font-size: 0.9rem; color: var(--white); margin-bottom: 2px; }
.about-feature-text span { font-size: 0.82rem; color: var(--text-muted); }

/* ----- SERVICES (image card grid) ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services-footer { text-align: center; margin-top: 48px; }

.svc-card { border-radius: var(--radius-lg); overflow: hidden; }
.svc-card-inner {
  display: block;
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
  color: var(--text);
  height: 100%;
}
.svc-card-inner:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(237,116,46,.35);
  color: var(--text);
}

.svc-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.svc-card-inner:hover .svc-card-img img { transform: scale(1.08); }
.svc-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--surface-3), var(--surface-2));
}
.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,20,.85) 0%, rgba(10,14,20,.3) 50%, transparent 100%);
  transition: opacity var(--transition-med);
}
.svc-card-inner:hover .svc-card-overlay { opacity: 0.9; }

.svc-card-body {
  padding: 24px 28px 28px;
}
.svc-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(237,116,46,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
  transition: background var(--transition);
}
.svc-card-inner:hover .svc-card-icon { background: rgba(237,116,46,.22); }
.svc-card-body h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  color: var(--white);
}
.svc-card-body p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 16px;
}
.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap var(--transition), color var(--transition);
}
.svc-card-inner:hover .svc-card-link { gap: 10px; color: var(--accent-light); }

/* ----- SERVICE DETAIL PAGE ----- */
.svc-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
}
.svc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.svc-hero:hover .svc-hero-bg { transform: scale(1); }
.svc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,8,13,.95) 0%, rgba(5,8,13,.6) 50%, rgba(5,8,13,.3) 100%);
}
.svc-hero-content {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 40px);
}
.svc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(237,116,46,.15);
  border: 1px solid rgba(237,116,46,.3);
  border-radius: 40px;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}
.svc-hero-badge svg { color: var(--accent); }
.svc-hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  max-width: 700px;
}
.svc-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

/* Breadcrumb */
.breadcrumb { margin-bottom: 32px; }
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-size: 0.8rem;
}
.breadcrumb li { color: var(--text-muted); }
.breadcrumb li::after { content: '/'; margin-left: 8px; color: var(--text-subtle); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current="page"] { color: var(--accent); }

/* Service description section */
.svc-desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.svc-desc-main h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.svc-lead {
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
}
.svc-desc-main p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

.svc-features {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.svc-features h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.svc-feature-list { display: flex; flex-direction: column; gap: 14px; }
.svc-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.svc-feature-list li svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

/* Service gallery grid (larger than homepage) */
.svc-gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
}

/* Related services */
.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.related-svc-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: block;
  color: var(--text);
  transition: all var(--transition-med);
}
.related-svc-card:hover {
  border-color: rgba(237,116,46,.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--text);
}
.related-svc-icon {
  width: 48px; height: 48px;
  background: rgba(237,116,46,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
  transition: background var(--transition);
}
.related-svc-card:hover .related-svc-icon { background: rgba(237,116,46,.2); }
.related-svc-card h3 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.related-svc-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.5; }
.related-svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
}

/* section-pad utility */
.section-pad { padding-block: var(--section-pad); }

/* ----- STATS BAR ----- */
.stats-bar {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 40%, #111820 70%, var(--accent-dark) 100%);
  border-top: 3px solid var(--accent);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 8px; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
}

/* ----- GALLERY / PORTFOLIO ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-med);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-med);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item-overlay .zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 48px;
  height: 48px;
  background: rgba(237,116,46,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item:hover .zoom-icon { transform: translate(-50%, -50%) scale(1); }
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.gallery-filter button {
  padding: 8px 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  background: transparent;
  transition: all var(--transition);
}
.gallery-filter button:hover,
.gallery-filter button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
/* Gallery Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: opacity var(--transition);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--accent); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: var(--accent); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
}

/* ----- CTA BANNER ----- */
.cta-banner {
  background: linear-gradient(135deg, #0a1628 0%, #0f1e38 50%, #1a0d05 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(237,116,46,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cta-banner p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 36px; max-width: 560px; margin-inline: auto; margin-bottom: 36px; }
.cta-banner .actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ----- CONTACT ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); text-transform: uppercase; margin-bottom: 20px; }
.contact-info p { color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(237,116,46,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}
.contact-detail-text strong { display: block; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text span { color: var(--text); font-size: 0.98rem; }
.contact-detail-text a:hover { color: var(--accent); }

/* Contact form */
.contact-form {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
}
.contact-form h3 {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 13px 16px;
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(237,116,46,.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-subtle); }

/* ----- FOOTER ----- */
#site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .site-logo { margin-bottom: 16px; }
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-contact-item a { color: var(--text-muted); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-subtle); }
.footer-bottom a { color: var(--text-subtle); }
.footer-bottom a:hover { color: var(--accent); }

/* ----- PAGE HERO (inner pages) ----- */
.page-hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(237,116,46,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .breadcrumbs {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.page-hero .breadcrumbs a { color: var(--text-muted); }
.page-hero .breadcrumbs a:hover { color: var(--accent); }
.page-hero .breadcrumbs span { color: var(--accent); }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  text-transform: uppercase;
  position: relative;
}

/* ----- ANIMATIONS ----- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ----- STANDARD PAGE CONTENT ----- */
.page-content {
  padding-block: var(--section-pad);
}
.page-content .prose {
  max-width: 800px;
  margin-inline: auto;
}
.prose h1, .prose h2, .prose h3 { margin-bottom: 16px; margin-top: 36px; }
.prose p { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.prose ul, .prose ol { color: var(--text-muted); margin-bottom: 20px; padding-left: 24px; }
.prose li { margin-bottom: 8px; line-height: 1.7; }

/* ----- 404 ----- */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: var(--section-pad);
}
.error-page .error-code {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 14rem);
  color: var(--accent);
  opacity: .15;
  line-height: 1;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  font-weight: 900;
}
.error-page .error-content { position: relative; z-index: 1; }

/* ----- FINANCING & WARRANTY ----- */
.fp-financing-section { background: var(--surface); }

.fin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.fin-col .section-badge { margin-bottom: 16px; display: inline-block; }

.fin-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.fin-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.fin-provider { margin-top: 8px; }

.fin-provider-name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.fin-provider-url {
  display: inline-block;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  word-break: break-all;
  margin-bottom: 20px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.fin-provider-url:hover { color: var(--accent-light); }

.fin-list {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-muted);
}
.fin-list li {
  padding: 5px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Warranty card */
.war-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.war-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--blue) 100%);
}

.war-icon {
  width: 56px;
  height: 56px;
  background: rgba(237,116,46,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.war-heading {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.war-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.war-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.war-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.war-list li svg { color: var(--accent); flex-shrink: 0; }

/* ----- SERVICE AREAS ----- */
.fp-service-areas-section { background: var(--bg); padding-bottom: var(--section-pad); }

.areas-header { padding-top: var(--section-pad); padding-bottom: 20px; }
.areas-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
}
.areas-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 0;
}

.areas-map-wrap {
  position: relative;
  width: 100%;
  margin-top: 0;
}
.areas-map-wrap iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  filter: grayscale(30%);
}

/* Info popup card on the map */
.areas-map-card {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-20%, -70%);
  background: #fff;
  color: #222;
  padding: 20px 24px;
  border-radius: 10px;
  box-shadow: 0 6px 32px rgba(0,0,0,.45);
  max-width: 260px;
  z-index: 10;
  pointer-events: auto;
}
.areas-map-card::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-bottom: none;
  border-top-color: #fff;
}
.areas-map-card h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  letter-spacing: 0;
  text-transform: none;
}
.areas-map-card p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 10px;
}
.areas-map-card a {
  font-size: 0.82rem;
  font-weight: 600;
  color: #c0392b;
  text-decoration: underline;
}
.areas-map-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.1rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: 2px 4px;
}
.areas-map-close:hover { color: #222; }

.areas-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  padding-top: clamp(40px, 5vw, 60px);
}
.areas-local h3, .areas-national h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.areas-list {
  list-style: none;
}
.areas-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.areas-list li:first-child { border-top: 1px solid var(--border); }
.areas-list--national li { color: var(--text-muted); }
.areas-national p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* ----- RESPONSIVE ----- */

/* ── Tablet landscape (1025–1280px): tighten nav spacing ── */
@media (max-width: 1280px) {
  .hero-title { font-size: clamp(2.8rem, 4.5vw, 5rem); }
}

/* ── Tablet (769–1024px): full desktop nav, tighter spacing ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .related-services-grid { grid-template-columns: repeat(2, 1fr); }
  #primary-nav a { padding: 8px 12px; font-size: 0.95rem; }
  .header-cta .btn { padding: 10px 18px; font-size: 0.92rem; }
  .site-logo img { height: 88px; }
}

/* ── Mobile (≤768px): hamburger nav ── */
@media (max-width: 768px) {
  :root { --header-h: 72px; }

  /* Header stacks above the overlay */
  #site-header { z-index: 2000; }
  #site-header > .container { padding-inline: 16px; max-width: 100%; }

  /* Logo LEFT — hamburger RIGHT */
  .header-inner { gap: 0; justify-content: flex-start; }
  .site-logo { flex: 1; min-width: 0; }
  .site-logo img { height: 58px; max-width: 210px; }
  .header-cta { display: none !important; }

  /* Hamburger — visible, touch-friendly */
  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    position: relative;
    z-index: 2001;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-toggle:active,
  .nav-toggle.active { background: rgba(237,116,46,.2); }
  .nav-toggle span { width: 26px; height: 3px; background: var(--white); }

  /* Full-screen nav overlay */
  #primary-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4,10,20,.98);
    z-index: 1999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: calc(var(--header-h) + 24px) 24px 60px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
  }
  #primary-nav.open { display: flex !important; }

  #primary-nav ul  { flex-direction: column; align-items: stretch; gap: 0; width: 100%; max-width: 400px; }
  #primary-nav li  { border-bottom: 1px solid rgba(255,255,255,.1); }
  #primary-nav li:first-child { border-top: 1px solid rgba(255,255,255,.1); }
  #primary-nav a {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 20px 8px;
    width: 100%;
    text-align: center;
    color: var(--white);
  }
  #primary-nav a:hover,
  #primary-nav .current-menu-item > a { color: var(--accent); }
  #primary-nav a::after { display: none; }

  .mobile-cta { display: block; margin-top: 28px; width: 100%; max-width: 400px; text-align: center; }
  .mobile-cta .btn { width: 100%; justify-content: center; font-size: 1.1rem; padding: 18px; }

  /* Hero: single-column, height auto, content fills space */
  #hero { height: auto; min-height: 100vh; }
  .hero-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    min-height: 100vh;
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: 48px;
  }
  .hero-content {
    padding-inline: clamp(16px, 5vw, 32px);
    padding-block: 24px 20px;
    justify-content: flex-start;
  }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); margin-bottom: 14px; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-actions { gap: 12px; margin-bottom: 20px; }
  .hero-trust { gap: 10px; flex-wrap: wrap; padding-top: 20px; }
  .hero-trust-item { font-size: 0.72rem; }
  .hero-image-panel {
    height: clamp(180px, 38vw, 280px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-inline: clamp(16px, 5vw, 32px);
    margin-top: 12px;
  }
  .hero-image-frame::before { background: linear-gradient(to bottom, rgba(10,14,20,.5) 0%, transparent 50%); }
  .hero-image-accent { display: none; }

  /* Other sections */
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-height: 320px; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }

  /* Financing & Warranty */
  .fin-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Service Areas */
  .areas-map-wrap iframe { height: 380px; }
  .areas-map-card { top: 40%; left: 50%; transform: translate(-50%, -60%); max-width: 220px; padding: 14px 16px; }
  .areas-bottom-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ── Small mobile (≤480px) ── */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .related-services-grid { grid-template-columns: 1fr; }
  .svc-desc-grid { grid-template-columns: 1fr; }
  .svc-hero { min-height: 55vh; }
  .svc-gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)) !important; }
}

/* ── Large desktop (≥1440px) ── */
@media (min-width: 1440px) {
  .hero-content { padding-left: clamp(48px, 6vw, 96px); }
}

/* ----- WP SPECIFIC ----- */
.wp-block-image img { border-radius: var(--radius); }
.aligncenter { text-align: center; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.wp-caption-text { font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
