/* =========================================================
   Web Atelier — main.css
   Single source of truth. Brand guidelines compliant.
   Sections: tokens · reset · type · buttons · nav · footer
             · animations · layout helpers · responsive
   ========================================================= */

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

/* ── Design tokens (from Brand Guidelines v1.0) ── */
:root {
  /* Greyscale palette */
  --void: #0a0a0a;
  --carbon: #1a1a1a;
  --iron: #404040;
  --chrome: #a0a0a0;
  --mist: #d4d4d4;
  --fog: #f0f0f0;
  --paper: #f9f9f9;
  --white: #ffffff;

  /* Text-on-dark helpers */
  --body-dark: #b8b8b8;
  --muted-dark: #707070;

  /* Type */
  --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --max: 1200px;
  --gutter-desktop: 80px;
  --gutter-mobile: 40px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--void);
  color: var(--white);
  font-size: 13px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

/* Accessibility: focus visible */
:focus-visible {
  outline: 2px solid var(--chrome);
  outline-offset: 2px;
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--white);
  color: var(--void);
  padding: 8px 16px;
  z-index: 200;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
}

/* ── Brand label (eyebrow) — the Chrome rule ── */
.label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome);
}

/* ── Wordmark (logo) ── */
.wordmark {
  font-size: 17px;
  letter-spacing: -0.5px;
  color: var(--white);
  text-decoration: none;
}
.wordmark .w {
  font-weight: 300;
}
.wordmark .a {
  font-weight: 500;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--gutter-desktop);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 0.5px solid rgba(64, 64, 64, 0.5);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 400;
  color: var(--chrome);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-cta {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--white);
  padding: 9px 22px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.nav-cta:hover {
  background: var(--mist);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 0.5px;
  background: var(--chrome);
}

.nav-mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--carbon);
  border-bottom: 0.5px solid var(--iron);
  padding: 24px var(--gutter-mobile);
  z-index: 99;
  flex-direction: column;
  gap: 16px;
}
.nav-mobile-menu.open {
  display: flex;
}
.nav-mobile-menu a {
  font-size: 13px;
  font-weight: 300;
  color: var(--body-dark);
  text-decoration: none;
}

/* ── Buttons ── */
.btn-primary {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--white);
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--mist);
}
.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-outline {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  padding: 13px 28px;
  border: 0.5px solid var(--iron);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: var(--chrome);
  color: var(--white);
}

.btn-ghost {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--chrome);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.btn-ghost::after {
  content: "→";
  font-size: 14px;
}
.btn-ghost:hover {
  color: var(--white);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim {
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) forwards;
}
.d1 { animation-delay: 0.05s; }
.d2 { animation-delay: 0.15s; }
.d3 { animation-delay: 0.28s; }
.d4 { animation-delay: 0.42s; }
.d5 { animation-delay: 0.6s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

@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;
  }
  .anim,
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ── Section headers ── */
.section-eyebrow {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::after {
  content: "";
  flex: 1;
  max-width: 40px;
  height: 0.5px;
  background: var(--chrome);
  opacity: 0.4;
}

.section-hed,
.section-hed-dark {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 200;
  letter-spacing: 0.3px;
  line-height: 1.18;
}
.section-hed {
  color: var(--void);
}
.section-hed-dark {
  color: var(--white);
}
.section-hed em,
.section-hed-dark em {
  font-style: normal;
  font-weight: 500;
}

.section-note,
.section-note-dark {
  font-size: 13px;
  font-weight: 300;
  max-width: 280px;
  line-height: 1.8;
  text-align: right;
}
.section-note {
  color: var(--iron);
}
.section-note-dark {
  color: var(--body-dark);
}

/* ── HERO (homepage) ── */
.hero-wrap {
  background: var(--void);
}
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 164px var(--gutter-desktop) 100px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-eyebrow::after {
  content: "";
  display: block;
  width: 40px;
  height: 0.5px;
  background: var(--chrome);
}
.hero h1 {
  font-size: clamp(44px, 5.8vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.5px;
  max-width: 860px;
  margin-bottom: 32px;
}
.hero h1 .lt {
  font-weight: 300;
}
.hero h1 .md {
  font-weight: 500;
}
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--body-dark);
  max-width: 500px;
  line-height: 1.85;
  margin-bottom: 48px;
}
.hero-sub strong {
  color: var(--white);
  font-weight: 500;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Credential strip */
.cred-strip {
  margin-top: 96px;
  padding-top: 40px;
  border-top: 0.5px solid var(--carbon);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cred-item {
  padding-right: 32px;
  border-right: 0.5px solid var(--carbon);
}
.cred-item:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 32px;
}
.cred-item:nth-child(2),
.cred-item:nth-child(3) {
  padding-left: 32px;
}
.cred-num {
  font-size: 32px;
  font-weight: 200;
  letter-spacing: 0.3px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 6px;
}
.cred-label {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted-dark);
  line-height: 1.5;
}

/* ── SERVICES ── */
.services-wrap {
  background: var(--paper);
  border-top: 0.5px solid var(--mist);
}
.services-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px var(--gutter-desktop);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--mist);
}
.svc-card {
  padding: 44px 40px 44px 0;
  border-right: 0.5px solid var(--mist);
}
.svc-card:nth-child(3n) {
  border-right: none;
  padding-right: 0;
  padding-left: 40px;
}
.svc-card:nth-child(3n + 2) {
  padding-left: 40px;
}
.svc-num {
  margin-bottom: 32px;
}
.svc-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--void);
  margin-bottom: 14px;
  line-height: 1.35;
}
.svc-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--iron);
  line-height: 1.85;
  margin-bottom: 28px;
}
.svc-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  list-style: none;
}
.svc-include-item {
  font-size: 12px;
  font-weight: 300;
  color: var(--iron);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.svc-include-item::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: var(--chrome);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}
.svc-price {
  font-size: 11px;
  font-weight: 500;
  color: var(--chrome);
  letter-spacing: 0.04em;
  padding-top: 20px;
  border-top: 0.5px solid var(--mist);
}
.svc-price a {
  color: var(--chrome);
  text-decoration: none;
  border-bottom: 0.5px solid var(--iron);
}
.services-footnote {
  margin-top: 40px;
  font-size: 12px;
  font-weight: 300;
  color: var(--chrome);
  line-height: 1.8;
  border-top: 0.5px solid var(--mist);
  padding-top: 28px;
}

/* ── TESTIMONIALS ── */
.testi-wrap {
  background: var(--void);
  border-top: 0.5px solid var(--carbon);
}
.testi-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px var(--gutter-desktop);
}
.testi-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}
.testi-source {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted-dark);
  text-align: right;
  line-height: 1.7;
}
.testi-source strong {
  display: block;
  font-weight: 400;
  color: var(--chrome);
  margin-bottom: 2px;
}
.testi-source small {
  font-size: 10px;
  color: var(--muted-dark);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--carbon);
}
.testi-featured {
  grid-column: 1 / -1;
  padding: 48px 0;
  border-bottom: 0.5px solid var(--carbon);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: center;
}
.testi-meta-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.testi-meta-detail {
  font-size: 11px;
  font-weight: 300;
  color: var(--chrome);
  line-height: 1.7;
}
.testi-stars {
  display: flex;
  gap: 3px;
  margin-top: 14px;
}
.testi-star {
  width: 9px;
  height: 9px;
  background: var(--chrome);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}
.testi-quote-lg {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.1px;
  color: var(--white);
}
.testi-quote-lg em {
  font-style: normal;
  font-weight: 500;
}
.testi-card {
  padding: 36px 32px 36px 0;
  border-right: 0.5px solid var(--carbon);
}
.testi-card:nth-child(3n + 3) {
  border-right: none;
  padding-right: 0;
  padding-left: 32px;
}
.testi-card:nth-child(3n + 2) {
  padding-left: 32px;
}
.testi-quote-sm {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--body-dark);
  margin-bottom: 24px;
}
.testi-quote-sm em {
  font-style: normal;
  font-weight: 500;
  color: var(--white);
}
.testi-card-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 3px;
}
.testi-card-detail {
  font-size: 11px;
  font-weight: 300;
  color: var(--chrome);
}
.testi-badge {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
  border: 0.5px solid var(--carbon);
  padding: 5px 12px;
}
.testi-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--iron);
}

/* ── ABOUT ── */
.about-wrap {
  background: var(--carbon);
  border-top: 0.5px solid var(--iron);
}
.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px var(--gutter-desktop);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-headline {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 200;
  letter-spacing: 0.3px;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 24px;
}
.about-headline em {
  font-style: normal;
  font-weight: 500;
}
.about-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--body-dark);
  line-height: 1.85;
}
.about-body p + p {
  margin-top: 16px;
}
.about-pillars {
  display: flex;
  flex-direction: column;
  border-top: 0.5px solid var(--iron);
}
.pillar {
  padding: 28px 0;
  border-bottom: 0.5px solid var(--iron);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 20px;
  align-items: start;
}
.pillar:last-child {
  border-bottom: none;
}
.pillar-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.pillar-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--chrome);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.4;
}
.pillar-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--body-dark);
  line-height: 1.75;
}

/* ── BLOG (homepage card grid) ── */
.blog-wrap {
  background: var(--fog);
  border-top: 0.5px solid var(--mist);
}
.blog-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px var(--gutter-desktop);
}
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 40px;
}
.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  border-top: 0.5px solid var(--mist);
}
.blog-card {
  padding: 36px 40px 36px 0;
  border-right: 0.5px solid var(--mist);
  border-bottom: 0.5px solid var(--mist);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-card:hover {
  background: var(--fog);
}
.blog-card.feat {
  grid-row: span 2;
  padding: 44px 48px 44px 0;
}
.blog-card:not(.feat) {
  padding-left: 40px;
  border-right: none;
}
.blog-card:last-child {
  border-bottom: none;
}
.blog-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.blog-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chrome);
  border: 0.5px solid var(--mist);
  padding: 3px 8px;
}
.blog-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--void);
  line-height: 1.4;
  margin-bottom: 10px;
}
.blog-card.feat .blog-title {
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 14px;
}
.blog-excerpt {
  font-size: 12px;
  font-weight: 300;
  color: var(--iron);
  line-height: 1.8;
  margin-bottom: 20px;
}
.blog-card.feat .blog-excerpt {
  font-size: 13px;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-date {
  font-size: 9px;
  font-weight: 400;
  color: var(--chrome);
  letter-spacing: 0.06em;
}
.blog-arrow {
  font-size: 14px;
  color: var(--chrome);
  transition: transform 0.2s, color 0.2s;
}
.blog-card:hover .blog-arrow {
  transform: translateX(4px);
  color: var(--iron);
}

/* ── PRODUCTS ── */
.products-wrap {
  background: var(--void);
  border-top: 0.5px solid var(--carbon);
}
.products-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px var(--gutter-desktop);
}
.products-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 56px;
  align-items: end;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--carbon);
}
.product-card {
  padding: 36px 32px 36px 0;
  border-right: 0.5px solid var(--carbon);
}
.product-card:nth-child(3n) {
  border-right: none;
  padding-right: 0;
  padding-left: 32px;
}
.product-card:nth-child(3n + 2) {
  padding-left: 32px;
}
.product-status {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-dark);
  border: 0.5px solid var(--iron);
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 20px;
}
.product-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}
.product-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--body-dark);
  line-height: 1.8;
  margin-bottom: 24px;
}
.product-notify {
  font-size: 11px;
  font-weight: 400;
  color: var(--chrome);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.product-notify::after {
  content: "→";
}
.product-notify:hover {
  color: var(--white);
}

/* ── CONTACT ── */
.contact-wrap {
  background: var(--paper);
  border-top: 0.5px solid var(--mist);
}
.contact-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px var(--gutter-desktop);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.contact-headline {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 200;
  letter-spacing: 0.3px;
  line-height: 1.18;
  color: var(--void);
  margin-bottom: 20px;
}
.contact-headline em {
  font-style: normal;
  font-weight: 500;
}
.contact-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--iron);
  line-height: 1.85;
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-lbl {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 4px;
}
.contact-val {
  font-size: 13px;
  font-weight: 400;
  color: var(--iron);
}

/* ── FORM ── */
.contact-form .form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: transparent;
  border: 0.5px solid var(--mist);
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 400;
  color: var(--void);
  outline: none;
  transition: border-color 0.2s;
  resize: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23A0A0A0'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--iron);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--chrome);
  font-weight: 300;
}
.form-input[aria-invalid="true"],
.form-textarea[aria-invalid="true"],
.form-select[aria-invalid="true"] {
  border-color: #c53030;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-submit {
  width: 100%;
  text-align: center;
  padding: 15px;
  cursor: pointer;
}
.form-status {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.6;
  padding: 12px 14px;
  border: 0.5px solid var(--mist);
  background: var(--white);
  color: var(--iron);
  display: none;
}
.form-status.show {
  display: block;
}
.form-status.success {
  border-color: #38a169;
  color: #276749;
}
.form-status.error {
  border-color: #c53030;
  color: #9b2c2c;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--void);
  border-top: 0.5px solid var(--carbon);
  padding: 60px var(--gutter-desktop) 40px;
}
.footer-main {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid var(--carbon);
}
.footer-wm {
  font-size: 17px;
  letter-spacing: -0.5px;
  color: var(--white);
  display: block;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-wm .w { font-weight: 300; }
.footer-wm .a { font-weight: 500; }
.footer-tagline {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted-dark);
  line-height: 1.8;
}
.footer-col-title {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 12px;
  font-weight: 300;
  color: var(--body-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: var(--muted-dark);
}

/* =========================================================
   RESPONSIVE — single breakpoint at 960px
   ========================================================= */
@media (max-width: 960px) {
  .site-nav {
    padding: 0 var(--gutter-mobile);
  }
  .nav-links,
  .site-nav > .nav-cta {
    display: none;
  }
  .nav-mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 120px var(--gutter-mobile) 72px;
  }
  .cred-strip {
    grid-template-columns: 1fr 1fr;
  }
  .cred-item:nth-child(2) {
    border-right: none;
  }
  .cred-item:nth-child(3) {
    padding-left: 0;
    border-top: 0.5px solid var(--carbon);
    padding-top: 24px;
    border-right: 0.5px solid var(--carbon);
  }
  .cred-item:nth-child(4) {
    border-top: 0.5px solid var(--carbon);
    padding-top: 24px;
  }

  .services-inner,
  .testi-inner,
  .about-inner,
  .blog-inner,
  .products-inner,
  .contact-inner,
  .site-footer {
    padding-left: var(--gutter-mobile);
    padding-right: var(--gutter-mobile);
  }

  .section-header,
  .testi-header,
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section-note,
  .section-note-dark {
    text-align: left;
    max-width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .svc-card {
    border-right: none !important;
    padding: 36px 0 !important;
    border-bottom: 0.5px solid var(--mist);
  }
  .svc-card:last-child {
    border-bottom: none;
  }

  .testi-featured {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .testi-quote-lg {
    font-size: 17px;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .testi-card {
    border-right: none !important;
    padding: 32px 0 !important;
    border-bottom: 0.5px solid var(--carbon);
  }
  .testi-card:last-child {
    border-bottom: none;
  }

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

  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card {
    border-right: none !important;
    padding: 32px 0 !important;
    border-bottom: 0.5px solid var(--mist) !important;
  }
  .blog-card:last-child {
    border-bottom: none !important;
  }
  .blog-card.feat {
    grid-row: auto;
  }

  .products-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    border-right: none !important;
    padding: 32px 0 !important;
    border-bottom: 0.5px solid var(--carbon);
  }
  .product-card:last-child {
    border-bottom: none;
  }

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(34px, 9vw, 44px);
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    text-align: center;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
