@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 600; font-display: swap; src: url(../fonts/barlow-condensed-600.woff2) format('woff2'); }
@font-face { font-family: 'Barlow Condensed'; font-style: normal; font-weight: 700; font-display: swap; src: url(../fonts/barlow-condensed-700.woff2) format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 100 900; font-display: swap; src: url(../fonts/inter-var.woff2) format('woff2'); }

/* Tokens: graphite + one accent (hot metal orange). Sharp corners everywhere. */
:root {
  --bg: #f3f4f5;
  --surface: #fbfbfc;
  --surface-2: #e4e7ea;
  --ink: #16191d;
  --muted: #535a63;
  --line: #d3d8dd;
  --accent: #b83d0b;
  --accent-hover: #9c3309;
  --on-accent: #fbfbfc;
  --media: #2b3038;
  --shadow: 0 18px 40px -24px rgba(22, 25, 29, .35);

  --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --ease: cubic-bezier(.16, 1, .3, 1);

  /* z-index scale */
  --z-header: 20;
  --z-callbar: 30;
  --z-consent: 40;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111317;
    --surface: #181b20;
    --surface-2: #20242a;
    --ink: #eceef1;
    --muted: #a4abb5;
    --line: #2d3239;
    --accent: #f06a2c;
    --accent-hover: #ff7d42;
    --on-accent: #111317;
    --media: #262b32;
    --shadow: 0 18px 40px -24px rgba(0, 0, 0, .7);
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.6 var(--body);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.05; margin: 0; letter-spacing: -.005em; }
p { margin: 0; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: var(--surface); padding: 8px 12px; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px;
  font: 600 20px/1 var(--display); letter-spacing: .02em;
  text-decoration: none; white-space: nowrap;
  border: 2px solid transparent; border-radius: 0;
  cursor: pointer;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: 18px; }

.eyebrow {
  font: 600 15px/1.2 var(--display);
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: 16px;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row { display: flex; align-items: center; gap: 32px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font: 700 28px/1 var(--display); letter-spacing: .01em; }
.brand-mark { width: 28px; height: 28px; color: var(--ink); }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a { text-decoration: none; font-size: 15px; font-weight: 500; color: var(--muted); transition: color .2s; }
.nav a:hover { color: var(--ink); }

/* Media slot: shows a graphite panel until the real photo is added */
.media { margin: 0; background: var(--media); overflow: hidden; position: relative; }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media.is-empty {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Crect x='3' y='3' width='26' height='26' fill='none' stroke='%23fff' stroke-opacity='.08' stroke-width='1.5'/%3E%3Crect x='15.25' y='3' width='1.5' height='26' fill='%23fff' fill-opacity='.08'/%3E%3C/svg%3E") center / min(38%, 180px) no-repeat,
    linear-gradient(135deg, var(--media), color-mix(in srgb, var(--media) 80%, #000));
}

/* Hero */
.hero { padding: clamp(40px, 7vw, 88px) 0 clamp(56px, 8vw, 104px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: clamp(40px, 4.8vw, 68px); text-transform: uppercase; max-width: 17ch; }
.lead { font-size: 19px; color: var(--muted); max-width: 40ch; margin-top: 24px; }
.hero-media { aspect-ratio: 4 / 3.4; box-shadow: var(--shadow); }

/* Sections */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-tint { background: var(--surface-2); }
.section-title { font-size: clamp(36px, 4.4vw, 56px); text-transform: uppercase; }
.section-lead { color: var(--muted); max-width: 58ch; margin-top: 16px; font-size: 18px; }

/* Services bento */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.tile { background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; }
.tile-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tile h3 { font-size: 30px; text-transform: uppercase; }
.tile p { color: var(--muted); font-size: 16px; }
.tile .media { aspect-ratio: 16 / 10; }

.tile-a { grid-column: span 4; }
.tile-a .media { aspect-ratio: 16 / 8.2; }
.tile-b { grid-column: span 2; }
.tile-b .media { aspect-ratio: 1 / 1; }
.tile-c, .tile-d, .tile-e { grid-column: span 2; }
.tile-solid { background: var(--accent); border-color: var(--accent); justify-content: flex-end; min-height: 320px; }
.tile-solid h3 { font-size: 40px; color: var(--on-accent); }
.tile-solid p { color: var(--on-accent); opacity: .9; }
.tile-solid .tags li { border-color: color-mix(in srgb, var(--on-accent) 45%, transparent); color: var(--on-accent); }
.tile-f { grid-column: span 6; display: grid; grid-template-columns: 1.3fr 1fr; }
.tile-f .media { aspect-ratio: auto; min-height: 300px; }
.tile-f .tile-body { justify-content: center; padding: 40px; }
.tile-f h3 { font-size: 38px; }

.tags { list-style: none; padding: 0; margin: 8px 0 0; display: flex; flex-wrap: wrap; gap: 6px; }
.tags li { font-size: 13px; font-weight: 500; padding: 3px 10px; border: 1px solid var(--line); color: var(--muted); }

/* Steps */
.steps {
  list-style: none; padding: 0; margin: 48px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  counter-reset: step;
}
.steps li { padding: 28px 28px 0 0; border-top: 3px solid var(--ink); counter-increment: step; position: relative; }
.steps li + li { padding-left: 28px; border-left: 1px solid var(--line); }
.steps li::before {
  content: counter(step);
  display: block; font: 700 64px/1 var(--display); color: var(--accent);
  margin-bottom: 12px;
}
.steps h3 { font-size: 26px; text-transform: uppercase; margin-bottom: 8px; }
.steps p { color: var(--muted); font-size: 16px; }

/* History */
.history { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.big-year {
  font: 700 clamp(120px, 17vw, 220px)/.85 var(--display);
  color: var(--accent); letter-spacing: -.02em;
  margin: 0 0 20px -4px;
}
.history-media { aspect-ratio: 3 / 2; margin-top: 36px; }
.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 28px 0; }
.timeline li + li { border-top: 1px solid var(--line); }
.t-when { font: 700 28px/1.1 var(--display); text-transform: uppercase; }
.timeline p { font-size: 18px; padding-top: 3px; }

/* Places */
.places {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: flex; flex-wrap: wrap; gap: 4px 0;
  font: 700 clamp(34px, 5vw, 64px)/1.15 var(--display); text-transform: uppercase;
}
.places li:not(:last-child)::after { content: '/'; color: var(--accent); margin: 0 .35em; font-weight: 600; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 22px 0; font-size: 19px; font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font: 600 32px/1 var(--display); color: var(--accent);
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding: 0 0 24px; max-width: 62ch; }
.faq a { color: var(--accent); font-weight: 600; }

/* Contact */
.contact { background: var(--surface); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: end; }
.status { display: inline-flex; align-items: center; gap: 10px; margin: 20px 0 28px; font-weight: 600; color: var(--muted); }
.status::before { content: ''; width: 10px; height: 10px; background: var(--muted); }
.status.is-open { color: var(--ink); }
.status.is-open::before { background: #1f9d55; }
.contact-info { margin: 0; display: grid; gap: 28px; }
.contact-info dt { font: 600 20px/1.2 var(--display); text-transform: uppercase; margin-bottom: 6px; }
.contact-info dd { margin: 0; color: var(--muted); }
.contact-info a { color: var(--accent); font-weight: 600; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); padding: 28px 0; font-size: 14px; color: var(--muted); }
.footer-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 32px; }
.footer-row nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.footer-row a, .linklike { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.linklike { background: none; border: 0; padding: 0; font: inherit; cursor: pointer; }

/* Sticky call button: the only phone CTA on the page */
.site-footer { padding-bottom: 104px; }
.callbar { position: fixed; right: 24px; bottom: 24px; z-index: var(--z-callbar); }
.callbar .btn { min-height: 60px; padding: 0 32px; font-size: 24px; box-shadow: 0 14px 34px -14px rgba(0, 0, 0, .55); }

/* Consent banner */
.consent {
  position: fixed; left: 16px; right: 24px; bottom: 100px; z-index: var(--z-consent);
  max-width: 560px; margin-left: auto;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow);
  padding: 20px; display: grid; gap: 16px; font-size: 15px;
}
.consent[hidden] { display: none; }
.consent a { color: var(--accent); }
.consent-actions { display: flex; gap: 8px; justify-content: flex-end; }

/* Legal pages */
.legal { padding: clamp(48px, 7vw, 88px) 0; }
.legal .wrap { max-width: 800px; }
.legal h1 { font-size: clamp(40px, 5vw, 60px); text-transform: uppercase; margin-bottom: 12px; }
.legal h2 { font-size: 28px; text-transform: uppercase; margin: 40px 0 12px; }
.legal p, .legal li { color: var(--muted); }
.legal p + p { margin-top: 12px; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--accent); }
.legal .updated { font-size: 14px; }

/* Reveal on scroll */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .js .reveal.is-in { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Tablet */
@media (max-width: 1024px) {
  .nav { gap: 20px; }
  .hero-grid, .history, .faq-grid, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-media { aspect-ratio: 16 / 10; }
  .tile-a, .tile-f { grid-column: span 6; }
  .tile-b, .tile-c, .tile-d, .tile-e { grid-column: span 3; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .steps li:nth-child(3) { border-left: 0; padding-left: 0; }
}

/* Mobile */
@media (max-width: 768px) {
  body { font-size: 16px; padding-bottom: 80px; }
  .nav { display: none; }
  .header-row { justify-content: space-between; height: 60px; }
  .hero h1 { max-width: none; }
  .bento { grid-template-columns: minmax(0, 1fr); }
  .tile-a, .tile-b, .tile-c, .tile-d, .tile-e, .tile-f { grid-column: auto; }
  .tile-f { grid-template-columns: 1fr; }
  .tile-f .media { min-height: 0; aspect-ratio: 16 / 10; }
  .tile-f .tile-body { padding: 24px 24px 28px; }
  .tile-a .media, .tile-b .media { aspect-ratio: 16 / 10; }
  .tile-solid { min-height: 0; }
  .steps { grid-template-columns: 1fr; }
  .steps li, .steps li + li { border-left: 0; padding-left: 0; padding-right: 0; }
  .timeline li { grid-template-columns: 1fr; gap: 4px; }
  .site-footer { padding-bottom: 28px; }
  .callbar {
    left: 0; right: 0; bottom: 0;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: var(--bg); border-top: 1px solid var(--line);
  }
  .callbar .btn { width: 100%; min-height: 54px; font-size: 22px; box-shadow: none; }
  .consent { right: 16px; bottom: 88px; }
  .consent-actions .btn { flex: 1; }
}
