:root {
  --ink: #152033;
  --muted: #526174;
  --line: #d8e0ea;
  --soft: #f4f7fb;
  --soft-2: #eef4f8;
  --brand: #1f4f77;
  --brand-dark: #153752;
  --accent: #c9902f;
  --white: #ffffff;
  --max: 1180px;
  --radius: 18px;
  --shadow: 0 18px 40px rgba(20, 38, 61, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); line-height: 1.55; background: var(--white); }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.top-strip { background: var(--brand-dark); color: var(--white); font-size: 0.88rem; padding: 0.55rem max(1rem, calc((100vw - var(--max)) / 2)); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.top-strip a { color: var(--white); font-weight: 700; }
.nav-wrap { max-width: var(--max); margin: 0 auto; padding: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.8rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--brand); color: var(--white); font-weight: 800; letter-spacing: 0.03em; }
.brand-logo { display: block; width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: var(--white); box-shadow: 0 8px 18px rgba(21, 55, 82, 0.14); flex: 0 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 0.7rem; }
.footer-logo { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; background: var(--white); box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18); flex: 0 0 auto; }
.footer-brand h2 { margin: 0; }
.brand small { display: block; color: var(--muted); font-size: 0.82rem; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 1rem; }
.nav-links a { color: var(--ink); font-weight: 700; font-size: 0.95rem; }
.nav-links a.active { color: var(--brand); }
.nav-cta { background: var(--accent); color: var(--ink) !important; padding: 0.65rem 1rem; border-radius: 999px; }
.nav-toggle { display: none; background: var(--brand); color: var(--white); border: 0; border-radius: 999px; padding: 0.65rem 0.9rem; font-weight: 700; }
.hero, .page-hero, .section, .split-section, .quote-panel, .cta-band { max-width: var(--max); margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
.hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr); gap: 2rem; align-items: center; padding-top: 5rem; padding-bottom: 5rem; }
.hero-copy h1, .page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.9rem); line-height: 0.96; margin: 0.2rem 0 1rem; letter-spacing: -0.055em; }
.page-hero { padding-top: 4.5rem; padding-bottom: 3.2rem; }
.page-hero.narrow { max-width: 940px; }
.lead { color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.35rem); max-width: 820px; }
.eyebrow { color: var(--brand); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 850; font-size: 0.78rem; margin: 0 0 0.55rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.6rem; }
.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 0.85rem 1.2rem; font-weight: 850; border: 2px solid transparent; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.button:hover { text-decoration: none; transform: translateY(-1px); }
.button.primary { background: var(--brand); color: var(--white); box-shadow: var(--shadow); }
.button.secondary { border-color: var(--line); color: var(--brand-dark); background: var(--white); }
.light-button { background: var(--white); color: var(--brand-dark); }
.hero-proof { background: linear-gradient(145deg, var(--brand-dark), var(--brand)); color: var(--white); border-radius: 28px; padding: 2rem; box-shadow: var(--shadow); }
.hero-proof h2 { margin-top: 0; font-size: 1.5rem; }
.hero-proof ul, .check-panel ul { padding-left: 1.1rem; }
.hero-proof li, .check-panel li { margin-bottom: 0.75rem; }
.section { padding-top: 4rem; padding-bottom: 4rem; }
.section.light, .split-section.light { background: var(--soft); max-width: none; padding-left: max(1rem, calc((100vw - var(--max)) / 2)); padding-right: max(1rem, calc((100vw - var(--max)) / 2)); }
.section-heading { max-width: 850px; margin-bottom: 2rem; }
.section-heading h2, .split-section h2, .cta-band h2 { font-size: clamp(1.85rem, 3vw, 3.1rem); line-height: 1.04; letter-spacing: -0.035em; margin: 0.1rem 0 0.75rem; }
.card-grid { display: grid; gap: 1rem; }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { border: 1px solid var(--line); border-radius: var(--radius); padding: 1.35rem; background: var(--white); box-shadow: 0 8px 22px rgba(20, 38, 61, 0.06); }
.card h3 { margin-top: 0; font-size: 1.25rem; }
.card p { color: var(--muted); }
.card ul { padding-left: 1.1rem; color: var(--muted); }
.split-section { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 2rem; align-items: start; padding-top: 4rem; padding-bottom: 4rem; }
.who-list { display: grid; gap: 1rem; }
.who-list article, .check-panel { border-radius: var(--radius); background: var(--soft); padding: 1.35rem; border: 1px solid var(--line); }
.check-panel { background: var(--brand-dark); color: var(--white); }
.check-panel h3, .check-panel p { color: var(--white); }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.steps article { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem; }
.steps span { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 999px; background: var(--accent); color: var(--ink); font-weight: 900; }
.cta-band { margin-top: 2rem; margin-bottom: 4rem; background: var(--brand); color: var(--white); border-radius: 28px; padding-top: 2.2rem; padding-bottom: 2.2rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band .eyebrow { color: #d9ecff; }
.quote-panel { padding-top: 4rem; padding-bottom: 4rem; }
.quote-form { display: grid; gap: 1rem; max-width: 760px; background: var(--soft); border: 1px solid var(--line); padding: 1.5rem; border-radius: 24px; }
.form-row { display: grid; gap: 0.35rem; }
label { font-weight: 850; }
input, textarea, select { width: 100%; border: 1px solid #b8c3d0; border-radius: 12px; padding: 0.9rem 1rem; font: inherit; background: var(--white); color: var(--ink); }
textarea { resize: vertical; }
.form-note { margin: 0.25rem 0 0; color: var(--muted); font-size: 0.95rem; }
.deliverables-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.deliverables-grid ul { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.4rem 1.4rem 2rem; margin: 0; }
.license-pill { display: inline-flex; padding: 0.5rem 0.85rem; border: 1px solid var(--line); border-radius: 999px; color: var(--brand-dark); font-weight: 850; background: var(--soft); }
.legal { max-width: 880px; }
.site-footer { background: #101a29; color: var(--white); padding: 3.5rem 1rem 1.5rem; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
.site-footer a { color: #dfefff; }
.site-footer p { color: #d0d8e4; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.45rem; }
.footer-bottom { max-width: var(--max); margin: 2.5rem auto 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.15); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.license-line { font-weight: 700; }
@media (max-width: 900px) {
  .hero, .split-section { grid-template-columns: 1fr; }
  .card-grid.three, .card-grid.four, .steps, .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .nav-toggle { display: inline-flex; }
  .nav-links { display: none; position: absolute; left: 1rem; right: 1rem; top: 112px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 1rem; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; z-index: 10; }
  .nav-links.open { display: flex; }
}
@media (max-width: 620px) {
  .card-grid.two, .card-grid.three, .card-grid.four, .steps, .footer-grid, .deliverables-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 3rem; padding-bottom: 3rem; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .top-strip { display: block; }
  .top-strip span { display: block; margin-bottom: 0.35rem; }
}


/* Visual polish layer: professional imagery/illustration support */
.hero-visual { display: grid; gap: 1rem; align-self: stretch; }
.hero-image,
.visual-feature-media,
.card-media { border-radius: 24px; overflow: hidden; background: var(--brand-dark); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.35); }
.hero-image img,
.visual-feature-media img,
.card-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-image { min-height: 280px; }
.hero-image img { aspect-ratio: 16 / 11; }
.hero-visual .hero-proof { border-radius: 24px; }
.card-media { margin: -1.35rem -1.35rem 1.15rem; box-shadow: none; border: 0; border-radius: var(--radius) var(--radius) 0 0; }
.card-media img { aspect-ratio: 16 / 10; }
.compact-media img { aspect-ratio: 16 / 8.5; }
.visual-feature { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr); gap: 2rem; align-items: center; padding-top: 1.2rem; padding-bottom: 2.8rem; }
.visual-feature-media { min-height: 320px; }
.visual-feature-copy { background: var(--soft); border: 1px solid var(--line); border-radius: 24px; padding: 1.6rem; }
.visual-feature-copy h2 { font-size: clamp(1.6rem, 2.4vw, 2.45rem); line-height: 1.08; letter-spacing: -0.035em; margin: 0.2rem 0 0.8rem; }
.mini-proof-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; margin-top: 1rem; }
.mini-proof-grid span { display: block; background: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 0.55rem 0.75rem; font-weight: 850; color: var(--brand-dark); font-size: 0.9rem; }
.service-card,
main .card-grid.three article.card { overflow: hidden; }
@media (max-width: 900px) {
  .visual-feature { grid-template-columns: 1fr; }
  .visual-feature-media { min-height: 240px; }
}
@media (max-width: 620px) {
  .mini-proof-grid { grid-template-columns: 1fr; }
  .hero-image { min-height: 210px; }
}


/* Final photo polish layer: generated architect-style visuals, optimized WebP with JPEG fallback */
.hero-image picture,
.visual-feature-media picture,
.card-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-image img,
.visual-feature-media img,
.card-media img {
  filter: saturate(0.96) contrast(1.03);
}
.hero-image,
.visual-feature-media,
.card-media {
  background: #101a29;
}
