:root {
  --ink: #102331;
  --muted-ink: #53616d;
  --bg: #f4f0e9;
  --paper: #fffdf8;
  --soft: #e9f0ef;
  --line: #d9dedc;
  --primary: #0e5e66;
  --primary-dark: #0b4148;
  --accent: #d97132;
  --accent-soft: #f4d5bf;
  --shadow: 0 18px 50px rgba(12, 35, 48, .12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .2em; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 240, 233, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 35, 49, .08);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 250px;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  font-weight: 800;
  letter-spacing: -.06em;
  box-shadow: 0 10px 25px rgba(14, 94, 102, .22);
}
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font-size: 1.04rem; letter-spacing: .08em; }
.brand-text small { color: var(--muted-ink); font-size: .74rem; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.site-nav a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted-ink);
  font-weight: 700;
  font-size: .95rem;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { background: white; color: var(--ink); }
.header-call {
  text-decoration: none;
  background: var(--ink);
  color: white;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 800;
  white-space: nowrap;
}
.nav-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 44px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(217, 113, 50, .18), transparent 28%),
    radial-gradient(circle at 12% 5%, rgba(14, 94, 102, .15), transparent 30%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 44px;
  align-items: stretch;
}
.hero-copy {
  background: linear-gradient(135deg, rgba(255, 253, 248, .96), rgba(255, 253, 248, .7));
  border: 1px solid rgba(16, 35, 49, .08);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 58px);
  box-shadow: var(--shadow);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  font-weight: 900;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5.5vw, 4.9rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero-lead {
  margin: 22px 0 0;
  max-width: 760px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: #334451;
}
.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  font: inherit;
}
.button.primary { background: var(--accent); color: white; box-shadow: 0 12px 25px rgba(217, 113, 50, .25); }
.button.secondary { background: white; color: var(--ink); border-color: rgba(16, 35, 49, .12); }
.button.ghost { background: rgba(14, 94, 102, .08); color: var(--primary-dark); border-color: rgba(14, 94, 102, .16); }
.button.full { width: 100%; }
.button:hover { transform: translateY(-1px); }
.hero-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.hero-mini div {
  background: white;
  border: 1px solid rgba(16, 35, 49, .08);
  border-radius: var(--radius-md);
  padding: 14px;
}
.hero-mini strong { display: block; margin-bottom: 2px; }
.hero-mini span { color: var(--muted-ink); font-size: .92rem; }
.hero-panel {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 34px solid rgba(255,255,255,.09);
  border-radius: 50%;
  right: -70px;
  top: -70px;
}
.panel-kicker {
  position: relative;
  margin: 0 0 18px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 900;
  font-size: .78rem;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 11px;
}
.check-list li {
  position: relative;
  padding-left: 26px;
}
.check-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: .63em;
}
.check-list.strong { position: relative; font-weight: 800; font-size: 1.05rem; }
.text-link {
  position: relative;
  margin-top: 26px;
  color: white;
  font-weight: 900;
}

.section { padding: 86px 0; }
.section.muted { background: var(--soft); }
.intro-section { padding-top: 48px; }
.split {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: start;
}
h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
h3 { margin: 0; font-size: 1.16rem; line-height: 1.25; }
p { margin: 14px 0 0; color: var(--muted-ink); }
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}
.section-heading.narrow { max-width: 780px; display: block; }
.cards { display: grid; gap: 18px; }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--paper);
  border: 1px solid rgba(16, 35, 49, .08);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 10px 30px rgba(12, 35, 48, .06);
}
.service-card { min-height: 226px; }
.service-code {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(14, 94, 102, .09);
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 18px;
}
.work-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 44px;
}
.section-intro { max-width: 520px; }
.feature-list { display: grid; gap: 16px; }
.feature-list article {
  background: var(--paper);
  border: 1px solid rgba(16, 35, 49, .08);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}
.step {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid rgba(16, 35, 49, .08);
}
.step span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--ink);
  color: white;
  font-weight: 900;
  margin-bottom: 18px;
}
.trust-card {
  background: var(--primary-dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: clamp(26px, 5vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: center;
}
.trust-card p { color: rgba(255,255,255,.82); }
.trust-card .eyebrow { color: var(--accent-soft); }
.faq-wrap { max-width: 910px; }
.faq-list { display: grid; gap: 12px; margin-top: 26px; }
details {
  background: var(--paper);
  border: 1px solid rgba(16, 35, 49, .1);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
summary { cursor: pointer; font-weight: 900; }
summary::marker { color: var(--accent); }
.quick-section { background: linear-gradient(135deg, #102331, #14394a); color: white; }
.quick-section p, .quick-section label { color: rgba(255,255,255,.82); }
.quick-section .eyebrow { color: var(--accent-soft); }
.quick-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: start;
}
.contact-strip { display: grid; gap: 10px; margin-top: 22px; }
.contact-strip a { color: white; font-weight: 900; }
.quick-request {
  color: var(--ink);
  display: grid;
  gap: 12px;
}
.quick-request label { color: var(--ink); font-weight: 900; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: white;
}
textarea { resize: vertical; }
.form-note { font-size: .9rem; margin-top: 2px; }
.cta-band { padding: 62px 0; background: var(--bg); }
.cta-inner {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 35, 49, .08);
  box-shadow: var(--shadow);
  padding: clamp(26px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.page-hero {
  padding: 70px 0 58px;
  background: linear-gradient(135deg, rgba(14, 94, 102, .12), rgba(217, 113, 50, .10));
}
.page-hero-inner { max-width: 900px; }
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}
.page-hero p:not(.eyebrow) { font-size: 1.18rem; max-width: 760px; }
.service-detail-list { display: grid; gap: 18px; }
.service-detail { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1fr) minmax(220px, .7fr); gap: 24px; align-items: start; }
.service-detail p { margin-top: 0; }
.service-detail ul { margin: 0; padding-left: 20px; color: var(--muted-ink); }
.service-detail-head span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(217, 113, 50, .12);
  color: var(--accent);
  font-size: .82rem;
  font-weight: 900;
  margin-bottom: 12px;
}
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.pill-grid span {
  background: white;
  border: 1px solid rgba(16, 35, 49, .08);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}
.value-card h2 { font-size: 1.25rem; letter-spacing: -.02em; }
.info-panel, .checklist-panel {
  background: var(--paper);
  border: 1px solid rgba(16, 35, 49, .08);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 36px;
}
.data-list { margin: 0; display: grid; gap: 12px; }
.data-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.data-list dt { color: var(--muted-ink); font-weight: 800; }
.data-list dd { margin: 0; font-weight: 900; }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.big-contact { font-size: 1.45rem; font-weight: 900; color: var(--ink); }
.columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.site-footer {
  background: #0b1720;
  color: white;
  padding: 54px 0;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .8fr; gap: 34px; }
.footer-brand { color: white; font-size: 1.8rem; font-weight: 900; letter-spacing: .08em; text-decoration: none; }
.site-footer h2 { font-size: 1rem; letter-spacing: .06em; text-transform: uppercase; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.78); }
.footer-links { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 8px; }
.footer-links a { font-weight: 800; }

@media (max-width: 980px) {
  .header-call { display: none; }
  .brand { min-width: auto; }
  .site-nav { gap: 2px; }
  .hero-grid, .split, .work-grid, .quick-grid, .trust-card, .cta-inner, .info-panel, .checklist-panel, .service-detail, .footer-grid { grid-template-columns: 1fr; }
  .hero-panel { min-height: 0; }
  .cards.three, .steps, .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header-inner { min-height: 66px; gap: 12px; }
  .brand-text small { display: none; }
  .brand-mark { width: 40px; height: 40px; font-size: .9rem; }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 8px 13px;
    border: 1px solid rgba(16, 35, 49, .12);
    border-radius: 999px;
    background: white;
    color: var(--ink);
    font-weight: 900;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 14px;
    right: 14px;
    top: 70px;
    background: white;
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px; }
  .hero { padding: 26px 0 28px; }
  .hero-grid { gap: 18px; }
  .hero-copy { padding: 24px 18px; border-radius: 22px; }
  h1 { font-size: clamp(2rem, 12vw, 3.35rem); line-height: 1.02; }
  .hero-lead { margin-top: 16px; font-size: 1.01rem; }
  .hero-actions { margin-top: 18px; }
  .button { width: 100%; min-height: 50px; }
  .hero-mini { grid-template-columns: 1fr; margin-top: 16px; gap: 8px; }
  .hero-mini div { padding: 11px 12px; }
  .hero-panel { padding: 22px 18px; border-radius: 22px; }
  .check-list.strong { font-size: 1rem; }
  .section { padding: 54px 0; }
  .intro-section { padding-top: 34px; }
  .section-heading { display: block; }
  .cards.three, .steps, .contact-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .quick-grid { gap: 22px; }
  .cta-inner { padding: 24px 18px; }
  .page-hero { padding: 42px 0 36px; }
  .page-hero p:not(.eyebrow) { font-size: 1.04rem; }
  .data-list div { grid-template-columns: 1fr; gap: 4px; }
  .columns { grid-template-columns: 1fr; }
  .footer-grid { gap: 26px; }
}

@media (max-width: 420px) {
  .container { width: min(100% - 24px, var(--max)); }
  .hero-copy { padding: 22px 16px; }
  .hero-panel { padding: 20px 16px; }
  .card { padding: 22px 18px; }
  .site-nav { left: 12px; right: 12px; }
}
