:root {
  --ink: #142033;
  --muted: #5c6778;
  --line: #d8dee8;
  --surface: #ffffff;
  --soft: #f4f7f8;
  --blue: #2468a8;
  --green: #20705f;
  --amber: #b46a21;
  --dark: #0d1724;
  --shadow: 0 18px 50px rgba(13, 23, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--surface);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  align-items: center;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header[data-elevated="true"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 28px rgba(20, 32, 51, 0.12);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.brand-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  opacity: 0.74;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 15px;
}

.main-nav a {
  opacity: 0.9;
}

.header-action,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.header-action {
  color: #fff;
  background: var(--green);
}

.site-header[data-elevated="false"] .header-action {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.primary-btn {
  color: #fff;
  background: var(--green);
  font-weight: 700;
}

.secondary-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

i[data-lucide],
svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 13, 23, 0.88) 0%, rgba(8, 16, 27, 0.72) 38%, rgba(8, 16, 27, 0.24) 100%),
    linear-gradient(180deg, rgba(4, 8, 13, 0.36) 0%, rgba(4, 8, 13, 0.06) 42%, rgba(4, 8, 13, 0.35) 100%);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 72px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2b263;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.hero-subtitle {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.58;
}

.hero-subtitle.en {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.8vw, 18px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-facts div {
  min-height: 116px;
  padding: 24px clamp(18px, 3vw, 34px);
  background: #fff;
}

.quick-facts strong,
.quick-facts span {
  display: block;
}

.quick-facts strong {
  color: var(--blue);
  font-size: 20px;
}

.quick-facts span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.advantage-copy h2,
.quote-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4.8vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.advantage-copy p,
.quote-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.services-section {
  background: var(--soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid #e0e6ef;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20, 32, 51, 0.06);
}

.service-card svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.service-card h3,
.process-steps h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.service-card p,
.process-steps p,
.coverage-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.advantage-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.advantage-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.advantage-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.advantage-list svg {
  color: var(--blue);
}

.coverage-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.coverage-panel h3 {
  margin: 0 0 18px;
  font-size: 24px;
}

.coverage-map {
  position: relative;
  min-height: 350px;
  margin-bottom: 18px;
  border-radius: 8px;
  border: 1px solid #cad4de;
  background:
    linear-gradient(90deg, transparent 49%, rgba(36, 104, 168, 0.16) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(32, 112, 95, 0.16) 50%, transparent 51%),
    #eef3f1;
  overflow: hidden;
}

.coverage-map::before {
  content: "";
  position: absolute;
  inset: 24px 42px;
  border-left: 3px solid rgba(36, 104, 168, 0.45);
  border-bottom: 3px solid rgba(180, 106, 33, 0.45);
  transform: skew(-12deg);
}

.pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--dark);
  font-size: 13px;
  font-weight: 800;
}

.pin::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #f2b263;
}

.portland {
  left: 31%;
  top: 38%;
}

.seattle {
  left: 20%;
  top: 16%;
}

.boise {
  right: 15%;
  top: 52%;
}

.bay {
  left: 24%;
  bottom: 16%;
}

.process-section {
  background: #fff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-steps article {
  min-height: 210px;
  padding: 24px;
  border-left: 4px solid var(--green);
  background: var(--soft);
}

.process-steps span {
  color: var(--amber);
  font-weight: 900;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: var(--dark);
  color: #fff;
}

.quote-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-list svg {
  color: #f2b263;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
}

.quote-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 4px;
  color: var(--muted);
}

.site-footer a {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 6px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .quick-facts,
  .service-grid,
  .process-steps,
  .advantage-section,
  .quote-section {
    grid-template-columns: 1fr 1fr;
  }

  .advantage-section,
  .quote-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 14px;
    gap: 10px;
  }

  .brand-logo {
    width: 38px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small,
  .header-action span {
    display: none;
  }

  .header-action {
    width: 42px;
    padding: 0;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    margin-left: 18px;
    padding-top: 56px;
  }

  .quick-facts,
  .service-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .quick-facts div,
  .service-card,
  .process-steps article,
  .quote-form,
  .coverage-panel {
    padding: 20px;
  }

  .coverage-map {
    min-height: 280px;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }
}
