/* ============================================================
   ANVIL FM LTD — Website v3
   LIGHT EDITORIAL · CREAM + INK + COPPER · MAGAZINE LAYOUT
   Genuinely different from v1/v2 (which were dark corporate)
   ============================================================ */

:root {
  /* Light editorial palette */
  --cream:        #F4F0E6;
  --cream-2:      #EDE6D4;
  --paper:        #FFFFFF;
  --ink:          #141414;
  --ink-soft:     #2A2A2A;
  --slate:        #5A5A5A;
  --mute:         #8A8175;
  --line:         #DDD5BE;
  --line-strong:  #C8BFA3;

  --copper:       #A8742A;     /* deep copper-gold - different from v1/v2 #C9A24B */
  --copper-deep:  #8A5E1F;
  --copper-bright:#C18B40;

  --dark:         #0F0F0F;     /* used for footer + accent blocks */

  --font-serif:   'Fraunces', 'Georgia', serif;
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --container:    1280px;
  --gutter:       32px;
  --section-y:    140px;

  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:       180ms;
  --t-med:        320ms;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px; line-height: 1.65; font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
svg { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: all var(--t-fast) var(--ease); }
button { border: 0; background: 0; font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── Typography (editorial mix) ──────────────────── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; letter-spacing: -0.02em; line-height: 1.08; color: var(--ink); }
h1 { font-size: clamp(44px, 7vw, 96px); font-weight: 500; letter-spacing: -0.035em; }
h1 em { font-style: italic; font-weight: 400; color: var(--copper); }
h2 { font-size: clamp(32px, 4.4vw, 60px); font-weight: 500; letter-spacing: -0.025em; }
h2 em { font-style: italic; font-weight: 400; color: var(--copper); }
h3 { font-size: clamp(20px, 1.8vw, 26px); font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--copper); margin-bottom: 24px;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 32px; height: 1px;
  background: var(--copper);
}

.lead {
  font-size: clamp(18px, 1.5vw, 22px); line-height: 1.6;
  color: var(--slate); max-width: 56ch;
  font-family: var(--font-sans); font-weight: 400;
}

.section-intro { max-width: 760px; margin-bottom: 80px; }
.section-intro p { color: var(--slate); font-size: 18px; line-height: 1.7; margin-top: 20px; }

/* ── Layout ──────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: var(--section-y) 0; position: relative; }

/* ── Header (cream + dark) ───────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  background: rgba(244, 240, 230, 0);
  border-bottom: 1px solid transparent;
  transition: all var(--t-med) var(--ease);
}
.site-header.scrolled {
  background: rgba(244, 240, 230, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--line);
  padding: 14px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo svg { height: 38px; width: auto; }
.logo-text {
  font-family: var(--font-serif);
  font-weight: 600; font-size: 19px; letter-spacing: 0.5px;
  color: var(--ink);
}
.logo-text em { font-style: italic; font-weight: 400; color: var(--copper); }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--slate);
  position: relative; padding: 4px 0; letter-spacing: 0.2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0;
  height: 1px; background: var(--copper);
  transition: width var(--t-med) var(--ease);
}
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }
/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px; font-size: 13px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  font-family: var(--font-sans);
  border-radius: 0; transition: all var(--t-fast) var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--ink); color: var(--cream);
  border: 1px solid var(--ink);
}
.btn-primary:hover {
  background: var(--copper); border-color: var(--copper); color: white;
}
.btn-secondary {
  background: transparent; color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.btn-arrow::after {
  content: '→'; font-size: 16px; font-weight: 400;
  transition: transform var(--t-fast) var(--ease);
}
.btn-arrow:hover::after { transform: translateX(6px); }
.btn-sm { padding: 11px 20px; font-size: 11px; }

/* ── HERO (editorial split) ──────────────────────── */
.hero {
  padding-top: 180px; padding-bottom: 80px;
  position: relative;
}
.hero-grid {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px; align-items: end;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 4px;
  color: var(--copper); margin-bottom: 32px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px; background: var(--copper);
}
.hero h1 { margin-bottom: 32px; }
.hero p.lead { margin-bottom: 48px; max-width: 60ch; font-size: clamp(18px, 1.5vw, 22px); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

/* Right column: stat ladder */
.hero-ladder {
  border-left: 1px solid var(--line-strong);
  padding-left: 36px;
}
.hero-rung {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 16px;
}
.hero-rung:last-child { border-bottom: none; }
.hero-rung .num {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(36px, 4vw, 56px); color: var(--copper);
  line-height: 1; letter-spacing: -0.02em;
}
.hero-rung .lbl {
  font-size: 13px; color: var(--slate); line-height: 1.4;
}

/* ── Big tagline strip ───────────────────────────── */
.tagline-strip {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 50px 0;
}
.tagline-strip .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.tagline-strip p {
  font-family: var(--font-serif); font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400; line-height: 1.3; color: var(--ink);
  letter-spacing: -0.015em; max-width: 700px;
}
.tagline-strip p em { font-style: italic; color: var(--copper); }
.tagline-strip .label {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 3px;
  color: var(--copper); white-space: nowrap;
}

/* ── Sectors served list (text marquee, but light) ── */
.sectors-marquee {
  background: var(--ink); color: var(--cream);
  padding: 20px 0; overflow: hidden;
  font-family: var(--font-serif); font-style: italic;
}
.sectors-track {
  display: flex; gap: 60px; animation: scroll 50s linear infinite;
  white-space: nowrap; width: max-content;
}
.sectors-track span {
  font-size: clamp(22px, 2.4vw, 32px); font-weight: 400;
  display: inline-flex; align-items: center; gap: 60px;
}
.sectors-track span::after {
  content: '✦'; color: var(--copper); font-style: normal; font-size: 18px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── ZIGZAG SERVICES LAYOUT ──────────────────────── */
.zigzag { padding: var(--section-y) 0; }
.zigzag .row {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.zigzag .row:first-of-type { border-top: 0; padding-top: 40px; }
.zigzag .row.flip { grid-template-columns: 1.3fr 1fr; }
.zigzag .row.flip .row-content { order: 2; }
.zigzag .row.flip .row-num { order: 1; }

.row-num {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(120px, 14vw, 220px); color: var(--copper);
  line-height: 0.9; letter-spacing: -0.04em;
  position: relative;
}
.row-num::after {
  content: attr(data-label);
  position: absolute; bottom: 8px; left: 0;
  font-family: var(--font-sans); font-style: normal;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--ink); padding-left: 8px;
}
.row-content h2 { margin-bottom: 20px; }
.row-content p.intro {
  font-size: 18px; line-height: 1.7; color: var(--slate);
  margin-bottom: 28px; max-width: 56ch;
}
.row-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.row-list li {
  padding: 14px 0; font-size: 15px; color: var(--ink);
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--line);
}
.row-list li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--copper); flex-shrink: 0;
}

/* ── Numbered horizontal sectors list ───────────── */
.sector-list { border-top: 1px solid var(--line-strong); }
.sector-list .item {
  display: grid; grid-template-columns: 80px 1fr 2fr;
  gap: 40px; align-items: center;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: padding var(--t-med) var(--ease);
}
.sector-list .item:hover {
  padding-left: 16px;
  background: linear-gradient(to right, var(--cream-2) 0%, transparent 70%);
}
.sector-list .item .num {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 32px; color: var(--copper);
  line-height: 1;
}
.sector-list .item h3 {
  font-family: var(--font-serif); font-size: clamp(22px, 2vw, 30px);
  font-weight: 500; letter-spacing: -0.015em;
}
.sector-list .item p { color: var(--slate); font-size: 15px; line-height: 1.6; }

/* ── Why grid (paper cards) ──────────────────────── */
.why { background: var(--cream-2); position: relative; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 0;
  border: 1px solid var(--line-strong); background: var(--paper);
}
.why-item {
  padding: 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--paper); transition: background var(--t-med);
}
.why-item:hover { background: var(--cream); }
.why-item .num {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 28px; color: var(--copper);
  margin-bottom: 24px;
}
.why-item h4 {
  font-family: var(--font-serif); font-size: 19px; font-weight: 600;
  margin-bottom: 10px;
}
.why-item p { color: var(--slate); font-size: 14px; line-height: 1.7; }

/* ── How It Works (numbered editorial) ───────────── */
.steps-editorial {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0; border-top: 1px solid var(--line-strong);
}
.step-ed {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  background: var(--cream);
  position: relative;
}
.step-ed:last-child { border-right: none; }
.step-ed::before {
  content: attr(data-num);
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: 80px; color: var(--copper);
  line-height: 1;
  display: block; margin-bottom: 12px;
}
.step-ed h4 {
  font-family: var(--font-serif); font-size: 19px;
  font-weight: 600; margin-bottom: 8px;
}
.step-ed p { color: var(--slate); font-size: 14px; line-height: 1.6; }

/* ── CTA Banner (dark inversion) ─────────────────── */
.cta-banner {
  background: var(--ink); color: var(--cream);
  padding: 120px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -200px; right: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,116,42,0.15) 0%, transparent 60%);
}
.cta-banner > .container { position: relative; z-index: 1; max-width: 900px; }
.cta-banner .eyebrow { color: var(--copper-bright); }
.cta-banner h2 { color: var(--cream); margin-bottom: 24px; }
.cta-banner h2 em { color: var(--copper-bright); }
.cta-banner p { color: rgba(244, 240, 230, 0.8); font-size: 18px; line-height: 1.7; max-width: 600px; margin-bottom: 40px; }
.cta-banner .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .btn-primary { background: var(--copper); border-color: var(--copper); color: var(--ink); }
.cta-banner .btn-primary:hover { background: var(--copper-bright); border-color: var(--copper-bright); }
.cta-banner .btn-secondary { color: var(--cream); border-color: rgba(244,240,230,0.3); }
.cta-banner .btn-secondary:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* ── Page hero (sub-pages) ───────────────────────── */
.page-hero {
  padding: 220px 0 100px; position: relative;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 18ch; }
.page-hero p { margin-top: 20px; max-width: 55ch; color: var(--slate); font-size: 19px; line-height: 1.6; }

/* ── About editorial layout ──────────────────────── */
.editorial-quote {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3.6vw, 48px); line-height: 1.3;
  letter-spacing: -0.02em;
  border-left: 3px solid var(--copper);
  padding: 32px 0 32px 40px;
  margin: 60px 0;
  max-width: 900px;
  color: var(--ink);
}
.editorial-quote em { color: var(--copper); }

.split-2col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  margin-bottom: 60px;
}
.split-2col p {
  font-size: 17px; line-height: 1.85; color: var(--slate); margin-bottom: 18px;
}
.split-2col p strong { color: var(--ink); font-weight: 600; }

/* Stats — light editorial */
.stats-light {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.stat-light {
  padding: 50px 32px; border-right: 1px solid var(--line);
}
.stat-light:last-child { border-right: none; }
.stat-light .num {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(48px, 5vw, 72px);
  color: var(--copper); line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.stat-light .lbl {
  font-size: 13px; color: var(--slate); line-height: 1.5;
}

/* ── Contact — split layout ──────────────────────── */
.contact-split {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  margin-bottom: 80px; min-height: 280px;
}
.contact-split .left { padding: 56px; }
.contact-split .right {
  padding: 56px;
  background: var(--ink); color: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
}
.contact-split .right h3 { color: var(--cream); }
.contact-split .right .phone {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(28px, 3vw, 42px); color: var(--copper-bright);
  margin: 24px 0 18px; letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 14px;
}
.contact-split .right .phone:hover { color: white; }
.contact-split .right .small { color: rgba(244,240,230,0.65); font-size: 14px; line-height: 1.6; }

.form-paper { background: var(--paper); border: 1px solid var(--line); padding: 48px; }
.form-paper h2 { font-size: 32px; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row.full { grid-template-columns: 1fr; }
.form-field label {
  display: block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--mute); margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 14px 0; font-family: inherit; font-size: 15px;
  background: transparent; color: var(--ink);
  border: 0; border-bottom: 1px solid var(--line-strong);
  border-radius: 0; transition: border-color var(--t-fast);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--copper);
}
.form-field textarea { min-height: 100px; resize: vertical; }
.form-field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23A8742A' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat; background-position: right 4px center;
  padding-right: 24px;
}

.contact-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.contact-info .block .lbl {
  font-size: 11px; color: var(--mute);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px;
}
.contact-info .block .val { color: var(--ink); font-weight: 500; font-size: 16px; line-height: 1.5; }
.contact-info .block .val a:hover { color: var(--copper); }

/* ── Footer (dark) ───────────────────────────────── */
.site-footer {
  background: var(--dark); color: var(--cream); padding: 100px 0 50px;
}
.site-footer .logo-text { color: var(--cream); }
.site-footer .logo-text em { color: var(--copper-bright); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  margin-bottom: 70px;
}
.footer-brand .logo { margin-bottom: 22px; }
.footer-brand p { color: rgba(244,240,230,0.6); font-size: 15px; line-height: 1.7; max-width: 360px; }
.footer-col h5 {
  font-family: var(--font-sans); font-weight: 600;
  font-size: 11px; text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--copper-bright); margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: rgba(244,240,230,0.7); font-size: 14px; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(244,240,230,0.1);
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(244,240,230,0.5);
}

/* ── Reveal animation ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }

/* ── Mobile ──────────────────────────────────────── */
@media (max-width: 920px) {
  :root { --section-y: 80px; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 280px; max-width: 80vw; background: var(--cream);
    flex-direction: column; align-items: flex-start; padding: 100px 32px 32px;
    gap: 8px; transform: translateX(100%);
    transition: transform var(--t-med) var(--ease);
    border-left: 1px solid var(--line);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 18px; padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  /* Call Now button stays visible on mobile */

  .hero { padding-top: 140px; padding-bottom: 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-ladder { border-left: 0; padding-left: 0; border-top: 1px solid var(--line-strong); padding-top: 32px; }

  .tagline-strip .container { gap: 16px; }

  .zigzag .row, .zigzag .row.flip {
    grid-template-columns: 1fr; gap: 24px; padding: 60px 0;
  }
  .zigzag .row.flip .row-content { order: 2; }
  .zigzag .row.flip .row-num { order: 1; }
  .row-list { grid-template-columns: 1fr; }
  .row-num { font-size: 100px; }

  .sector-list .item { grid-template-columns: 50px 1fr; gap: 20px; }
  .sector-list .item p { grid-column: 1 / -1; padding-top: 8px; }

  .steps-editorial { grid-template-columns: 1fr; }
  .step-ed { border-right: none; border-bottom: 1px solid var(--line); }
  .step-ed:last-child { border-bottom: none; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }

  .split-2col { grid-template-columns: 1fr; gap: 24px; }
  .stats-light { grid-template-columns: repeat(2, 1fr); }
  .stat-light { border-bottom: 1px solid var(--line); }
  .stat-light:nth-child(2n) { border-right: none; }

  .contact-split { grid-template-columns: 1fr; }
  .contact-split .left, .contact-split .right { padding: 36px 28px; }
  .form-paper { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 540px) {
  .stats-light { grid-template-columns: 1fr; }
  .stat-light { border-right: none !important; }
}

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

/* ============================================================
   Homepage v2 additions — strategic conversion improvements
   ============================================================ */

/* ── Hero micro-line under CTAs ──────────────────── */
.hero-microline {
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--slate);
  letter-spacing: 0.3px;
  line-height: 1.6;
}

/* ── Trust strip (immediately under hero) ────────── */
.trust-strip {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 38px 0;
  background: var(--cream-2);
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: flex-start;
}
.trust-item {
  display: flex; flex-direction: column; gap: 10px;
  text-align: left;
  padding-right: 12px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item .ico {
  width: 24px; height: 24px;
  color: var(--copper);
  flex-shrink: 0;
}
.trust-item .lbl {
  font-family: var(--font-sans);
  font-size: 12.5px; font-weight: 600;
  color: var(--ink); line-height: 1.4;
  letter-spacing: 0.1px;
}

/* ── "Who we work with" mini grid (early) ────────── */
.who-mini { padding: var(--section-y) 0 calc(var(--section-y) - 40px); }
.who-mini-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--line-strong);
}
.who-mini-item {
  padding: 28px 28px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex; align-items: baseline; gap: 16px;
  transition: background var(--t-fast);
  background: var(--paper);
}
.who-mini-item:hover { background: var(--cream-2); }
.who-mini-item:nth-child(4n) { border-right: none; }
.who-mini-item .num {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--copper); font-size: 18px;
  line-height: 1; letter-spacing: -0.01em;
}
.who-mini-item .name {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(16px, 1.4vw, 19px); color: var(--ink);
  letter-spacing: -0.01em;
}

/* ── Service block CTA (in zigzag rows) ──────────── */
.service-cta {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 28px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1.8px;
  color: var(--copper);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--copper);
  transition: all var(--t-fast) var(--ease);
}
.service-cta::after {
  content: '→'; font-size: 14px;
  transition: transform var(--t-fast) var(--ease);
}
.service-cta:hover { color: var(--ink); border-bottom-color: var(--ink); }
.service-cta:hover::after { transform: translateX(4px); }

/* ── Coverage area ──────────────────────────────── */
.coverage {
  background: var(--cream-2);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 100px 0;
  text-align: center;
}
.coverage h2 {
  max-width: 900px; margin: 0 auto 36px;
  font-size: clamp(28px, 3.6vw, 44px);
}
.coverage .cities {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px);
  color: var(--copper); letter-spacing: -0.005em;
  max-width: 900px; margin: 0 auto;
  line-height: 1.6;
}
.coverage .cities span:not(:last-child)::after {
  content: '•';
  margin: 0 14px;
  color: var(--line-strong);
  font-style: normal;
}
.coverage .footnote {
  margin-top: 28px;
  font-family: var(--font-sans);
  font-size: 12px; color: var(--slate);
  text-transform: uppercase; letter-spacing: 2.5px;
}

/* ── Footer 5-col layout (with Coverage) ─────────── */
.footer-top.with-coverage {
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

/* ── Mobile adjustments ─────────────────────────── */
@media (max-width: 920px) {
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
    padding-right: 0;
  }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }

  .who-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .who-mini-item:nth-child(4n) { border-right: 1px solid var(--line); }
  .who-mini-item:nth-child(2n) { border-right: none; }

  .footer-top.with-coverage {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-top.with-coverage .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 540px) {
  .trust-strip-grid { grid-template-columns: 1fr; }
  .trust-item { border-bottom: 1px solid var(--line); padding-bottom: 16px; }
  .trust-item:last-child { border-bottom: none; padding-bottom: 0; }

  .who-mini-grid { grid-template-columns: 1fr; }
  .who-mini-item { border-right: none !important; }

  .coverage .cities span:not(:last-child)::after {
    display: block; content: ''; margin: 0;
  }
  .coverage .cities span { display: block; padding: 4px 0; }
}

/* ============================================================
   Operational rebrand — homepage refinement
   ─ Service catalogue cards (replaces zigzag on homepage)
   ─ Operational Standards (subtle icons, not decorative numbers)
   ─ How It Works process (clean step labels)
   ─ Coverage repositioned (region-led, cities supporting)
   ─ Mobile sticky CTA bar
   ============================================================ */

/* ── Services section (new operational catalogue) ── */
.services-section { padding: var(--section-y) 0; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}

.service-card {
  background: var(--paper);
  padding: 48px 44px;
  display: flex; flex-direction: column;
  transition: background var(--t-fast);
}
.service-card:hover { background: var(--cream); }

.service-card .tag {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
}
.service-card .tag-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--copper);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-card .tag-icon svg {
  width: 16px; height: 16px;
  stroke: var(--copper); fill: none; stroke-width: 1.7;
}
.service-card .tag-label {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--copper);
}
.service-card h2 {
  font-size: clamp(22px, 2vw, 28px);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.service-card .intro {
  color: var(--slate); font-size: 15.5px;
  line-height: 1.7; margin-bottom: 24px;
}
.service-card ul {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-bottom: 28px; padding-left: 0;
}
.service-card ul li {
  padding: 11px 0; font-size: 14px;
  border-top: 1px solid var(--line);
  display: flex; gap: 10px; align-items: center;
  color: var(--ink);
  list-style: none;
}
.service-card ul li::before {
  content: ''; width: 5px; height: 5px;
  background: var(--copper); flex-shrink: 0;
  border-radius: 0;
}
.service-card .service-cta {
  margin-top: auto; align-self: flex-start;
}

/* ── Operational Standards ─────────────────────── */
.op-standards {
  background: var(--cream-2);
  padding: var(--section-y) 0;
}
.op-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
.op-item {
  background: var(--paper);
  padding: 32px 28px;
  display: flex; flex-direction: column;
}
.op-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--copper);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.op-icon svg {
  width: 18px; height: 18px;
  color: var(--copper);
}
.op-item h4 {
  font-family: var(--font-serif);
  font-size: 17px; font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
  line-height: 1.3;
}
.op-item p {
  color: var(--slate);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ── Process / How It Works ─────────────────────── */
.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.process-step {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  background: var(--cream);
}
.process-step:last-child { border-right: none; }
.process-step .step-num {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--copper);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.process-step .step-num::before {
  content: ''; width: 24px; height: 1px; background: var(--copper);
}
.process-step h4 {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.process-step p {
  color: var(--slate);
  font-size: 13.5px;
  line-height: 1.6;
}

/* ── Coverage refresh ───────────────────────────── */
.coverage .lead-centered {
  font-family: var(--font-sans);
  color: var(--slate);
  font-size: 16px; line-height: 1.7;
  max-width: 620px;
  margin: -16px auto 36px;
  text-align: center;
}
.coverage .cities {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.4vw, 17px);
  font-style: normal;
  color: var(--ink);
  letter-spacing: 0.2px;
  font-weight: 500;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.9;
}
.coverage .cities span {
  display: inline-block;
  padding: 0 4px;
}
.coverage .cities span:not(:last-child)::after {
  content: '·';
  margin: 0 12px;
  color: var(--copper);
  font-weight: 400;
}

/* ── MOBILE STICKY CTA BAR ──────────────────────── */
.mobile-cta-bar { display: none; }

@media (max-width: 920px) {
  body { padding-bottom: 64px; }
  .mobile-cta-bar {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 90;
    background: var(--ink);
    border-top: 1px solid var(--copper);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.18);
  }
  .m-cta {
    flex: 1;
    padding: 18px 12px;
    display: flex; align-items: center; justify-content: center;
    gap: 10px;
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 12px; font-weight: 600;
    letter-spacing: 1.2px; text-transform: uppercase;
    transition: background var(--t-fast);
  }
  .m-cta.call {
    background: var(--copper);
    color: var(--ink);
  }
  .m-cta.call:hover { background: var(--copper-bright); }
  .m-cta.enquire {
    border-left: 1px solid rgba(244,240,230,0.18);
  }
  .m-cta.enquire:hover { background: rgba(255,255,255,0.04); }
  .m-cta svg {
    width: 16px; height: 16px;
    flex-shrink: 0;
  }
}

/* ── Service cards mobile ───────────────────────── */
@media (max-width: 920px) {
  .service-cards { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }
  .service-card ul { grid-template-columns: 1fr; }

  .op-grid { grid-template-columns: repeat(2, 1fr); }
  .op-item { padding: 28px 22px; }

  .process { grid-template-columns: 1fr; }
  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .process-step:last-child { border-bottom: none; }

  .coverage .cities { font-size: 15px; }
  .coverage .cities span:not(:last-child)::after { margin: 0 8px; }
}

@media (max-width: 540px) {
  .op-grid { grid-template-columns: 1fr; }
  .coverage .cities span:not(:last-child)::after {
    display: block; content: ''; margin: 0;
  }
  .coverage .cities span { display: block; padding: 4px 0; }
}

/* ============================================================
   IMAGE & CARD UPGRADES — Fix sweep
   ─ Hero banner photo strip
   ─ Trust strip redesigned as proper card grid (not tiny icons)
   ─ Service cards with image thumbnails
   ─ Service-cta converted to proper button
   ─ Who We Work With with side image
   ─ Coverage with background image
   ============================================================ */

/* ── Hero banner image strip ───────────────────── */
.hero-banner-image {
  width: 100%;
  height: clamp(220px, 36vh, 400px);
  overflow: hidden;
  position: relative;
  background: var(--ink);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}
.hero-banner-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) brightness(0.92);
}
.hero-banner-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(20,20,20,0.15) 0%,
    rgba(20,20,20,0.05) 50%,
    rgba(20,20,20,0.45) 100%);
  pointer-events: none;
}

/* ── Trust strip — redesigned as proper card grid ─ */
.trust-strip {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 100px 0;
  background: var(--cream-2);
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-strong);
  border: 1px solid var(--line-strong);
}
.trust-card {
  background: var(--paper);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: background var(--t-fast) var(--ease);
}
.trust-card:hover { background: var(--cream); }
.trust-icon-wrap {
  width: 56px; height: 56px;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
  flex-shrink: 0;
  border-radius: 2px;
}
.trust-icon-wrap svg {
  width: 26px; height: 26px;
  color: var(--copper);
  display: block;
}
.trust-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.trust-desc {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.65;
}

/* ── Service cards — images + button-style CTA ── */
.service-card {
  padding: 0;            /* image goes flush, body padding inside .card-body */
  overflow: hidden;
}
.service-card .card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--ink);
  position: relative;
}
.service-card .card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: transform 0.7s var(--ease), filter 0.5s var(--ease);
}
.service-card:hover .card-image img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.service-card .card-body {
  padding: 36px 36px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Service-cta — now a real button ─────────── */
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--cream);
  border: 1px solid var(--ink);
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 0;
  margin-top: auto;
  align-self: flex-start;
  transition: all var(--t-fast) var(--ease);
  border-bottom: 1px solid var(--ink); /* keep override over old underline */
  padding-bottom: 14px;
}
.service-cta::after {
  content: '→';
  font-size: 14px;
  transition: transform var(--t-fast) var(--ease);
}
.service-cta:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: white;
}
.service-cta:hover::after { transform: translateX(4px); }

/* ── Who We Work With — split with side image ── */
.who-mini { padding: var(--section-y) 0; }
.who-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}
.who-side-image {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background: var(--ink);
}
.who-side-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) brightness(0.95);
}
.who-side-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(20,20,20,0.20) 0%,
    rgba(20,20,20,0.05) 50%,
    rgba(168,116,42,0.15) 100%);
  pointer-events: none;
}
.who-side-content { display: flex; flex-direction: column; justify-content: center; }

/* ── Coverage — background image overlay ─────── */
.coverage {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.coverage-image-wrap {
  position: absolute; inset: 0;
  z-index: 0;
}
.coverage-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(40%) brightness(0.45);
}
.coverage-image-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(15,15,15,0.85) 0%,
    rgba(15,15,15,0.78) 60%,
    rgba(15,15,15,0.92) 100%);
}
.coverage-content {
  position: relative;
  z-index: 1;
}
.coverage h2 { color: var(--cream); }
.coverage h2 em { color: var(--copper-bright); }
.coverage .lead-centered { color: rgba(244,240,230,0.78); }
.coverage .footnote {
  color: var(--copper-bright);
}

/* ── Mobile adjustments ──────────────────────── */
@media (max-width: 920px) {
  .hero-banner-image { height: 200px; }

  .trust-strip { padding: 60px 0; }
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-card { padding: 32px 24px; }

  .service-card .card-image { height: 180px; }
  .service-card .card-body { padding: 28px 24px; }

  .who-split { grid-template-columns: 1fr; gap: 32px; }
  .who-side-image { min-height: 240px; }
}

@media (max-width: 540px) {
  .trust-strip-grid { grid-template-columns: 1fr; }
  .trust-icon-wrap { width: 48px; height: 48px; }
  .trust-icon-wrap svg { width: 22px; height: 22px; }
}
