/* ============================================================
   C-FLOW PLUMBING & HEATING — styles.css
   ============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── SKIP TO CONTENT LINK (WCAG) ── */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1rem 1.5rem;
  background: var(--amber);
  color: var(--navy-d);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0 0 4px 0;
  transition: left 0.2s ease;
}

.skip-link:focus {
  left: 0;
  top: 0;
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}

:root {
  --navy:   #263f61;
  --navy-d: #1a2e48;
  --blue:   #426ca4;
  --sky:    #77bfd0;
  --sky-l:  #b2dbe6;
  --amber:  #e39c31;
  --amb-d:  #c4841a;
  --white:  #ffffff;
  --off:    #f3f7fa;
  --muted:  #5a6e84;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── FOCUS STYLES (WCAG) ── */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* Focus visible for keyboard navigation only */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(26, 46, 72, 0.97);
  backdrop-filter: blur(10px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  border-bottom: 2px solid var(--amber);
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.55rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  z-index: 201;
}

.nav-logo span {
  color: var(--amber);
}

.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

/* ── HAMBURGER MENU ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--sky-l);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-cta {
  background: var(--amber) !important;
  color: var(--navy-d) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  font-weight: 700 !important;
}

/* ── MOBILE CALL BUTTON (in nav) ── */
.nav-call-mobile {
  display: none;
  background: var(--amber);
  color: var(--navy-d);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 3px;
  transition: background 0.2s ease;
  z-index: 201;
}

.nav-call-mobile:hover {
  background: var(--amb-d);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy-d);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 64px;
}

.hero-hatch {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -52deg,
    transparent, transparent 38px,
    rgba(119, 191, 208, 0.04) 38px,
    rgba(119, 191, 208, 0.04) 39px
  );
}

.hero-shape {
  position: absolute;
  top: 0; right: 0;
  width: 52%; height: 100%;
  background: var(--navy);
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  opacity: 0.5;
}

.hero-shape-2 {
  position: absolute;
  top: 0; right: 0;
  width: 38%; height: 100%;
  background: linear-gradient(160deg, rgba(66, 108, 164, 0.25), rgba(119, 191, 208, 0.08));
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-bar {
  position: absolute;
  left: 0; top: 12%;
  height: 55%; width: 5px;
  background: var(--amber);
  border-radius: 0 3px 3px 0;
}

.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 4rem 3.5rem 2rem;
}

.hero-content {
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid rgba(119, 191, 208, 0.35);
  color: var(--sky);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 2px;
  margin-bottom: 1.6rem;
}

.hero-eyebrow::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--sky);
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(3.4rem, 7.5vw, 6.2rem);
  line-height: 0.94;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}

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

.hero-sub {
  font-size: 1.05rem;
  color: var(--sky-l);
  line-height: 1.65;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--navy-d);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.9rem;
  border-radius: 2px;
}

.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  background: rgba(38, 63, 97, 0.6);
  border-top: 1px solid rgba(119, 191, 208, 0.15);
  backdrop-filter: blur(6px);
}

.hero-stat {
  flex: 1;
  padding: 1.1rem 2rem;
  border-right: 1px solid rgba(119, 191, 208, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--amber);
}

.hero-stat span {
  font-size: 0.72rem;
  color: var(--sky-l);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── DIAGONAL CUT ── */
.cut-down {
  background: var(--navy-d);
  overflow: hidden;
  line-height: 0;
}

.cut-down svg {
  display: block;
  width: 100%;
}

/* ── TICKER ── */
.ticker-wrap {
  background: var(--amber);
  overflow: hidden;
  padding: 0.65rem 0;
  border-top: 2px solid var(--amb-d);
  border-bottom: 2px solid var(--amb-d);
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-d);
  padding: 0 2.5rem;
}

.ticker-item::before {
  content: '◆';
  margin-right: 2.5rem;
  opacity: 0.4;
}

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

/* ── SECTION LABELS & TITLES ── */
.s-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.s-label.lt { color: var(--sky); }

.s-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2.1rem, 3.8vw, 3.2rem);
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--navy);
}

.s-title.lt { color: var(--white); }

.s-title em {
  font-style: normal;
  color: var(--blue);
}

.s-title.lt em { color: var(--sky); }

/* ── SERVICES ── */
.services-section {
  background: var(--off);
  padding: 5rem 3.5rem 5.5rem;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
  border: 1px solid rgba(38, 63, 97, 0.1);
}

.svc-card {
  padding: 2rem 1.8rem;
  background: var(--white);
  border-right: 1px solid rgba(38, 63, 97, 0.1);
  border-bottom: 1px solid rgba(38, 63, 97, 0.1);
}

.svc-card:nth-child(4n)       { border-right: none; }
.svc-card:nth-last-child(-n+4) { border-bottom: none; }

.svc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--sky);
  margin-bottom: 1.2rem;
}

.svc-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.55rem;
}

.svc-card p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.6;
}

.svc-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(66, 108, 164, 0.3);
}

/* ── PIPE DIVIDER ── */
.pipe-bar {
  height: 5px;
  background: var(--navy-d);
  position: relative;
  overflow: hidden;
}

.pipe-flow {
  position: absolute;
  top: 0; left: -60%;
  height: 100%; width: 50%;
  background: linear-gradient(90deg, transparent, rgba(119, 191, 208, 0.6), transparent);
  animation: flow 3.5s ease-in-out infinite;
}

@keyframes flow {
  from { left: -60%; }
  to   { left: 120%; }
}

/* ── WATER HEATERS ── */
.wh-section {
  background: var(--white);
  padding: 5rem 3.5rem;
}

.wh-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.wh-intro {
  max-width: 520px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 0.75rem;
  margin-bottom: 3rem;
}

.wh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(38, 63, 97, 0.12);
}

.wh-card {
  background: var(--white);
  padding: 0;
  overflow: hidden;
}

.wh-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--navy-d);
}

.wh-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.wh-card:hover .wh-card-img img {
  transform: scale(1.05);
}

.wh-card > *:not(.wh-card-img) {
  padding-left: 2rem;
  padding-right: 2rem;
}

.wh-card > span.wh-tag {
  margin-top: 1.5rem;
}

.wh-card > a.wh-cta {
  margin-bottom: 2rem;
  padding-left: 0;
  padding-right: 0;
}

.wh-card > .wh-specs {
  padding-left: 2rem;
  padding-right: 2rem;
}

.wh-tag {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--navy);
  color: var(--sky-l);
  padding: 0.25rem 0.7rem;
  border-radius: 1px;
}

.wh-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.6rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.wh-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.wh-specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.wh-spec {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(38, 63, 97, 0.08);
  font-size: 0.82rem;
}

.wh-spec span:first-child { color: var(--muted); }

.wh-spec span:last-child {
  color: var(--navy);
  font-weight: 600;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.wh-cta {
  display: inline-flex;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 1px;
}

/* Featured card (Standard Tank) */
.wh-feat {
  background: var(--navy);
}

.wh-feat .wh-card-img {
  opacity: 0.7;
  mix-blend-mode: luminosity;
}

.wh-feat .wh-tag {
  background: var(--amber);
  color: var(--navy-d);
}

.wh-feat h3 {
  color: var(--white);
}

.wh-feat p {
  color: var(--sky-l);
}

.wh-feat .wh-spec {
  border-bottom-color: rgba(119, 191, 208, 0.15);
}

.wh-feat .wh-spec span:first-child {
  color: var(--sky-l);
}

.wh-feat .wh-spec span:last-child {
  color: var(--white);
}

.wh-feat .wh-cta {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.wh-footnote {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.55;
}

/* ── STRAIGHT TALK ACCORDION ── */
.talk-section {
  background: var(--off);
  padding: 5rem 3.5rem;
}

.talk-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.talk-intro {
  max-width: 480px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 0.75rem;
  margin-bottom: 2.5rem;
}

.talk-list {
  border: 1px solid rgba(38, 63, 97, 0.1);
  background: var(--white);
}

.talk-item {
  border-bottom: 1px solid rgba(38, 63, 97, 0.08);
  padding: 1.4rem 2rem;
  cursor: pointer;
}

.talk-item:last-child { border-bottom: none; }

.talk-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.talk-q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--amber);
  font-weight: 900;
  line-height: 1;
  min-width: 20px;
  text-align: center;
}

.talk-item.open .talk-q::after { content: '—'; }

.talk-a {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}

.talk-item.open .talk-a {
  max-height: 200px;
  padding-top: 0.9rem;
}

/* ── PROCESS ── */
.process-section {
  background: var(--navy);
  padding: 5.5rem 3.5rem;
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50px;
  background: var(--off);
  border-radius: 0 0 60% 60% / 0 0 80px 80px;
}

.process-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 22px; left: 2rem; right: 2rem;
  height: 1px;
  background: rgba(119, 191, 208, 0.2);
}

.process-step {
  padding: 0 2rem;
  position: relative;
}

.step-num {
  width: 44px; height: 44px;
  background: var(--navy-d);
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: var(--amber);
  margin-bottom: 1.2rem;
}

.process-step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.86rem;
  color: var(--sky-l);
  line-height: 1.6;
}

/* ── REVIEWS ── */
.reviews-section {
  background: var(--white);
  padding: 5rem 3.5rem;
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  padding: 1.8rem;
  border: 1px solid rgba(38, 63, 97, 0.1);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  background: var(--off);
}

.review-stars {
  color: var(--amber);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
}

.review-card blockquote {
  font-size: 0.9rem;
  color: var(--navy);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.review-card blockquote::before {
  content: '"';
  font-size: 1.6rem;
  color: var(--sky);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.2rem;
}

.review-author {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
}

.review-loc {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

.review-cta-card {
  background: var(--navy);
  padding: 2rem 1.8rem;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.review-cta-card .big-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--amber);
  line-height: 1;
}

.review-cta-card .sub {
  color: var(--sky-l);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.review-cta-card .stars {
  color: var(--amber);
  font-size: 1rem;
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
}

.review-cta-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
}

/* ── ABOUT ── */
.about-section {
  background: var(--off);
  padding: 5rem 3.5rem;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-body p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.about-creds {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.about-cred {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
}

.about-cred::before {
  content: '';
  width: 8px; height: 8px;
  min-width: 8px;
  background: var(--amber);
  border-radius: 50%;
}

.about-visual {
  background: var(--navy);
  padding: 3rem;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(119, 191, 208, 0.15);
  padding: 1.5rem 1.2rem;
  text-align: center;
}

.about-stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--amber);
  line-height: 1;
}

.about-stat span {
  display: block;
  font-size: 0.78rem;
  color: var(--sky-l);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* ── OUR WORK — BEFORE/AFTER ── */
.work-section {
  background: var(--white);
  padding: 5rem 3.5rem;
}

.work-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.work-intro {
  max-width: 520px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 0.75rem;
  margin-bottom: 3rem;
}

.ba-comparison {
  background: var(--off);
  border: 1px solid rgba(38, 63, 97, 0.1);
  padding: 2.5rem;
  margin-bottom: 2.5rem;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.ba-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--amber);
}

.ba-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.ba-header p {
  font-size: 0.95rem;
  color: var(--muted);
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
}

.ba-grid::before {
  content: 'VS';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--amber);
  background: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--amber);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(227, 156, 49, 0.2);
}

.ba-card {
  background: var(--white);
  border: 1px solid rgba(38, 63, 97, 0.08);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  transition: transform 0.3s ease;
}

.ba-card:hover {
  transform: translateY(-3px);
}

.ba-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--navy-d);
  position: relative;
}

.ba-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.ba-card:hover .ba-img img {
  transform: scale(1.05);
}

.ba-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  z-index: 5;
}

.ba-badge.ba-before {
  background: var(--muted);
  color: var(--white);
}

.ba-badge.ba-after {
  background: var(--amber);
  color: var(--navy-d);
}

.ba-desc {
  padding: 1.5rem 1.8rem;
}

.ba-desc h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.ba-desc p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.work-cta-banner {
  background: var(--navy);
  padding: 3rem 2.5rem;
  text-align: center;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%);
}

.work-cta-banner h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.work-cta-banner p {
  font-size: 1rem;
  color: var(--sky-l);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.work-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--navy-d);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: background 0.2s ease;
}

.work-cta-btn:hover {
  background: var(--amb-d);
}

/* ── CTA BAND ── */
.cta-wrap {
  background: var(--off);
  padding-bottom: 2rem;
}

.cta-band {
  background: var(--amber);
  padding: 5rem 3.5rem;
  clip-path: polygon(0 6%, 100% 0%, 100% 94%, 0% 100%);
  margin: -2rem 0;
  position: relative;
  z-index: 2;
}

.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 3.8vw, 3rem);
  color: var(--navy-d);
  text-transform: uppercase;
  line-height: 1.05;
}

.cta-band p {
  color: rgba(26, 46, 72, 0.7);
  margin-top: 0.4rem;
  font-size: 0.95rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  white-space: nowrap;
}

.cta-sec {
  font-size: 0.82rem;
  color: rgba(26, 46, 72, 0.65);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(26, 46, 72, 0.25);
  padding-bottom: 1px;
}

/* ── SERVICE AREAS ── */
.areas-section {
  background: var(--white);
  padding: 6rem 3.5rem 5rem;
}

.areas-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.areas-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 0.6rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-chip {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border: 1.5px solid rgba(66, 108, 164, 0.3);
  color: var(--blue);
  border-radius: 2px;
}

.areas-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.areas-meta span {
  font-size: 0.82rem;
  color: var(--muted);
}

.areas-meta .dot {
  color: rgba(90, 110, 132, 0.3);
}

/* ── FOOTER ── */
footer {
  background: var(--navy-d);
  padding: 4.5rem 3.5rem 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber) 0%, var(--sky) 50%, var(--amber) 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.f-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.f-logo span { color: var(--amber); }

.f-tagline {
  font-size: 0.85rem;
  color: rgba(232, 241, 248, 0.5);
  line-height: 1.65;
}

.f-lic {
  margin-top: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
}

.f-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.f-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.f-col ul li a {
  color: rgba(232, 241, 248, 0.55);
  text-decoration: none;
  font-size: 0.85rem;
}

.f-phone {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.f-hours {
  font-size: 0.83rem;
  color: rgba(232, 241, 248, 0.5);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(119, 191, 208, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(232, 241, 248, 0.3);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* ══════════════════════════════════════════════════════════
   RESPONSIVE / MOBILE STYLES
   ══════════════════════════════════════════════════════════ */

/* ── TABLET & BELOW (1024px) ── */
@media (max-width: 1024px) {
  nav {
    padding: 0 2rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.75rem;
  }

  .hero-body {
    padding: 3rem 2rem 2rem;
  }

  .services-section,
  .wh-section,
  .talk-section,
  .process-section,
  .reviews-section,
  .about-section,
  .work-section,
  .areas-section {
    padding: 4rem 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .svc-card:nth-child(2n) {
    border-right: none;
  }

  .svc-card:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .wh-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .process-steps::before {
    display: none;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .ba-grid {
    gap: 1.5rem;
  }

  .cta-band {
    padding: 4rem 2rem;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* ── MOBILE (768px) ── */
@media (max-width: 768px) {
  nav {
    padding: 0 1.5rem;
    height: 64px;
  }

  .nav-logo-img {
    height: 36px;
  }

  /* Show Call Now button on mobile */
  .nav-call-mobile {
    display: block;
  }

  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
  }

  /* Hide desktop phone number */
  .desktop-only {
    display: none;
  }

  /* Hide nav links by default on mobile */
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy-d);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 2px solid var(--amber);
  }

  /* Show nav links when menu is open */
  .nav-links.active {
    max-height: 400px;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(119, 191, 208, 0.1);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    display: block;
    padding: 1.2rem 1.5rem;
    font-size: 0.85rem;
    text-align: left;
    width: 100%;
    transition: background 0.2s ease;
  }

  .nav-links a:hover {
    background: rgba(119, 191, 208, 0.1);
  }

  .hero {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero-body {
    padding: 2rem 1.5rem 1.5rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .hero-stat {
    flex: 1 1 50%;
    min-width: 50%;
    padding: 1rem 1.5rem;
  }

  .hero-stat:nth-child(2),
  .hero-stat:nth-child(4) {
    border-right: none;
  }

  .hero-stat:nth-child(1),
  .hero-stat:nth-child(2) {
    border-bottom: 1px solid rgba(119, 191, 208, 0.15);
  }

  .services-section,
  .wh-section,
  .talk-section,
  .process-section,
  .reviews-section,
  .about-section,
  .work-section,
  .areas-section {
    padding: 3rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .svc-card {
    border-right: none !important;
  }

  .svc-card:not(:last-child) {
    border-bottom: 1px solid rgba(38, 63, 97, 0.1) !important;
  }

  .svc-card:last-child {
    border-bottom: none !important;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-grid {
    grid-template-columns: 1fr;
  }

  /* Before/After on mobile - stack vertically */
  .ba-comparison {
    padding: 1.5rem;
  }

  .ba-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ba-grid::before {
    content: '↓';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    font-size: 2.5rem;
  }

  .ba-img {
    height: 240px;
  }

  .work-cta-banner {
    padding: 2rem 1.5rem;
  }

  .cta-band {
    padding: 3rem 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  footer {
    padding: 3rem 1.5rem 1.5rem;
  }
}

/* ── SMALL MOBILE (480px) ── */
@media (max-width: 480px) {
  .nav-logo-img {
    height: 32px;
  }

  .nav-call-mobile {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }

  .nav-links a {
    font-size: 0.8rem;
    padding: 1rem 1.2rem;
  }

  .hero-body {
    padding: 1.5rem 1rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-amber,
  .btn-ghost {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .services-section,
  .wh-section,
  .talk-section,
  .process-section,
  .reviews-section,
  .about-section,
  .work-section,
  .areas-section {
    padding: 2.5rem 1rem;
  }

  .svc-card,
  .wh-card,
  .talk-item,
  .review-card {
    padding: 1.5rem;
  }

  .ba-comparison {
    padding: 1rem;
  }

  .ba-header h3 {
    font-size: 1.4rem;
  }

  .ba-img {
    height: 200px;
  }

  .work-cta-banner h3 {
    font-size: 1.6rem;
  }

  .cta-band {
    padding: 2.5rem 1rem;
  }

  .btn-navy,
  .work-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .area-chips {
    gap: 0.4rem;
  }

  .area-chip {
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
  }

  footer {
    padding: 2.5rem 1rem 1.5rem;
  }

  .f-logo {
    font-size: 1.5rem;
  }

  .f-phone {
    font-size: 1.5rem;
  }
}

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

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