/* ============================================================
   Trevarth Garages — Master Stylesheet
   ------------------------------------------------------------
   Design system: Premium dark + safety orange (project-trade)
   Style: Trust & Authority + Hero-Centric + Social Proof
   Reusable across trades — change tokens in :root to re-skin
   ============================================================ */

/* ---- Design tokens ----
   To re-skin for another trade, change --accent / --accent-hover */
:root {
  --primary:        #1C1917;   /* warm near-black */
  --primary-2:      #0C0A09;   /* deeper for footer */
  --secondary:      #44403C;   /* warm grey */
  --accent:         #111111;   /* black (Trevarth B&W — change to re-skin) */
  --accent-hover:   #000000;
  --accent-soft:    #EBEBEB;
  --bg:             #FAFAF9;   /* warm off-white page bg */
  --bg-alt:         #F5F5F4;   /* alt section bg */
  --bg-card:        #FFFFFF;
  --text:           #0C0A09;
  --text-muted:     #57534E;
  --text-on-dark:   #FAFAF9;
  --text-on-dark-2: rgba(250, 250, 249, 0.78);
  --border:         #E7E5E4;
  --border-dark:    #292524;
  --shadow-sm:      0 1px 3px rgba(12, 10, 9, 0.06);
  --shadow-md:      0 8px 24px rgba(12, 10, 9, 0.10);
  --shadow-lg:      0 24px 56px rgba(12, 10, 9, 0.20);
  --radius:         8px;
  --radius-lg:      16px;
  --radius-xl:      24px;
  --container:      1240px;
  --nav-height:     84px;
  --ease:           cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4, h5 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.75rem); }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { margin: 0 0 1rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---- Eyebrow / labels ---- */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
/* On dark/hero backgrounds eyebrow must be white, not near-black */
.hero .eyebrow,
.section-dark .eyebrow,
.cta-banner .eyebrow { color: rgba(255, 255, 255, 0.8); }

/* Section heading with orange underline accent */
.heading-accent {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
.heading-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.section-head.text-center .heading-accent::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}
/* On dark backgrounds (hero, CTA banners) primary buttons invert to white so they're visible */
.hero-content .btn-primary,
.cta-banner .btn-primary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.hero-content .btn-primary:hover,
.cta-banner .btn-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.btn-dark {
  background: var(--primary);
  color: #fff;
}
.btn-dark:hover {
  background: var(--primary-2);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-outline-dark:hover {
  background: var(--text);
  color: #fff;
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}
.btn-block { width: 100%; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ============================================================
   TOP UTILITY BAR  (above nav — phone + service area)
   ============================================================ */
.utility-bar {
  background: var(--primary-2);
  color: var(--text-on-dark);
  font-size: 0.875rem;
  padding: 0.5rem 0;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.utility-bar a {
  color: var(--text-on-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.utility-bar a:hover { color: #fff; }
.utility-bar .utility-left,
.utility-bar .utility-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.utility-bar svg { width: 16px; height: 16px; }
@media (max-width: 600px) {
  .utility-bar .utility-left { display: none; }
  .utility-bar .container { justify-content: center; }
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--nav-height);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo img {
  height: 60px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--secondary); }
.nav-links a.btn-primary { color: #fff; }
.nav-links a.active {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
.nav-cta {
  padding: 12px 24px;
  font-size: 0.95rem;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-200%);
    transition: transform 0.35s var(--ease);
    align-items: stretch;
    max-height: calc(100vh - var(--nav-height));
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 0.6rem 0; }
  .nav-cta { margin: 0.5rem 0 0; }
}

/* ============================================================
   HERO  (home page — image bg + booking/CTA card on right)
   ============================================================ */
.hero {
  position: relative;
  background: var(--primary);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(12, 10, 9, 0.88) 0%,
      rgba(12, 10, 9, 0.72) 45%,
      rgba(12, 10, 9, 0.35) 100%),
    url('assets/hero-main.jpg') center/cover no-repeat;
  z-index: -1;
}
.hero-home {
  padding: 5rem 0 6rem;
  min-height: 86vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  padding: 6rem 0 4rem;
  min-height: 44vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-home { min-height: auto; padding: 4rem 0; }
}

.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}
.hero h1 .accent {
  color: rgba(255, 255, 255, 0.85);
  display: block;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-on-dark-2);
  margin-bottom: 1.75rem;
  max-width: 620px;
}

/* Google-review-style badge */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.7rem 1.15rem 0.7rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.review-badge-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-badge-icon svg { width: 100%; height: 100%; }
.review-badge-text { line-height: 1.2; }
.review-badge-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 1rem;
}
.review-badge-rating .stars {
  display: inline-flex;
  color: var(--accent);
}
.review-badge-rating .stars svg { width: 14px; height: 14px; fill: #FACC15; }
.review-badge-sub {
  font-size: 0.78rem;
  color: var(--text-on-dark-2);
}

/* Trust bullets row */
.trust-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
  margin-bottom: 2rem;
  max-width: 560px;
}
.trust-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
  font-weight: 600;
  color: #fff;
}
.trust-bullets svg {
  width: 22px; height: 22px;
  color: #fff;
  flex-shrink: 0;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Hero CTA card (right side — quote request) */
.hero-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card-head {
  background: var(--accent);
  color: #fff;
  margin: -2rem -2rem 1.5rem;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.hero-card-head h3 {
  color: #fff;
  margin: 0 0 0.25rem;
  font-size: 1.4rem;
}
.hero-card-head p { margin: 0; opacity: 0.92; font-size: 0.95rem; }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section { padding: 5rem 0; }
.section-tight { padding: 2.25rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--primary); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: var(--text-on-dark-2); }
.section-head {
  max-width: 760px;
  margin: 0 auto 3rem;
}
.section-head.text-center { text-align: center; }
.section-head p {
  color: var(--text-muted);
  font-size: 1.08rem;
}
.section-dark .section-head p { color: var(--text-on-dark-2); }

/* ============================================================
   STATS ROW  (big orange numbers — Precise pattern)
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0;
}
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; gap: 1.5rem; } }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.35rem;
}
.stat-label {
  color: var(--text-muted);
  font-weight: 500;
}
.section-dark .stat-label { color: var(--text-on-dark-2); }

/* ============================================================
   WHY CHOOSE US  (4-card grid)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) {
  .feature-grid,
  .feature-grid.cols-3,
  .feature-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .feature-grid,
  .feature-grid.cols-3,
  .feature-grid.cols-2 { grid-template-columns: 1fr; }
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: all 0.3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.feature-card p { color: var(--text-muted); margin: 0; font-size: 0.95rem; }

/* Dark variant for hero-adjacent panels */
.section-dark .feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-dark);
}
.section-dark .feature-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--accent);
}
.section-dark .feature-card p { color: var(--text-on-dark-2); }

/* ============================================================
   TWO-COLUMN
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col.flip > :first-child { order: 2; }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.flip > :first-child { order: 0; }
}
.media-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}
.media-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   SERVICES — CARDS
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-card-img {
  height: 200px;
  background: var(--primary) center/cover no-repeat;
  position: relative;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(12,10,9,0.55) 100%);
}
.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-body h3 { margin-bottom: 0.5rem; }
.service-card-body p { color: var(--text-muted); flex: 1; }
.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.service-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.95rem;
}
.service-card-list li svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}
.learn-more {
  color: var(--accent);
  font-weight: 700;
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.learn-more svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.learn-more:hover svg { transform: translateX(3px); }

/* ============================================================
   PROCESS — numbered steps (Precise pattern)
   ============================================================ */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process.cols-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) {
  .process,
  .process.cols-5 { grid-template-columns: 1fr; gap: 1.25rem; }
}
.process-step {
  text-align: center;
  padding: 1rem;
}
.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}
.process-step h3 { margin-bottom: 0.5rem; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; }
.section-dark .process-step p { color: var(--text-on-dark-2); }

/* Variant: horizontal numbered list (alt style) */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.process-list-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.process-list-item:last-child { border-bottom: 0; }
.process-list-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
}
.process-list-num.outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.process-list-item h4 {
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}
.process-list-item p { color: var(--text-muted); margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s var(--ease);
}
.review-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.review-stars {
  display: inline-flex;
  gap: 0.15rem;
  margin-bottom: 1rem;
}
.review-stars svg { width: 20px; height: 20px; fill: #FACC15; }
.review-card blockquote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 1.25rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}
.review-author strong { display: block; font-size: 0.95rem; }
.review-author span { color: var(--text-muted); font-size: 0.85rem; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.gallery-filter {
  padding: 0.55rem 1.2rem;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.gallery-filter:hover { border-color: var(--accent); color: var(--accent); }
.gallery-filter.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--primary);
}
.gallery-item.hidden { display: none; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent 50%, rgba(12,10,9,0.85) 100%);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption h4 { color: #fff; margin: 0 0 0.15rem; font-size: 1rem; }
.gallery-caption span { font-size: 0.85rem; opacity: 0.85; }

/* ============================================================
   SERVICE AREA BANNER  (high-visibility strip near top of home page)
   ============================================================ */
.area-strip {
  background: var(--primary);
  color: var(--text-on-dark);
  padding: 0.9rem 0;
  border-bottom: 2px solid var(--border-dark);
}
.area-strip .container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.area-strip-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.area-strip-label svg { width: 15px; height: 15px; }
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.area-chips li {
  font-size: 0.88rem;
  color: var(--text-on-dark-2);
  font-weight: 500;
}
.area-chips li::after {
  content: ' ·';
  opacity: 0.4;
}
.area-chips li:last-child::after { display: none; }
@media (max-width: 700px) { .area-strip { display: none; } }

/* Supply + Install callout banner (services page) */
.service-promise-banner {
  background: var(--accent-soft);
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.5rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 780px) {
  .service-promise-banner { grid-template-columns: 1fr; }
}
.service-promise-banner h3 { color: var(--text); margin-bottom: 0.5rem; }
.service-promise-banner p { color: var(--text-muted); margin: 0; }
.promise-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.promise-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.promise-badge svg { width: 15px; height: 15px; }

/* ============================================================
   SERVICE AREA
   ============================================================ */
.area-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.area-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.2s var(--ease);
}
.area-list li:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}
.area-list svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.section-dark .area-list li {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-dark);
  color: #fff;
}
.section-dark .area-list li:hover { border-color: rgba(255,255,255,0.25); }
.section-dark .area-list svg { color: var(--text-on-dark-2); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr; } }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: var(--text);
}
.form-group label .req { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.10);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* Service chips selector (Precise pattern) */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.chip {
  padding: 0.55rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-alt);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success {
  background: #DCFCE7;
  color: #166534;
  border: 1px solid #BBF7D0;
}
.form-status.error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FECACA;
}

.form-secure {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-secure svg { width: 14px; height: 14px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq-item[open] { border-color: var(--accent); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .faq-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

/* ============================================================
   CTA BANNER  (mid-page + final)
   ============================================================ */
.cta-banner {
  background:
    linear-gradient(105deg, rgba(12,10,9,0.92) 0%, rgba(28,25,23,0.82) 100%),
    url('assets/Building-shed-1.jpg') center/cover;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.85rem; }
.cta-banner p {
  color: var(--text-on-dark-2);
  max-width: 640px;
  margin: 0 auto 1.75rem;
  font-size: 1.1rem;
}
.cta-banner .hero-buttons { justify-content: center; }

/* Tel highlight inside dark sections */
.tel-big {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--accent);
}
.tel-big:hover { color: var(--text-muted); }
.tel-big svg { width: 28px; height: 28px; }

/* ============================================================
   CONTACT — info cards
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-card {
  display: flex;
  gap: 1rem;
  padding: 1.35rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  align-items: flex-start;
  transition: all 0.25s var(--ease);
}
.info-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.info-card-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  flex-shrink: 0;
}
.info-card-icon svg { width: 22px; height: 22px; }
.info-card h4 { margin: 0 0 0.2rem; font-size: 1.05rem; }
.info-card-detail {
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.15rem;
}
.info-card-detail a { color: var(--text); }
.info-card-detail a:hover { color: var(--accent); }
.info-card-sub { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

.form-card {
  background: #fff;
  padding: 2.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-card h3 { margin-bottom: 0.5rem; }
.form-card .form-intro {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Hours card */
.hours-card {
  background: #fff;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.hours-list { list-style: none; padding: 0; margin: 1rem 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.hours-list li:last-child { border: 0; }
.hours-list .day { font-weight: 700; }
.hours-callout {
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.map-iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   CALLBACK STICKY BUTTON  (bottom-right floating)
   ============================================================ */
.callback-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  background: var(--accent);
  color: #fff;
  border: 0;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s var(--ease);
}
.callback-fab:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}
.callback-fab svg { width: 20px; height: 20px; }
@media (max-width: 580px) {
  .callback-fab { padding: 12px 18px; bottom: 1rem; right: 1rem; font-size: 0.9rem; }
}

/* Modal (callback request) */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 9, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-alt);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close svg { width: 18px; height: 18px; }
.modal h3 { margin-bottom: 0.5rem; }
.modal .form-intro { color: var(--text-muted); margin-bottom: 1.25rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary-2);
  color: var(--text-on-dark-2);
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.55rem; }
.footer-grid a {
  color: var(--text-on-dark-2);
  transition: color 0.2s var(--ease);
}
.footer-grid a:hover { color: #fff; }
.footer-logo img { height: 64px; width: auto; background: #fff; padding: 8px 14px; border-radius: 8px; margin-bottom: 1rem; }
.footer-blurb { margin: 0; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.footer-contact-item svg {
  width: 18px; height: 18px;
  color: var(--text-on-dark-2);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a {
  color: rgba(255,255,255,0.75);
  margin-left: 1.25rem;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-3 { margin-top: 3rem; }
.hide-mobile { }
.show-mobile { display: none; }
@media (max-width: 700px) {
  .hide-mobile { display: none; }
  .show-mobile { display: block; }
}

/* ============================================================
   SHED BUILDER PAGE — WebShed 3D designer embed (builder.html)
   Sizing is scoped to #shed-root only. Do NOT apply the full-page
   body/html overflow:hidden CSS from the vendor example — it breaks
   scrolling on the rest of the site.
   ============================================================ */
.builder-container {
  max-width: 1400px;   /* wider than --container so the 3D view breathes, capped for ultra-wide screens */
  margin: 0 auto;
  padding: 0 1.5rem;
}
#shed-root {
  width: 100%;
  min-height: 800px;
  height: calc(100vh - var(--nav-height) - 4rem);
  max-height: 1000px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
}
@media (max-width: 980px) {
  #shed-root { min-height: 700px; }
}
@media (max-width: 700px) {
  .builder-container { padding: 0; } /* full viewport width on mobile */
  #shed-root { min-height: 600px; border-radius: 0; border-left: 0; border-right: 0; }
}
.builder-note {
  margin: 1.25rem auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 620px;
  padding: 0 1.5rem;
}
.builder-note a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* Secondary "or design it in 3D" line under quote CTAs */
.cta-alt {
  margin: 1.1rem 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.cta-alt a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.cta-banner .cta-alt { color: var(--text-on-dark-2); }
.cta-banner .cta-alt a { color: #fff; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
