@import url('/fonts/local-fonts.css');

:root{
  --ink: #17181a;
  --ink-soft: #2a2b2e;
  --paper: #f6f5f3;
  --paper-dim: #ece9e4;
  --white: #ffffff;
  --accent: #e8611c;
  --accent-dark: #c8500f;
  --text-muted: #6b6a68;
  --text-on-dark-muted: #b9b7b3;
  --border: #e1ddd6;

  --font-head: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1240px;
  --gap: 24px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ margin: 0; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: -0.01em; }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover{ background: var(--accent-dark); }
.btn-outline-light{
  background: transparent;
  border-color: rgba(255,255,255,.35);
  color: var(--white);
}
.btn-outline-light:hover{ border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline-dark{
  background: transparent;
  border-color: rgba(23,24,26,.25);
  color: var(--ink);
}
.btn-outline-dark:hover{ border-color: var(--ink); }

/* ---------- section basics ---------- */
.section{ padding: 72px 0; }
.section-dark{ background: var(--ink); color: var(--white); }
.section-tight{ padding: 48px 0; }

.eyebrow{
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title{
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 8px;
}
.title-rule{
  width: 46px;
  height: 3px;
  background: var(--accent);
  margin: 16px 0 0;
}
.section-head{ margin-bottom: 36px; }

/* ---------- header ---------- */
.site-header{
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .01em;
}
.brand-mark{
  width: 34px; height: 34px;
  flex: none;
}
.main-nav{
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a{
  color: var(--text-on-dark-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  transition: color .15s ease;
}
.main-nav a:hover{ color: var(--white); }
.header-cta{ flex: none; }
.nav-toggle{
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--white);
}

/* ---------- breadcrumbs ---------- */
.breadcrumbs{
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.08);
}
.breadcrumbs .container{ padding-top: 14px; padding-bottom: 14px; }
.breadcrumbs ol{ display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumbs li{
  font-size: 13px;
  color: var(--text-on-dark-muted);
}
.breadcrumbs li:not(:last-child)::after{ content: "/"; margin-left: 8px; color: #55565a; }
.breadcrumbs a:hover{ color: var(--white); }
.breadcrumbs li.current{ color: var(--accent); }

/* ---------- footer ---------- */
.site-footer{
  background: var(--ink);
  color: var(--text-on-dark-muted);
  padding: 56px 0 32px;
}
.footer-top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand{ margin-bottom: 10px; }
.footer-brand p{ font-size: 13.5px; line-height: 1.6; max-width: 220px; }
.footer-col h4{
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 10px; }
.footer-col a{ font-size: 14px; transition: color .15s ease; }
.footer-col a:hover{ color: var(--white); }
.footer-contacts li{
  display: flex;
  gap: 10px;
  font-size: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contacts svg{ flex: none; margin-top: 2px; color: var(--accent); }
.footer-bottom{
  padding-top: 24px;
  font-size: 12.5px;
  color: #6f7075;
}

/* ---------- hero ---------- */
.hero{ background: var(--ink); color: var(--white); overflow: hidden; }
.hero-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 40px;
  min-height: 480px;
}
.hero-copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0;
}
.hero-copy h1{
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.03;
  margin-bottom: 20px;
}
.hero-lede{
  color: var(--text-on-dark-muted);
  font-size: 16px;
  max-width: 420px;
  margin-bottom: 32px;
}
.hero-actions{ display: flex; gap: 14px; flex-wrap: wrap; }
.hero-photo{
  position: relative;
  margin: -0px -24px -0px 0;
}
.hero-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

/* ---------- stats strip ---------- */
.stats-strip{ background: var(--paper-dim); }
.stats-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 28px 0;
}
.stat-item{
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-head);
  font-size: 15px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0 24px;
  border-left: 1px solid var(--border);
}
.stat-item:first-child{ border-left: none; padding-left: 0; }
.stat-item svg{ color: var(--accent); flex: none; }

/* ---------- product grid ---------- */
.product-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.product-card{
  background: var(--white);
  border: 1px solid var(--border);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.product-card:hover{
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 16px 30px -20px rgba(23,24,26,.35);
}
.product-card-thumb{
  display: block;
  aspect-ratio: 4 / 3.4;
  overflow: hidden;
  background: var(--paper-dim);
}
.product-card-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card-title{
  font-family: var(--font-head);
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.25;
  padding-top: 8px;
  border-top: 3px solid var(--accent);
  align-self: flex-start;
}

/* ---------- cta with drawing ---------- */
.cta-drawing{ background: var(--paper); }
.cta-drawing-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.section-lede{
  color: var(--text-muted);
  font-size: 15.5px;
  max-width: 380px;
  margin: 16px 0 28px;
}
.drawing-photo{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px;
}
.drawing-photo img{ width: 100%; height: auto; display: block; }

/* ---------- production block ---------- */
.production-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.production-photo img{ height: 100%; width: 100%; object-fit: cover; }
.production-copy{
  background: var(--white);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.checklist{ display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.checklist li{
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--ink-soft);
}
.checklist li::before{
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 2px;
  background: var(--accent);
}

/* ---------- cta bar ---------- */
.cta-bar{ background: var(--ink-soft); color: var(--white); }
.cta-bar-grid{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 24px;
  flex-wrap: wrap;
}
.cta-bar h3{ font-size: 24px; margin-bottom: 6px; }
.cta-bar p{ color: var(--text-on-dark-muted); font-size: 14.5px; }

/* ---------- responsive ---------- */
@media (max-width: 900px){
  .main-nav{ display: none; }
  .main-nav.is-open{
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--ink);
    padding: 20px 24px;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .nav-toggle{ display: inline-flex; }
  .footer-top{ grid-template-columns: 1fr 1fr; row-gap: 32px; }
  .hero-grid{ grid-template-columns: 1fr; min-height: 0; }
  .hero-photo{ margin: 0; order: -1; }
  .hero-photo img{ min-height: 240px; }
  .stats-grid{ grid-template-columns: 1fr; gap: 14px; }
  .stat-item{ border-left: none; padding-left: 0; }
  .product-grid{ grid-template-columns: repeat(3, 1fr); }
  .cta-drawing-grid{ grid-template-columns: 1fr; }
  .production-grid{ grid-template-columns: 1fr; }
  .production-copy{ padding: 32px 24px; }
}
@media (max-width: 560px){
  .footer-top{ grid-template-columns: 1fr; }
  .header-cta{ display: none; }
  .product-grid{ grid-template-columns: repeat(2, 1fr); }
  .cta-bar-grid{ text-align: center; justify-content: center; }
}
