﻿:root {
  color-scheme: light;
  --blue: #0b438f;
  --blue-dark: #08326e;
  --orange: #f49a1f;
  --orange-deep: #db5a24;
  --gray: #55575a;
  --line: #e4e7ec;
  --paper: #f5f7fb;
  --white: #ffffff;
  --ink: #121826;
  --shadow: 0 24px 70px rgba(8, 50, 110, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header {
  position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px clamp(20px, 5vw, 72px); background: rgba(255, 255, 255, 0.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px);
}
.brand img { width: min(360px, 58vw); height: auto; }
.site-nav { display: flex; gap: 6px; align-items: center; }
.site-nav a { border-radius: 8px; padding: 10px 12px; color: var(--gray); font-weight: 800; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { background: #f0f4fb; color: var(--blue); outline: none; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.nav-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--blue); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

.hero {
  display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(330px, 1.05fr); gap: clamp(30px, 5vw, 74px); align-items: center;
  padding: clamp(40px, 7vw, 92px) clamp(20px, 5vw, 72px); min-height: calc(100vh - 84px);
  background: linear-gradient(120deg, #ffffff 0%, #f4f7fb 47%, rgba(244, 154, 31, 0.16) 47%, rgba(244, 154, 31, 0.16) 100%);
}
.hero-copy { max-width: 700px; }
.eyebrow { margin: 0 0 10px; color: var(--orange-deep); font-size: 0.78rem; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.07; }
h1 { max-width: 12ch; color: var(--blue); font-size: clamp(3rem, 7vw, 6.2rem); }
h2 { max-width: 13ch; color: var(--blue); font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { color: var(--blue-dark); font-size: 1.18rem; }
.hero p:not(.eyebrow), .section-heading, .locations-section p, .process-section p, .service-area-section p, .about-section p, .contact-section p { color: var(--gray); font-size: clamp(1rem, 1.45vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 8px; padding: 12px 18px; font-weight: 900; text-decoration: none; cursor: pointer; }
.button.primary { background: var(--orange); color: var(--white); box-shadow: 0 12px 24px rgba(244, 154, 31, 0.28); }
.button.secondary { border-color: #cdd6e6; background: var(--white); color: var(--blue); }
.hero-card { overflow: hidden; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
.hero-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top center; }

.section { padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px); }
.section-heading { max-width: 760px; margin-bottom: 32px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.feature { min-height: 228px; padding: 24px; border: 1px solid var(--line); border-top: 7px solid var(--orange); border-radius: 8px; background: var(--white); box-shadow: 0 12px 34px rgba(18, 24, 38, 0.06); }
.feature:nth-child(even) { border-top-color: var(--blue); }
.feature p, .location-grid p, .service-area-panel p, .form-note { color: var(--gray); }
.locations-section { background: var(--white); }
.location-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.location-grid article { min-height: 178px; padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: #f7f9fc; box-shadow: 0 10px 28px rgba(18, 24, 38, 0.05); }
.location-grid article:nth-child(3n + 1) { border-left: 6px solid var(--orange); }
.location-grid article:nth-child(3n + 2) { border-left: 6px solid var(--blue); }
.location-grid article:nth-child(3n) { border-left: 6px solid var(--orange-deep); }

.process-section { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr); gap: clamp(28px, 6vw, 88px); background: var(--blue); color: var(--white); }
.process-section h2, .process-section h3, .process-section .eyebrow, .process-section p { color: var(--white); }
.process-intro { max-width: 620px; margin-top: 18px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.steps article { padding: 22px; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 8px; background: rgba(255, 255, 255, 0.08); }
.steps span { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 16px; border-radius: 50%; background: var(--orange); font-weight: 900; }
.compare-section { background: var(--white); }
.comparison { overflow: hidden; border: 2px solid #252936; border-radius: 8px; background: var(--white); }
.row { display: grid; grid-template-columns: 0.8fr 1.1fr 1.1fr; }
.row > div { padding: 18px; border-top: 2px solid #252936; border-left: 2px solid #252936; text-align: center; }
.row > div:first-child { border-left: 0; }
.row.header > div { border-top: 0; background: #f1f3f8; color: var(--blue-dark); font-weight: 900; }
.service-area-section { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr); gap: clamp(28px, 6vw, 88px); background: #fff; }
.service-area-panel { padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: #f7f9fc; box-shadow: 0 12px 34px rgba(18, 24, 38, 0.06); }
.service-area-panel ul { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.service-area-panel li { border-radius: 8px; padding: 10px 12px; background: var(--blue); color: var(--white); font-weight: 900; }

.about-section { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(28px, 5vw, 68px); align-items: center; background: #f6f8fc; }
.about-section img { width: 260px; border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
.contact-section { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr); gap: clamp(28px, 6vw, 88px); }
.contact-links { display: grid; gap: 10px; margin-top: 24px; }
.contact-links a { color: var(--blue); font-size: clamp(1.1rem, 2vw, 1.6rem); font-weight: 900; text-decoration: none; }
.contact-form { display: grid; gap: 16px; padding: 26px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
label { display: grid; gap: 7px; color: var(--blue-dark); font-weight: 900; }
input, textarea, select { width: 100%; border: 1px solid #cfd7e5; border-radius: 8px; padding: 12px 13px; color: var(--ink); font: inherit; }
input:focus, textarea:focus, select:focus { border-color: var(--blue); outline: 3px solid rgba(11, 67, 143, 0.16); }
textarea { resize: vertical; }
.form-note { margin: 0; font-size: 0.9rem; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 24px clamp(20px, 5vw, 72px); border-top: 1px solid var(--line); background: var(--white); color: var(--gray); }
.site-footer a { color: var(--blue); font-weight: 900; text-decoration: none; }

@media (max-width: 980px) {
  .hero, .process-section, .service-area-section, .about-section, .contact-section { grid-template-columns: 1fr; }
  .feature-grid, .location-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: 1fr; }
  .about-section img { width: min(260px, 70vw); }
  h1, h2 { max-width: 14ch; }
}
@media (max-width: 720px) {
  .site-header { align-items: flex-start; }
  .brand img { width: min(280px, 62vw); }
  .nav-toggle { display: block; flex: 0 0 auto; }
  .site-nav { position: absolute; top: 74px; right: 20px; left: 20px; display: none; flex-direction: column; align-items: stretch; padding: 10px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px; }
  .hero { min-height: auto; background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 70%, rgba(244, 154, 31, 0.16) 70%); }
  h1 { font-size: clamp(2.45rem, 13vw, 4.3rem); }
  .feature-grid, .location-grid { grid-template-columns: 1fr; }
  .feature { min-height: auto; }
  .row { grid-template-columns: 1fr; }
  .row > div { border-left: 0; }
  .contact-form { padding: 20px; }
  .site-footer { flex-direction: column; }
}

