@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@800&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary:        #816530;
  --primary-deep:   #5c4620;
  --primary-mist:   #816530cc;
  --accent:         #d49c5c;
  --accent-light:   #e8c494;
  --ink:            #15110b;
  --ink-80:         #15110bcc;
  --ink-40:         #15110b66;
  --ink-10:         #15110b1a;
  --cream:          #f6f1e8;
  --cream-dark:     #ece5d4;
  --sand:           #d8ccb0;
  --off-white:      #ffffff;
  --panel-dark:     #2a2118;
  --panel-mid:      #1e1810;

  --display:        'Inter Tight', sans-serif;
  --body:           'Inter', sans-serif;

  --rhythm:         140px;
  --rhythm-sm:      72px;
  --rhythm-xs:      48px;

  --container-max:  1200px;
  --wide-max:       1400px;
  --gutter:         clamp(20px, 4vw, 56px);

  --ease-out:       cubic-bezier(.2,.7,.2,1);
  --ease-in-out:    cubic-bezier(.45,0,.15,1);
  --duration:       600ms;

  --border-rule:    2px solid var(--primary);
  --radius-sm:      3px;
  --radius-md:      6px;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ─── Grain overlay ──────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 { font-size: clamp(52px, 8vw, 120px); }
h2 { font-size: clamp(36px, 5vw, 72px); }
h3 { font-size: clamp(24px, 3vw, 42px); }
h4 { font-size: clamp(18px, 2vw, 26px); }
p { max-width: 64ch; }
strong { font-weight: 600; }

.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-80);
  padding-bottom: 10px;
  border-bottom: var(--border-rule);
  margin-bottom: 28px;
}

/* ─── Layout utilities ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wide-container {
  width: 100%;
  max-width: var(--wide-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.bleed { width: 100%; padding-inline: 0; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  transition: background var(--duration) var(--ease-out),
              color var(--duration) var(--ease-out),
              transform 300ms var(--ease-out);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--off-white);
}
.btn-primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid var(--off-white);
}
.btn-outline:hover {
  background: var(--off-white);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding-left: 0;
  padding-right: 0;
  border-bottom: 1.5px solid var(--primary);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--primary-deep); border-color: var(--primary-deep); }

/* ─── Navigation ─────────────────────────────────────────── */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  background: var(--cream);
  border-bottom: 1px solid var(--ink-10);
  transition: box-shadow 400ms ease;
}
#site-nav.scrolled { box-shadow: 0 2px 24px var(--ink-10); }

.nav-logo {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav-logo span { color: var(--primary); }

#navLinks {
  display: flex;
  align-items: center;
  gap: 36px;
}
#navLinks a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-80);
  position: relative;
  transition: color 300ms ease;
}
#navLinks a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: width 300ms var(--ease-out);
}
#navLinks a:hover { color: var(--ink); }
#navLinks a:hover::after { width: 100%; }
#navLinks .btn { margin-left: 12px; }

#navToggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
#navToggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 300ms ease, opacity 300ms ease;
}
#navToggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#navToggle.open span:nth-child(2) { opacity: 0; }
#navToggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 80px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--rhythm) var(--gutter) var(--rhythm) calc(var(--gutter) + 12px);
}
.hero-content h1 {
  margin-bottom: 28px;
  color: var(--ink);
}
.hero-content h1 em {
  display: block;
  font-style: normal;
  color: var(--primary);
}
.hero-content p {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: var(--ink-80);
  margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--duration) var(--ease-out);
}
.hero-image:hover img { transform: scale(1.04); }

/* ─── Trust strip ────────────────────────────────────────── */
.trust-strip {
  background: var(--panel-dark);
  padding: 32px 0;
  overflow: hidden;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 56px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.trust-item .trust-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-item .trust-icon svg { width: 18px; height: 18px; fill: var(--off-white); }
.trust-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.3;
}
.trust-label span {
  display: block;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: none;
  font-size: 12px;
  color: var(--sand);
}

/* ─── Split ──────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: center;
}
.split-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration) var(--ease-out);
}
.split:hover .split-image img { transform: scale(1.04); }
.split-copy {
  padding: var(--rhythm) var(--gutter);
}
.split-copy h2 { margin-bottom: 24px; }
.split-copy p {
  color: var(--ink-80);
  margin-bottom: 20px;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
}
.split-copy .btn { margin-top: 20px; }

.split.dark {
  background: var(--panel-dark);
}
.split.dark .split-copy { background: var(--panel-dark); }
.split.dark h2 { color: var(--cream); }
.split.dark p { color: var(--sand); }
.split.dark .eyebrow { color: var(--sand); border-color: var(--accent); }

/* ─── Type band / marquee ────────────────────────────────── */
.type-band {
  background: var(--ink);
  padding: 28px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cream);
  padding-right: clamp(40px, 6vw, 80px);
}
.marquee-track span.filled {
  color: var(--accent);
  -webkit-text-stroke: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Services grid ──────────────────────────────────────── */
.services-grid {
  padding: var(--rhythm) 0;
  background: var(--cream);
}
.services-grid .section-head {
  text-align: center;
  margin-bottom: 72px;
}
.services-grid .section-head h2 { margin-bottom: 16px; }
.services-grid .section-head p {
  margin-inline: auto;
  color: var(--ink-80);
  font-size: clamp(15px, 1.4vw, 18px);
}

.services-grid-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--ink-10);
}
.service-card {
  background: var(--cream);
  padding: 52px 44px;
  position: relative;
  transition: background 400ms var(--ease-out);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms var(--ease-out);
}
.service-card:hover { background: var(--off-white); }
.service-card:hover::before { transform: scaleX(1); }
.service-card h4 {
  margin-bottom: 12px;
  color: var(--ink);
}
.service-card p {
  font-size: 15px;
  color: var(--ink-80);
  line-height: 1.65;
  max-width: 44ch;
}
.service-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  transition: gap 300ms ease, color 300ms ease;
}
.service-card:hover .card-cta { gap: 14px; }

/* ─── Gallery ────────────────────────────────────────────── */
.gallery {
  padding: var(--rhythm) 0;
  background: var(--panel-dark);
}
.gallery .section-head {
  margin-bottom: 56px;
  padding-inline: var(--gutter);
}
.gallery .section-head h2 { color: var(--cream); }
.gallery .eyebrow { color: var(--sand); border-color: var(--accent); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 7; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform var(--duration) var(--ease-out);
}
.gallery-item:nth-child(1) img { height: 520px; }
.gallery-item:hover img { transform: scale(1.04); }

/* ─── Stats ──────────────────────────────────────────────── */
.stats {
  padding: var(--rhythm) 0;
  background: var(--cream-dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--ink-10);
}
.stat-item {
  background: var(--cream);
  padding: 56px 40px;
  text-align: center;
}
.stat-number {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 8px;
}
.stat-number span { color: var(--primary); }
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-80);
}

/* ─── Split about ────────────────────────────────────────── */
.split-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: center;
}

/* ─── Service feature ────────────────────────────────────── */
.service-feature {
  padding: var(--rhythm) 0;
  background: var(--off-white);
}
.service-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-list { margin-top: 32px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--ink-10);
}
.feature-list li:first-child { border-top: 1px solid var(--ink-10); }
.feature-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  margin-top: 7px;
}
.feature-text h5 {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 14px;
  color: var(--ink-80);
  max-width: 42ch;
}

/* ─── Service areas ──────────────────────────────────────── */
.service-areas {
  padding: var(--rhythm) 0;
  background: var(--cream);
}
.service-areas .section-head {
  margin-bottom: 56px;
}
.service-areas h2 { margin-bottom: 16px; }
.service-areas .section-head p { color: var(--ink-80); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--ink-10);
}
.area-item {
  background: var(--cream);
  padding: 28px 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: background 300ms ease, color 300ms ease;
  position: relative;
}
.area-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
  transform: scaleY(0);
  transition: transform 300ms var(--ease-out);
}
.area-item:hover { background: var(--off-white); }
.area-item:hover::before { transform: scaleY(1); }

/* ─── CTA band ───────────────────────────────────────────── */
.cta-band {
  background: var(--ink);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--primary-mist) 0%, transparent 70%);
  opacity: .4;
}
.cta-band > * { position: relative; }
.cta-band h2 {
  color: var(--cream);
  font-size: clamp(40px, 6vw, 96px);
  margin-bottom: 20px;
}
.cta-band p {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--sand);
  margin-inline: auto;
  margin-bottom: 44px;
}
.cta-band-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Contact ────────────────────────────────────────────── */
.contact {
  padding: var(--rhythm) 0;
  background: var(--cream-dark);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--ink-80); margin-bottom: 36px; }

.contact-details { margin-top: 40px; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ink-10);
}
.detail-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  min-width: 80px;
  padding-top: 2px;
}
.detail-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

.contact-form { }
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-80);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--ink-10);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 300ms ease, box-shadow 300ms ease;
  outline: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary)22;
}
.form-row textarea { resize: vertical; min-height: 140px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-success {
  display: none;
  background: var(--primary);
  color: var(--off-white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  margin-top: 16px;
}
.form-success.show { display: block; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--panel-mid);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--cream);
}
.footer-brand p {
  font-size: 14px;
  color: var(--sand);
  line-height: 1.65;
  max-width: 32ch;
}
.footer-col h5 {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--sand);
  transition: color 300ms ease;
}
.footer-col ul li a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--ink-80);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--sand);
  max-width: none;
}
.footer-bottom a { color: var(--accent); }

/* ─── Animation utilities ────────────────────────────────── */
.fade-up,
.fade-left,
.fade-right,
.scale-in {
  opacity: 0;
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.fade-up    { transform: translateY(40px); }
.fade-left  { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.scale-in   { transform: scale(.94); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible,
.scale-in.visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0ms; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 100ms; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 200ms; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 300ms; }
.stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 400ms; }
.stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 500ms; }

/* ─── Mobile ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  :root {
    --rhythm: var(--rhythm-sm);
  }

  #navLinks {
    display: none;
    position: fixed;
    inset: 0;
    top: 70px;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px var(--gutter);
    gap: 24px;
    z-index: 800;
  }
  #navLinks.open { display: flex; }
  #navLinks a { font-size: 22px; letter-spacing: -.01em; }
  #navToggle { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content { padding: 100px var(--gutter) 52px; }
  .hero-image { height: 56vw; min-height: 280px; }

  .split, .split-about {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-image { min-height: 300px; order: -1; }
  .split-copy { padding: 52px var(--gutter); }

  .service-feature-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item,
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .gallery-item img,
  .gallery-item:nth-child(1) img { height: 240px; }

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

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .form-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  :root { --rhythm: var(--rhythm-xs); }

  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img,
  .gallery-item:nth-child(1) img { height: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .cta-band-buttons { flex-direction: column; align-items: center; }
  .trust-strip-inner { gap: 28px; justify-content: flex-start; padding-inline: var(--gutter); }
}

@media (min-width: 1200px) {
  .services-grid-items {
    grid-template-columns: repeat(3, 1fr);
  }
  .areas-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
