:root {
  color-scheme: light;
  --bg: #f8fafc;
  --ink: #111827;
  --muted: #5b6472;
  --accent: #2563eb;
  --accent-ink: #ffffff;
  --line: #d7dde7;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); line-height: 1.6; }
a { color: inherit; }
.site-header, .site-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px clamp(20px, 5vw, 72px); border-bottom: 1px solid var(--line); }
.site-header { background: var(--bg); color: var(--ink); }
.site-footer { border-top: 1px solid var(--line); border-bottom: 0; margin-top: 56px; }
.brand { font-weight: 800; text-decoration: none; }
.nav { display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; }
.nav a, .site-footer a { text-decoration: none; color: var(--muted); }
.header-sticky_compact .site-header { position: sticky; top: 0; z-index: 4; background: color-mix(in srgb, var(--bg) 92%, transparent); backdrop-filter: blur(14px); }
.header-transparent_overlay .site-header { position: absolute; inset: 0 0 auto; z-index: 4; background: rgba(17, 24, 39, 0.86); border-bottom-color: rgba(255,255,255,0.14); box-shadow: 0 18px 46px rgba(0,0,0,0.16); color: #fff; backdrop-filter: blur(12px); }
.header-transparent_overlay .brand { color: #fff; }
.header-transparent_overlay .nav a { color: rgba(255,255,255,0.88); }
.hero { min-height: 58vh; display: grid; align-items: end; gap: clamp(24px, 5vw, 72px); padding: clamp(48px, 8vw, 112px) clamp(20px, 5vw, 72px); background-image: linear-gradient(90deg, color-mix(in srgb, var(--bg) 92%, transparent), color-mix(in srgb, var(--bg) 54%, transparent)), var(--hero-image); background-size: cover; background-position: center; }
.hero-copy { max-width: 760px; }
.hero-media { min-height: 360px; border-radius: 8px; background-image: var(--hero-image); background-size: cover; background-position: center; box-shadow: 0 24px 60px rgba(0,0,0,0.18); }
.eyebrow { color: var(--accent); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: 0; }
h1 { font-size: clamp(42px, 7vw, 88px); line-height: 1; margin: 0 0 22px; letter-spacing: 0; }
h2 { font-size: clamp(28px, 4vw, 48px); line-height: 1.08; margin: 0; }
.hero p, .page-title p { color: var(--muted); font-size: 20px; max-width: 720px; }
.button { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border-radius: 6px; background: var(--accent); color: var(--accent-ink); text-decoration: none; font-weight: 700; }
.page-title, .content-band, .grid-section, .proof-bar, .process-steps, .cta-band { padding: 48px clamp(20px, 5vw, 72px); }
.page-title { border-bottom: 1px solid var(--line); }
.page-title h1 { font-size: clamp(34px, 5vw, 64px); }
.prose { max-width: 820px; font-size: 18px; }
.prose h2 { font-size: 28px; line-height: 1.2; }
.section-heading { display: grid; gap: 10px; margin-bottom: 22px; max-width: 760px; }
.section-heading span, .cta-band span { color: var(--accent); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.tile { min-height: 148px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; text-decoration: none; background: rgba(255, 255, 255, 0.55); }
.tile-image { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-bottom: 1px solid var(--line); }
.tile span, .tile p { display: block; padding-inline: 20px; }
.tile span { display: block; font-weight: 800; margin-top: 18px; margin-bottom: 10px; }
.tile p { color: var(--muted); margin: 0 0 20px; }
.proof-bar { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line); padding-top: 1px; padding-bottom: 1px; }
.proof-bar div { background: var(--bg); padding: 24px; }
.proof-bar strong, .proof-bar span { display: block; }
.proof-bar strong { font-size: clamp(24px, 4vw, 42px); line-height: 1; }
.proof-bar span { color: var(--muted); margin-top: 8px; }
.process-steps ol { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; list-style: none; margin: 0; padding: 0; counter-reset: step; }
.process-steps li { border-top: 3px solid var(--accent); padding: 18px 0 0; counter-increment: step; }
.process-steps li::before { content: "0" counter(step); color: var(--accent); font-weight: 900; }
.process-steps span { display: block; font-weight: 800; margin-top: 14px; }
.process-steps p { color: var(--muted); margin-bottom: 0; }
.cta-band { display: flex; align-items: center; justify-content: space-between; gap: 24px; background: var(--ink); color: var(--bg); margin-top: 32px; }
.cta-band h2 { color: inherit; }
.cta-band .button { background: var(--accent); }
.interactive-section { padding: 48px clamp(20px, 5vw, 72px); border-top: 1px solid var(--line); }
.interactive-form { display: grid; gap: 18px; max-width: 760px; }
.field { display: grid; gap: 8px; font-weight: 700; }
.field span { color: var(--ink); }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 6px; background: color-mix(in srgb, var(--bg) 94%, #fff); color: var(--ink); font: inherit; padding: 12px 14px; }
.field input[type="checkbox"] { width: 20px; height: 20px; padding: 0; }
.field textarea { resize: vertical; }
.form-status { margin: 0; color: var(--muted); font-weight: 700; }
.hero-split .hero { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr); align-items: center; background-image: linear-gradient(90deg, var(--bg), color-mix(in srgb, var(--bg) 74%, transparent)); }
.hero-split .hero-media { display: block; }
.hero-centered .hero-media, .hero-full_bleed .hero-media, .hero-editorial .hero-media { display: none; }
.hero-full_bleed .hero { min-height: 76vh; align-items: center; color: #fff; background-image: linear-gradient(90deg, rgba(0,0,0,0.72), rgba(0,0,0,0.18)), var(--hero-image); }
.hero-full_bleed .hero p { color: rgba(255,255,255,0.84); }
.hero-editorial .hero { min-height: 48vh; align-items: center; border-bottom: 1px solid var(--line); background-image: linear-gradient(180deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent), var(--hero-image); }
.type-editorial_serif h1, .type-editorial_serif h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 700; }
.type-strong_display h1, .type-strong_display h2 { font-weight: 900; text-transform: uppercase; }
.density-compact .page-title, .density-compact .content-band, .density-compact .grid-section, .density-compact .proof-bar, .density-compact .process-steps, .density-compact .cta-band { padding-top: 34px; padding-bottom: 34px; }
.density-spacious .page-title, .density-spacious .content-band, .density-spacious .grid-section, .density-spacious .proof-bar, .density-spacious .process-steps, .density-spacious .cta-band { padding-top: 72px; padding-bottom: 72px; }
.cards-elevated .tile { border-color: transparent; box-shadow: 0 18px 48px rgba(0,0,0,0.10); }
.cards-image_led .tile-image { aspect-ratio: 4 / 3; }
.cards-minimal .tile { border-width: 0 0 1px; border-radius: 0; background: transparent; }
.archetype-product_showroom .grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.archetype-portfolio_showcase .showcase-grid .grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.archetype-technical_documentation .grid { grid-template-columns: 1fr; max-width: 980px; }
.archetype-local_trust .hero-copy { max-width: 680px; }
.theme-visual .site-header { position: absolute; inset: 0 0 auto; z-index: 2; border-bottom-color: transparent; }
.theme-visual .hero { min-height: 72vh; align-items: center; background-image: linear-gradient(90deg, rgba(0,0,0,0.68), rgba(0,0,0,0.16)), var(--hero-image); color: #fff; }
.theme-visual .hero p { color: rgba(255,255,255,0.84); }
.theme-visual .button { box-shadow: 0 16px 34px rgba(0,0,0,0.22); }

@media (max-width: 720px) {
  .site-header, .site-footer { align-items: flex-start; flex-direction: column; }
  .hero { min-height: 520px; }
  .hero-split .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 240px; }
  .proof-bar, .process-steps ol { grid-template-columns: 1fr; }
  .cta-band { align-items: flex-start; flex-direction: column; }
  .interactive-section { padding-top: 34px; padding-bottom: 34px; }
  .theme-editorial .tile { display: block; }
  .theme-editorial .tile-image { border-right: 0; border-bottom: 1px solid var(--line); }
}
