/* ==========================================================================
   SLS Project Solutions
   Roof and Cladding Specialists
   Design system: bold industrial
   ========================================================================== */

:root {
  /* Core palette */
  --ink:        #0E1013;
  --ink-2:      #14171C;
  --panel:      #1A1E24;
  --panel-2:    #22272F;
  --line:       #2E343D;
  --steel:      #98A1AC;
  --steel-2:    #C3CAD3;
  --paper:      #F4F6F8;
  --white:      #FFFFFF;

  /* Accent */
  --accent:     #FF6A13;
  --accent-2:   #FF8B41;
  --accent-ink: #0E1013;

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --max: 1200px;
  --gutter: 24px;
  --radius: 4px;

  --shadow: 0 18px 50px rgba(0, 0, 0, .35);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--steel-2);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 .6em;
  font-weight: 800;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.35rem); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.narrow { max-width: 800px; }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--steel-2);
  line-height: 1.6;
}

.muted { color: var(--steel); }

.section {
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
}

.section--light {
  background: var(--paper);
  color: #3A424C;
}
.section--light h1,
.section--light h2,
.section--light h3 { color: var(--ink); }
.section--light .lead { color: #4A525C; }
.section--light .muted { color: #6B7480; }

.section--panel { background: var(--ink-2); }

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

/* Hazard stripe divider, a nod to site signage */
.stripe {
  height: 6px;
  background: repeating-linear-gradient(
    135deg,
    var(--accent) 0 18px,
    var(--ink) 18px 36px
  );
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
}
.btn--primary:hover { background: var(--accent-2); }

.btn--ghost {
  border-color: var(--line);
  color: var(--white);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.section--light .btn--ghost {
  border-color: #C9D0D8;
  color: var(--ink);
}
.section--light .btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 16, 19, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: .01em;
  color: var(--white);
}
.brand__sub {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav a {
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--steel-2);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color .16s ease, border-color .16s ease;
}
.nav a:hover { color: var(--white); }
.nav a[aria-current="page"] {
  color: var(--white);
  border-bottom-color: var(--accent);
}

.header-cta { flex-shrink: 0; }
.header-cta .btn { padding: 12px 22px; font-size: .8rem; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14,16,19,.72) 0%, rgba(14,16,19,.94) 68%, var(--ink) 100%),
    /* REPLACE: swap the gradient below for your own photo, for example
       url("assets/img/hero.jpg") center/cover no-repeat */
    linear-gradient(118deg, #2B323C 0%, #171B21 46%, #0E1013 100%);
  border-bottom: 1px solid var(--line);
}

/* Profiled sheet texture, reads as trapezoidal roof cladding */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    100deg,
    rgba(255, 255, 255, .045) 0 2px,
    transparent 2px 34px
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -30%;
  width: 62%;
  height: 160%;
  background: radial-gradient(closest-side, rgba(255, 106, 19, .17), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(80px, 13vw, 165px) 0 clamp(64px, 9vw, 110px);
  max-width: 880px;
}

.hero h1 { margin-bottom: 24px; }
.hero h1 .accent { color: var(--accent); }

.hero .lead { max-width: 640px; }

/* Stat bar under the hero */
.statbar {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.statbar__item {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}
.statbar__item:last-child { border-right: 0; }
.statbar__num {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
}
.statbar__label {
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 10px;
}

/* ---------- Page banner, inner pages ---------- */
.page-head {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #232932 0%, #14171C 60%, var(--ink) 100%);
  border-bottom: 1px solid var(--line);
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 76px);
}
.page-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    100deg,
    rgba(255, 255, 255, .04) 0 2px,
    transparent 2px 34px
  );
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.page-head .lead { max-width: 680px; }

/* ---------- Section headings ---------- */
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 62px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}
.card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  height: 3px;
  width: 46px;
  background: var(--accent);
  transition: width .22s ease;
}
.card:hover { border-color: #3B434E; transform: translateY(-3px); }
.card:hover::before { width: 100%; }

.card h3 { margin-bottom: 12px; }
.card p { color: var(--steel); font-size: .97rem; }

.card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--accent);
}

.card--light {
  background: var(--white);
  border-color: #E1E6EB;
}
.card--light p { color: #5B636E; }
.card--light:hover { border-color: #C9D0D8; }

/* Service list card, used on What We Offer */
.svc {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.svc__num {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 16px;
}
.svc h3 { margin-bottom: 12px; }
.svc p { color: var(--steel); font-size: .97rem; margin-bottom: 20px; }

.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  font-size: .94rem;
  color: var(--steel-2);
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  background: var(--accent);
  transform: rotate(45deg);
}
.section--light .ticks li { color: #4A525C; }

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.panel-visual {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, #2C333D 0%, #1A1E24 55%, #101318 100%);
}
.panel-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    102deg,
    rgba(255, 255, 255, .06) 0 3px,
    transparent 3px 30px
  );
}
.panel-visual::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: var(--accent);
}

/* ==========================================================================
   IMAGERY
   Every image sits on top of the CSS cladding pattern. If a file is missing
   the pattern shows through instead of a broken image icon, so the site never
   looks unfinished while you are still sourcing photography.
   ========================================================================== */

.panel-visual img,
.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Subtle grade so photos sit in the palette rather than fighting it */
.panel-visual::after,
.media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(160deg, rgba(255, 106, 19, .10) 0%, transparent 45%, rgba(14, 16, 19, .40) 100%);
  pointer-events: none;
}

/* Accent rule stays on top of the photo */
.panel-visual::before { z-index: 3; }

.media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(140deg, #2C333D 0%, #1A1E24 55%, #101318 100%);
}
.media--16x9 { aspect-ratio: 16 / 9; }
.media--4x3  { aspect-ratio: 4 / 3; }
.media--3x2  { aspect-ratio: 3 / 2; }
.media--1x1  { aspect-ratio: 1 / 1; }

/* Fallback for browsers with no aspect-ratio support */
@supports not (aspect-ratio: 1) {
  .media--16x9 { padding-top: 56.25%; }
  .media--4x3  { padding-top: 75%; }
  .media--3x2  { padding-top: 66.66%; }
  .media--1x1  { padding-top: 100%; }
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(140deg, #2C333D 0%, #1A1E24 55%, #101318 100%);
  aspect-ratio: 4 / 3;
  display: block;
  text-decoration: none;
}
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: repeating-linear-gradient(102deg, rgba(255,255,255,.05) 0 3px, transparent 3px 30px);
  pointer-events: none;
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.tile:hover img { transform: scale(1.055); }

.tile__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 46px 22px 20px;
  background: linear-gradient(to top, rgba(10, 12, 14, .93) 20%, rgba(10, 12, 14, 0));
}
.tile__t {
  color: var(--white);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -.01em;
  line-height: 1.25;
}
.tile__s {
  color: var(--accent);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 7px;
}

/* Wide tile, breaks up the grid rhythm */
.tile--wide { grid-column: span 2; aspect-ratio: 8 / 3; }

/* ---------- Service card with an image header ---------- */
.svc__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: -34px -32px 26px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(140deg, #2C333D 0%, #1A1E24 55%, #101318 100%);
}
.svc__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.svc__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(26, 30, 36, .96) 2%, rgba(26, 30, 36, .28) 55%, rgba(255, 106, 19, .12) 100%);
}

/* ---------- Hero photo layer ---------- */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,16,19,.62) 0%, rgba(14,16,19,.86) 62%, var(--ink) 100%);
}

/* ---------- Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  padding: 34px 28px;
  border-right: 1px solid var(--line);
  background: var(--panel);
}
.step:last-child { border-right: 0; }
.step__n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 900;
  font-size: .95rem;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 10px; }
.step p { font-size: .92rem; color: var(--steel); }

/* ---------- Sector chips ---------- */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.chips li {
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--steel-2);
  background: var(--panel);
}
.section--light .chips li {
  background: var(--white);
  border-color: #E1E6EB;
  color: #4A525C;
}

/* ---------- Credential strip ---------- */
.creds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.cred {
  background: var(--ink-2);
  padding: 26px 22px;
  text-align: center;
}
.cred__t {
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .02em;
}
.cred__s {
  font-size: .76rem;
  color: var(--steel);
  margin-top: 6px;
  letter-spacing: .04em;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--accent);
  color: var(--accent-ink);
  padding: clamp(48px, 6vw, 78px) 0;
}
.cta-band h2 { color: var(--accent-ink); margin-bottom: 14px; }
.cta-band p { color: rgba(14, 16, 19, .78); font-size: 1.08rem; max-width: 620px; }
.cta-band .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band .btn--dark {
  background: var(--ink);
  color: var(--white);
}
.cta-band .btn--dark:hover { background: #000; }
.cta-band .btn--outline {
  border-color: rgba(14, 16, 19, .45);
  color: var(--accent-ink);
}
.cta-band .btn--outline:hover { border-color: var(--ink); }
.cta-band .btn-row { margin-top: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: start;
}

.form-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
}

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 9px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .16s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { min-height: 150px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2398A1AC' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-note { font-size: .84rem; color: var(--steel); margin-top: 16px; }

/* Submission feedback, swapped in without leaving the page */
.form-status {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-radius: var(--radius);
  border-left: 3px solid;
  font-size: .95rem;
  line-height: 1.5;
}
/* focus-visible so keyboard and screen reader users get the ring, mouse users do not */
.form-status:focus { outline: none; }
.form-status:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.form-status--ok {
  background: rgba(46, 160, 90, .12);
  border-color: #2EA05A;
  color: #BFE8CE;
}
.form-status--err {
  background: rgba(214, 69, 69, .12);
  border-color: #D64545;
  color: #F3C4C4;
}

.info-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 30px;
  margin-bottom: 20px;
}
.info-block h3 { font-size: 1.05rem; margin-bottom: 16px; }

.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: .96rem;
}
.info-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.info-list li:first-child { padding-top: 0; }
.info-list .k {
  flex: 0 0 82px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--steel);
  padding-top: .28em;
}
.info-list .v { color: var(--white); font-weight: 600; }
.info-list a { color: var(--white); text-decoration: none; border-bottom: 1px solid var(--accent); }
.info-list a:hover { color: var(--accent); }

/* ---------- FAQ / accordion-free details ---------- */
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq details {
  border-bottom: 1px solid var(--line);
  background: var(--panel);
}
.faq details:last-child { border-bottom: 0; }
.faq summary {
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 700;
  color: var(--white);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq .faq__body {
  padding: 0 26px 24px;
  color: var(--steel);
  font-size: .96rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0A0C0E;
  border-top: 1px solid var(--line);
  padding: clamp(52px, 6vw, 76px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-grid h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 18px;
}
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { margin-bottom: 11px; }
.footer-list a {
  text-decoration: none;
  color: var(--steel-2);
  font-size: .94rem;
  transition: color .16s ease;
}
.footer-list a:hover { color: var(--accent); }
.footer-blurb {
  color: var(--steel);
  font-size: .94rem;
  max-width: 340px;
  margin-top: 20px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .84rem;
  color: var(--steel);
}
.footer-bottom a { color: var(--steel); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Skip link ---------- */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--ink);
  padding: 12px 20px;
  z-index: 100;
  font-weight: 700;
}
.skip:focus { left: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2) { border-right: 0; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .creds { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .tile--wide { grid-column: span 2; aspect-ratio: 16 / 7; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .contact-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .panel-visual { min-height: 260px; }
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 15px var(--gutter);
    border-bottom: 0;
    border-left: 3px solid transparent;
  }
  .nav a[aria-current="page"] { border-left-color: var(--accent); }
  .site-header { position: relative; }
  .statbar { grid-template-columns: repeat(2, 1fr); }
  .statbar__item:nth-child(2) { border-right: 0; }
  .statbar__item:nth-child(1),
  .statbar__item:nth-child(2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .statbar__item { padding: 22px 18px; }
  .statbar__num { font-size: 1.45rem; }
  .statbar__label { font-size: .68rem; letter-spacing: .1em; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .creds { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; gap: 16px; }
  .tile, .tile--wide { grid-column: span 1; aspect-ratio: 3 / 2; }
  .tile__cap { padding: 40px 18px 17px; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .cta-band .inner { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
