/* Layton Welding Co — base + home-service homepage */

:root {
  --bg: #0f1216;
  --bg-elev: #171b22;
  --bg-soft: #1e2530;
  --text: #eef2f6;
  --muted: #9aa6b5;
  --line: #2a3340;
  --accent: #f0a202;
  --accent-2: #ff6b35;
  --brand-red: #b42318;
  --brand-red-dark: #8f1a12;
  --brand-ink: #1f2933;
  --brand-muted: #5b6770;
  --brand-line: #e5e7eb;
  --brand-soft: #f5f6f8;
  --max: 1180px;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(0,0,0,.18);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --util-h: 52px;
  --nav-h: 120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(1200px 600px at 10% -10%, #243044 0%, transparent 55%),
              radial-gradient(900px 500px at 100% 0%, #3a2412 0%, transparent 45%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }

/* ===== Inner pages (existing dark chrome) ===== */
.topbar {
  background: rgba(15,18,22,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  color: var(--text);
  text-decoration: none;
}
.brand strong { font-size: 1.05rem; letter-spacing: .02em; }
.brand span { color: var(--muted); font-size: .78rem; }
.nav {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  align-items: center;
  font-size: .92rem;
}
.nav a { color: var(--text); text-decoration: none; opacity: .9; }
.nav a:hover { color: var(--accent); }
.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111 !important;
  font-weight: 700;
  padding: .55rem .9rem;
  border-radius: 999px;
  text-decoration: none !important;
}
.nav-toggle {
  display: none;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 10px;
  padding: .45rem .7rem;
  cursor: pointer;
}

.hero { padding: 3.2rem 0 2.2rem; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 1.5rem;
  align-items: start;
}
.badge {
  display: inline-flex;
  gap: .4rem;
  align-items: center;
  background: rgba(240,162,2,.12);
  border: 1px solid rgba(240,162,2,.35);
  color: var(--accent);
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
h1 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -.02em;
}
.lead {
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 54ch;
}
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.25rem 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: 8px;
  padding: .85rem 1.2rem;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  text-decoration: none !important;
  font-size: 1rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #141414;
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
  color: var(--muted);
  font-size: .9rem;
  margin-top: 1rem;
}
.trust-row strong { color: var(--text); }

.card {
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.card h2, .card h3 { margin-top: 0; }
.quote-form label {
  display: block;
  font-size: .85rem;
  color: var(--muted);
  margin: .65rem 0 .3rem;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #0c0f13;
  color: var(--text);
  padding: .7rem .8rem;
  font: inherit;
}
.quote-form textarea { min-height: 96px; resize: vertical; }
.quote-form .btn { width: 100%; margin-top: .9rem; }
.form-note { color: var(--muted); font-size: .8rem; margin-top: .6rem; }

section { padding: 2.25rem 0; }
.section-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 0 0 .5rem;
}
.section-sub { color: var(--muted); margin: 0 0 1.4rem; max-width: 60ch; }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.service-card, .area-card, .feature {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  transition: border-color .15s ease, transform .15s ease;
}
.service-card:hover, .area-card:hover {
  border-color: rgba(240,162,2,.45);
  transform: translateY(-2px);
}
.service-card h3, .area-card h3, .feature h3 {
  margin: 0 0 .45rem;
  font-size: 1.05rem;
}
.service-card p, .area-card p, .feature p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}
.service-card a, .area-card a {
  display: inline-block;
  margin-top: .7rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.content { color: var(--muted); }
.content h2 {
  color: var(--text);
  margin: 1.8rem 0 .7rem;
  font-size: 1.35rem;
}
.content h3 {
  color: var(--text);
  margin: 1.3rem 0 .5rem;
  font-size: 1.08rem;
}
.content p, .content li { color: var(--muted); }
.content ul { padding-left: 1.15rem; }
.content li { margin: .35rem 0; }
.prose-wide { max-width: 75ch; }

.faq details {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .9rem 1rem;
  margin-bottom: .65rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}
.faq p { margin: .65rem 0 0; color: var(--muted); }

.cta-band {
  margin: 1rem 0 2.5rem;
  background: linear-gradient(120deg, #2a1d0c, #172033 55%, #13241c);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cta-band h2 { margin: 0 0 .35rem; font-size: 1.35rem; }
.cta-band p { margin: 0; color: var(--muted); }

footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 6.5rem;
  background: #0b0e12;
  color: var(--muted);
  font-size: .9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 1.25rem;
}
footer h3 { color: var(--text); font-size: .95rem; margin: 0 0 .6rem; }
footer a { color: var(--muted); text-decoration: none; display: block; margin: .28rem 0; }
footer a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: space-between;
}

.mobile-callbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: rgba(12,14,18,.96);
  border-top: 1px solid var(--line);
  padding: .65rem .85rem calc(.65rem + env(safe-area-inset-bottom));
  gap: .55rem;
}
.mobile-callbar .btn { flex: 1; padding: .8rem .5rem; font-size: .95rem; }

.breadcrumb {
  color: var(--muted);
  font-size: .85rem;
  margin: 1rem 0 0;
}
.breadcrumb a { color: var(--muted); }
.page-hero { padding: 1.5rem 0 1rem; }
.page-hero h1 { margin-bottom: .6rem; }

/* =========================================================
   HOME SERVICE HOMEPAGE (A1-style structure, welding brand)
   ========================================================= */
body.home {
  background: #fff;
  color: var(--brand-ink);
  padding-top: calc(var(--util-h) + var(--nav-h));
}
body.home a { color: var(--brand-red); }

/* Sticky phone bar ABOVE nav */
.util-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: var(--util-h);
  background: #fff;
  border-bottom: 1px solid var(--brand-line);
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  box-shadow: 0 1px 0 rgba(0,0,0,.03);
}
.util-bar-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0 1rem;
}
.util-phone {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: 0 1.1rem;
  border: 1px solid var(--brand-line);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  margin: .45rem 0 0;
  color: var(--brand-ink) !important;
  font-weight: 700;
  font-size: 1.02rem;
  text-decoration: none !important;
  background: #fff;
}
.util-phone:hover { color: var(--brand-red) !important; }
.util-phone svg { width: 18px; height: 18px; flex: 0 0 auto; }
.util-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  margin: .45rem 0 0 .55rem;
  background: var(--brand-red);
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  border-radius: 10px 10px 0 0;
  min-width: 150px;
}
.util-cta:hover { background: var(--brand-red-dark); }

/* Main nav under util bar */
.home-header {
  position: fixed;
  top: var(--util-h);
  left: 0;
  right: 0;
  z-index: 70;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid var(--brand-line);
}
.home-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.home-brand {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  line-height: 0;
}
.home-brand-logo {
  height: 104px;
  width: auto;
  max-width: min(480px, 62vw);
  object-fit: contain;
  display: block;
}
.home-brand-mark { display: none; }
.home-brand-text { display: none; }

.home-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-weight: 600;
  font-size: .98rem;
}
.home-nav a {
  color: var(--brand-red) !important;
  text-decoration: none !important;
  opacity: .95;
}
.home-nav a:hover { opacity: 1; text-decoration: underline !important; }
.home-nav-toggle {
  display: none;
  border: 1px solid var(--brand-line);
  background: #fff;
  color: var(--brand-ink);
  border-radius: 8px;
  padding: .5rem .75rem;
  font-weight: 700;
  cursor: pointer;
}

/* Full-bleed hero */
.hs-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12,16,22,.82) 0%, rgba(12,16,22,.55) 48%, rgba(12,16,22,.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}
.hs-hero-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 3.5rem 0 4rem;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2rem;
  align-items: center;
}
.hs-hero h1 {
  color: #fff;
  font-size: clamp(2.35rem, 5.6vw, 4rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin: 0 0 1.15rem;
  max-width: 12ch;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hs-hero .lead {
  color: rgba(255,255,255,.92);
  font-size: 1.08rem;
  max-width: 42ch;
  margin: 0 0 1.5rem;
  line-height: 1.55;
}
.btn-solid-red {
  background: var(--brand-red);
  color: #fff !important;
  border-radius: 6px;
  padding: 1rem 1.35rem;
  font-size: 1.02rem;
  box-shadow: 0 10px 30px rgba(180,35,24,.28);
}
.btn-solid-red:hover { background: var(--brand-red-dark); }
.btn-ghost-light {
  background: rgba(255,255,255,.12);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
  padding: 1rem 1.2rem;
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.2); }

.hs-side-stack { display: grid; gap: 0; }
.hs-map-card {
  background: #fff;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}
.hs-side-stack {
  background: transparent;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,.35));
}
.hs-map-card + .hs-info-card {
  border-radius: 0 0 14px 14px;
  margin-top: 0;
  border-top: 1px solid #e5e7eb;
}

.hs-info-card {
  background: #ffffff !important;
  color: #0f172a !important;
  padding: 1.15rem 1.2rem 1.25rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 2;
}

.hs-map-frame {
  height: 240px;
  position: relative;
  background: #e8eaed;
}
.hs-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.hs-map-label {
  position: absolute;
  left: 12px;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  padding: .8rem .9rem;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  color: #111827;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hs-map-label strong {
  display: block;
  font-size: .98rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: .01em;
}
.hs-map-label span {
  display: block;
  color: #334155;
  font-size: .84rem;
  font-weight: 600;
  margin-top: .2rem;
}
.hs-map-label em {
  display: inline-flex;
  gap: .25rem;
  margin-top: .4rem;
  font-style: normal;
  font-size: .82rem;
  color: #1d4ed8;
  font-weight: 800;
}

.hs-info-card h2 {
  margin: 0 0 .55rem;
  color: #b42318 !important;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 800;
}
.hs-info-card p {
  margin: 0 0 .35rem;
  color: #1f2937 !important;
  font-weight: 600;
}
.hs-info-card .phone-lg {
  display: inline-block;
  margin: .35rem 0 .7rem;
  color: #b42318 !important;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none !important;
}
.hs-info-card .hours {
  color: #475569 !important;
  font-size: .95rem;
  line-height: 1.45;
  font-weight: 500;
}

/* Form just under the fold */
.hs-quote-band {
  background: #fff;
  border-bottom: 1px solid var(--brand-line);
  padding: 2.75rem 0 3rem;
}
.hs-quote-band-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}
.hs-quote-band h2 {
  margin: 0 0 .6rem;
  color: var(--brand-red);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -.02em;
  text-transform: uppercase;
  line-height: 1.05;
}
.hs-quote-band .intro {
  margin: 0;
  color: var(--brand-muted);
  font-size: 1.02rem;
  max-width: 40ch;
}
.hs-quote-card {
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: 14px;
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: 0 10px 40px rgba(15, 23, 42, .06);
}
.hs-quote-card h3 {
  margin: 0 0 .25rem;
  font-size: 1.2rem;
  color: var(--brand-ink);
}
.hs-quote-card .sub {
  margin: 0 0 1rem;
  color: var(--brand-muted);
  font-size: .92rem;
}
body.home .quote-form.light label { color: var(--brand-muted); }
body.home .quote-form.light input,
body.home .quote-form.light select,
body.home .quote-form.light textarea {
  background: #fff;
  border: 1px solid #d0d5dd;
  color: var(--brand-ink);
  border-radius: 8px;
}
body.home .quote-form.light input:focus,
body.home .quote-form.light select:focus,
body.home .quote-form.light textarea:focus {
  outline: 2px solid rgba(180,35,24,.2);
  border-color: var(--brand-red);
}
body.home .quote-form.light .btn-primary,
body.home .quote-form.light button.btn {
  background: var(--brand-red);
  color: #fff;
  border-radius: 6px;
}
body.home .quote-form.light .form-note { color: var(--brand-muted); }
.hs-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 .85rem;
}
.hs-form-grid .full { grid-column: 1 / -1; }

/* Light content sections under form */
body.home .hs-section {
  background: #fff;
  color: var(--brand-ink);
  padding: 3rem 0;
}
body.home .hs-section.alt { background: var(--brand-soft); }
body.home .hs-section .section-title {
  color: var(--brand-ink);
  font-size: clamp(1.55rem, 3vw, 2rem);
}
body.home .hs-section .section-sub { color: var(--brand-muted); }
body.home .service-card,
body.home .area-card,
body.home .feature {
  background: #fff;
  border: 1px solid var(--brand-line);
  box-shadow: 0 4px 18px rgba(15,23,42,.04);
}
body.home .service-card h3,
body.home .area-card h3,
body.home .feature h3 { color: var(--brand-ink); }
body.home .service-card p,
body.home .area-card p,
body.home .feature p { color: var(--brand-muted); }
body.home .service-card a,
body.home .area-card a { color: var(--brand-red); }
body.home .service-card:hover,
body.home .area-card:hover { border-color: rgba(180,35,24,.35); transform: translateY(-2px); }

body.home .content h2,
body.home .content h3 { color: var(--brand-ink); }
body.home .content p,
body.home .content li { color: var(--brand-muted); }

body.home .faq details {
  background: #fff;
  border: 1px solid var(--brand-line);
}
body.home .faq summary { color: var(--brand-ink); }
body.home .faq p { color: var(--brand-muted); }

body.home .cta-band {
  background: #fff;
  border: 1px solid var(--brand-line);
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
}
body.home .cta-band h2 { color: var(--brand-red); text-transform: uppercase; letter-spacing: -.01em; }
body.home .cta-band p { color: var(--brand-muted); }
body.home .cta-band .btn-primary {
  background: var(--brand-red);
  color: #fff;
}
body.home .cta-band .btn-secondary {
  color: var(--brand-ink);
  border-color: var(--brand-line);
}

body.home footer {
  background: #111827;
  color: #9ca3af;
  border-top: 0;
}
body.home footer h3 { color: #fff; }
body.home footer a { color: #9ca3af; }
body.home footer a:hover { color: #fff; }
body.home .footer-bottom { border-top-color: #1f2937; }

body.home .mobile-callbar {
  background: #fff;
  border-top: 1px solid var(--brand-line);
}
body.home .mobile-callbar .btn-primary {
  background: var(--brand-red);
  color: #fff;
}
body.home .mobile-callbar .btn-secondary {
  color: var(--brand-ink);
  border: 1px solid var(--brand-line);
  background: #fff;
}

@media (max-width: 960px) {
  .hs-hero-inner,
  .hs-quote-band-inner,
  .hero-grid,
  .grid-3,
  .grid-2,
  .footer-grid { grid-template-columns: 1fr; }
  .hs-hero { min-height: auto; }
  .hs-hero h1 { max-width: none; font-size: clamp(2rem, 9vw, 2.8rem); }
  .hs-form-grid { grid-template-columns: 1fr; }
  .home-nav { display: none; }
  .home-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--brand-line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: .85rem;
  }
  .home-header { position: fixed; }
  .home-header-inner { position: relative; }
  .home-nav-toggle { display: inline-block; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-toggle { display: inline-block; }
  .topbar-inner { position: relative; }
  .mobile-callbar { display: flex; }
  body.home { padding-bottom: 76px; }
  .util-cta { min-width: 0; padding: 0 .9rem; font-size: .9rem; }
  .util-phone { font-size: .92rem; padding: 0 .8rem; }
}

@media (max-width: 960px) {
  :root { --nav-h: 112px; }
  .home-brand-logo { height: 96px; max-width: min(420px, 70vw); }
}
@media (max-width: 560px) {
  :root { --nav-h: 96px; }
  .util-bar-inner { padding: 0 .5rem; }
  .home-brand-logo { height: 88px; max-width: min(360px, 78vw); }
}


/* =========================================================
   SHARED BRAND SURFACE (home + all inner pages)
   ========================================================= */
body.home,
body.inner {
  background: #fff;
  color: var(--brand-ink);
  padding-top: calc(var(--util-h) + var(--nav-h));
  padding-bottom: 88px;
}
body.home a,
body.inner a { color: var(--brand-red); }

body.home .section-title,
body.inner .section-title {
  color: var(--brand-ink);
  font-size: clamp(1.55rem, 3vw, 2rem);
}
body.home .section-sub,
body.inner .section-sub { color: var(--brand-muted); }

body.home .service-card,
body.home .area-card,
body.home .feature,
body.inner .service-card,
body.inner .area-card,
body.inner .feature {
  background: #fff;
  border: 1px solid var(--brand-line);
  box-shadow: 0 4px 18px rgba(15,23,42,.04);
}
body.home .service-card h3,
body.home .area-card h3,
body.home .feature h3,
body.inner .service-card h3,
body.inner .area-card h3,
body.inner .feature h3 { color: var(--brand-ink); }
body.home .service-card p,
body.home .area-card p,
body.home .feature p,
body.inner .service-card p,
body.inner .area-card p,
body.inner .feature p { color: var(--brand-muted); }
body.home .service-card a,
body.home .area-card a,
body.inner .service-card a,
body.inner .area-card a { color: var(--brand-red); }
body.home .service-card:hover,
body.home .area-card:hover,
body.inner .service-card:hover,
body.inner .area-card:hover {
  border-color: rgba(180,35,24,.35);
  transform: translateY(-2px);
}

body.home .content h2,
body.home .content h3,
body.inner .content h2,
body.inner .content h3 { color: var(--brand-ink); }
body.home .content p,
body.home .content li,
body.inner .content p,
body.inner .content li { color: var(--brand-muted); }

body.home .faq details,
body.inner .faq details {
  background: #fff;
  border: 1px solid var(--brand-line);
}
body.home .faq summary,
body.inner .faq summary { color: var(--brand-ink); }
body.home .faq p,
body.inner .faq p { color: var(--brand-muted); }

body.home .cta-band,
body.inner .cta-band {
  background: #fff;
  border: 1px solid var(--brand-line);
  box-shadow: 0 10px 30px rgba(15,23,42,.05);
  margin: 1rem auto 2.5rem;
}
body.home .cta-band h2,
body.inner .cta-band h2 {
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: -.01em;
}
body.home .cta-band p,
body.inner .cta-band p { color: var(--brand-muted); }
body.home .cta-band .btn-primary,
body.inner .cta-band .btn-primary,
body.home .btn-primary,
body.inner .btn-primary,
body.home .quote-form .btn-primary,
body.inner .quote-form .btn-primary,
body.home .quote-form button.btn,
body.inner .quote-form button.btn {
  background: var(--brand-red);
  color: #fff !important;
  border-radius: 6px;
}
body.home .cta-band .btn-secondary,
body.inner .cta-band .btn-secondary,
body.inner .btn-secondary {
  color: var(--brand-ink) !important;
  border: 1px solid var(--brand-line);
  background: #fff;
}

body.home .quote-form label,
body.inner .quote-form label { color: var(--brand-muted); }
body.home .quote-form input,
body.home .quote-form select,
body.home .quote-form textarea,
body.inner .quote-form input,
body.inner .quote-form select,
body.inner .quote-form textarea {
  background: #fff;
  border: 1px solid #d0d5dd;
  color: var(--brand-ink);
  border-radius: 8px;
}
body.home .quote-form input:focus,
body.home .quote-form select:focus,
body.home .quote-form textarea:focus,
body.inner .quote-form input:focus,
body.inner .quote-form select:focus,
body.inner .quote-form textarea:focus {
  outline: 2px solid rgba(180,35,24,.2);
  border-color: var(--brand-red);
}
body.home .quote-form .form-note,
body.inner .quote-form .form-note { color: var(--brand-muted); }

body.home footer,
body.inner footer {
  background: #111827;
  color: #9ca3af;
  border-top: 0;
}
body.home footer h3,
body.inner footer h3 { color: #fff; }
body.home footer a,
body.inner footer a { color: #9ca3af; }
body.home footer a:hover,
body.inner footer a:hover { color: #fff; }
body.home .footer-bottom,
body.inner .footer-bottom { border-top-color: #1f2937; }

body.home .mobile-callbar,
body.inner .mobile-callbar {
  display: flex;
  background: #fff;
  border-top: 1px solid var(--brand-line);
}
body.home .mobile-callbar .btn-primary,
body.inner .mobile-callbar .btn-primary {
  background: var(--brand-red);
  color: #fff !important;
}
body.home .mobile-callbar .btn-secondary,
body.inner .mobile-callbar .btn-secondary {
  color: var(--brand-ink) !important;
  border: 1px solid var(--brand-line);
  background: #fff;
}
@media (min-width: 961px) {
  body.home .mobile-callbar,
  body.inner .mobile-callbar { display: none; }
}

/* Inner page hero — same brand language as home (compact) */
.hs-page-hero {
  background:
    linear-gradient(90deg, rgba(12,16,22,.88) 0%, rgba(12,16,22,.62) 55%, rgba(12,16,22,.4) 100%),
    linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
  padding: 2.4rem 0 2.6rem;
}
.hs-page-hero .container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.hs-page-hero .breadcrumb,
.hs-page-hero .breadcrumb a {
  color: rgba(255,255,255,.78) !important;
  margin-top: 0;
  margin-bottom: .85rem;
}
.hs-page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem;
  align-items: start;
}
.hs-page-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin: 0 0 .9rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
}
.hs-page-hero .lead {
  color: rgba(255,255,255,.92);
  font-size: 1.05rem;
  max-width: 48ch;
  margin: 0 0 1.1rem;
}
.hs-page-hero .btn-solid-red {
  background: var(--brand-red);
  color: #fff !important;
  border-radius: 6px;
  padding: .95rem 1.2rem;
}
.hs-page-hero .btn-ghost-light {
  background: rgba(255,255,255,.12);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
  padding: .95rem 1.15rem;
}
.hs-page-hero .hs-quote-card {
  background: #fff;
  border: 0;
  border-radius: 14px;
  padding: 1.2rem 1.25rem 1.35rem;
  box-shadow: var(--shadow);
  color: var(--brand-ink);
}
.hs-page-hero .hs-quote-card h3 {
  margin: 0 0 .2rem;
  color: var(--brand-ink);
  font-size: 1.15rem;
}
.hs-page-hero .hs-quote-card .sub {
  margin: 0 0 .85rem;
  color: var(--brand-muted);
  font-size: .9rem;
}
.hs-page-hero ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: rgba(255,255,255,.9);
}
.hs-page-hero li { margin: .35rem 0; }

body.inner .hs-section {
  background: #fff;
  color: var(--brand-ink);
  padding: 2.75rem 0;
}
body.inner .hs-section.alt { background: var(--brand-soft); }
body.inner .hs-section .section-title { color: var(--brand-ink); }
body.inner .hs-section .section-sub { color: var(--brand-muted); }

body.inner .breadcrumb { color: var(--brand-muted); }
body.inner .card {
  background: #fff;
  border: 1px solid var(--brand-line);
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

/* Simple content pages (about/privacy/terms) */
.hs-simple {
  background: var(--brand-soft);
  padding: 2rem 0 3rem;
}
.hs-simple-card {
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: 14px;
  padding: 1.6rem 1.7rem 1.8rem;
  box-shadow: 0 8px 28px rgba(15,23,42,.05);
  max-width: 820px;
}
.hs-simple-card h1 {
  margin: 0 0 1rem;
  color: var(--brand-ink);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  text-transform: none;
  letter-spacing: -.02em;
}
.hs-simple-card .breadcrumb { margin-top: 0; }

@media (max-width: 960px) {
  .hs-page-hero-grid { grid-template-columns: 1fr; }
  .hs-page-hero { padding: 1.6rem 0 1.8rem; }
}


/* Always-open FAQ (no accordion) */
.faq-item {
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: 12px;
  padding: 1rem 1.15rem 1.1rem;
  margin-bottom: .75rem;
}
.faq-item .faq-q,
.faq-q {
  margin: 0 0 .45rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-ink);
  line-height: 1.3;
}
.faq-item .faq-a,
.faq-a {
  margin: 0;
  color: var(--brand-muted);
  font-size: .98rem;
  line-height: 1.55;
}
body.home .faq-item,
body.inner .faq-item {
  background: #fff;
  border: 1px solid var(--brand-line);
}
