:root {
  --bg: #F4F4F5;
  --surface: #FFFFFF;
  --fg: #0E1118;
  --muted: #5A5C61;
  --border: #E4E4E7;
  --accent: #B68B3F;
  --accent-soft: color-mix(in oklch, var(--accent) 14%, transparent);
  --fg-soft: color-mix(in oklch, var(--fg) 6%, transparent);
  --font-display: 'Inter Tight', 'Industry Inc', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', ui-monospace, Menlo, monospace;
  --fs-h1: clamp(42px, 6vw, 78px);
  --fs-h2: clamp(30px, 4vw, 46px);
  --fs-h3: 22px;
  --fs-lead: 19px;
  --fs-body: 16px;
  --fs-meta: 12px;
  --gap-xs: 8px;
  --gap-sm: 12px;
  --gap-md: 20px;
  --gap-lg: 32px;
  --gap-xl: 56px;
  --gap-2xl: 96px;
  --container: 1180px;
  --gutter: 28px;
  --radius: 2px;
  --radius-lg: 2px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; }
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, var(--gap-2xl)); }
.section + .section { border-top: 1px solid var(--border); }
.section-muted { background: var(--bg); }
.section-surface { background: var(--surface); }
.stack { display: flex; flex-direction: column; }
.stack > * + * { margin-top: var(--gap-md); }
.row { display: flex; align-items: center; gap: var(--gap-md); }
.row-between { display: flex; align-items: center; justify-content: space-between; gap: var(--gap-md); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap-md); }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: var(--gap-xl); align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: var(--gap-xl); align-items: start; }
.h1, h1 { font-family: var(--font-display); font-size: var(--fs-h1); line-height: .96; letter-spacing: -.035em; margin: 0; font-weight: 800; }
.h2, h2 { font-family: var(--font-display); font-size: var(--fs-h2); line-height: 1.05; letter-spacing: -.025em; margin: 0; font-weight: 800; }
.h3, h3 { font-family: var(--font-display); font-size: var(--fs-h3); font-weight: 800; line-height: 1.2; letter-spacing: -.015em; margin: 0; }
.lead { font-size: var(--fs-lead); line-height: 1.55; color: var(--muted); max-width: 60ch; margin: 0; }
.eyebrow { font-family: var(--font-mono); font-size: var(--fs-meta); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 0 0 var(--gap-md); font-weight: 700; }
.meta, .num { font-family: var(--font-mono); font-size: var(--fs-meta); color: var(--muted); font-variant-numeric: tabular-nums; }
.topnav { position: sticky; top: 0; z-index: 20; background: color-mix(in oklch, var(--surface) 94%, transparent); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.topnav-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; padding-block: 12px; }
.logo-img { width: 174px; height: auto; }
.topnav nav { display: flex; justify-content: flex-end; gap: 22px; }
.topnav nav a { font-size: 13px; color: var(--muted); font-weight: 700; }
.topnav nav a:hover, .topnav nav a.active { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 12px 18px; border-radius: var(--radius); border: 1px solid transparent; font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; transition: filter .15s ease, background .15s ease, color .15s ease, border-color .15s ease; }
.btn-primary { background: var(--accent); color: var(--fg); border-color: var(--accent); }
.btn-primary:hover { filter: brightness(.92); }
.btn-secondary { background: transparent; color: var(--fg); border-color: var(--fg); }
.btn-secondary:hover { background: var(--fg); color: var(--surface); }
.btn-ghost { background: transparent; color: var(--accent); border-color: transparent; padding-inline: 0; min-height: auto; text-decoration: underline; text-underline-offset: 4px; }
.btn-arrow::after { content: '->'; }
.hero-photo { position: relative; min-height: 82vh; display: grid; align-items: end; color: var(--surface); background: linear-gradient(180deg, color-mix(in oklch, var(--fg) 50%, transparent), color-mix(in oklch, var(--fg) 88%, transparent)), var(--fg); overflow: hidden; }
.hero-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: .62; }
.hero-photo .container { position: relative; z-index: 1; padding-block: clamp(92px, 12vw, 150px) 64px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) 390px; gap: 52px; align-items: end; }
.hero-copy .lead { color: color-mix(in oklch, var(--surface) 76%, transparent); margin-top: 22px; }
.hero-photo .eyebrow { color: color-mix(in oklch, var(--surface) 70%, transparent); }
.hero-photo .btn-secondary { color: var(--surface); border-color: var(--surface); }
.hero-photo .btn-secondary:hover { background: var(--surface); color: var(--fg); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: color-mix(in oklch, var(--surface) 22%, transparent); border: 1px solid color-mix(in oklch, var(--surface) 24%, transparent); }
.proof-cell { padding: 18px; background: color-mix(in oklch, var(--fg) 64%, transparent); }
.proof-cell strong { display: block; font-family: var(--font-display); font-size: 24px; line-height: 1; color: var(--surface); }
.proof-cell span { display: block; margin-top: 8px; color: color-mix(in oklch, var(--surface) 68%, transparent); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; font-weight: 800; }
.quote-card, .card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; }
.quote-card { color: var(--fg); }
.quote { font-family: var(--font-display); font-size: clamp(24px, 2.5vw, 34px); line-height: 1.18; letter-spacing: -.02em; margin: 0; }
.quote-author { color: var(--muted); font-size: 14px; margin-top: 18px; }
.trust-strip { background: var(--surface); border-bottom: 1px solid var(--border); }
.trust-strip .container { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; padding-block: 0; }
.trust-item { padding: 18px 16px; border-left: 1px solid var(--border); font-weight: 800; font-size: 13px; }
.trust-item:first-child { border-left: 0; }
.trust-item span { display: block; color: var(--muted); font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 4px; }
.section-head { max-width: 670px; margin-bottom: 48px; }
.section-head.center { text-align: center; margin-inline: auto; }
.service-card { background: var(--surface); border: 1px solid var(--border); padding: 28px; min-height: 246px; display: flex; flex-direction: column; justify-content: space-between; }
.service-card p, .process-card p, .area-card p { color: var(--muted); margin: 12px 0 0; }
.service-link { color: var(--fg); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; margin-top: 22px; text-decoration: underline; text-underline-offset: 4px; }
.photo-card { position: relative; min-height: 390px; overflow: hidden; background: var(--fg); color: var(--surface); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: .72; }
.photo-card .content { position: absolute; inset: auto 0 0 0; padding: 30px; background: linear-gradient(180deg, transparent, color-mix(in oklch, var(--fg) 88%, transparent)); }
.process-card { background: var(--surface); border-top: 2px solid var(--fg); padding-top: 24px; }
.step-num { width: 42px; height: 42px; display: grid; place-items: center; background: var(--fg); color: var(--surface); font-weight: 900; font-family: var(--font-mono); margin-bottom: 20px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.split-panel { background: var(--surface); border: 1px solid var(--border); padding: 36px; }
.list { display: grid; gap: 14px; margin: 24px 0 0; padding: 0; list-style: none; }
.list li { padding-top: 14px; border-top: 1px solid var(--border); color: var(--muted); }
.cta-band { background: var(--fg); color: var(--surface); }
.cta-band .lead { color: color-mix(in oklch, var(--surface) 70%, transparent); }
.form-grid { display: grid; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13px; font-weight: 800; color: var(--muted); }
.input, .textarea, .select { width: 100%; padding: 13px 14px; min-height: 48px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); color: var(--fg); font: inherit; }
.textarea { min-height: 112px; resize: vertical; }
.input:focus, .textarea:focus, .select:focus { outline: 2px solid var(--accent-soft); border-color: var(--accent); }
.pagefoot { background: var(--fg); color: color-mix(in oklch, var(--surface) 65%, transparent); padding-block: 58px 32px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 42px; }
.footer-logo { width: 180px; margin-bottom: 20px; }
.pagefoot h3 { color: var(--surface); font-size: 15px; margin-bottom: 14px; }
.pagefoot a { display: block; margin: 8px 0; color: color-mix(in oklch, var(--surface) 70%, transparent); }
.legal { margin-top: 42px; padding-top: 22px; border-top: 1px solid color-mix(in oklch, var(--surface) 18%, transparent); font-size: 12px; }
.bottom-bar { display: none; }
@media (max-width: 1020px) {
  .topnav nav { display: none; }
  .topnav-inner { grid-template-columns: auto 1fr; }
  .nav-actions { justify-content: end; }
  .hero-grid, .grid-2, .grid-3, .grid-4, .grid-2-1, .grid-1-2, .footer-grid { grid-template-columns: 1fr; }
  .trust-strip .container { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  :root { --gutter: 18px; }
  .logo-img { width: 142px; }
  .nav-actions .btn-secondary { display: none; }
  .hero-photo { min-height: 760px; }
  .hero-proof { grid-template-columns: 1fr; }
  .trust-strip .container, .gallery { grid-template-columns: 1fr; }
  .section { padding-block: 54px; }
  .bottom-bar { position: fixed; display: grid; grid-template-columns: 1fr 1fr; left: 0; right: 0; bottom: 0; z-index: 30; }
  .bottom-bar a { min-height: 52px; display: grid; place-items: center; font-weight: 900; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; }
  .bottom-bar a:first-child { background: var(--accent); color: var(--fg); }
  .bottom-bar a:last-child { background: var(--fg); color: var(--surface); }
  body { padding-bottom: 52px; }
}
