:root {
  --ink: #0a0a0b;
  --asphalt: #18191c;
  --line: #23252a;
  --paper: #f4efe6;
  --stone: #b4ada1;
  --stone-2: #6e6a62;
  --amber: #f2a007;
  --accent: var(--amber);
  --accent-ink: #0a0a0b;
  --container: 1180px;
  --pad: clamp(20px, 5vw, 48px);
  --f-display: "Antonio", "Arial Narrow", sans-serif;
  --f-body: "Geist", system-ui, sans-serif;
  --f-mono: "Geist Mono", ui-monospace, monospace;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.wrap { max-width: var(--container); margin: 0 auto; padding-inline: var(--pad); }
.section-pad { padding-block: clamp(72px, 11vw, 160px); }
.eyebrow {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--stone-2); display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .6; }
.eyebrow.on-dark { color: var(--stone); }
h1, h2, h3 {
  font-family: var(--f-display); font-weight: 700; line-height: .94; letter-spacing: -.01em;
  text-transform: uppercase; margin: 0; text-wrap: balance;
}
h1 { font-size: clamp(44px, min(7vw, 10vh), 116px); line-height: .9; max-width: 14ch; }
h2 { font-size: clamp(34px, 5vw, 68px); }
h3 { font-size: clamp(24px, 3vw, 38px); }
p { margin: 0; text-wrap: pretty; }
.lede { font-size: clamp(18px, 1.7vw, 23px); line-height: 1.5; color: var(--stone-2); max-width: 56ch; }
.hero .lede, .why .eyebrow.on-dark, .contact .lede { color: var(--stone); }
.btn {
  display: inline-flex; align-items: center; gap: 12px; padding: 17px 26px;
  border: 1px solid transparent; font-size: 15px; font-weight: 600; letter-spacing: .02em;
  text-transform: uppercase; transition: transform .12s, background .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--ink); color: var(--paper); }
.btn-ghost { color: var(--paper); border-color: rgba(244,239,230,.4); }
.btn-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.nav { position: sticky; top: 0; z-index: 50; background: rgba(10,10,11,.96); color: var(--paper); border-bottom: 1px solid var(--line); backdrop-filter: blur(8px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo, .footer-brand img { height: 50px; width: auto; }
.brand-name, .footer-brand span { font-family: var(--f-display); font-weight: 700; font-size: 22px; letter-spacing: .04em; text-transform: uppercase; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-tel { font-family: var(--f-mono); font-size: 13px; color: rgba(244,239,230,.85); }
.nav .btn { padding: 11px 20px; font-size: 13px; }
.hero { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 72px 72px; mask-image: radial-gradient(ellipse 70% 70% at 70% 20%, #000 30%, transparent 100%);
}
.hero-inner { position: relative; padding-block: clamp(48px, min(8vw, 8vh), 120px) clamp(40px, min(6vw, 6vh), 96px); display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 72px); align-items: end; }
.hero h1 .amber, .contact h2 .amber { color: var(--accent); }
.hero-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 16px; font-family: var(--f-mono); font-size: 13px; color: var(--stone); max-width: 60ch; }
.hero-note .tag { background: var(--accent); color: var(--ink); padding: 5px 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; font-size: 11px; white-space: nowrap; }
.hero-visual { display: flex; justify-content: center; }
.hero-card { background: var(--asphalt); border: 1px solid var(--line); overflow: hidden; width: min(420px, 100%); }
.hero-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; filter: contrast(1.02) saturate(.92); }
.hero-card-meta { padding: 18px 20px; font-family: var(--f-mono); font-size: 12px; color: var(--stone); letter-spacing: .04em; }
.stance { background: var(--accent); color: var(--accent-ink); }
.stance-inner { padding-block: clamp(48px, 6vw, 88px); }
.stance p { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; font-size: clamp(28px, 4.2vw, 60px); line-height: 1; max-width: 22ch; }
.stance .out { color: rgba(10,10,11,.45); }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.do-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(10,10,11,.14); border: 1px solid rgba(10,10,11,.14); }
.do-cell { background: var(--paper); padding: clamp(28px, 3.5vw, 48px); display: flex; flex-direction: column; gap: 16px; min-height: 260px; }
.do-n, .why .n, .contact-line { font-family: var(--f-mono); }
.do-n, .why .n { font-size: 12px; letter-spacing: .14em; color: var(--stone-2); }
.do-cell p, .why p { color: var(--stone-2); font-size: 16px; }
.why { background: var(--ink); color: var(--paper); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); }
.why-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.why-item { padding: 26px 0; border-bottom: 1px solid var(--line); display: flex; gap: 20px; align-items: start; }
.why-item h3 { color: var(--paper); font-size: 24px; margin-bottom: 8px; }
.contact { background: var(--paper); }
.contact-card { background: var(--ink); color: var(--paper); padding: clamp(40px, 6vw, 88px); display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact-actions { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.contact-actions .btn { justify-content: space-between; width: 100%; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); display: flex; flex-direction: column; gap: 7px; }
.contact-form input, .contact-form textarea { font: inherit; font-size: 15px; color: var(--paper); background: transparent; border: 0; border-bottom: 1.5px solid var(--line); padding: 9px 0; outline: none; }
.contact-form textarea { min-height: 72px; resize: vertical; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(180,173,161,.5); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form button { margin-top: 8px; background: var(--accent); color: var(--ink); padding: 17px 24px; border: 0; font-weight: 600; font-size: 15px; letter-spacing: .02em; text-transform: uppercase; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.contact-status { display: none; font-family: var(--f-mono); font-size: 13px; line-height: 1.5; color: var(--accent); border-left: 2px solid var(--accent); padding: 10px 0 10px 14px; }
.contact-status.show { display: block; }
.footer { background: var(--asphalt); color: var(--paper); padding-block: 56px 28px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; font-size: 14px; }
.footer-nav a { color: rgba(244,239,230,.8); }
.footer-nav a:hover { color: var(--accent); }
.footer-meta { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 28px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); }
::selection { background: var(--accent); color: var(--ink); }
@media (max-width: 900px) {
  .hero-inner, .why-grid, .contact-card { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .do-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: start; }
  .nav-tel { display: none; }
}
