:root {
  color-scheme: light;
  --paper: #ffffff;
  --ink: #14221d;
  --muted: #5d6862;
  --accent: #1768e5;
  --accent-hover: #0d52bf;
}
* { box-sizing: border-box; }
html { font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
body { margin: 0; min-width: 320px; min-height: 100vh; background: var(--paper); color: var(--ink); }
a { color: inherit; }
.page-shell { width: min(100% - 48px, 1440px); min-height: 100vh; margin-inline: auto; display: grid; grid-template-rows: auto 1fr auto; }
.site-header, .site-footer { display: flex; align-items: center; justify-content: space-between; }
.site-header { min-height: 104px; }
.brand { display: inline-flex; align-items: center; gap: 13px; font-size: 1rem; font-weight: 680; letter-spacing: -0.02em; text-decoration: none; }
.brand-mark { width: 44px; height: 44px; object-fit: cover; border-radius: 10px; }
.header-contact, .site-footer a { font-size: 0.9rem; font-weight: 620; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.hero { max-width: 1050px; padding: clamp(92px, 14vh, 190px) 0 100px; }
.eyebrow { margin: 0 0 28px; color: var(--accent); font-size: 0.76rem; font-weight: 720; letter-spacing: 0.13em; text-transform: uppercase; }
h1 { max-width: none; margin: 0; font-size: clamp(1.85rem, 7.2vw, 4.9rem); font-family: Manrope, Roboto, system-ui, sans-serif; font-weight: 600; letter-spacing: -0.055em; line-height: 1.08; text-wrap: balance; }
h1 span { display: block; white-space: nowrap; }
.intro { max-width: 700px; margin: 46px 0 0; color: var(--muted); font-size: clamp(1.12rem, 1.7vw, 1.46rem); line-height: 1.55; }
.actions { display: flex; align-items: center; gap: 28px; margin-top: 42px; }
.primary-action { display: inline-flex; align-items: center; gap: 12px; min-height: 52px; padding: 0 21px; border-radius: 4px; background: var(--accent); color: white; font-size: 0.93rem; font-weight: 650; text-decoration: none; transition: background 150ms ease, transform 150ms ease; }
.primary-action:hover { background: var(--accent-hover); transform: translateY(-1px); }
.secondary-action { font-size: 0.93rem; font-weight: 620; text-underline-offset: 5px; }
.site-footer { min-height: 86px; color: var(--muted); font-size: 0.83rem; }
a:focus-visible { outline: 3px solid #bd6b3c; outline-offset: 4px; }
@media (max-width: 680px) {
  .page-shell { width: min(100% - 32px, 1440px); }
  .site-header { min-height: 84px; }
  .brand-mark { width: 40px; height: 40px; }
  .hero { padding: 78px 0 84px; }
  h1 { font-size: clamp(1.85rem, 7.2vw, 3rem); line-height: 1.12; }
  .intro { margin-top: 34px; }
  .actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .site-footer { min-height: 100px; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; } }
