*, *::before, *::after { box-sizing: border-box; }
:root { --accent: #334155; --accent-dark: #0f172a; --surface: #f8fafc; --ink: #17202a; --muted: #52606d; }
html { color-scheme: light; scroll-behavior: smooth; }
body { margin: 0; min-width: 0; color: var(--ink); background: #fff; font: 1rem/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; overflow-wrap: anywhere; }
a { color: inherit; }
.container { width: min(100% - 2rem, 70rem); margin-inline: auto; }
.hero { min-height: 70vh; display: grid; align-items: center; padding-block: 5rem; color: #fff; background: linear-gradient(135deg, var(--accent-dark), var(--accent)); }
.hero-content { max-width: 48rem; }
.eyebrow { font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 1rem; }
h1 { font-size: clamp(2.4rem, 10vw, 5rem); }
h2 { font-size: clamp(1.8rem, 6vw, 3rem); }
.lead { max-width: 42rem; font-size: clamp(1.1rem, 3vw, 1.35rem); }
section { padding-block: 4rem; }
section:nth-of-type(even) { background: var(--surface); }
.service-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.service-card, .contact-panel { min-width: 0; padding: 1.5rem; border: 1px solid #d8e0e7; border-radius: 1rem; background: #fff; box-shadow: 0 .5rem 1.5rem rgb(15 23 42 / 8%); }
.button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; margin-top: 1rem; padding: .75rem 1.1rem; border-radius: .65rem; color: #fff; background: var(--accent-dark); font-weight: 750; text-decoration: none; }
.button:hover { background: var(--accent); }
.button:focus-visible, a:focus-visible { outline: 3px solid #fbbf24; outline-offset: 3px; }
.contact-detail { max-width: 100%; overflow-wrap: anywhere; }
footer { padding-block: 2rem; color: #fff; background: #111827; }
@media (min-width: 48rem) { .container { width: min(100% - 4rem, 70rem); } .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } section { padding-block: 5rem; } }
@media (min-width: 64rem) { .service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
