/*
Theme Name: DKB. — Dalton Keith Brown
Theme URI: https://daltonkeithbrown.com
Author: Dalton Keith Brown
Author URI: https://daltonkeithbrown.com
Description: Single-page personal brand + marketing services theme for Dalton Keith Brown (DKB.). Light mode, red accent, Barlow Condensed / Inter / Space Mono.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dkb
*/

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

:root {
  --white:   #FFFFFF;
  --off:     #F7F7F7;
  --light:   #EFEFEF;
  --border:  #E2E2E2;
  --text:    #111111;
  --muted:   #777777;
  --dark:    #0A0A0A;
  --red:     #CC1111;
  --red-bg:  rgba(204,17,17,0.07);
  --nav-h:   72px;
  --max:     1200px;
  --pad:     60px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--dark);
  z-index: 1000;
  border-bottom: 1px solid #1a1a1a;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 36px; display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase;
  color: #777; text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; }
.nav-cta {
  background: var(--red) !important; color: #fff !important;
  padding: 9px 20px; border-radius: 4px; font-weight: 700 !important;
}
.nav-cta:hover { opacity: 0.88; }
.nav-cta.active { color: #fff !important; }

/* Hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: none; border: 0; cursor: pointer;
  padding: 9px; position: relative; z-index: 1002;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: #fff; border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle span + span { margin-top: 5px; }
.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; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu backdrop */
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}
.nav-backdrop.open { opacity: 1; visibility: visible; }

/* ── HERO ── */
#hero {
  padding-top: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: calc(100vh - var(--nav-h));
}

/* Left identity card */
.hero-card {
  background: var(--off);
  border-right: 1px solid var(--border);
  padding: 48px 36px;
  display: flex; flex-direction: column;
  position: relative;
}
.hero-card-top {
  width: 4px; height: 48px;
  background: var(--red);
  margin-bottom: 32px;
}
.hero-card-logo {
  background: var(--dark);
  padding: 16px 20px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  width: fit-content;
}
.hero-card-logo img { height: 32px; display: block; }
.hero-card-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 22px;
  text-transform: uppercase; letter-spacing: 0.03em;
  margin-bottom: 6px;
}
.hero-card-role {
  font-size: 13px; color: var(--muted);
  line-height: 1.5; margin-bottom: 20px;
}
.hero-card-loc {
  font-family: 'Space Mono', monospace;
  font-size: 10px; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-available {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #1a9a1a;
  margin-bottom: 32px;
}
.hero-available::before {
  content: ''; width: 8px; height: 8px;
  background: #1a9a1a; border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; } 50% { opacity:0.4; }
}
.hero-card-links {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: auto;
}
.hero-card-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.hero-card-link:hover { color: var(--red); }
.hero-card-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Right hero content */
.hero-content {
  padding: 60px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-hello {
  font-family: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.hero-hello::before {
  content: ''; display: block;
  width: 32px; height: 2px; background: var(--red);
}
h1.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(52px, 6.5vw, 88px);
  line-height: 0.93; letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 640px; margin-bottom: 28px;
}
h1.hero-h1 em { font-style: italic; color: var(--red); }
.hero-desc {
  font-size: 17px; color: var(--muted);
  max-width: 480px; line-height: 1.7; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }

/* Buttons */
.btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; padding: 13px 24px;
  border-radius: 4px; text-decoration: none;
  transition: opacity 0.2s;
  border: 0; cursor: pointer;
}
.btn-red:hover { opacity: 0.88; }
.btn-border {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text); border: 1.5px solid var(--border);
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; padding: 12px 24px;
  border-radius: 4px; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-border:hover { border-color: var(--text); }

/* Brand marquee in hero */
.hero-marquee { overflow: hidden; border-top: 1px solid var(--border); padding-top: 24px; }
.hero-marquee-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 16px;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap; width: max-content;
}
.marquee-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #BBBBBB; padding: 0 32px;
}
.marquee-track span.dot { color: var(--red); padding: 0 4px; font-size: 10px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS COUNTER ROW ── */
.stats-row {
  background: var(--dark);
  padding: 48px var(--pad);
}
.stats-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.stat-item {
  padding: 24px 20px;
  border-right: 1px solid #1f1f1f;
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 36px;
  color: var(--red); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.1em;
  text-transform: uppercase; color: #555;
  line-height: 1.4;
}

/* Press row */
.press-row {
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 20px var(--pad);
  display: flex; align-items: center; gap: 40px;
  flex-wrap: wrap;
}
.press-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
  white-space: nowrap; flex-shrink: 0;
}
.press-names { display: flex; gap: 28px; flex-wrap: wrap; }
.press-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: #C8C8C8;
}

/* ── SECTION SHELL ── */
.section {
  padding: 100px var(--pad);
}
.section.bg-off { background: var(--off); }
.section.bg-dark { background: var(--dark); }
.section.border-top { border-top: 1px solid var(--border); }

.section-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-eyebrow::after {
  content: ''; display: block;
  width: 32px; height: 1px; background: var(--red); opacity: 0.5;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5vw, 62px);
  text-transform: uppercase; line-height: 0.95;
  letter-spacing: -0.01em; margin-bottom: 16px;
}
.section-sub {
  font-size: 15px; color: var(--muted);
  max-width: 520px; line-height: 1.7; margin-bottom: 48px;
}
.section-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 40px; flex-wrap: wrap; gap: 20px;
}
.section-more {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red); text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}
.section-more:hover { opacity: 0.75; }

/* ── WORK / PORTFOLIO ── */
.filter-row {
  display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 32px;
}
.filter-btn {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); background: none;
  border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 100px;
  cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--text); color: var(--text); }
.filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.work-item { display: block; }
.work-item.hidden { display: none; }

/* video cards */
.work-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #111;
  border-radius: 6px;
}
.work-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s, opacity 0.3s;
  opacity: 0.82;
}
.work-item:hover .work-thumb img { transform: scale(1.05); opacity: 1; }
.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
}
.work-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px; background: var(--red);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.work-item:hover .work-play { opacity: 1; }
.work-play svg { width: 14px; height: 14px; margin-left: 3px; }
.work-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--red);
  font-family: 'Space Mono', monospace;
  font-size: 9px; color: #fff; letter-spacing: 0.06em;
  padding: 3px 8px; border-radius: 3px;
}
.work-caption { padding: 12px 4px; }
.work-caption-tag {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red); margin-bottom: 5px;
}
.work-caption-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 17px; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--text);
}

/* Design card (no video thumb) */
.design-card-thumb {
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.work-item:hover .design-card-thumb {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.design-card-thumb img { width: 100%; display: block; }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
}
.service-card {
  background: var(--white); padding: 36px 28px;
  transition: background 0.2s;
}
.service-card:hover { background: var(--off); }
.svc-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 48px;
  color: var(--light); line-height: 1; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.svc-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 22px;
  text-transform: uppercase; margin-bottom: 12px; letter-spacing: 0.02em;
}
.svc-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── CASE STUDIES ── */
.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.case-card {
  border: 1px solid var(--border); border-radius: 6px;
  padding: 32px 28px; transition: border-color 0.2s, box-shadow 0.2s;
}
.case-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(204,17,17,0.07);
}
.case-pill {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); background: var(--red-bg);
  padding: 4px 10px; border-radius: 100px; margin-bottom: 20px;
}
.case-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 26px; text-transform: uppercase;
  margin-bottom: 4px;
}
.case-client { font-size: 12px; color: var(--muted); margin-bottom: 20px; }
.case-big-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(44px,5vw,60px);
  color: var(--red); line-height: 1;
}
.case-num-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px; margin-bottom: 22px;
}
.case-body {
  font-size: 13px; color: var(--muted); line-height: 1.65;
  border-top: 1px solid var(--border); padding-top: 18px;
}
.case-links { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 14px; }
.case-link {
  font-family: 'Space Mono', monospace; font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red); text-decoration: none;
  border-bottom: 1px solid rgba(204,17,17,0.3);
  padding-bottom: 1px; transition: border-color 0.2s;
}
.case-link:hover { border-color: var(--red); }

/* ── EXPERIENCE (numbered like Isti) ── */
.exp-list { display: flex; flex-direction: column; }
.exp-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 40px; padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.exp-item:first-child { border-top: 1px solid var(--border); }
.exp-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 52px;
  color: var(--light); line-height: 1;
  align-self: start; padding-top: 4px;
}
.exp-body {}
.exp-meta {
  display: flex; gap: 16px; align-items: center;
  flex-wrap: wrap; margin-bottom: 8px;
}
.exp-dates {
  font-family: 'Space Mono', monospace; font-size: 10px;
  color: var(--muted); letter-spacing: 0.08em;
}
.exp-co-tag {
  font-family: 'Space Mono', monospace; font-size: 10px;
  color: var(--red); letter-spacing: 0.08em;
  background: var(--red-bg); padding: 2px 8px; border-radius: 3px;
}
.exp-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 24px;
  text-transform: uppercase; margin-bottom: 4px;
}
.exp-company { font-size: 14px; color: var(--red); font-weight: 600; margin-bottom: 12px; }
.exp-desc { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 620px; }
.exp-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.exp-tag {
  font-family: 'Space Mono', monospace; font-size: 9px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 3px; background: var(--white);
}

/* ── CONTACT FORM ── */
.contact-section {
  background: var(--off);
  border-top: 1px solid var(--border);
  padding: 100px var(--pad);
}
.contact-wrap {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 56px; align-items: start;
}
.contact-intro .section-title { margin-bottom: 18px; }
.contact-intro-text { font-size: 15px; color: var(--muted); line-height: 1.7; max-width: 360px; }
.contact-direct {
  margin-top: 32px; display: flex; flex-direction: column; gap: 12px;
}
.contact-direct a {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text); text-decoration: none;
  transition: color 0.2s;
}
.contact-direct a:hover { color: var(--red); }
.contact-direct svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-family: 'Space Mono', monospace;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.field input, .field textarea {
  font-family: 'Inter', sans-serif; font-size: 15px;
  color: var(--text); background: var(--white);
  border: 1px solid var(--border); border-radius: 5px;
  padding: 13px 14px; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-bg);
}
.field textarea { resize: vertical; min-height: 130px; }
/* Honeypot — hidden from humans, catches bots */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.contact-form .btn-red { align-self: flex-start; padding: 15px 30px; }
.form-note {
  font-family: 'Space Mono', monospace; font-size: 10px;
  letter-spacing: 0.04em; color: var(--muted); line-height: 1.6;
}
.form-alert {
  font-family: 'Space Mono', monospace; font-size: 12px;
  letter-spacing: 0.03em; padding: 14px 16px; border-radius: 5px;
  line-height: 1.5;
}
.form-alert.ok { background: rgba(26,154,26,0.08); color: #157a15; border: 1px solid rgba(26,154,26,0.3); }
.form-alert.err { background: var(--red-bg); color: var(--red); border: 1px solid rgba(204,17,17,0.3); }

/* ── CTA / CONTACT ── */
.cta-section {
  background: var(--dark); padding: 100px var(--pad); text-align: center;
}
.cta-hello {
  font-family: 'Space Mono', monospace;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #555; margin-bottom: 20px;
}
.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(44px, 7vw, 80px);
  text-transform: uppercase; line-height: 0.93;
  color: #fff; max-width: 760px; margin: 0 auto 16px;
}
.cta-title em { font-style: italic; color: var(--red); }
.cta-sub { font-size: 15px; color: #555; max-width: 440px; margin: 0 auto 40px; }
.cta-email {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(22px, 4vw, 44px);
  color: var(--red); text-decoration: none; margin-bottom: 8px;
  letter-spacing: 0.01em; transition: opacity 0.2s;
}
.cta-email:hover { opacity: 0.75; }
.cta-phone {
  display: block;
  font-family: 'Space Mono', monospace; font-size: 13px;
  color: #444; text-decoration: none; letter-spacing: 0.1em; margin-bottom: 40px;
}
.cta-phone:hover { color: #888; }
.cta-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-block;
  border: 1px solid #333; color: #888;
  font-family: 'Space Mono', monospace; font-size: 11px;
  font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 12px 22px; border-radius: 4px; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-white:hover { border-color: #666; color: #ccc; }

/* ── FOOTER ── */
footer {
  background: #000; border-top: 1px solid #111;
  padding: 24px var(--pad);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
footer img { height: 26px; }
footer p {
  font-family: 'Space Mono', monospace; font-size: 10px;
  color: #333; letter-spacing: 0.06em;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-family: 'Space Mono', monospace; font-size: 10px;
  letter-spacing: 0.08em; color: #333; text-decoration: none;
  text-transform: uppercase; transition: color 0.2s;
}
.footer-links a:hover { color: #888; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  :root { --pad: 32px; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4) { border-top: 1px solid #1f1f1f; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-inner { padding: 0 20px; }
  /* Hamburger + slide-in drawer */
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: 0;
    height: 100vh; width: min(78vw, 320px);
    background: var(--dark);
    flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 8px;
    padding: 80px 36px 36px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 1px solid #1a1a1a;
    z-index: 1001;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 14px; padding: 10px 0; width: 100%; }
  .nav-links a.nav-cta { margin-top: 12px; padding: 12px 20px; width: 100%; text-align: center; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { padding: 32px 24px; flex-direction: row; flex-wrap: wrap; gap: 16px; align-items: center; border-right: none; border-bottom: 1px solid var(--border); }
  .hero-card-top { display: none; }
  .hero-card-links { display: none; }
  .hero-content { padding: 40px 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid #1f1f1f; }
  .section { padding: 72px 24px; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .exp-item { grid-template-columns: 50px 1fr; gap: 20px; }
  .contact-section { padding: 72px 24px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .cta-section { padding: 72px 24px; }
  footer { padding: 20px 24px; flex-direction: column; text-align: center; }
}
@media (max-width: 540px) {
  .work-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr; }
  .hero-card-name { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; }
  .marquee-track { animation: none; }
  .hero-available::before { animation: none; }
}
