/* ============================================================
   Toronto Masonry Group — Modern Redesign
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Manrope:wght@700;800&display=swap');

:root {
  --stone-950: #0c0c0e;
  --stone-900: #161618;
  --stone-800: #1f2023;
  --stone-700: #2b2d32;
  --stone-300: #9ca3af;
  --stone-200: #d1d5db;
  --stone-50:  #f9fafb;
  --white:     #ffffff;
  --orange:    #f97316;
  --orange-hi: #fb923c;
  --orange-lo: #ea580c;
  --orange-bg: #fff7ed;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-head: 'Manrope', 'Inter', sans-serif;
  --max: 1160px;
  --nav-h: 68px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; zoom: 0.9; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--stone-900);
  background: var(--stone-50);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
.wrap { width: min(92%, var(--max)); margin-inline: auto; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(12, 12, 14, 0.88);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-inner {
  width: min(92%, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.nav-brand img {
  height: 58px;
  width: 58px;
  object-fit: contain;
  border-radius: 0;
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
}
.nav-brand-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.nav-brand-sub {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--orange-hi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 0.44rem 0.82rem;
  border-radius: 99px;
  transition: color 180ms, background 180ms;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links a.active { color: var(--white); background: rgba(249,115,22,0.22); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-cta-phone {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 0.42rem 0.8rem;
  transition: color 180ms;
}
.nav-cta-phone:hover { color: var(--white); }
.nav-hamburger {
  display: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.45rem 0.65rem;
  cursor: pointer;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 180ms;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.12); }
.nav-drawer {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  z-index: 99;
  background: rgba(12, 12, 14, 0.98);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 1rem 5%;
  flex-direction: column;
  gap: 0.2rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  transition: color 160ms, background 160ms;
}
.nav-drawer a:hover,
.nav-drawer a.active { color: var(--white); background: rgba(249,115,22,0.18); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.8rem 1.4rem;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 200ms cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-lo);
  border-color: var(--orange-lo);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.38);
}
.btn-ghost {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border-color: rgba(255,255,255,0.16);
}
.btn-ghost:hover { background: rgba(255,255,255,0.13); transform: translateY(-1px); }
.btn-outline-dark {
  background: var(--white);
  color: var(--stone-900);
  border-color: var(--stone-200);
  box-shadow: var(--shadow-sm);
}
.btn-outline-dark:hover {
  border-color: var(--orange);
  color: var(--orange-lo);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--stone-950);
  padding-top: var(--nav-h);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 15%, rgba(249,115,22,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 75%, rgba(251,146,60,0.14) 0%, transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(92%, var(--max));
  margin-inline: auto;
  padding: 5rem 0 4.5rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3.5rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-hi);
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.28);
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1.3rem;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.2vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: 1.3rem;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--orange) 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.72;
  max-width: 540px;
  margin-bottom: 2.2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3rem;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.badge {
  font-size: 0.77rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 0.28rem 0.68rem;
  border-radius: 99px;
}
.hero-card {
  background: rgba(22,22,26,0.7);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}
.hero-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}
.hero-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
  padding: 0;
  list-style: none;
}
.hero-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.91rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
}
.li-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-top: 0.46rem;
  flex-shrink: 0;
}
.hero-card-notice {
  background: rgba(249,115,22,0.13);
  border: 1px solid rgba(249,115,22,0.26);
  border-radius: var(--r-sm);
  padding: 0.9rem 1rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.hero-card-notice strong { color: var(--orange-hi); }

/* ============================================================
   PROOF BAR
   ============================================================ */
.proof-bar {
  background: var(--stone-900);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.15rem 0;
}
.proof-bar-inner {
  width: min(92%, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.proof-item { display: flex; align-items: center; gap: 0.6rem; }
.proof-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.22);
  display: grid;
  place-items: center;
  font-size: 0.95rem;
}
.proof-text strong { display: block; font-size: 0.86rem; font-weight: 700; color: var(--white); }
.proof-text span { font-size: 0.74rem; color: rgba(255,255,255,0.38); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--stone-900); }
.section-header { text-align: center; margin-bottom: 3.2rem; }
.section-tag {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-bg);
  border: 1px solid rgba(249,115,22,0.22);
  padding: 0.26rem 0.7rem;
  border-radius: 99px;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 800;
  color: var(--stone-900);
  letter-spacing: -0.03em;
  line-height: 1.14;
  margin-bottom: 0.65rem;
}
.section-dark .section-title { color: var(--white); }
.section-sub {
  font-size: 1.05rem;
  color: var(--stone-300);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.68;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--stone-200);
  border-left: 3px solid var(--orange);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--orange-lo);
  border-color: rgba(249,115,22,0.3);
  border-left-color: var(--orange-lo);
}
.svc-card:hover::after { opacity: 1; }
.svc-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.svc-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--stone-900);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}
.svc-card p {
  font-size: 0.9rem;
  color: var(--stone-300);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.4rem;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.01em;
  transition: gap 180ms ease;
}
.svc-link:hover { gap: 0.55rem; }

/* ============================================================
   STATS
   ============================================================ */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  text-align: center;
  transition: background 220ms, border-color 220ms;
}
.stat-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(249,115,22,0.3);
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange-hi);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.stat-sub { font-size: 0.78rem; color: rgba(255,255,255,0.38); }

/* ============================================================
   PROCESS
   ============================================================ */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
.process-track::before {
  content: '';
  position: absolute;
  top: 27px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-hi) 100%);
  opacity: 0.3;
}
.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}
.proc-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(249,115,22,0.38);
  z-index: 1;
  flex-shrink: 0;
}
.proc-step h3 {
  font-family: var(--font-head);
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--stone-900);
  letter-spacing: -0.01em;
}
.proc-step p { font-size: 0.85rem; color: var(--stone-300); line-height: 1.62; }

/* ============================================================
   AREAS BAND
   ============================================================ */
.areas-band {
  background: linear-gradient(130deg, var(--orange-lo) 0%, var(--orange) 55%, var(--orange-hi) 100%);
  padding: 3.2rem 0;
}
.areas-inner {
  width: min(92%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.areas-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.7rem;
}
.areas-list { display: flex; flex-wrap: wrap; gap: 0.48rem; }
.area-tag {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 0.26rem 0.65rem;
  border-radius: 99px;
}

/* ============================================================
   INTERNAL PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--stone-950);
  padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 80% 20%, rgba(249,115,22,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(92%, var(--max));
  margin-inline: auto;
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1.1rem;
}
.page-breadcrumb a { color: rgba(255,255,255,0.5); transition: color 150ms; }
.page-breadcrumb a:hover { color: var(--white); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
  line-height: 1.7;
}

/* full-bleed showcase image between hero and content */
.page-showcase {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  justify-content: center;
  padding: 2.5rem 0;
}
.page-showcase img {
  width: 42.5%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 3px solid var(--orange);
  box-shadow: 0 0 0 6px rgba(235,107,30,0.12), 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.6s ease, box-shadow 0.4s ease;
}
.page-showcase:hover img {
  transform: scale(1.02);
  box-shadow: 0 0 0 8px rgba(235,107,30,0.2), 0 28px 70px rgba(0,0,0,0.6);
}
.page-showcase-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.72) 0%, transparent 100%);
  padding: 2rem 2.5rem 1.4rem;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
}

/* content sections used on service pages */
.content-section { padding: 4.5rem 0; }
.content-section.alt { background: var(--white); }
.content-grid {
  width: min(92%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.content-grid h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--stone-900);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.content-grid p { font-size: 0.96rem; color: var(--stone-300); line-height: 1.74; margin-bottom: 1rem; }
.content-grid ul { display: flex; flex-direction: column; gap: 0.6rem; padding: 0; list-style: none; }
.content-grid ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: var(--stone-700);
  line-height: 1.55;
}
.check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--orange-bg);
  border: 1.5px solid rgba(249,115,22,0.3);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.feature-card {
  background: var(--white);
  border: 1.5px solid var(--stone-200);
  border-radius: var(--r-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--stone-900);
  margin-bottom: 0.5rem;
}
.feature-card p { font-size: 0.88rem; color: var(--stone-300); line-height: 1.65; }

/* contact form */
.contact-wrap {
  width: min(92%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--stone-900);
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
}
.contact-info p { font-size: 0.95rem; color: var(--stone-300); line-height: 1.72; margin-bottom: 1.8rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-detail-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--orange-bg);
  border: 1px solid rgba(249,115,22,0.2);
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail strong { display: block; font-size: 0.84rem; font-weight: 700; color: var(--stone-900); }
.contact-detail span { font-size: 0.88rem; color: var(--stone-300); }
.contact-form {
  background: var(--white);
  border: 1.5px solid var(--stone-200);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--stone-900);
  margin-bottom: 1.4rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--stone-700);
  margin-bottom: 0.38rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--stone-900);
  background: var(--stone-50);
  border: 1.5px solid var(--stone-200);
  border-radius: var(--r-sm);
  padding: 0.7rem 0.9rem;
  transition: border-color 160ms, box-shadow 160ms;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--stone-950);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3.8rem 0 1.8rem;
}
.footer-grid {
  width: min(92%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.8rem;
}
.footer-brand-logo {
  height: 62px;
  width: 62px;
  object-fit: contain;
  border-radius: 0;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 0.9rem;
  box-shadow: none;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}
.footer-brand p { font-size: 0.87rem; color: rgba(255,255,255,0.38); line-height: 1.68; max-width: 260px; }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; padding: 0; list-style: none; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 160ms; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  width: min(92%, var(--max));
  margin-inline: auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.83rem; color: rgba(255,255,255,0.28); }
.footer-bottom a { color: rgba(255,255,255,0.42); transition: color 160ms; }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Remove zoom on mobile — let the browser handle scaling naturally */
@media (max-width: 768px) {
  html { zoom: 1; }
}

/* Tablet */
@media (max-width: 1020px) {
  .services-grid      { grid-template-columns: 1fr 1fr; }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .content-grid       { grid-template-columns: 1fr; gap: 2rem; }
  .contact-wrap       { grid-template-columns: 1fr; }
  .stats-grid         { grid-template-columns: 1fr 1fr 1fr; }
  .process-track      { grid-template-columns: 1fr 1fr; }
  .process-track::before { display: none; }
  .page-showcase img  { width: 70%; }
}

/* Large mobile */
@media (max-width: 860px) {
  .hero-inner         { grid-template-columns: 1fr; }
  .hero-card          { display: none; }
  .hero-title         { font-size: clamp(2.2rem, 7vw, 3rem); }
  .hero-sub           { font-size: 1rem; }
  .hero-inner         { padding: 3.5rem 0 3rem; }
  .areas-inner        { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .areas-list         { justify-content: center; }
  .section            { padding: 3.5rem 0; }
  .section-title      { font-size: clamp(1.5rem, 5vw, 2rem); }
  .stats-grid         { grid-template-columns: 1fr 1fr; }
  .page-showcase img  { width: 85%; }
}

/* Mobile */
@media (max-width: 680px) {
  /* Nav */
  .nav-links, .nav-cta       { display: none; }
  .nav-hamburger             { display: flex; }
  .nav-brand-name            { font-size: 0.88rem; }

  /* Hero */
  .hero                      { min-height: auto; padding-bottom: 0; }
  .hero-inner                { padding: 2.5rem 0 2.5rem; gap: 2rem; }
  .hero-title                { font-size: clamp(1.9rem, 8vw, 2.6rem); letter-spacing: -0.03em; }
  .hero-sub                  { font-size: 0.96rem; margin-bottom: 1.6rem; }
  .hero-actions              { flex-direction: column; gap: 0.65rem; }
  .hero-actions .btn         { width: 100%; justify-content: center; }
  .hero-badges               { gap: 0.4rem; }

  /* Proof bar */
  .proof-bar-inner           { gap: 1rem; justify-content: flex-start; }
  .proof-item                { flex: 0 0 calc(50% - 0.5rem); }

  /* Services */
  .services-grid             { grid-template-columns: 1fr; }

  /* Stats */
  .stats-grid                { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .stat-num                  { font-size: 2rem; }

  /* Process */
  .process-track             { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Sections */
  .section                   { padding: 3rem 0; }
  .section-header            { margin-bottom: 2rem; }

  /* Page heroes */
  .page-hero                 { padding: calc(var(--nav-h) + 2rem) 0 2rem; }
  .page-hero h1              { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .page-hero p               { font-size: 0.95rem; }

  /* Showcase image */
  .page-showcase             { padding: 1.5rem 1rem; }
  .page-showcase img         { width: 100%; border-radius: 10px; }

  /* Content grid */
  .content-grid              { gap: 1.5rem; }
  .content-section           { padding: 2.5rem 0; }

  /* Feature cards */
  .feature-card              { padding: 1.2rem; }

  /* Contact */
  .contact-wrap              { gap: 2rem; }
  .contact-form              { padding: 1.4rem; }

  /* Areas band */
  .areas-band                { padding: 2.2rem 0; }
  .areas-inner               { gap: 1.2rem; }
  .areas-left h2             { font-size: 1.3rem; }
  .btn-outline-dark          { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid               { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom             { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Buttons */
  .btn                       { font-size: 0.88rem; padding: 0.75rem 1.2rem; }
}

/* Small phones */
@media (max-width: 400px) {
  .hero-title                { font-size: 1.75rem; }
  .proof-item                { flex: 0 0 100%; }
  .stats-grid                { grid-template-columns: 1fr; }
  .page-showcase img         { border-radius: 8px; }
}
