/* ==========================================================================
   Mosquito Man Plus — shared stylesheet
   A sister brand of Bugman Plus (Oshawa, ON). Same premium dark system,
   in a true yellow-and-black palette, with a linework ripple-and-mesh
   signature in place of on-site photography.
   ========================================================================== */

:root {
  color-scheme: dark;
  --bg: #060907;
  --panel: #0b0f0c;
  --panel-strong: #101613;
  --ink: #ffffff;
  --muted: #9db3a9;
  --soft: #e8ece9;
  --line: rgba(255, 255, 255, 0.14);
  --brand: #ffd500;
  --brand-rgb: 255, 213, 0;
  --brand-deep: #c9a400;
  --brand-light: #ffe14d;
  --on-brand: #111111;
  --line-strong: rgba(var(--brand-rgb), 0.35);
  --danger: #ff6b4a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.56);
  --max: 1200px;
  --pad: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(var(--brand-rgb), 0.08), transparent 60%),
    linear-gradient(180deg, rgba(var(--brand-rgb), 0.05), rgba(var(--brand-rgb), 0) 420px),
    var(--bg);
  min-height: 100vh;
}

body.modal-open {
  overflow: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
}

/* Native <select> popup lists ignore most of our custom control styling
   and fall back to the OS/browser's light theme, which pairs white text
   (inherited from the closed control) with a white dropdown panel. Force
   dark-scheme rendering and set explicit option colors so the open list
   stays readable everywhere a <select> is used, on any page. */
select {
  color-scheme: dark;
}

select option {
  background-color: var(--panel-strong);
  color: var(--soft);
}

select option:checked,
select option:hover,
select option:focus {
  background-color: var(--brand);
  color: var(--on-brand);
}

button {
  cursor: pointer;
}

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

.site-shell {
  overflow: hidden;
}

/* ============ header ============ */
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 32px), 1240px);
  min-height: 68px;
  padding: 10px 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(6, 9, 7, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 9px;
  background: #fff;
}

.brand-logo img {
  display: block;
  height: 36px;
  width: auto;
}

.brand-text {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}

.brand-text em {
  color: var(--brand);
  font-style: normal;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-link {
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 2px;
  background: var(--ink);
}

/* ============ buttons ============ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(var(--brand-rgb), 0.75);
  border-radius: 8px;
  color: var(--on-brand);
  background: var(--brand);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 36px rgba(var(--brand-rgb), 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--brand-light);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button-small {
  min-height: 38px;
  padding: 0 14px;
}

.button-wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--brand);
  font-weight: 800;
}

.text-link:hover {
  color: var(--brand-light);
}

/* ============ hero ============ */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92vh;
  padding: 150px var(--pad) 56px;
  isolation: isolate;
  overflow: hidden;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #05070a;
}

.hero-art .mesh {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(var(--brand-rgb), 0.14) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 75% 60% at 78% 30%, black 0%, transparent 72%);
}

.hero-art svg {
  position: absolute;
  right: -6%;
  top: 8%;
  width: min(62vw, 780px);
  height: auto;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 9, 7, 0.94), rgba(6, 9, 7, 0.55) 48%, rgba(6, 9, 7, 0.15)),
    linear-gradient(180deg, rgba(6, 9, 7, 0.1), var(--bg) 96%);
}

.subhero .hero-art svg {
  width: min(46vw, 420px);
  top: 2%;
  opacity: 0.38;
}

.hero-content {
  width: min(var(--max), 100%);
  max-width: var(--max);
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: 100px;
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.hero h1 em {
  color: var(--brand);
  font-style: normal;
}

.hero-lede {
  max-width: 660px;
  color: var(--soft);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(var(--max), 100%);
  max-width: var(--max);
  margin: 44px auto 0;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(6, 9, 7, 0.55);
  backdrop-filter: blur(12px);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brand);
  font-size: 30px;
  line-height: 1;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

/* ============ ticker ============ */
.ticker {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--brand);
  color: var(--on-brand);
}

.ticker div {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 12px 0;
  animation: ticker 32s linear infinite;
}

.ticker span {
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  text-transform: uppercase;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ sections ============ */
.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 112px var(--pad);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin-bottom: 16px;
  font-size: 50px;
  line-height: 1.03;
  letter-spacing: -0.01em;
}

.section-heading p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* ============ narrative (about page brand story) ============ */
.narrative-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
}

.narrative-copy {
  color: var(--soft);
  font-size: 21px;
  line-height: 1.7;
}

/* ============ approach / value cards ============ */
.approach-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.approach-card,
.value-card {
  min-height: 240px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)), var(--panel);
}

.approach-card span,
.value-card span {
  display: block;
  margin-bottom: 54px;
  color: var(--brand);
  font-weight: 900;
}

.approach-card h3,
.value-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.approach-card p,
.value-card p {
  color: var(--muted);
  line-height: 1.65;
}

/* ============ service cards ============ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  transition: border-color 220ms ease, transform 220ms ease;
}

.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
}

.service-card > a,
.service-card > div.service-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-icon-band {
  display: grid;
  place-items: center;
  min-height: 130px;
  padding: 22px;
  background:
    radial-gradient(circle at 30% 20%, rgba(var(--brand-rgb), 0.14), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    #08100a;
  color: var(--brand);
}

.card-number {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: inline-flex;
  min-width: 54px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  font-size: 32px;
  font-weight: 900;
}

.service-card-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--panel);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.service-card-meta span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(var(--brand-rgb), 0.3);
  border-radius: 999px;
  color: var(--brand);
  background: rgba(var(--brand-rgb), 0.08);
  font-size: 11px;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 26px;
}

.service-card p {
  color: var(--soft);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ============ about band ============ */
.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 42px;
  align-items: center;
  max-width: none;
  padding-left: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  padding-right: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090c09;
}

.about-band-art {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: 10px;
  background:
    radial-gradient(circle at 70% 30%, rgba(var(--brand-rgb), 0.16), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(var(--brand-rgb), 0.12), transparent 50%),
    #080b08;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-band-art svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.about-copy {
  max-width: 640px;
}

/* ============ location grid / chips ============ */
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.location-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  transition: border-color 180ms ease, background 180ms ease;
}

.location-chip:hover {
  border-color: var(--line-strong);
  background: #10150f;
}

.location-chip span {
  font-weight: 850;
}

.location-chip small {
  color: var(--brand);
  font-weight: 900;
}

/* ============ areas page ============ */
.locations-overview {
  padding-top: 56px;
}

.service-area-panel {
  display: grid;
  gap: 18px;
}

.area-group {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 30px;
  align-items: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.07), transparent 42%), var(--panel);
}

.area-group-copy p {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.area-group-copy h3 {
  max-width: 460px;
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.08;
}

.area-group-copy span {
  display: block;
  max-width: 540px;
  color: var(--muted);
  line-height: 1.65;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.area-list a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 850;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.area-list a::after {
  content: "View";
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.area-list a:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--brand-rgb), 0.4);
  background: rgba(var(--brand-rgb), 0.07);
}

/* ============ contact ============ */
.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.contact-methods a {
  display: inline-flex;
  color: var(--brand);
  font-size: 20px;
  font-weight: 900;
}

.contact-methods.large a {
  font-size: 32px;
}

.quote-stack {
  display: grid;
  gap: 16px;
}

.call-now-card {
  display: grid;
  gap: 4px;
  align-items: center;
  justify-items: center;
  min-height: 106px;
  padding: 22px;
  border: 1px solid rgba(var(--brand-rgb), 0.75);
  border-radius: 10px;
  color: var(--on-brand);
  background: linear-gradient(135deg, var(--brand), var(--brand-light)), var(--brand);
  box-shadow: 0 18px 48px rgba(var(--brand-rgb), 0.22);
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.call-now-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(var(--brand-rgb), 0.3);
}

.call-now-card span {
  font-size: 17px;
  font-weight: 900;
  text-transform: uppercase;
}

.call-now-card strong {
  font-size: 36px;
  line-height: 1;
  font-weight: 950;
}

.quote-form {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(16, 20, 17, 0.82);
  box-shadow: var(--shadow);
}

.form-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  padding: 0 14px;
  outline: none;
}

.quote-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 8l5 5 5-5' stroke='%239db3a9' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--brand);
}

.quote-form input:invalid:not(:placeholder-shown),
.quote-form.was-validated input:invalid,
.quote-form.was-validated select:invalid,
.quote-form.was-validated textarea:invalid {
  border-color: var(--danger);
}

.quote-form textarea {
  min-height: 140px;
  padding-top: 14px;
  resize: vertical;
}

.form-full {
  grid-column: 1 / -1;
}

.quote-form .button {
  margin-top: 18px;
}

.form-note {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.form-note.is-error {
  color: var(--danger);
}

/* ============ accordion ============ */
.accordion {
  display: grid;
  gap: 12px;
}

.accordion-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
}

.accordion-item button {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 22px;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 850;
  font-size: 15.5px;
}

.accordion-mark {
  flex-shrink: 0;
  color: var(--brand);
  font-size: 22px;
  font-weight: 900;
}

.accordion-panel {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}

/* ============ subhero (inner pages) ============ */
.subhero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 480px;
  padding: 158px var(--pad) 60px;
  isolation: isolate;
  overflow: hidden;
}

.subhero-content {
  width: min(860px, 100%);
  max-width: var(--max);
  margin: 0 auto;
}

.subhero h1 {
  margin-bottom: 16px;
  font-size: 68px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.subhero p {
  max-width: 680px;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.6;
}

/* ============ footer ============ */
.site-footer {
  max-width: calc(var(--max) + 48px);
  margin: 80px auto 24px;
  padding: 42px 42px 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #060907;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.6fr 1.1fr;
  gap: 42px;
}

.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.site-footer a:hover {
  color: var(--brand);
}

.footer-links {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.footer-brand .brand-text {
  font-size: 17px;
}

.footer-brand p {
  margin-top: 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 50px;
  color: var(--muted);
  font-size: 13px;
}

.back-to-top {
  display: inline-flex;
  min-width: 44px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.back-to-top:hover {
  border-color: var(--line-strong);
  color: var(--brand);
}

/* ============ mobile call float ============ */
.mobile-call-float {
  display: none;
}

/* ============ 5% new-customer popup ============ */
.discount-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.discount-modal[hidden] {
  display: none;
}

.discount-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.discount-dialog {
  position: relative;
  width: min(100%, 480px);
  padding: 34px;
  border: 1px solid rgba(var(--brand-rgb), 0.42);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.1), rgba(255, 255, 255, 0.025)), #0a0d0a;
  box-shadow: var(--shadow);
}

.discount-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  font-size: 26px;
  line-height: 1;
}

.discount-close:hover {
  border-color: var(--line-strong);
  color: var(--brand);
}

.discount-dialog h2 {
  max-width: 360px;
  margin-bottom: 14px;
  font-size: 36px;
  line-height: 1.06;
}

.discount-dialog > p {
  color: var(--soft);
  line-height: 1.6;
}

.discount-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.discount-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 850;
}

.discount-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  padding: 0 14px;
  outline: none;
}

.discount-form input:focus {
  border-color: var(--brand);
}

.discount-note {
  min-height: 20px;
  margin: 4px 0 0;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.discount-note.is-error {
  color: var(--danger);
}

.discount-success {
  margin: 4px 0 0;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.discount-call {
  display: inline-flex;
  margin-top: 16px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
}

.discount-call:hover {
  color: var(--brand-light);
}

/* ============ reveal ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============ responsive ============ */
@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .primary-nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(6, 9, 7, 0.97);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    min-height: 46px;
  }

  .header-actions {
    justify-self: end;
  }

  .call-link {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero-art svg {
    width: 70vw;
    opacity: 0.32;
  }

  .hero-metrics,
  .approach-grid,
  .values-grid,
  .service-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-band,
  .contact-split,
  .narrative-grid,
  .area-group {
    grid-template-columns: 1fr;
  }

  .area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subhero h1 {
    font-size: 52px;
  }
}

@media (max-width: 680px) {
  :root {
    --pad: 18px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    gap: 10px;
  }

  .site-shell {
    padding-bottom: 92px;
  }

  .mobile-call-float {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
    z-index: 80;
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 18px;
    border: 1px solid rgba(var(--brand-rgb), 0.8);
    border-radius: 10px;
    color: var(--on-brand);
    background: linear-gradient(90deg, var(--brand), var(--brand-light), var(--brand));
    background-size: 260% 100%;
    box-shadow: 0 18px 52px rgba(var(--brand-rgb), 0.26);
    animation: mobileCallColor 4s ease-in-out infinite;
  }

  @keyframes mobileCallColor {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  .mobile-call-float span {
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .mobile-call-float strong {
    font-size: 19px;
    line-height: 1;
    font-weight: 950;
    white-space: nowrap;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding-top: 122px;
    padding-bottom: 40px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 9, 7, 0.94), rgba(6, 9, 7, 0.68)),
      linear-gradient(180deg, rgba(6, 9, 7, 0.1), var(--bg) 96%);
  }

  .discount-modal {
    padding: 14px;
  }

  .discount-dialog {
    padding: 28px 18px 20px;
  }

  .discount-dialog h2 {
    font-size: 30px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.02;
  }

  .hero-lede,
  .subhero p {
    font-size: 16.5px;
  }

  .hero-metrics,
  .approach-grid,
  .values-grid,
  .service-grid,
  .area-list,
  .location-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    margin-top: 26px;
  }

  .section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-heading.split {
    display: grid;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .about-band {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .subhero {
    min-height: 400px;
    padding-top: 122px;
    padding-bottom: 40px;
  }

  .subhero h1 {
    font-size: 38px;
  }

  .contact-methods.large a {
    font-size: 24px;
  }

  .call-now-card {
    min-height: 92px;
    padding: 18px;
  }

  .call-now-card strong {
    font-size: 27px;
  }

  .quote-form {
    padding: 18px;
  }

  .site-footer {
    margin-top: 46px;
    padding: 24px 18px;
  }

  .footer-bottom {
    display: grid;
    margin-top: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
