@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #f8fafc;
  --fg: #111827;
  --card: #ffffff;
  --muted: #526173;
  --border: #dfe3eb;
  --primary: #ff6200;
  --primary-dark: #e24f00;
  --accent: #ffb23f;
  --ink: #0f172a;
  --cream: #fff7ed;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
  --heading: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-pad { padding: 96px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
  backdrop-filter: blur(14px);
}
.header-row { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 64px; height: 64px; overflow: hidden; border-radius: 14px; background: var(--ink); box-shadow: 0 12px 28px rgba(15,23,42,.18); }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: normal; }
.brand-name, .footer-logo { font: 700 18px/1 var(--heading); letter-spacing: -0.02em; }
.brand-name span, .footer-logo strong { color: var(--primary); }
.desktop-nav { display: flex; gap: 4px; align-items: center; }
.desktop-nav a {
  border-radius: 6px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 8px 16px;
  text-transform: uppercase;
  transition: color 150ms ease;
}
.desktop-nav a:hover, .desktop-nav .active { color: var(--ink); background: var(--cream); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.quote, .btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
  white-space: nowrap;
}
.quote { background: linear-gradient(135deg, var(--primary), #ff8a1f); box-shadow: 0 18px 35px rgba(255, 98, 0, 0.28); color: white; padding: 10px 20px; }
.quote.payment-link { background: var(--ink); box-shadow: 0 14px 28px rgba(15, 23, 42, .18); }
.quote:hover, .btn.primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.quote.payment-link:hover { background: #1f2937; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; color: var(--ink); padding: 10px; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; }
.mobile-nav { display: none; border-top: 1px solid var(--border); padding: 12px 24px 22px; background: white; }
.mobile-nav a { display: block; padding: 12px 0; color: var(--muted); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 0.12em; }
.mobile-nav .quote { color: white; padding: 12px 18px; text-align: center; margin-top: 8px; }
.mobile-nav .payment-link { background: var(--ink); }

.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 98, 0, .11), transparent 24%),
    linear-gradient(135deg, #fff 0%, #fff7ed 48%, #f8fafc 100%);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(15,23,42,.05) 1px, transparent 1px), linear-gradient(rgba(15,23,42,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
  pointer-events: none;
}
.hero-copy {
  flex: 0 0 60%;
  max-width: 768px;
  margin-left: auto;
  padding: 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.eyebrow, .section-kicker {
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.eyebrow { display: inline-flex; align-items: center; gap: 12px; }
.eyebrow span { display: block; height: 2px; width: 32px; background: var(--primary); }
h1, h2, h3 { font-family: var(--heading); margin: 0; }
h1 { font-size: clamp(44px, 5.5vw, 72px); letter-spacing: -0.04em; line-height: 1.06; margin-bottom: 24px; }
h1 strong { color: var(--primary); font-weight: 800; }
.hero-text { color: var(--muted); font-size: clamp(16px, 1.4vw, 18px); line-height: 1.75; max-width: 52ch; margin: 0 0 40px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.btn.primary { background: linear-gradient(135deg, var(--primary), #ff8a1f); color: white; padding: 16px 32px; box-shadow: 0 18px 35px rgba(255, 98, 0, 0.28); }
.service-link { color: var(--muted); font-weight: 800; font-size: 14px; display: inline-flex; gap: 6px; align-items: center; }
.service-link:hover { color: var(--fg); }
.trust-list {
  align-items: center;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
}
.trust-list span { color: var(--muted); font-size: 13px; font-weight: 800; }
.trust-list span::before { content: "★"; color: var(--primary); margin-right: 8px; }
.hero-media { flex: 0 0 40%; background: var(--ink); overflow: hidden; position: relative; clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%); }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.grid-lines { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px); background-size: 40px 40px; z-index: 1; }
.media-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,23,42,.55), rgba(15,23,42,.08)); z-index: 1; }
.red-rail { position: absolute; top: 0; right: 0; width: 5px; height: 100%; background: linear-gradient(var(--primary), var(--accent)); z-index: 2; }
.experience-card {
  position: absolute;
  left: -28px;
  bottom: 48px;
  z-index: 2;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(31, 39, 49, 0.28);
  padding: 16px 20px;
}
.star { border: 2px solid var(--primary); border-radius: 999px; color: var(--primary); display: grid; height: 40px; place-items: center; width: 40px; }
.experience-card strong { display: block; font: 800 16px/1.2 var(--heading); }
.experience-card small { color: var(--muted); font-size: 12px; }

.stats { background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.12); border-top: 1px solid rgba(255,255,255,.12); padding: 40px 0; }
.stat-grid { display: grid; gap: 32px; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-grid strong { color: var(--primary); display: block; font: 800 36px/1.1 var(--heading); margin-bottom: 4px; }
.stat-grid span { color: #cbd5e1; font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }

.section-head { margin-bottom: 56px; }
.section-head h2 { font-size: clamp(28px, 3vw, 42px); letter-spacing: -0.03em; line-height: 1.12; margin-bottom: 16px; }
.section-head p:not(.section-kicker) { color: var(--muted); line-height: 1.7; max-width: 55ch; margin: 0; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.service-card:hover { border-color: rgba(255, 98, 0, 0.45); box-shadow: var(--shadow); transform: translateY(-6px); }
.service-card img { aspect-ratio: 4 / 3; height: auto; object-fit: cover; width: 100%; transition: transform 500ms ease; }
.service-card:hover img { transform: scale(1.05); }
.service-card div { padding: 20px; }
.service-card h3 { font-size: 16px; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin: 0 0 16px; }
.service-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.service-card li { color: var(--muted); font-size: 12px; }
.service-card li::before { content: ""; display: inline-block; width: 4px; height: 4px; margin-right: 8px; vertical-align: middle; border-radius: 50%; background: var(--primary); }
.full-pricing, .learn-link { color: var(--muted); display: inline-block; font-weight: 800; margin-top: 32px; }
.full-pricing:hover, .learn-link:hover { color: var(--fg); }

.process {
  background:
    linear-gradient(180deg, #fff 0%, #fff7ed 100%);
  border-block: 1px solid var(--border);
  padding: 82px 0 104px;
  scroll-margin-top: 80px;
}
.process-layout {
  display: block;
  text-align: center;
}
.process-head {
  margin: 0 auto 72px;
}
.process-head .section-kicker {
  margin-bottom: 18px;
}
.process-head h2 {
  font-size: clamp(38px, 3.6vw, 54px);
  line-height: 1.05;
  margin-bottom: 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(48px, 8vw, 132px);
  align-items: start;
  margin: 0 auto;
  max-width: 1400px;
}
.steps article {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  text-align: center;
}
.step-icon {
  align-items: center;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  box-shadow: 0 22px 45px rgba(15, 23, 42, .16);
  display: inline-flex;
  height: 80px;
  justify-content: center;
  margin-bottom: 34px;
  position: relative;
  width: 80px;
}
.step-icon svg {
  fill: none;
  height: 30px;
  stroke: var(--primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 30px;
}
.step-icon span {
  align-items: center;
  background: var(--primary);
  border-radius: 999px;
  color: white;
  display: flex;
  font: 800 16px/1 var(--sans);
  height: 30px;
  justify-content: center;
  position: absolute;
  right: -12px;
  top: -10px;
  width: 30px;
}
.steps h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.steps p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 330px;
}
.learn-link {
  color: var(--primary);
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  margin-top: 66px;
}
.learn-link:hover {
  color: var(--fg);
}

.testimonial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.testimonial { background: var(--card); border: 1px solid var(--border); border-radius: 18px; display: flex; flex-direction: column; min-height: 300px; padding: 28px; box-shadow: 0 18px 45px rgba(15,23,42,.07); }
.testimonial b { color: var(--primary); font: 800 42px/0.8 var(--heading); margin-bottom: 12px; }
.testimonial p { color: var(--muted); flex: 1; font-size: 14px; line-height: 1.7; margin: 0 0 24px; }
.testimonial footer { align-items: flex-end; display: flex; justify-content: space-between; gap: 16px; }
.testimonial strong { display: block; font: 800 14px/1.2 var(--heading); }
.testimonial small { color: var(--muted); display: block; font-size: 12px; margin-top: 4px; }
.testimonial em { color: var(--primary); font-size: 11px; font-style: normal; letter-spacing: 1px; white-space: nowrap; }

.cta { background: linear-gradient(135deg, var(--primary), #ff8a1f 55%, #d9480f); padding: 80px 0; position: relative; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 15% 30%, rgba(255,255,255,.26), transparent 26%), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px); background-size: auto, 46px 46px; pointer-events: none; }
.cta-row { position: relative; z-index: 1; }
.cta-row { align-items: center; display: flex; justify-content: space-between; gap: 32px; }
.cta h2 { color: white; font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 8px; }
.cta p { color: rgba(255,255,255,.8); margin: 0; max-width: 48ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.btn.light { background: white; color: var(--primary); padding: 16px 32px; box-shadow: 0 4px 16px rgba(0,0,0,.15); }
.btn.outline { border: 2px solid rgba(255,255,255,.65); color: white; padding: 14px 32px; }
.btn.light:hover, .btn.outline:hover { transform: translateY(-1px); }

.footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.12); color: white; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-top: 64px; padding-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo span { background: var(--primary); border-radius: 8px; box-shadow: 0 4px 12px rgba(239, 78, 63, .3); color: white; display: grid; height: 36px; place-items: center; width: 36px; }
.footer-brand p { color: #cbd5e1; font-size: 14px; line-height: 1.7; margin: 0 0 24px; max-width: 34ch; }
address { display: grid; gap: 12px; font-style: normal; }
address a, address span, .footer nav a { color: #cbd5e1; font-size: 14px; }
address a:hover, .footer nav a:hover, .footer-bottom a:hover { color: var(--fg); }
.footer nav { display: grid; align-content: start; gap: 10px; }
.footer h3 { font: 800 12px/1 var(--sans); letter-spacing: 0.12em; margin: 0 0 8px; text-transform: uppercase; }
.footer-bottom { align-items: center; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; padding-top: 32px; padding-bottom: 32px; }
.footer-bottom p, .footer-bottom a { color: #cbd5e1; font-size: 12px; margin: 0; }
.footer-bottom span { display: flex; gap: 24px; }

.page-hero {
  background:
    radial-gradient(circle at 13% 20%, rgba(255, 98, 0, .12), transparent 24%),
    linear-gradient(135deg, #fff 0%, #fff7ed 55%, #f8fafc 100%);
  border-bottom: 1px solid var(--border);
  padding: 96px 0 72px;
}
.page-hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 20px;
}
.page-hero > .shell > p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 58ch;
  margin: 0;
}
.pricing-trust {
  border-top: 0;
  margin-top: 36px;
  padding-top: 0;
}
.pricing {
  background: #fff;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.price-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(15,23,42,.07);
}
.price-panel h2 {
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.price-panel h3 {
  color: var(--primary);
  font: 800 12px/1 var(--sans);
  letter-spacing: 0.12em;
  margin: 28px 0 12px;
  text-transform: uppercase;
}
.price-panel h3:first-of-type { margin-top: 0; }
.price-panel dl { margin: 0; }
.price-panel dl div {
  align-items: baseline;
  border-bottom: 1px solid rgba(47, 65, 91, .7);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 12px 0;
}
.price-panel dt { color: var(--muted); font-size: 14px; }
.price-panel dd { color: var(--fg); font-weight: 800; margin: 0; white-space: nowrap; }
.price-note { color: var(--muted); font-size: 13px; margin: 28px 0 0; }
.faq { background: var(--bg); }
.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 12px 32px rgba(15,23,42,.05);
}
.faq summary {
  cursor: pointer;
  font-weight: 800;
}
.faq p {
  color: var(--muted);
  margin: 14px 0 0;
}
.detail-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.detail-section.alt {
  background: var(--cream);
}
.split-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 48px;
  align-items: start;
}
.detail-section h2,
.request-form h2,
.info-card h2 {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 18px;
}
.detail-section p,
.narrow-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 18px;
}
.narrow-copy {
  max-width: 860px;
}
.about-story {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: 56px;
}
.about-image {
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
  position: relative;
}
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, .25));
  pointer-events: none;
}
.about-image img {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.timeline {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}
.timeline article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
}
.timeline span {
  align-items: center;
  background: var(--primary);
  border-radius: 999px;
  color: white;
  display: flex;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  width: 38px;
}
.timeline h3,
.info-card h3,
.request-form legend {
  font-size: 18px;
  margin: 0 0 8px;
}
.timeline p {
  margin: 0;
}
.info-card,
.request-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(15,23,42,.08);
}
.detail-section.alt .info-card,
.detail-section.alt .request-form {
  background: #fff;
}
.info-card dl {
  margin: 0 0 24px;
}
.info-card dl div {
  border-bottom: 1px solid rgba(47, 65, 91, .7);
  padding: 12px 0;
}
.info-card dt {
  color: var(--fg);
  font-weight: 800;
}
.info-card dd {
  color: var(--muted);
  margin: 4px 0 0;
}
.info-card ul {
  color: var(--muted);
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.info-card li::before {
  content: "";
  background: var(--primary);
  border-radius: 999px;
  display: inline-block;
  height: 5px;
  margin-right: 10px;
  vertical-align: middle;
  width: 5px;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-grid article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(15,23,42,.06);
}
.value-grid h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.value-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.contact-grid {
  grid-template-columns: .8fr 1.2fr;
}
.request-form {
  display: grid;
  gap: 18px;
}
.request-form label {
  color: var(--fg);
  display: grid;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
}
.request-form input[type="text"],
.request-form input[type="email"],
.request-form input[type="tel"],
.request-form input[type="date"],
.request-form input[type="time"],
.request-form textarea {
  background: #f8fafc;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--fg);
  font: 400 15px/1.4 var(--sans);
  padding: 13px 14px;
  width: 100%;
}
.request-form fieldset {
  border: 1px solid var(--border);
  border-radius: 14px;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 18px;
}
.request-form fieldset label {
  color: var(--muted);
  display: flex;
  flex-direction: row;
  font-weight: 600;
  gap: 10px;
}
.request-form input[type="radio"],
.request-form input[type="checkbox"] {
  accent-color: var(--primary);
}
.form-message {
  border-radius: 8px;
  font-weight: 700;
  margin: 0;
  padding: 12px 14px;
}
.form-message.success {
  background: #ecfdf5;
  color: #047857;
}
.form-message.error {
  background: #fef2f2;
  color: #b91c1c;
}
.appointment-modal {
  align-items: center;
  background: rgba(15, 23, 42, .58);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 100;
}
.appointment-modal[hidden] {
  display: none;
}
.appointment-modal__panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 460px;
  padding: 32px;
  position: relative;
  text-align: center;
  width: 100%;
}
.appointment-modal__close {
  background: var(--cream);
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  height: 34px;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 34px;
}
.appointment-modal__icon {
  align-items: center;
  background: linear-gradient(135deg, var(--primary), #ff8a1f);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 54px;
  justify-content: center;
  margin-bottom: 18px;
  width: 54px;
}
.appointment-modal__panel h2 {
  font-size: 30px;
  margin-bottom: 10px;
}
.appointment-modal__panel p {
  color: var(--muted);
  margin: 0 0 24px;
}
body.modal-open {
  overflow: hidden;
}
.not-found {
  display: grid;
  justify-items: center;
  min-height: calc(100vh - 80px);
  padding-bottom: 96px;
  padding-top: 96px;
  text-align: center;
}
.not-found h1 {
  color: var(--primary);
  font-size: clamp(72px, 12vw, 160px);
  margin: 0;
}
.not-found h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 14px;
}
.not-found p {
  color: var(--muted);
  margin: 0 0 24px;
}
.not-found p:last-child {
  align-items: center;
  display: flex;
  gap: 18px;
}

.reveal { animation: rise .65s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .desktop-nav, .desktop-quote { display: none; }
  .menu-toggle { display: block; }
  .mobile-nav.open { display: block; }
  .hero { display: block; min-height: 0; }
  .hero-copy { max-width: none; padding: 72px 40px; }
  .hero-media { height: 440px; }
  .experience-card { left: 24px; }
  .service-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .process-layout { grid-template-columns: 1fr; }
  .cta-row { align-items: flex-start; flex-direction: column; }
  .pricing-grid { grid-template-columns: 1fr; }
  .split-layout,
  .contact-grid,
  .value-grid,
  .about-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .shell { padding: 0 24px; }
  .header-row { height: 72px; }
  .brand-mark { height: 52px; width: 52px; }
  .brand-name { font-size: 16px; }
  .hero-copy { padding: 56px 24px; }
  .hero-media { display: none; }
  .stat-grid, .service-grid, .testimonial-grid, .footer-main { grid-template-columns: 1fr; }
  .process.section-pad {
    padding: 64px 0 72px;
  }
  .process-head {
    margin-bottom: 48px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 340px;
  }
  .step-icon {
    margin-bottom: 22px;
  }
  .steps p {
    font-size: 16px;
  }
  .learn-link {
    font-size: 16px;
    margin-top: 48px;
  }
  .stat-grid { gap: 24px; }
  .section-pad { padding: 72px 0; }
  .trust-list { align-items: flex-start; flex-direction: column; gap: 12px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}
