/* ─── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-family: 'Plus Jakarta Sans', sans-serif; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { cursor: pointer; background: none; border: none; font: inherit; }
ul { list-style: none; }

/* ─── Tokens ──────────────────────────────────────────────── */
:root {
  --bg:         #F8F6F2;
  --bg-alt:     #EDEAE4;
  --bg-dark:    #111111;
  --text:       #111111;
  --text-muted: #6B6460;
  --text-inv:   #F8F6F2;
  --accent:     #E22403;
  --accent-dk:  #C01E02;
  --border:     #D4D0CA;
  --font-disp:  'Big Shoulders Display', sans-serif;
  --font-body:  'Plus Jakarta Sans', sans-serif;
  --ease-out:   cubic-bezier(0.23, 1, 0.32, 1);
  --z-nav:      100;
}

/* ─── Base ────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: var(--font-disp);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
}
p { max-width: 64ch; }

/* ─── Utilities ───────────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.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: -100%; left: 1rem;
  background: var(--accent); color: #fff;
  padding: 0.75rem 1.5rem; font-weight: 600;
  text-decoration: none; z-index: 999;
}
.skip-link:focus { top: 1rem; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-disp);
  font-size: 1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 180ms var(--ease-out), color 180ms var(--ease-out),
              border-color 180ms var(--ease-out), transform 160ms var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dk); border-color: var(--accent-dk); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline:hover { background: var(--text); color: var(--bg); }
.btn-outline-inv { background: transparent; color: var(--text-inv); border-color: rgba(248,246,242,0.4); }
.btn-outline-inv:hover { background: var(--text-inv); color: var(--bg-dark); border-color: var(--text-inv); }
.btn-white { background: var(--bg); color: var(--text); border-color: var(--bg); }
.btn-white:hover { background: var(--bg-alt); border-color: var(--bg-alt); }

/* ─── Navigation ──────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  transition: background 300ms var(--ease-out), box-shadow 300ms ease, border-color 300ms ease;
  border-bottom: 1px solid transparent;
}
.site-header.nav--scrolled,
.site-header.nav--solid {
  background: rgba(248,246,242,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem; height: 72px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-links { display: flex; align-items: center; list-style: none; }
.nav-links a {
  display: flex; align-items: center; padding: 0.5rem 0.875rem;
  min-height: 44px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; color: var(--text);
  white-space: nowrap; position: relative;
  transition: color 200ms ease;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0.875rem; right: 0.875rem;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 220ms var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--accent); }
.nav-cta { margin-left: 1.25rem; padding: 0.6rem 1.25rem; font-size: 0.82rem; }
.nav-phone-mobile { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; margin-left: auto; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 300ms var(--ease-out), opacity 200ms ease, background 200ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-inner { height: 60px; padding: 0 1rem; }
  .nav-logo img { height: 40px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(248,246,242,0.98);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    flex-direction: column; align-items: stretch;
    padding: 0.25rem 1rem 1.25rem;
    visibility: hidden; opacity: 0; pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 200ms ease, transform 200ms var(--ease-out), visibility 0s linear 200ms;
    z-index: 99;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }
  .nav-menu.is-open {
    visibility: visible; opacity: 1; pointer-events: auto;
    transform: translateY(0);
    transition: opacity 200ms ease, transform 200ms var(--ease-out), visibility 0s linear 0s;
  }
  .nav-links { flex-direction: column; align-items: stretch; width: 100%; padding: 0; margin: 0; }
  .nav-links a {
    font-size: 0.88rem; font-family: var(--font-disp); font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.875rem 0; border-bottom: 1px solid var(--border);
    display: flex; align-items: center; width: 100%; min-height: 44px;
  }
  .nav-links a::after { left: 0; right: 0; }
  .nav-cta { margin: 0.875rem 0 0; width: 100%; justify-content: center; padding: 0.7rem 1rem; }
  .nav-phone-mobile { display: none; }
}

/* ─── Hero (home) ─────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex;
  flex-direction: column; padding-top: 72px;
}
.hero-split {
  flex: 1; display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-left {
  background: var(--bg); padding: 5rem 6% 5rem 8%;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-right {
  background: linear-gradient(
    90deg,
    var(--accent) 0%, var(--accent) 25%,
    #ffffff 25%, #ffffff 75%,
    var(--accent) 75%, var(--accent) 100%
  );
  display: flex; align-items: center;
  justify-content: center; padding: 3rem;
  position: relative; overflow: hidden;
}
.hero-right > * { position: relative; z-index: 1; }
.hero-headline {
  font-size: clamp(4.5rem, 9vw, 10.5rem);
  line-height: 0.87; color: var(--text);
  margin-bottom: 2rem;
}
.hero-sub {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.65; max-width: 44ch; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-logo-xl {
  width: 54%; max-width: 320px;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.12));
  opacity: 1;
  position: relative; z-index: 1;
}

/* Credentials bar */
.cred-bar {
  background: var(--bg-dark); color: rgba(248,246,242,0.6);
  padding: 0 8%; height: 52px;
  display: flex; align-items: center;
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase; overflow: hidden;
}
.cred-bar-sep {
  width: 1px; height: 14px;
  background: rgba(248,246,242,0.2);
  margin: 0 2rem; flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero { padding-top: 60px; }
  .page-hero { padding: 5rem 5% 3rem; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-left { padding: 3rem 1.5rem 2.5rem; }
  .hero-headline { font-size: clamp(3.5rem, 14vw, 5.5rem); }
  .hero-right { min-height: 50vw; padding: 2rem; }
  .hero-logo-xl { width: 50%; max-width: 180px; }
  .cred-bar {
    height: auto; padding: 0.875rem 1.5rem;
    flex-wrap: wrap; gap: 0.5rem 0;
    overflow: visible;
  }
  .cred-bar-sep { margin: 0 1rem; }
}

/* ─── Feature Statement ───────────────────────────────────── */
.feature-statement {
  background: var(--bg-dark); color: var(--text-inv);
  padding: 7rem 8%;
}
.feature-headline {
  font-size: clamp(3rem, 7.5vw, 9rem);
  line-height: 0.89; color: var(--text-inv);
  margin: 1.5rem 0 2.5rem;
}
.feature-headline em { color: var(--accent); font-style: normal; }
.feature-body {
  font-size: 1.05rem; color: rgba(248,246,242,0.55);
  max-width: 52ch; margin-bottom: 3rem; line-height: 1.7;
}

/* ─── Services List (home) ────────────────────────────────── */
.services-list { background: var(--bg); padding: 7rem 8%; }
.services-list-header { margin-bottom: 3rem; }
.services-list-header h2 { font-size: clamp(2.5rem, 5vw, 5rem); margin-top: 0.5rem; }
.service-row {
  display: grid;
  grid-template-columns: 3rem 1fr 1fr 1.5rem;
  align-items: center; gap: 2rem;
  padding: 1.875rem 0; border-top: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  transition: padding-left 220ms var(--ease-out);
}
.service-row:last-of-type { border-bottom: 1px solid var(--border); }
.service-row:hover { padding-left: 0.625rem; }
.service-row:hover .service-num { color: var(--accent); }
.service-row:hover .service-arrow { transform: translateX(5px); }
.service-num {
  font-family: var(--font-disp); font-size: 0.95rem;
  font-weight: 700; color: var(--text-muted);
  transition: color 200ms ease;
}
.service-name {
  font-family: var(--font-disp);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 700;
}
.service-desc {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.55; max-width: 40ch;
}
.service-arrow {
  font-size: 1.125rem; color: var(--accent);
  transition: transform 220ms var(--ease-out);
}
.view-all-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 2.5rem;
  font-family: var(--font-disp); font-size: 0.95rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  text-decoration: none; color: var(--accent);
  border-bottom: 2px solid var(--accent); padding-bottom: 0.2rem;
  min-height: 44px;
  transition: gap 220ms var(--ease-out);
}
.view-all-link:hover { gap: 0.875rem; }

@media (max-width: 700px) {
  .service-row {
    grid-template-columns: 2.5rem 1fr 1.5rem;
    grid-template-rows: auto auto;
    gap: 0.25rem 0.875rem;
    padding: 1.5rem 0;
  }
  .service-num { grid-row: 1; align-self: start; padding-top: 0.15rem; }
  .service-name { grid-row: 1; grid-column: 2; }
  .service-desc { grid-row: 2; grid-column: 2; margin-top: 0.375rem; }
  .service-arrow { grid-row: 1; grid-column: 3; align-self: center; }
}

/* ─── About Teaser (home) ─────────────────────────────────── */
.about-teaser { background: var(--bg-alt); padding: 7rem 8%; }
.about-teaser-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  max-width: 1200px;
}
.about-quote {
  font-family: var(--font-disp);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.08;
  text-transform: uppercase; color: var(--text);
  border-left: 4px solid var(--accent);
  padding-left: 2rem; margin-bottom: 2.5rem;
}
.about-credentials { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.cred-item strong {
  display: block; font-family: var(--font-disp);
  font-size: 1.5rem; font-weight: 900;
  text-transform: uppercase; color: var(--accent);
  line-height: 1; margin-bottom: 0.2rem;
}
.cred-item span { font-size: 0.82rem; color: var(--text-muted); }
.about-right .eyebrow { margin-bottom: 0.875rem; }
.about-right h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); margin-bottom: 1.5rem; }
.about-right p { color: var(--text-muted); font-size: 0.975rem; line-height: 1.7; }
.about-right p + p { margin-top: 1rem; }
.about-right .btn { margin-top: 2rem; }

@media (max-width: 768px) {
  .about-teaser-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-quote { font-size: 1.5rem; padding-left: 1.25rem; }
}

/* ─── Phone CTA ───────────────────────────────────────────── */
.phone-cta {
  background: var(--bg-dark); color: var(--text-inv);
  padding: 8rem 8%; text-align: center;
}
.phone-cta-label {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(248,246,242,0.4); margin-bottom: 1.25rem;
}
.phone-cta-num {
  display: block; font-family: var(--font-disp);
  font-size: clamp(3rem, 9vw, 9rem);
  font-weight: 900; color: var(--accent);
  text-decoration: none; letter-spacing: -0.02em; line-height: 1;
  transition: color 200ms ease;
}
.phone-cta-num:hover { color: #ff4422; }
.phone-cta-sub {
  margin-top: 2rem; font-size: 0.9rem;
  color: rgba(248,246,242,0.4);
}
.phone-cta-sub a { color: var(--text-inv); text-underline-offset: 3px; display: inline-flex; align-items: center; min-height: 44px; padding: 0 0.2rem; }
.phone-cta-sub a:hover { color: var(--accent); }

/* ─── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: var(--bg-dark); color: var(--text-inv);
  padding: 9rem 8% 5rem;
}
.page-hero .eyebrow { color: var(--accent); }
.page-hero h1 {
  font-size: clamp(3rem, 8vw, 8rem);
  color: var(--text-inv); margin-bottom: 1rem; text-wrap: balance;
}
.page-hero p {
  font-size: 1.05rem; color: rgba(248,246,242,0.6);
  max-width: 52ch; margin-top: 1.5rem; line-height: 1.7;
}

/* ─── Services Page ───────────────────────────────────────── */
.services-full { background: var(--bg); padding: 6rem 8%; }
.service-full-row {
  padding: 3.5rem 0; border-top: 1px solid var(--border);
}
.service-full-row:last-child { border-bottom: 1px solid var(--border); }
.service-full-header {
  display: flex; align-items: baseline;
  gap: 1.5rem; margin-bottom: 1.125rem;
}
.service-full-num {
  font-family: var(--font-disp); font-size: 1rem;
  font-weight: 700; color: var(--accent);
}
.service-full-name {
  font-family: var(--font-disp);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900; color: var(--text);
}
.service-full-body {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.7; max-width: 64ch;
  padding-left: 3.5rem;
}
@media (max-width: 600px) {
  .service-full-body { padding-left: 0; }
  .service-full-row { padding: 2.5rem 0; }
}

.services-cta { background: var(--accent); color: #fff; padding: 6rem 8%; }
.services-cta h2 {
  font-size: clamp(2.5rem, 6vw, 6.5rem);
  margin-bottom: 1.25rem; color: #fff;
}
.services-cta > p {
  font-size: 1.05rem; color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem; line-height: 1.7;
}
.services-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── About Page ──────────────────────────────────────────── */
.why-us { background: var(--bg); padding: 7rem 8%; }
.why-us > .eyebrow { margin-bottom: 0.5rem; }
.why-us > h2 { font-size: clamp(2.5rem, 5vw, 5rem); margin-bottom: 3rem; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}
.why-card {
  padding: 3rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.why-card:nth-child(even) { border-right: 0; }
.why-card:nth-child(3),
.why-card:nth-child(4) { border-bottom: 0; }
.why-card-num {
  font-family: var(--font-disp); font-size: 3rem;
  font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 1rem;
}
.why-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.why-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; max-width: none; }
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-right: 0; border-bottom: 1px solid var(--border) !important; }
  .why-card:last-child { border-bottom: 0 !important; }
}

.story-section { background: var(--bg-alt); padding: 7rem 8%; }
.story-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start; max-width: 1200px;
}
.story-quote {
  font-family: var(--font-disp);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 900; text-transform: uppercase;
  line-height: 1.05; color: var(--text);
  border-left: 4px solid var(--accent);
  padding-left: 2rem; margin-bottom: 1.5rem;
}
.story-body { font-size: 0.975rem; color: var(--text-muted); line-height: 1.7; }
.story-body p + p { margin-top: 1rem; }
.story-stats { display: flex; gap: 3rem; margin-top: 2.5rem; flex-wrap: wrap; }
.story-stat strong {
  display: block; font-family: var(--font-disp);
  font-size: 2.5rem; font-weight: 900;
  color: var(--accent); line-height: 1;
}
.story-stat span {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted);
}
.story-right { padding-top: 0.5rem; }
.story-right > h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; }
@media (max-width: 768px) {
  .story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .story-quote { padding-left: 1.25rem; }
}

.process { background: var(--bg); padding: 7rem 8%; }
.process > .eyebrow { margin-bottom: 0.5rem; }
.process > h2 { font-size: clamp(2.5rem, 5vw, 5rem); margin-bottom: 3rem; }
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}
.process-step {
  padding: 3rem;
  border-right: 1px solid var(--border);
}
.process-step:last-child { border-right: 0; }
.process-step-num {
  font-family: var(--font-disp); font-size: 5rem;
  font-weight: 900; color: var(--border); line-height: 1; margin-bottom: 1.5rem;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.process-step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; max-width: none; }
@media (max-width: 700px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: 0; }
}

.about-cta { background: var(--bg-dark); color: var(--text-inv); padding: 8rem 8%; }
.about-cta h2 {
  font-size: clamp(2.5rem, 6vw, 7rem);
  color: var(--text-inv); max-width: 14ch; margin-bottom: 2.5rem; line-height: 0.92;
}
.about-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── Contact Page ────────────────────────────────────────── */
.contact-section { background: var(--bg); padding: 6rem 8%; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start; max-width: 1200px; width: 100%;
}
.contact-info h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin: 0.75rem 0 1.25rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail { display: flex; gap: 1rem; align-items: flex-start; }
.contact-detail-icon {
  width: 40px; height: 40px; background: var(--bg-alt);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--accent);
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 0.25rem;
}
.contact-detail-value { font-size: 0.95rem; color: var(--text); line-height: 1.5; }
.contact-detail-value a {
  text-decoration: none; color: var(--text);
  min-height: 44px; display: inline-flex; align-items: center;
}
.contact-detail-value a:hover { color: var(--accent); }
.contact-form-wrap {
  background: var(--bg-alt); padding: 2.5rem;
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { font-size: 1.75rem; margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-muted);
}
.required-mark { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem; background: var(--bg);
  border: 1px solid var(--border); color: var(--text);
  font-family: var(--font-body); font-size: 0.95rem;
  outline: none; border-radius: 0;
  appearance: none; -webkit-appearance: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(226,36,3,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { margin-top: 1.5rem; width: 100%; justify-content: center; padding: 1rem; }
.form-success { text-align: center; padding: 3rem 1rem; }
.form-success svg { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 1.5rem; }
.form-success h3 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.form-success p { color: var(--text-muted); max-width: 36ch; margin: 0 auto; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 3rem; } }
@media (max-width: 600px) {
  .contact-section { padding: 3rem 5%; }
  .contact-form-wrap { padding: 1.5rem; }
  .contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 1.25rem; }
}
@media (max-width: 480px) { .form-grid { grid-template-columns: 1fr; } }

/* ─── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--bg-dark); color: var(--text-inv); }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 5rem 8% 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}
.footer-logo img {
  height: 48px; width: auto; margin-bottom: 1.25rem;
  filter: brightness(0) invert(1); opacity: 0.85;
}
.footer-logo p { font-size: 0.85rem; color: rgba(248,246,242,0.45); line-height: 1.6; max-width: 30ch; }
.footer-col h4 {
  font-family: var(--font-disp); font-size: 0.68rem;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(248,246,242,0.35); margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-col ul a {
  font-size: 0.88rem; color: rgba(248,246,242,0.65);
  text-decoration: none; display: inline-flex;
  align-items: center; min-height: 44px;
  transition: color 180ms ease;
}
.footer-col ul a:hover { color: var(--text-inv); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 1.5rem 8%;
  border-top: 1px solid rgba(248,246,242,0.08);
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; flex-wrap: wrap;
  font-size: 0.75rem; color: rgba(248,246,242,0.3);
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-logo { grid-column: 1 / -1; }
}
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

/* ─── Scroll Reveals ─────────────────────────────────────── */
[data-reveal] {
  opacity: 0; transform: translateY(20px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
[data-reveal].revealed { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal-delay="4"] { transition-delay: 320ms; }
[data-reveal-delay="5"] { transition-delay: 400ms; }
[data-reveal-delay="6"] { transition-delay: 480ms; }

/* ─── Reduced Motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .btn, .nav-links a::after, .service-row, .service-arrow { transition: none; }
}

/* ─── Focus ───────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }
