:root {
  --ink: #14202b;
  --ink-soft: #46586a;
  --line: #dde5ec;
  --bg: #ffffff;
  --bg-soft: #f4f7fa;
  --brand: #14589c;
  --brand-dark: #0e4074;
  --accent: #1f9d55;
  --wa: #1da851;
  --wa-dark: #17853f;
  --warn-bg: #fff8e6;
  --warn-line: #e8cf94;
  --radius: 10px;
  --wrap: 1060px;
  --canvas: 1200px;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: #e9eef2;
}

.site-canvas {
  width: min(100%, var(--canvas));
  margin-inline: auto;
  background: var(--bg);
  box-shadow: 0 0 32px rgba(20, 32, 43, 0.16);
}

main { background: var(--bg); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

a { color: var(--brand); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(8px);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
}

.logo {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
  line-height: 1.25;
}
.logo span { display: block; font-weight: 500; font-size: 13px; color: var(--ink-soft); }

.header-actions { display: flex; align-items: center; gap: 9px; }

.header-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  transition: transform 120ms ease, filter 120ms ease;
}
.header-icon:hover { transform: translateY(-1px); filter: brightness(0.94); }
.header-icon svg { width: 22px; height: 22px; fill: currentColor; }
.header-icon.call { background: var(--brand); }
.header-icon.wa { background: var(--wa); }
.header-icon.mail { background: var(--ink-soft); }

.header-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 650;
  font-size: 15.5px;
  padding: 9px 14px;
  border-radius: 999px;
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.header-btn.call { background: var(--brand); color: #fff; }
.header-btn.call:hover { background: var(--brand-dark); }
.header-btn.wa { background: var(--wa); color: #fff; }
.header-btn.wa:hover { background: var(--wa-dark); }
.header-btn.ghost { color: var(--ink-soft); border-color: var(--line); background: #fff; }
.header-btn.ghost:hover { color: var(--brand); border-color: var(--brand); }

/* ---------- urgent bar ---------- */

.urgent-bar {
  background: #8f1d1d;
  color: #fff;
}
.urgent-bar p {
  margin: 0;
  padding: 13px 0;
  font-size: 15.5px;
  line-height: 1.5;
}
.urgent-bar strong { color: #fff; }
.urgent-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  font-weight: 650;
}

/* ---------- hero ---------- */

.hero {
  background: linear-gradient(180deg, var(--bg-soft), var(--bg));
  border-bottom: 1px solid var(--line);
  padding: 54px 0 46px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  grid-template-areas:
    "photo text"
    "photo cta"
    "photo note";
  grid-template-rows: auto auto 1fr;
  gap: 0 40px;
  align-items: start;
}

.hero-photo { grid-area: photo; }
.hero-text  { grid-area: text; }
.hero-cta   { grid-area: cta; }
.hero-note  { grid-area: note; }

.hero-photo {
  text-align: center;
  padding: 10px 10px 16px;
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 1px 2px rgba(20, 32, 43, 0.06),
    0 4px 14px rgba(20, 32, 43, 0.08);
}

.hero-name {
  margin: 14px 0 0;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.hero-role {
  display: block;
  margin-top: 4px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.hero h1 {
  font-size: clamp(29px, 4.6vw, 41px);
  line-height: 1.16;
  letter-spacing: -0.022em;
  margin: 0 0 16px;
  max-width: 18ch;
}

.hero .lede {
  font-size: clamp(17px, 2.4vw, 20px);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 30px;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  font-size: 16px;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); }
.btn-secondary { background: #fff; color: var(--brand); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--brand); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); }

.hero-note { margin: 20px 0 0; font-size: 15px; color: var(--ink-soft); }
.hero-note.callback {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

/* ---------- sections ---------- */

section { padding: 52px 0; border-bottom: 1px solid var(--line); }
section:last-of-type { border-bottom: 0; }
.section-soft { background: var(--bg-soft); }

h2 {
  font-size: clamp(24px, 3.6vw, 31px);
  line-height: 1.24;
  letter-spacing: -0.018em;
  margin: 0 0 10px;
}

h3 { font-size: 19px; margin: 0 0 6px; letter-spacing: -0.01em; }

.section-intro { color: var(--ink-soft); max-width: 62ch; margin: 0 0 30px; }

/* ---------- what I fix ---------- */

.fixlist {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 2px 34px;
}

.fixlist li {
  position: relative;
  padding: 9px 0 9px 30px;
  border-bottom: 1px solid var(--line);
  font-size: 16.5px;
}
.fixlist li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}

.section-note { margin: 22px 0 0; color: var(--ink-soft); font-size: 15.5px; }
.section-note.emphasis {
  margin: 4px 0 26px;
  padding: 15px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 3px solid var(--wa);
  border-radius: var(--radius);
  color: var(--ink);
  max-width: 66ch;
}

/* ---------- photo steps ---------- */

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0 0 28px; }

.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 0 50px;
  margin-bottom: 20px;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: -1px;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: grid;
  place-items: center;
}
.steps p { margin: 2px 0 0; color: var(--ink-soft); font-size: 15.5px; }

/* ---------- callout ---------- */

.callout {
  background: var(--warn-bg);
  border: 1px solid var(--warn-line);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.callout h2, .callout h3 { margin-top: 0; }
.callout p:last-child { margin-bottom: 0; }

/* ---------- portrait ---------- */

.portrait {
  width: 100%;
  border-radius: 13px;
  background: #dce5ed;
  overflow: hidden;
  line-height: 0;
}
.portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.creds {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 9px;
}
.creds li { padding-left: 26px; position: relative; font-size: 16px; }
.creds li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- areas ---------- */

.areas { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; margin: 0; list-style: none; }
.areas li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 15px;
  font-size: 15px;
  color: var(--ink-soft);
}

/* ---------- faq ---------- */

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary {
  cursor: pointer;
  font-weight: 650;
  font-size: 17.5px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-size: 22px; line-height: 1; font-weight: 500; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 12px 0 0; color: var(--ink-soft); }
.faq details p:last-child { margin-bottom: 0; }

/* ---------- prose ---------- */

.prose { max-width: 68ch; }
.prose p { margin: 0 0 18px; }
.prose h2 { margin-top: 40px; }
.prose h3 { margin-top: 28px; font-size: 20px; }
.prose ul { padding-left: 22px; margin: 0 0 18px; }
.prose li { margin-bottom: 8px; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: #b8c6d3;
  padding: 44px 0 100px;
  font-size: 15px;
}
.site-footer a { color: #fff; }
.site-footer strong { color: #fff; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
  margin-bottom: 30px;
}
.disclaimer {
  border-top: 1px solid #2c3d4d;
  padding-top: 22px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #8b9dae;
  max-width: 78ch;
}

/* ---------- sticky mobile bar ---------- */

.mobile-bar { display: none; }

@media (max-width: 720px) {
  body { background: #fff; }
  .header-actions { gap: 6px; }
  .header-icon { width: 38px; height: 38px; }
  .header-icon svg { width: 20px; height: 20px; }
  .logo { font-size: 16.5px; }
  .logo span { font-size: 12.5px; }
  .site-header .wrap { min-height: 58px; }
  .hero { padding: 30px 0 34px; }
  section { padding: 40px 0; }
  .hero .cta-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .hero .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    font-size: 15px;
  }

  .hero-grid {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "photo cta"
      "text  text"
      "note  note";
    grid-template-rows: auto auto auto;
    gap: 20px 16px;
    align-items: center;
  }

  .hero-photo {
    display: block;
    text-align: center;
    padding: 8px 8px 12px;
    border-radius: 15px;
    width: clamp(132px, 33vw, 232px);
  }
  .portrait { width: 100%; }
  .hero-name { margin: 8px 0 0; font-size: 15.5px; }
  .hero-role { font-size: 12px; margin-top: 2px; line-height: 1.35; }

  .hero-cta {
    align-self: center;
    width: 100%;
    max-width: 360px;
    justify-self: center;
  }
  .hero-note { margin: 0; }
  .btn .long { display: none; }

  .callout { padding: 20px 18px; }

  .site-footer { padding-bottom: 60px; }
}

.placeholder {
  background: #ffe9a8;
  padding: 0 5px;
  border-radius: 3px;
  color: #6b4e00;
  font-weight: 600;
}
