@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=IBM+Plex+Serif:wght@400;500;600&display=swap');

:root {
  --ink: #10100f;
  --graphite: #1a1917;
  --paper: #fbfaf5;
  --white: #ffffff;
  --signal: #f26a21;
  --signal-dark: #ba310e;
  --oxide: #7b2518;
  --yellow: #f3bd2d;
  --line: rgba(16, 16, 15, 0.16);
  --soft: #ebe6d8;
  --shadow: 0 28px 80px rgba(16, 16, 15, 0.22);
  --display: 'Barlow Condensed', Impact, sans-serif;
  --body: 'IBM Plex Serif', Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: linear-gradient(90deg, var(--ink) 1px, transparent 1px), linear-gradient(var(--ink) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: -2;
}
body::after {
  content: '';
  position: fixed;
  inset: auto -10vw -25vh -10vw;
  height: 55vh;
  background: radial-gradient(circle at 24% 45%, rgba(242, 106, 33, 0.34), transparent 34%), radial-gradient(circle at 70% 60%, rgba(243, 189, 45, 0.28), transparent 35%);
  z-index: -1;
  pointer-events: none;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-shell { min-height: 100vh; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  min-height: 88px;
  padding: 12px clamp(18px, 4vw, 64px);
  background: rgba(251, 250, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  min-width: 0;
}
.brand img {
  width: 124px;
  height: auto;
  image-rendering: auto;
}
.brand span, .eyebrow, .header-call, .desktop-nav, .btn, .menu-button, footer, .reference-list strong, .store-card span {
  font-family: var(--display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand span { color: var(--oxide); font-size: 15px; }
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 15px;
}
.desktop-nav a {
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--signal);
  transition: right 0.22s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-call {
  padding: 11px 16px;
  color: var(--paper);
  background: var(--ink);
  text-decoration: none;
  font-size: 15px;
  white-space: nowrap;
  border: 1px solid var(--ink);
}
.menu-button {
  display: none;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.menu-button span { width: 22px; height: 2px; background: var(--ink); display: block; }
.menu-button b { margin-left: 7px; font-size: 13px; }
.section-pad { padding: clamp(72px, 9vw, 132px) clamp(20px, 6vw, 88px); }
.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
  background: linear-gradient(115deg, var(--paper) 0%, #fff9e8 48%, rgba(242, 106, 33, 0.16) 100%);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 16, 15, 0.06), transparent 28%), repeating-linear-gradient(135deg, transparent 0 18px, rgba(242, 106, 33, 0.08) 18px 20px);
  pointer-events: none;
}
.hero > * { position: relative; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--signal-dark);
  font-size: 15px;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
h1 {
  max-width: 660px;
  font-size: clamp(54px, 7.2vw, 112px);
}
h2 { font-size: clamp(44px, 6vw, 86px); }
h3 { font-size: clamp(27px, 3vw, 40px); }
.lead {
  max-width: 640px;
  margin: 26px 0 0;
  font-size: clamp(19px, 2vw, 24px);
  color: rgba(16, 16, 15, 0.78);
}
.hero-actions, .contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  text-decoration: none;
  border: 1px solid currentColor;
  font-size: 15px;
  white-space: nowrap;
}
.btn.primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--signal) 0%, var(--signal-dark) 100%);
  border-color: var(--signal-dark);
  box-shadow: 0 14px 38px rgba(186, 49, 14, 0.24);
}
.btn.ghost, .btn.map { background: var(--white); color: var(--ink); }
.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 44px;
  max-width: 720px;
}
.trust-strip span {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  font-size: 15px;
}
.hero-visual {
  position: relative;
  min-height: 560px;
}
.paint-card {
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.main-card {
  width: min(100%, 560px);
  margin-left: auto;
  border-radius: 10px;
  transform: rotate(1.5deg);
}
.main-card img { width: 100%; height: auto; }
.swatch {
  position: absolute;
  width: 78px;
  height: 310px;
  top: 50px;
  box-shadow: 0 18px 48px rgba(16, 16, 15, 0.25);
}
.rail-a { left: 0; background: var(--signal); }
.rail-b { left: 92px; top: 116px; background: var(--yellow); height: 250px; }
.mini-card {
  position: absolute;
  right: 0;
  bottom: 28px;
  width: min(74%, 350px);
  background: var(--ink);
  color: var(--paper);
  padding: 10px;
  box-shadow: var(--shadow);
}
.mini-card img { width: 100%; height: auto; }
.mini-card span { display: block; padding: 10px 4px 2px; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em; }
.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 96px);
  background: var(--ink);
  color: var(--paper);
}
.intro .eyebrow, .references .eyebrow { color: var(--yellow); }
.intro-text {
  columns: 2;
  column-gap: 46px;
  color: rgba(251, 250, 245, 0.78);
}
.intro-text p { break-inside: avoid; margin-top: 0; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}
.section-heading h2 { max-width: 880px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 14px;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 420px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 22px 56px rgba(16, 16, 15, 0.14); }
.service-card img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 28px;
}
.service-card p { color: rgba(16, 16, 15, 0.72); }
.craft {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  background: linear-gradient(160deg, #fffaf0 0%, #f0d09d 100%);
}
.craft-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(28px, 5vw, 62px);
  box-shadow: 0 20px 60px rgba(16, 16, 15, 0.12);
}
.craft-panel ul { padding-left: 20px; }
.craft-panel li + li { margin-top: 10px; }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 118px);
  gap: 14px;
  justify-content: center;
  transform: rotate(-2deg);
}
.tech-grid img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 16px 38px rgba(16, 16, 15, 0.18);
}
.references {
  background: var(--graphite);
  color: var(--paper);
}
.reference-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(251, 250, 245, 0.18);
}
.reference-list article {
  background: var(--graphite);
  padding: 24px;
  min-height: 190px;
}
.reference-list strong {
  display: block;
  color: var(--yellow);
  font-size: 22px;
  margin-bottom: 10px;
}
.reference-list span { color: rgba(251, 250, 245, 0.75); }
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 118px);
  gap: 16px;
  margin-top: 40px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.gallery-strip img {
  width: 118px;
  height: 118px;
  object-fit: cover;
  border-radius: 8px;
}
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 26px;
  align-items: stretch;
}
.contact-card, .store-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(26px, 5vw, 58px);
  box-shadow: 0 20px 60px rgba(16, 16, 15, 0.1);
}
.contact-lines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.contact-lines p {
  margin: 0;
  padding: 16px;
  background: #f7f0df;
}
.contact-lines strong { display: block; font-family: var(--display); text-transform: uppercase; letter-spacing: 0.05em; }
.store-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--ink);
  color: var(--paper);
}
.store-card img { width: 100%; height: auto; border-radius: 8px; }
.store-card div { margin-top: 24px; }
.store-card strong { display: block; margin-top: 8px; font-size: 24px; line-height: 1.22; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 6vw, 88px);
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(251, 250, 245, 0.18);
  font-size: 14px;
}
footer div { display: grid; gap: 4px; }
footer a { color: var(--paper); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 28px;
  background: var(--ink);
  color: var(--paper);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a, .menu-close {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--paper);
  font-size: clamp(34px, 11vw, 68px);
  text-decoration: none;
}
.menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  border: 1px solid rgba(251, 250, 245, 0.4);
  background: transparent;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 15px;
}
.mobile-call { color: var(--yellow) !important; }
.menu-open body { overflow: hidden; }
.legal-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--paper);
}
.legal-card {
  width: min(900px, 100%);
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(26px, 5vw, 64px);
  box-shadow: var(--shadow);
}
.legal-card h1 { margin: 24px 0; font-size: clamp(48px, 8vw, 88px); }

@media (max-width: 1240px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; }
  .main-card { margin-left: 130px; }
}
@media (max-width: 1120px) {
  .desktop-nav, .header-call { display: none; }
  .topbar { grid-template-columns: auto 1fr auto; }
  .menu-button { display: flex; justify-self: end; }
  .hero, .intro, .craft, .contact { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reference-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  body { font-size: 16px; }
  .topbar { min-height: 76px; padding: 10px 16px; }
  .brand img { width: 105px; }
  .brand span { display: none; }
  .section-pad { padding: 64px 18px; }
  .hero { min-height: auto; }
  h1 { font-size: clamp(50px, 17vw, 76px); }
  h2 { font-size: clamp(38px, 13vw, 58px); }
  .trust-strip, .service-grid, .contact-lines, .reference-list { grid-template-columns: 1fr; }
  .hero-visual { min-height: 410px; }
  .main-card { width: calc(100% - 22px); }
  .swatch { width: 42px; height: 210px; top: 42px; }
  .rail-b { left: 52px; top: 88px; height: 170px; }
  .mini-card { width: 72%; bottom: 0; }
  .intro-text { columns: 1; }
  .section-heading { align-items: start; flex-direction: column; }
  .service-card { min-height: 0; }
  .tech-grid { grid-template-columns: repeat(2, 118px); transform: none; }
  .gallery-strip { grid-template-columns: repeat(6, 118px); }
  .hero-actions, .contact-actions { flex-direction: column; }
  .btn { width: 100%; }
  footer { flex-direction: column; }
}
@media (max-width: 360px) {
  .menu-button b { display: none; }
  .tech-grid { grid-template-columns: repeat(2, 104px); }
  .tech-grid img { width: 104px; height: 104px; }
  .gallery-strip { grid-template-columns: repeat(6, 104px); }
  .gallery-strip img { width: 104px; height: 104px; }
}
