/* =========================================================
   Anaconda Electrical - Design System
   Brand: Level 2 ASP specialist, Central Coast NSW
   ========================================================= */

:root {
  --c-navy: #121416;      /* near-black (brand: black + orange) */
  --c-navy-2: #1A1D20;
  --c-navy-3: #2A2E33;
  --c-orange: #FF6B1A;
  --c-orange-dark: #E45A10;
  --c-yellow: #FFD23F;
  --c-ink: #0B0C0E;
  --c-text: #23262A;
  --c-muted: #5F6570;
  --c-line: #E6E7EA;
  --c-bg: #FFFFFF;
  --c-bg-soft: #F6F6F7;
  --c-bg-dark: #121416;
  --c-success: #1F9D55;
  --c-link: #C94F0E;      /* text links: readable orange, AA contrast on white */
  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.18);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --max: 1240px;
  --max-header: 1400px;
  --ff-display: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

/* =========== Reset =========== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--c-text);
  background: var(--c-bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--c-link); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--c-orange); }
/* Links inside prose are underlined so they read as links; buttons, menus and cards are unaffected */
p a, li a, td a, figcaption a, .answer a, .post-content a, .callout a, .aside-card a, .quick-answer a, .lead a {
  color: var(--c-link); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; text-decoration-color: rgba(201,79,14,.45);
}
p a:hover, li a:hover, td a:hover, .answer a:hover, .post-content a:hover, .callout a:hover, .aside-card a:hover, .quick-answer a:hover, .lead a:hover {
  color: var(--c-orange); text-decoration-color: var(--c-orange);
}
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  color: var(--c-ink);
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
  font-weight: 800;
}
h1 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 1rem; }
small { color: var(--c-muted); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-tight { padding: 56px 0; }
.section-dark { background: var(--c-navy); color: #E8E9EC; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-soft { background: var(--c-bg-soft); }

.eyebrow {
  display: inline-block;
  color: var(--c-orange);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  margin-bottom: 14px;
}

.lead { font-size: 1.18rem; color: var(--c-muted); max-width: 62ch; }

/* =========== Buttons =========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  letter-spacing: -0.005em;
  white-space: nowrap;
  font-family: var(--ff-display);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--c-orange); color: #fff; border-color: var(--c-orange); }
.btn-primary:hover { background: var(--c-orange-dark); border-color: var(--c-orange-dark); color: #fff; }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.10); color: #fff; }
.btn-dark { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }
.btn-dark:hover { background: var(--c-ink); color: #fff; }
.btn-outline { background: #fff; color: var(--c-navy); border-color: var(--c-navy); }
.btn-outline:hover { background: var(--c-navy); color: #fff; }
.btn-lg { padding: 17px 28px; font-size: 1.05rem; }

.btn .ico { width: 20px; height: 20px; }

/* =========== Header =========== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.site-header > .container, .header-top > .container { max-width: var(--max-header); }
.header-top {
  background: var(--c-navy);
  color: #C9CBD0;
  font-size: .83rem;
  padding: 7px 0;
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.header-top a { color: #ffd79a; font-weight: 600; }
.header-top a:hover { color: #fff; }
.badge-dot { display: inline-flex; align-items: center; gap: 8px; }
.badge-dot::before { content: ""; width: 8px; height: 8px; background: #4BD27D; border-radius: 50%; box-shadow: 0 0 0 3px rgba(75,210,125,.2); }

.nav-main { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-mark {
  width: 72px; height: 72px; flex-shrink: 0; object-fit: contain;
  display: block;
}
@media (max-width: 900px) { .brand-mark { width: 60px; height: 60px; } }
@media (max-width: 560px) { .brand-mark { width: 54px; height: 54px; } }
/* Footer logo - white-glow backing so dark footer doesn't eat the line art */
.footer-brand .brand img {
  background: radial-gradient(closest-side, rgba(255,255,255,.1), transparent 75%);
  border-radius: 50%;
}
/* Mobile menu header logo */
.mobile-menu .m-brand img { border-radius: 50%; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 10px 12px; border-radius: 8px; color: var(--c-ink); font-weight: 600; font-size: .94rem;
}
.nav-links a:hover, .nav-links a.active { background: var(--c-bg-soft); color: var(--c-navy); }

.nav-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-cta .phone-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; color: var(--c-ink); font-family: var(--ff-display); white-space: nowrap; }
.nav-cta .phone-link svg { color: var(--c-orange); flex-shrink: 0; }

.nav-links a { white-space: nowrap; }

.mobile-toggle { display: none; background: none; border: none; padding: 8px; }
.mobile-toggle svg { width: 28px; height: 28px; }

@media (max-width: 1440px) {
  .nav-cta .phone-link { display: none; }
}
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .mobile-toggle { display: inline-block; }
  .nav-cta .phone-link { display: inline-flex; }
}
@media (max-width: 600px) {
  .nav-cta .btn, .nav-cta .phone-link { display: none; }
  .mobile-toggle { display: inline-block; }
}

/* Mobile menu - full-screen overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  background: #fff;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu .m-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--c-line); background: #fff;
  position: sticky; top: 0; z-index: 2;
}
.mobile-menu .m-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--c-ink); }
.mobile-menu .m-brand strong { font-family: var(--ff-display); font-size: 1rem; }
.mobile-menu .m-close {
  background: #fff; border: 1px solid var(--c-line); border-radius: 8px;
  width: 40px; height: 40px; font-size: 1.6rem; line-height: 1; color: var(--c-ink); cursor: pointer;
}
.mobile-menu .m-quick {
  padding: 16px 20px; display: grid; gap: 10px; border-bottom: 1px solid var(--c-line);
}
.mobile-menu .m-quick .btn { justify-content: center; padding: 14px 18px; }
.mobile-menu .m-nav { padding: 12px 10px; flex: 1; }
.mobile-menu .m-link {
  display: block; padding: 14px 14px; border-radius: 8px;
  color: var(--c-ink); font-weight: 700; font-family: var(--ff-display); font-size: 1.02rem;
  text-decoration: none; border: none;
}
.mobile-menu .m-link:hover, .mobile-menu .m-link:active { background: var(--c-bg-soft); }
.mobile-menu .m-group { border: none; padding: 0; margin-bottom: 4px; }
.mobile-menu .m-group summary {
  list-style: none; padding: 14px 14px; border-radius: 8px;
  font-weight: 700; font-family: var(--ff-display); font-size: 1.02rem; color: var(--c-ink);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu .m-group summary::-webkit-details-marker { display: none; }
.mobile-menu .m-group .m-chev { color: var(--c-orange); font-size: 1.2rem; transition: transform .2s ease; }
.mobile-menu .m-group[open] .m-chev { transform: rotate(180deg); }
.mobile-menu .m-group[open] > summary { background: var(--c-bg-soft); }
.mobile-menu .m-sub-wrap { padding: 4px 0 10px; border-left: 2px solid var(--c-orange); margin-left: 14px; }
.mobile-menu .m-sub {
  display: block; padding: 10px 14px; color: var(--c-text); font-weight: 500;
  text-decoration: none; font-size: .95rem; border: none;
}
.mobile-menu .m-sub:hover { color: var(--c-navy); background: var(--c-bg-soft); }
.mobile-menu .m-foot {
  padding: 16px 20px; border-top: 1px solid var(--c-line); background: var(--c-bg-soft);
  color: var(--c-muted); font-size: .78rem;
}
.mobile-menu .m-emergency {
  display: block; background: #C23B0F; color: #fff; padding: 12px; border-radius: 8px;
  text-align: center; font-weight: 800; font-family: var(--ff-display); margin-bottom: 12px; text-decoration: none;
}
.mobile-menu .m-emergency:hover { background: #A02E06; color: #fff; }

/* Dark overlay */
.mobile-backdrop {
  display: none;
  position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 150;
}
.mobile-backdrop.open { display: block; }

/* Dropdown mega menu (desktop) */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  min-width: 560px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg);
  padding: 20px; box-shadow: var(--shadow-lg);
  display: none; grid-template-columns: 1fr 1fr; gap: 4px 24px;
  z-index: 60;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: grid; }
.dropdown a { padding: 10px 12px; border-radius: 8px; display: block; font-size: .95rem; color: var(--c-ink); font-weight: 600; }
.dropdown a small { display: block; font-weight: 400; color: var(--c-muted); font-size: .82rem; margin-top: 2px; }
.dropdown a:hover { background: var(--c-bg-soft); color: var(--c-navy); }
.dropdown-heading { grid-column: 1/-1; font-size: .74rem; font-weight: 700; color: var(--c-orange); letter-spacing: .14em; text-transform: uppercase; padding: 4px 12px 6px; }

/* =========== Hero =========== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1A1D20 0%, var(--c-ink) 55%, #000 100%);
  color: #fff;
  overflow: hidden;
  padding: 72px 0 84px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(255,107,26,.22), transparent 60%),
    radial-gradient(800px 500px at 0% 110%, rgba(255,107,26,.10), transparent 60%);
  pointer-events: none;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.15fr minmax(320px, 440px); gap: 48px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.hero h1 span { color: var(--c-orange); }
.hero p { color: #C9CBD0; font-size: 1.12rem; max-width: 58ch; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.hero-badges span {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: #e4ecf5; font-size: .82rem; padding: 7px 12px; border-radius: 99px; font-weight: 600;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.hero-meta { margin-top: 26px; display: flex; gap: 18px; align-items: center; flex-wrap: wrap; font-size: .92rem; color: #B5B8BE; }
.stars { color: var(--c-yellow); letter-spacing: 2px; }

.hero-visual {
  position: relative; aspect-ratio: 3/2;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #1A1D20, #0B0C0E);
  border: 1px solid rgba(255,255,255,.1);
}
.hero-visual .placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center; text-align: center; padding: 24px;
  color: #9A9DA3; font-weight: 600;
}
.hero-visual .placeholder b { display: block; color: #fff; font-size: 1.05rem; margin-bottom: 6px; }

@media (max-width: 900px) {
  .hero { padding: 48px 0 56px; }
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { aspect-ratio: 3/2; order: -1; }
  .hero-form { order: 2; }   /* callback card sits BELOW the copy on mobile */
}

/* =========== Real images =========== */
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.img-cover {
  margin: 0; position: relative; overflow: hidden;
  border-radius: var(--radius-lg); background: var(--c-bg-soft);
  box-shadow: var(--shadow-md);
}
.img-cover img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; position: absolute; inset: 0; }
.project-card .img-cover, .post-card .img-cover { border-radius: 0; box-shadow: none; }
.hero-emergency::before { display: none; }

/* =========== Placeholder image blocks =========== */
.ph-image {
  position: relative;
  background: repeating-linear-gradient(45deg, #EEF2F7 0, #EEF2F7 10px, #E4EAF2 10px, #E4EAF2 20px);
  border: 1px dashed #B6C2D1;
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: #5A6775; text-align: center; padding: 18px;
  min-height: 200px;
  font-size: .9rem;
}
.ph-image .ph-label {
  background: #fff; padding: 8px 14px; border-radius: 99px; border: 1px solid var(--c-line);
  box-shadow: var(--shadow-sm); font-weight: 700; color: var(--c-navy); font-size: .82rem;
  max-width: 80%;
}
.ph-image.dark {
  background: repeating-linear-gradient(45deg, #1A1D20 0, #1A1D20 10px, #222529 10px, #222529 20px);
  color: #A6A9AF;
  border-color: rgba(255,255,255,.2);
}
.ph-image.dark .ph-label { background: rgba(255,255,255,.95); color: var(--c-navy); }

/* =========== Trust strip =========== */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 22px 0;
}
.trust-strip .items {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; align-items: center;
}
.trust-item { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--c-text); }
.trust-item svg { color: var(--c-orange); flex: 0 0 24px; }
.trust-item b { display: block; color: var(--c-ink); font-family: var(--ff-display); font-size: 1.02rem; }
.trust-item span { display: block; color: var(--c-muted); font-size: .82rem; }
@media (max-width: 900px) { .trust-strip .items { grid-template-columns: 1fr 1fr; gap: 16px; } }

/* =========== Service cards =========== */
.service-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.service-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #C9CBD0; color: inherit; }
.service-card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,107,26,.12), rgba(255,210,63,.12));
  color: var(--c-orange);
  display: grid; place-items: center;
}
.service-card h3 { font-size: 1.18rem; margin: 0; }
.service-card p { color: var(--c-muted); font-size: .96rem; margin: 0; }
.service-card .arrow { margin-top: auto; color: var(--c-orange); font-weight: 700; font-size: .9rem; }
.service-card .arrow::after { content: " →"; }

.service-grid.three { grid-template-columns: repeat(3, 1fr); }
.service-grid.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .service-grid.three, .service-grid.four { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .service-grid.three, .service-grid.four { grid-template-columns: 1fr; } }

/* =========== Audience blocks =========== */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.who-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 10px;
}
.who-card .tag { color: var(--c-orange); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.who-card h3 { font-size: 1.35rem; }
.who-card ul { margin: 8px 0 0; padding: 0 0 0 18px; color: var(--c-text); }
.who-card li { margin-bottom: 6px; }
@media (max-width: 900px) { .who-grid { grid-template-columns: 1fr; } }

/* =========== Process =========== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  background: var(--c-bg-soft); border-radius: var(--radius-lg); padding: 26px; position: relative;
  border: 1px solid var(--c-line);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: -18px; left: 20px;
  background: var(--c-orange); color: #fff;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--ff-display); font-weight: 800; font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.step h4 { margin-top: 8px; font-size: 1.08rem; }
.step p { font-size: .95rem; color: var(--c-muted); margin: 0; }
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* =========== Reviews =========== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 26px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-card .stars { font-size: 1.1rem; }
.review-card blockquote { margin: 0; font-size: 1rem; color: var(--c-text); line-height: 1.6; }
.review-card .byline { margin-top: auto; display: flex; align-items: center; gap: 12px; }
.review-card .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--c-navy-3), var(--c-navy)); color: #fff; display: grid; place-items: center; font-weight: 800; font-family: var(--ff-display); }
.review-card .byline b { display: block; font-family: var(--ff-display); }
.review-card .byline span { font-size: .82rem; color: var(--c-muted); }

@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* =========== Google-style review cards =========== */
.gr-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  padding: 22px 22px 18px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  min-height: 250px;
}
.gr-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.gr-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; overflow: hidden;
  display: grid; place-items: center;
  color: #fff; font-family: var(--ff-display); font-weight: 700; font-size: 1.15rem;
  background: var(--c-navy-3);
}
.gr-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gr-meta { flex: 1; min-width: 0; }
.gr-name { font-family: var(--ff-display); font-weight: 700; color: var(--c-ink); font-size: 1rem; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gr-date { color: var(--c-muted); font-size: .85rem; margin-top: 3px; }
.gr-g { width: 22px; height: 22px; flex-shrink: 0; display: block; }
.gr-stars { color: #FBBC04; font-size: 1.2rem; letter-spacing: 2px; line-height: 1; margin-bottom: 12px; }
.gr-text {
  margin: 0; color: var(--c-text); font-size: .97rem; line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
  overflow-wrap: anywhere;
}
.gr-card.expanded .gr-text { display: block; -webkit-line-clamp: unset; overflow: visible; }
.gr-more {
  display: none; align-self: flex-start;
  background: none; border: none; padding: 0; margin-top: 10px;
  color: var(--c-muted); font: inherit; font-size: .9rem; cursor: pointer;
}
.gr-card.clamped .gr-more, .gr-card.expanded .gr-more { display: inline-block; }
.gr-more:hover { color: var(--c-orange); }
.gr-card > :last-child { margin-top: auto; }

/* Hero social-proof badge (white pill on the dark hero) */
.hero-review {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 26px; padding: 10px 18px 10px 12px;
  background: #fff; color: var(--c-ink); border-radius: 99px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  text-decoration: none; transition: transform .15s ease, box-shadow .15s ease;
}
.hero-review:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.32); color: var(--c-ink); }
.hero-review-avatars { display: flex; }
.hero-review-avatar {
  width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; overflow: hidden;
  display: grid; place-items: center; color: #fff; font-family: var(--ff-display); font-weight: 700; font-size: .9rem;
  background: var(--c-navy-3); margin-left: -10px;
}
.hero-review-avatar:first-child { margin-left: 0; }
.hero-review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-review-body { line-height: 1.2; }
.hero-review-top { display: flex; align-items: center; gap: 8px; }
.hero-review-word { font-family: var(--ff-display); font-weight: 800; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; }
.hero-review-top .gr-stars { margin: 0; font-size: 1rem; letter-spacing: 1px; }
.hero-review-sub { color: var(--c-muted); font-size: .86rem; margin-top: 3px; }
.hero-review-sub strong { color: var(--c-ink); }
@media (max-width: 560px) {
  .hero-review { width: 100%; justify-content: flex-start; gap: 12px; padding: 10px 14px 10px 10px; }
  .hero-review-avatar { width: 30px; height: 30px; font-size: .8rem; }
}

/* Rating summary badge + review CTA row */
.gr-badge-row {
  display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin: 0 auto 26px;
}
.gr-badge {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 12px 22px; width: fit-content; min-height: 52px;
  background: #fff; border: 1px solid var(--c-line); border-radius: 99px; box-shadow: var(--shadow-sm);
}
.gr-review-btn { border-radius: 99px; padding: 13px 22px; min-height: 52px; gap: 10px; }
.gr-g-btn { background: #fff; border-radius: 50%; padding: 3px; width: 24px; height: 24px; }
@media (max-width: 600px) { .gr-badge, .gr-review-btn { width: 100%; justify-content: center; } }
.gr-badge-word { font-family: var(--ff-display); font-weight: 800; color: var(--c-ink); letter-spacing: .04em; text-transform: uppercase; font-size: .95rem; }
.gr-badge-count { color: var(--c-muted); font-size: .92rem; }
.gr-badge-count strong { color: var(--c-ink); }

/* Grid (reviews page) - equal-height rows */
.gr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .gr-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .gr-grid { grid-template-columns: 1fr; } }

/* Slider (homepage + service pages) - scroll-snap, no library */
.gr-slider { position: relative; }
.gr-track {
  display: flex; gap: 20px; align-items: stretch;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  padding: 4px 4px 10px; margin: -4px -4px 0;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.gr-track::-webkit-scrollbar { display: none; }
.gr-track .gr-card { flex: 0 0 calc((100% - 40px) / 3); scroll-snap-align: start; }
@media (max-width: 900px) { .gr-track .gr-card { flex-basis: calc((100% - 20px) / 2); } }
@media (max-width: 600px) { .gr-track .gr-card { flex-basis: 100%; } }
.gr-nav { display: flex; justify-content: center; align-items: center; gap: 14px; margin-top: 18px; }
.gr-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--c-line); background: #fff;
  color: var(--c-navy); font-size: 1.5rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: border-color .15s ease, color .15s ease;
}
.gr-btn:hover { border-color: var(--c-orange); color: var(--c-orange); }
.gr-btn:disabled { opacity: .35; cursor: default; }
.gr-dots { display: flex; gap: 7px; }
.gr-dot { width: 8px; height: 8px; border-radius: 50%; background: #D5DCE5; border: none; padding: 0; cursor: pointer; }
.gr-dot.active { background: var(--c-orange); }

/* Third-party Google reviews widget container (Trustindex / Elfsight / etc) */
.reviews-widget { max-width: 1100px; margin: 0 auto; min-height: 220px; }
.reviews-widget-full { max-width: none; }
.reviews-widget iframe { max-width: 100%; }

/* =========== FAQ =========== */
.faq { max-width: 860px; margin: 0 auto; }
.faq details {
  border: 1px solid var(--c-line); border-radius: var(--radius); background: #fff;
  padding: 4px 22px; margin-bottom: 10px;
}
.faq details[open] { border-color: var(--c-navy-3); box-shadow: var(--shadow-sm); }
.faq summary {
  font-weight: 700; font-family: var(--ff-display); font-size: 1.05rem; color: var(--c-ink);
  padding: 16px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 18px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--c-orange); font-size: 1.4rem; font-weight: 400; line-height: 1; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 0 18px; color: var(--c-text); line-height: 1.7; }

/* =========== Stats =========== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 22px; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--c-line); }
.stat b { display: block; font-family: var(--ff-display); color: var(--c-orange); font-size: 2.3rem; font-weight: 900; line-height: 1; }
.stat span { display: block; margin-top: 8px; color: var(--c-muted); font-size: .92rem; }
@media (max-width: 700px) { .stats { grid-template-columns: 1fr 1fr; } }

/* =========== Two col =========== */
.two-col { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.aside-card { background: var(--c-bg-soft); border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 26px; }
.aside-card h4 { font-size: 1rem; color: var(--c-navy); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; }
.aside-card ul { margin: 0; padding: 0 0 0 18px; }
.aside-card li { margin-bottom: 8px; }

/* =========== Breadcrumb =========== */
.breadcrumb { font-size: .85rem; color: var(--c-muted); padding: 18px 0 0; }
.breadcrumb a { color: var(--c-muted); }
.breadcrumb a:hover { color: var(--c-navy); }
.breadcrumb .sep { opacity: .6; margin: 0 8px; }

/* =========== CTA band =========== */
.cta-band {
  background: linear-gradient(135deg, #1A1D20, #000);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid; grid-template-columns: 1.3fr .7fr; gap: 28px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; top: -80px; right: -80px; width: 320px; height: 320px;
  background: radial-gradient(closest-side, rgba(255,107,26,.35), transparent);
}
.cta-band h2 { color: #fff; margin: 0 0 10px; }
.cta-band p { color: #C9CBD0; margin: 0; }
.cta-band .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 900px) {
  .cta-band { padding: 32px; grid-template-columns: 1fr; }
  .cta-band .cta-actions { justify-content: flex-start; }
}

/* =========== Forms =========== */
.form-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-md);
}
.form-card h3 { margin-bottom: 6px; }
.form-card p.lead { font-size: 1rem; color: var(--c-muted); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.single { grid-template-columns: 1fr; }
label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; color: var(--c-ink); }
.required { color: var(--c-orange); }
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--c-ink);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--c-orange);
  box-shadow: 0 0 0 4px rgba(255,107,26,.18);
}
textarea { resize: vertical; min-height: 110px; }
.radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.radio-card {
  display: block; padding: 12px 14px; border: 1.5px solid var(--c-line); border-radius: var(--radius); cursor: pointer;
  font-weight: 600; font-size: .95rem;
}
.radio-card input { margin-right: 8px; accent-color: var(--c-orange); }
.radio-card:hover { border-color: var(--c-navy-3); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } .radio-grid { grid-template-columns: 1fr; } }

/* File upload drop zone */
.file-drop {
  position: relative;
  border: 2px dashed #C7D2DF;
  border-radius: var(--radius);
  background: var(--c-bg-soft);
  transition: border-color .15s ease, background .15s ease;
}
.file-drop:hover, .file-drop.is-drag { border-color: var(--c-orange); background: #FFF7F1; }
.file-drop input[type="file"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer; z-index: 2;
}
.file-drop-inner {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  color: var(--c-navy);
}
.file-drop-inner svg { color: var(--c-orange); flex-shrink: 0; }
.file-drop-text strong { font-family: var(--ff-display); font-size: .96rem; }
.file-drop-text small { color: var(--c-muted); font-size: .8rem; }
.file-drop-preview {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px;
  position: relative; z-index: 3; background: #fff; border-radius: var(--radius);
}
.file-drop-preview[hidden] { display: none; }
.file-drop.has-file .file-drop-inner { display: none; }
.file-drop.has-file { border-style: solid; border-color: var(--c-success); background: #fff; }
.file-thumb { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; background: var(--c-bg-soft); }
.file-name { flex: 1; font-size: .9rem; color: var(--c-ink); word-break: break-all; }
.file-clear {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--c-line); background: #fff;
  font-size: 1.2rem; line-height: 1; color: var(--c-muted); cursor: pointer; flex-shrink: 0;
}
.file-clear:hover { color: #B3261E; border-color: #B3261E; }
.file-drop.is-error { border-color: #B3261E; background: #FDECEC; }

/* =========== Suburb grid / pills =========== */
.pill-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px; }
.pill {
  display: block; padding: 14px 18px;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  color: var(--c-ink); font-weight: 600; font-size: .95rem;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.pill:hover { border-color: var(--c-orange); background: #FFF7F1; color: var(--c-navy); }
.pill small { display: block; color: var(--c-muted); font-weight: 500; font-size: .8rem; margin-top: 2px; }

/* =========== Footer =========== */
.site-footer { background: var(--c-ink); color: #A6A9AF; padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.site-footer h5 { color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; font-family: var(--ff-display); }
.site-footer a { color: #C9CBD0; display: block; padding: 5px 0; font-size: .92rem; }
.site-footer a:hover { color: var(--c-orange); }
.footer-brand p { color: #A6A9AF; font-size: .92rem; }
.footer-brand .brand-text .name { color: #fff; }
.footer-brand .brand-text .tag { color: #8B8F96; }
.footer-meta {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .84rem; color: #8B8F96;
}
.footer-meta a { display: inline; margin-left: 16px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* =========== Mobile sticky call bar =========== */
.mobile-call-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: #fff; border-top: 1px solid var(--c-line);
  padding: 10px; gap: 10px;
  box-shadow: 0 -6px 20px rgba(0,0,0,.08);
}
.mobile-call-bar .btn { flex: 1; justify-content: center; }
@media (max-width: 760px) {
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 76px; }
}

/* =========== Emergency strip =========== */
.emergency-strip {
  background: linear-gradient(135deg, #C23B0F, #E45A10);
  color: #fff;
  padding: 14px 0;
  font-weight: 600;
  font-size: .95rem;
}
.emergency-strip .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.emergency-strip a { color: #fff; text-decoration: underline; font-weight: 800; }
.emergency-strip a:hover { color: #FFD23F; }

/* =========== Blog list =========== */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-card .ph-image { border: none; border-radius: 0; min-height: 180px; }
.post-card .post-body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.post-card .post-body .meta { font-size: .8rem; color: var(--c-muted); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.post-card h3 { font-size: 1.12rem; margin: 0; color: var(--c-ink); }
.post-card p { color: var(--c-muted); font-size: .95rem; margin: 0; }
.post-card .arrow { margin-top: auto; color: var(--c-orange); font-weight: 700; font-size: .9rem; }

/* =========== Project grid =========== */
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .project-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .project-grid { grid-template-columns: 1fr; } }
.project-card { border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--c-line); }
.project-card .ph-image { border: none; border-radius: 0; min-height: 220px; }
.project-card .meta { padding: 18px 20px; }
.project-card .meta h4 { margin: 0 0 4px; font-size: 1.05rem; }
.project-card .meta small { color: var(--c-muted); font-size: .82rem; }

/* =========== Utility =========== */
.center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-sm { margin-bottom: 12px; }
.mb-md { margin-bottom: 24px; }
.mb-lg { margin-bottom: 40px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }
.flex { display: flex; }
.gap-sm { gap: 10px; }
.gap-md { gap: 18px; }
.wrap { flex-wrap: wrap; }
.items-center { align-items: center; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

.list-check { list-style: none; padding: 0; margin: 0 0 1rem; }
.list-check li {
  position: relative; padding-left: 32px; margin-bottom: 10px;
}
.list-check li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--c-success);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M20.285 6.708 9.004 17.99 3.715 12.7l1.414-1.414 3.875 3.875 9.867-9.867 1.414 1.414z'/></svg>") center/14px no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M20.285 6.708 9.004 17.99 3.715 12.7l1.414-1.414 3.875 3.875 9.867-9.867 1.414 1.414z'/></svg>") center/14px no-repeat;
}

/* SEO breadcrumb schema list in text */
.crumbs { font-size: .88rem; color: var(--c-muted); margin-bottom: 20px; }

/* Service page table */
.spec-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); }
.spec-table th, .spec-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--c-line); font-size: .96rem; }
.spec-table td { color: var(--c-text); } /* explicit - don't inherit light text inside .section-dark */
.spec-table td:last-child { font-weight: 700; color: var(--c-ink); white-space: nowrap; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table th { background: var(--c-navy); color: #fff; font-weight: 700; font-family: var(--ff-display); }
.section-dark .spec-table { border-color: rgba(255,255,255,.15); }
.section-dark .spec-table th { background: var(--c-orange); }

/* Callout */
.callout {
  background: #FFF7F1; border: 1px solid #FFD8BB; border-left: 5px solid var(--c-orange);
  padding: 18px 20px; border-radius: var(--radius); margin: 22px 0;
}
.callout b { color: var(--c-navy); }

/* Highlight hero metric chips */
.hero-chips { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 28px; max-width: 520px; }
.hero-chips .chip {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px; padding: 14px; color: #e4ecf5;
}
.hero-chips .chip b { display: block; color: var(--c-yellow); font-family: var(--ff-display); font-size: 1.35rem; line-height: 1; }
.hero-chips .chip span { font-size: .82rem; color: #B5B8BE; }
@media (max-width: 560px) { .hero-chips { grid-template-columns: 1fr 1fr; } }

/* Google Maps embed */
.map-embed { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--c-line); background: var(--c-bg-soft); }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Landmark photo credit (required for CC-licensed images) */
.img-cover.landmark { display: block; }
.img-credit {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 8px 12px; font-size: .74rem; line-height: 1.3; color: #fff;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
}
.img-credit a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* =========== Articles (blog/) =========== */
.post-meta { color: var(--c-muted); font-size: .92rem; margin: -6px 0 22px; }
.quick-answer {
  margin: 26px 0 8px; padding: 20px 22px;
  background: #FFF7F1; border: 1px solid #FFD8BB; border-left: 5px solid var(--c-orange); border-radius: var(--radius);
}
.quick-answer-label { font-family: var(--ff-display); font-weight: 800; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--c-orange); margin-bottom: 8px; }
.quick-answer p { margin: 0; font-size: 1.08rem; line-height: 1.65; color: var(--c-ink); }
.post-content { font-size: 1.05rem; line-height: 1.75; }
.post-content h2 { margin-top: 44px; font-size: clamp(1.4rem, 2.4vw, 1.75rem); }
.post-content h3 { margin-top: 30px; }
.post-content p { margin-bottom: 1.1rem; }
.post-content ul, .post-content ol { padding-left: 24px; margin: 0 0 1.2rem; }
.post-content li { margin-bottom: 8px; }
.post-content .spec-table { margin: 18px 0 26px; font-size: .96rem; }
.post-content .spec-table td:last-child { white-space: normal; font-weight: 400; color: var(--c-text); }
.post-content .spec-table td:first-child { font-weight: 600; color: var(--c-ink); }
.post-cta {
  margin-top: 44px; padding: 22px 26px; border-radius: var(--radius-lg);
  background: var(--c-bg-soft); border: 1px solid var(--c-line);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.post-cta strong { display: block; font-family: var(--ff-display); color: var(--c-ink); }
.post-cta span { color: var(--c-muted); font-size: .95rem; }
.post-card .post-body h3 { line-height: 1.3; }


/* =========== Homepage hero: full-bleed photo + callback card =========== */
.hero-home {
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  min-height: 640px;
  padding: 84px 0 96px;
  display: flex; align-items: center;
}
.hero-home .container { width: 100%; }
/* Darken the left for legibility, keep the truck visible in the middle, and settle the right so the card sits cleanly */
.hero-home::before {
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.72) 38%, rgba(0,0,0,.35) 62%, rgba(0,0,0,.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,.45) 100%);
}
.hero-home .hero-copy { text-shadow: 0 1px 2px rgba(0,0,0,.4); }
.hero-home .hero-copy p { color: #E3E5E8; }
/* Inside the white callback card, text is dark regardless of hero rules */
.hero-form, .hero-form p, .hero-form label, .hero-form h2 { color: var(--c-text); text-shadow: none; }
.hero-form h2 { color: var(--c-ink); }
.hero-form .hero-form-head p, .hero-form .hero-form-alt { color: var(--c-muted); }
.hero-form .form-success { color: #1F9D55; }
.hero-form .form-error { color: #B3261E; }

.hero-form {
  background: #fff; color: var(--c-text);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  text-shadow: none;
  position: relative;
}
.hero-form::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px;
  background: var(--c-orange); border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero-form-head h2 { font-size: 1.35rem; margin: 4px 0 6px; color: var(--c-ink); }
.hero-form-head p { color: var(--c-muted); font-size: .92rem; margin: 0 0 16px; line-height: 1.5; }
.hero-form .form-row { margin-bottom: 10px; }
.hero-form label { font-size: .82rem; margin-bottom: 4px; }
.hero-form input, .hero-form select { padding: 11px 12px; font-size: .96rem; }
.hero-form select { appearance: none; -webkit-appearance: none; background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%235F6570' stroke-width='1.8'/></svg>") no-repeat right 12px center; padding-right: 34px; }
.hero-form .btn-lg { padding: 14px 20px; margin-top: 4px; }
.hero-form-alt { margin: 12px 0 0; font-size: .84rem; color: var(--c-muted); text-align: center; }
.hero-form-alt a { color: var(--c-ink); font-weight: 700; text-decoration: none; }
.hero-form .hp { display: none; }

@media (max-width: 900px) {
  .hero-home { min-height: 0; padding: 56px 0 48px; background-position: center 30%; }
  .hero-home::before { background: linear-gradient(180deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.72) 60%, rgba(0,0,0,.85) 100%); }
  .hero-form { padding: 22px 20px 18px; }
}


/* Accessibility: skip link (visible only when focused via keyboard) */
.skip-link { position: absolute; left: -9999px; top: 8px; z-index: 1000; background: var(--c-orange); color: #fff; padding: 10px 16px; border-radius: 8px; font-weight: 700; }
.skip-link:focus { left: 12px; outline: 3px solid #fff; }
.footer-social { margin-top: 10px; font-size: .88rem; }
.site-footer .footer-social a { display: inline; padding: 0; font-weight: 600; }
