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

/* ── TOKENS ── */
:root {
  --c-bg:       #f7f7f5;
  --c-surface:  #eeedeb;
  --c-surface2: #ffffff;
  --c-border:   #d9d9d6;
  --c-text:     #1a1a1a;
  --c-text-dim: #5c5c5c;
  --c-accent:   #111111;
  --c-blue:     #1a6ab5;
  --c-blue-hover: #135490;
  --c-gold:     #c7930a;

  --f-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --f-sans:    'Barlow', -apple-system, sans-serif;
  --f-mono:    'JetBrains Mono', 'SF Mono', monospace;

  --w-page:   1140px;
  --w-narrow: 740px;
}

/* ── BASE ── */
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  font-weight: 400;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-accent);
}
h3, h4 {
  font-family: var(--f-sans);
  font-weight: 600;
  line-height: 1.25;
  color: var(--c-accent);
}
h1 { font-size: clamp(2.8rem, 6.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1rem; }
img { max-width: 100%; display: block; }

/* ── SCROLL REVEAL (simple fade, no bounce) ── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(10) { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(11) { transition-delay: 0.5s; }
.reveal-stagger.visible > *:nth-child(12) { transition-delay: 0.55s; }
.reveal-stagger.visible > *:nth-child(n+13) { transition-delay: 0.6s; }

/* ── LAYOUT ── */
.container { max-width: var(--w-page); margin: 0 auto; padding: 0 1.5rem; }
.content-narrow { max-width: var(--w-narrow); }
.section { padding: 4.5rem 0; }
.section-alt { background: var(--c-surface2); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.section-dark {
  background: var(--c-accent);
  color: #fff;
}
.section-dark .stat-num { color: #fff; }
.section-dark .stat-label { color: rgba(255,255,255,0.5); }

/* ── LABEL ── */
.label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow 0.2s;
}
.site-header.scrolled {
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.header-inner {
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; }
.logo-img {
  height: 2.2rem;
  width: auto;
  display: block;
}
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-text-dim);
  transition: color 0.15s;
}
.nav-link:hover, .nav-link.active { color: var(--c-accent); }
.nav-cta {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--c-blue);
  padding: 0.55rem 1.25rem;
  border: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--c-blue-hover); }

/* nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--c-accent);
  transition: transform 0.2s ease;
}
.nav-toggle.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  padding: 7.5rem 0 4rem;
  min-height: 65vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-break { display: block; }
@media (max-width: 768px) { .hero-break { display: inline; } }
.hero .label { animation: fadeIn 0.4s ease both; }
.hero h1 { animation: fadeIn 0.4s 0.05s ease both; margin-bottom: 1rem; color: #fff; }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.65;
  animation: fadeIn 0.4s 0.1s ease both;
}
.hero-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
  animation: fadeIn 0.4s 0.15s ease both;
}
.hero-phone {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-blue);
  transition: color 0.15s;
  align-self: flex-start;
}
.hero-phone:hover { color: var(--c-blue-hover); }
.hero-email {
  font-family: var(--f-mono);
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.02em;
  transition: color 0.15s;
  align-self: flex-start;
}
.hero-email:hover { color: #fff; }
.hero-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  animation: fadeIn 0.4s 0.2s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 7rem 0 2.5rem;
  border-bottom: 1px solid var(--c-border);
}
.page-hero .label { animation: fadeIn 0.4s ease both; }
.page-hero h1 { margin-top: 0.4rem; animation: fadeIn 0.4s 0.05s ease both; }
.page-hero .hero-sub {
  color: var(--c-text-dim);
  margin-top: 0.6rem;
  max-width: 520px;
  animation: fadeIn 0.4s 0.1s ease both;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: 2px solid var(--c-accent);
  color: #fff;
  background: var(--c-accent);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.btn:hover {
  background: var(--c-blue);
  border-color: var(--c-blue);
}
.btn-ghost {
  background: transparent;
  color: var(--c-accent);
}
.btn-ghost:hover {
  background: var(--c-accent);
  color: #fff;
}

/* ── STAT GRID ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1rem 0;
}
.stat-item { text-align: center; }
.stat-item + .stat-item {
  border-left: 1px solid rgba(255,255,255,0.1);
}
.stat-num {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.stat-label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* ── HIGHLIGHTS ── */
.highlights-section {
  background: var(--c-accent);
  padding: 3rem 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.highlight-item {
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.highlight-marker {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-blue);
  line-height: 1;
  margin-bottom: 0.15rem;
}
.highlight-title {
  font-family: var(--f-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}
.highlight-detail {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
}

/* ── CARD GRID ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: var(--c-border);
  margin-top: 1.5rem;
}
.card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--c-bg);
  transition: background 0.15s;
}
.section-alt .card { background: var(--c-surface2); }
.section-alt .card:hover { background: var(--c-surface); }
.card:hover { background: var(--c-surface); }
.card-num, .card-label {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  color: var(--c-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.card h3 { margin-bottom: 0.3rem; }
.card p {
  font-size: 0.84rem;
  color: var(--c-text-dim);
  flex: 1;
  line-height: 1.55;
}
.card-arrow {
  font-size: 1rem;
  color: var(--c-border);
  margin-top: 1rem;
  transition: color 0.15s;
}
.card:hover .card-arrow { color: var(--c-blue); }

/* ── APPROACH ── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.approach-item {
  padding-top: 1rem;
  border-top: 2px solid var(--c-border);
}
.approach-num {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  color: var(--c-blue);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.approach-item h3 { margin-bottom: 0.3rem; }
.approach-item p { font-size: 0.84rem; color: var(--c-text-dim); line-height: 1.55; }

/* ── EDGE GRID ── */
.edge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-border);
}
.edge-item {
  padding: 1.5rem;
  background: var(--c-bg);
  transition: background 0.15s;
}
.edge-item:hover { background: var(--c-surface); }
.edge-item h3 {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}
.edge-item h3::before {
  content: '—';
  color: var(--c-blue);
  margin-right: 0.4rem;
}
.edge-item p { font-size: 0.84rem; color: var(--c-text-dim); line-height: 1.55; }

/* ── CTA SECTION ── */
.cta-section {
  text-align: center;
  background: var(--c-accent);
  color: #fff;
}
.cta-section h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-section .btn {
  background: #fff;
  color: var(--c-accent);
  border-color: #fff;
}
.cta-section .btn:hover {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
}

/* ── BRANDS ── */
.brands-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-top: 2rem;
}
.brand-logo {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter 0.2s, opacity 0.2s;
}
.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ── CLIENTS ── */
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}
.client-logo {
  width: 120px;
  height: 75px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.45;
  transition: filter 0.2s, opacity 0.2s;
}
.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0;
}
.client-item {
  padding: 0.5rem 1rem;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-accent);
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--c-border);
  margin-top: 1.5rem;
}
.review-card {
  padding: 1.5rem;
  background: var(--c-surface2);
}
.review-stars {
  color: var(--c-gold);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.review-text {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--c-text);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.review-author {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  color: var(--c-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── REGION ── */
.region-text {
  font-size: 0.92rem;
  color: var(--c-text-dim);
  max-width: 500px;
  margin-top: 0.5rem;
  line-height: 1.6;
}
.region-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1rem;
}
.region-tag {
  font-family: var(--f-mono);
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  color: var(--c-text-dim);
}

/* ── HIRING BANNER ── */
.hiring-banner {
  background: var(--c-blue);
  color: #fff;
  padding: 0.75rem 0;
  margin-top: 4.75rem;
}
.hiring-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.88rem;
}
.hiring-banner a {
  color: #fff;
  text-decoration: underline;
}
.hiring-banner a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .hiring-banner-inner {
    flex-direction: column;
    text-align: center;
    font-size: 0.82rem;
  }
}

/* ── PAGE PHOTO ── */
.page-photo-section { padding-top: 0; padding-bottom: 0; }
.page-photo {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--c-border);
}

/* ── PHOTO GRID ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 4px;
  margin-top: 1.5rem;
}
.photo-grid-item {
  overflow: hidden;
  position: relative;
}
.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.photo-grid-item:hover img { transform: scale(1.03); }
.photo-grid-tall { grid-row: span 2; }
@media (max-width: 768px) {
  .photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .photo-grid-tall { grid-row: span 2; }
}
@media (max-width: 480px) {
  .photo-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .photo-grid-tall { grid-row: span 1; }
}

/* ── ABOUT PHOTOS ── */
.about-photos {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4px;
  margin: 2rem 0;
}
.about-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--c-border);
}
.about-photos-stack {
  display: grid;
  gap: 4px;
}
@media (max-width: 768px) {
  .about-photos {
    grid-template-columns: 1fr;
  }
  .about-photos > img {
    height: 200px;
  }
  .about-photos-stack {
    grid-template-columns: 1fr 1fr;
  }
  .about-photos-stack img {
    height: 150px;
  }
}

/* ── DIVIDER ── */
.section-divider {
  width: 100%;
  height: 1px;
  background: var(--c-border);
}

/* ── CONTENT ── */
.content-narrow h2 { margin: 2.5rem 0 0.75rem; }
.content-narrow h3 { margin: 1.75rem 0 0.5rem; }
.content-narrow p { margin-bottom: 0.85rem; color: var(--c-text-dim); line-height: 1.65; font-size: 0.92rem; }
.content-narrow ul, .content-narrow ol { margin: 0 0 1.25rem 1.25rem; color: var(--c-text-dim); }
.content-narrow li { margin-bottom: 0.35rem; font-size: 0.92rem; }
.content-narrow strong { color: var(--c-text); font-weight: 600; }

/* ── CAPABILITIES (single pages) ── */
.capabilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.capabilities-grid .stat-item {
  text-align: left;
  padding: 0.5rem 0.9rem;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
}
.capabilities-grid .stat-item p {
  font-size: 0.8rem;
  font-family: var(--f-mono);
  color: var(--c-text-dim);
}

/* ── FOOTER ── */
.site-footer {
  background: var(--c-accent);
  color: rgba(255,255,255,0.5);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  max-width: var(--w-page);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-logo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}
.footer-logo-img {
  height: 1.4rem;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-license {
  font-family: var(--f-mono);
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  margin-top: 0.75rem;
  letter-spacing: 0.03em;
}
.footer-license-detail {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-top: 0.75rem; line-height: 1.5; }
.footer-col h4, .footer-heading {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.75rem;
}
.footer-col a {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.35rem;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-col p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom {
  max-width: var(--w-page);
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.02em;
}

/* ── CONTACT ── */
.contact-direct {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--c-border);
  margin-top: 1.5rem;
}
.contact-block {
  padding: 1.5rem;
  background: var(--c-bg);
}
.contact-block .info-label {
  font-family: var(--f-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-text-dim);
  margin-bottom: 0.3rem;
}
.contact-big {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--c-accent);
  transition: color 0.15s;
}
a.contact-big:hover { color: var(--c-blue); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 1.5rem;
}
.contact-info h3 { margin-bottom: 0.35rem; }
.contact-info p { color: var(--c-text-dim); font-size: 0.88rem; margin-bottom: 1.1rem; }
.contact-info .info-label {
  font-family: var(--f-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-text-dim);
  margin-bottom: 0.15rem;
}
.contact-info .info-value {
  color: var(--c-accent);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .edge-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item { border-left: none; }
}
@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 4.75rem;
    left: 0; right: 0;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-border);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.75rem;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { min-height: 85vh; padding: 7rem 0 4rem; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); letter-spacing: 0.03em; }
  .hero-sub { font-size: 0.92rem; }
  .hero-phone { font-size: 1.6rem; }
  .hero-email { font-size: 0.82rem; }
  .logo-img { height: 1.6rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-direct { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-num { font-size: 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .section { padding: 3rem 0; }
}
@media (max-width: 480px) {
  .approach-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
