:root {
  --ink: #0e1116;
  --paper: #fafaf7;
  --paper-2: #f1ede4;
  --card: #ffffff;
  --text: #2a2823;
  --muted: #6b665c;
  --brand: #b8410e;        /* rust — lime/iron/earth */
  --brand-dark: #7a2c08;
  --gold: #c9a14a;
  --concrete: #4a4842;     /* soil/concrete gray */
  --line: #e3ddd0;
  --shadow-sm: 0 2px 8px rgba(14,17,22,.06);
  --shadow-md: 0 8px 28px rgba(14,17,22,.10);
  --shadow-lg: 0 24px 60px rgba(14,17,22,.18);
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;
  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; color: var(--ink); line-height: 1.1; font-weight: 500; letter-spacing: -.015em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { color: var(--text); }
em { font-style: italic; color: var(--brand); }

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

/* Mono small-caps labels (validated editorial pattern) */
.label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--brand);
  display: inline-block;
}
.label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--brand);
  vertical-align: middle;
  margin-right: 8px;
}
.muted { color: var(--muted); }

/* ============ Topband ============ */
.topband {
  background: var(--ink);
  color: #d6cdb8;
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem;
  padding: 10px 0;
  letter-spacing: .04em;
}
.topband__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.topband__item { display: inline-flex; align-items: center; gap: 8px; }
.topband__sep { color: var(--brand); }
.topband__item .dot {
  width: 7px; height: 7px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
.topband__right { margin-left: auto; }

/* ============ Header ============ */
.header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 84px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.02em;
}
.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  background: var(--ink);
  color: var(--brand);
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.brand__text span { color: var(--brand); font-style: italic; }
.brand__text--light { color: var(--paper); }

.nav {
  display: flex;
  gap: 32px;
  margin-left: 16px;
}
.nav__link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  position: relative;
  transition: color .15s;
}
.nav__link:hover { color: var(--brand); }
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1.5px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__link:hover::after { transform: scaleX(1); }

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .85rem;
  font-weight: 500;
  transition: background .15s;
}
.phone-pill svg { width: 14px; height: 14px; }
.phone-pill:hover { background: var(--brand); }

.hamburger {
  display: none;
  background: none; border: none;
  flex-direction: column; gap: 5px;
  padding: 8px; margin-left: auto;
  cursor: pointer;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 960px) {
  .nav, .phone-pill { display: none; }
  .hamburger { display: flex; }
  .header__inner { gap: 16px; }
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  padding: 13px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  letter-spacing: -.005em;
}
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--ghost-light { color: var(--paper); border-color: rgba(250,250,247,.5); }
.btn--ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--lg { padding: 16px 30px; font-size: .98rem; }
.btn--xl { padding: 22px 40px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 720px;
  color: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__photo {
  position: absolute; inset: 0;
  background-image: url('assets/img/about-deliver.jpg');
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) saturate(.85);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(14,17,22,.92) 0%, rgba(14,17,22,.65) 45%, rgba(14,17,22,.3) 100%),
    linear-gradient(180deg, rgba(14,17,22,.4) 0%, transparent 30%, rgba(14,17,22,.6) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 96px 0;
  max-width: 920px;
}
.hero__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  margin-bottom: 28px;
  display: inline-block;
}
.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 36px; height: 1.5px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}
.hero__title {
  color: var(--paper);
  margin-bottom: 26px;
  font-weight: 400;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.05;
}
.hero__title em { color: var(--gold); font-style: italic; }
.hero__title-accent {
  color: var(--brand);
  font-style: italic;
}
.hero__sub {
  font-size: 1.15rem;
  color: #d6cdb8;
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 64px; }
.hero__ctas .btn--ghost-light { color: var(--paper); border-color: rgba(250,250,247,.45); }
.hero__ctas .btn--ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.hero__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(250,250,247,.18);
}
.hero__stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: -.01em;
}
.hero__stat span {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #b8b0a0;
}
@media (max-width: 760px) {
  .hero__strip { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ============ Intro ============ */
.intro { padding: 110px 0; background: var(--paper); }
.intro__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro__copy h2 { margin: 16px 0 26px; font-weight: 400; }
.intro__copy p { font-size: 1.08rem; margin-bottom: 16px; color: var(--text); }
.intro__copy .label { margin-bottom: 4px; }

.panel {
  background: var(--ink);
  color: var(--paper);
  padding: 40px 36px;
  border-radius: var(--r-md);
  position: relative;
}
.panel::before {
  content: '';
  position: absolute;
  top: -10px; left: 30px;
  width: 30px; height: 30px;
  background: var(--ink);
  transform: rotate(45deg);
}
.panel .label { color: var(--gold); margin-bottom: 24px; }
.panel .label::before { background: var(--gold); }
.panel__list { list-style: none; }
.panel__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(250,250,247,.1);
  font-size: .92rem;
}
.panel__list li:last-child { border-bottom: none; }
.panel__list span {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #b8b0a0;
}
.panel__list strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: .88rem;
  font-weight: 500;
  color: var(--paper);
  text-align: right;
}
@media (max-width: 880px) {
  .intro__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ============ Section heads ============ */
.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head--left { text-align: left; margin-left: 0; }
.section-head h2 { margin: 14px 0 18px; font-weight: 400; }
.section-head p { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.section-head--left p { margin: 0; }

/* ============ Products — editorial asymmetric grid ============ */
.products { padding: 120px 0; background: var(--paper-2); }
.products__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 24px;
}
.product {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 320px;
}
.product__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
  filter: contrast(1.05) saturate(.8);
}
.product:hover .product__img { transform: scale(1.04); }
.product::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(14,17,22,.85) 100%);
}
.product__meta {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
  color: var(--paper);
}
.product__meta .label { color: var(--gold); margin-bottom: 12px; }
.product__meta .label::before { background: var(--gold); }
.product__meta h3 {
  color: var(--paper);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.product__meta p {
  color: #d6cdb8;
  font-size: .95rem;
  line-height: 1.6;
}

/* Sizes — asymmetric editorial layout */
.product--tall { grid-column: span 3; grid-row: span 2; min-height: 640px; }
.product--wide { grid-column: span 3; grid-row: span 1; min-height: 320px; }
.product--sq   { grid-column: span 3; grid-row: span 1; min-height: 320px; }

@media (max-width: 880px) {
  .products__grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .product--tall, .product--wide, .product--sq { grid-column: span 1; min-height: 360px; grid-row: span 1; }
}

/* ============ Specs (the B2B trust section) ============ */
.specs { padding: 120px 0; background: var(--paper); }
.specs__table {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--card);
}
.specs__row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.6fr 1.2fr;
  gap: 24px;
  padding: 18px 28px;
  align-items: center;
  font-size: .95rem;
  border-bottom: 1px solid var(--line);
}
.specs__row:last-child { border-bottom: none; }
.specs__row > span:first-child {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
}
.specs__row > span:nth-child(2),
.specs__row > span:nth-child(3) {
  font-family: 'JetBrains Mono', monospace;
  font-size: .85rem;
  color: var(--muted);
}
.specs__row > span:last-child {
  font-family: 'JetBrains Mono', monospace;
  font-size: .82rem;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.specs__row > span:last-child a {
  color: var(--brand);
  border-bottom: 1px solid var(--brand);
  padding-bottom: 1px;
  transition: color .15s;
}
.specs__row > span:last-child a:hover { color: var(--brand-dark); border-bottom-color: var(--brand-dark); }

.specs__row--head {
  background: var(--ink);
  color: var(--paper);
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.specs__row--head > span:first-child {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  color: var(--gold);
  font-weight: 500;
}
.specs__row--head > span:nth-child(2),
.specs__row--head > span:nth-child(3),
.specs__row--head > span:last-child {
  font-size: .72rem;
  color: #b8b0a0;
  display: block;
}
.specs__row--head > span:last-child { display: block; }

.specs__note {
  margin-top: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .82rem;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 720px) {
  .specs__row { grid-template-columns: 1fr; gap: 6px; padding: 18px 20px; }
  .specs__row--head { display: none; }
}

/* ============ About — asymmetric ============ */
.about {
  position: relative;
  background: var(--paper-2);
  overflow: hidden;
}
.about__photo {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.about__photo-inner {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: contrast(1.05);
}
.about__badge {
  position: absolute;
  bottom: 40px; left: 40px;
  background: var(--ink);
  color: var(--paper);
  padding: 22px 28px;
  border-radius: var(--r-md);
  border-left: 4px solid var(--brand);
  box-shadow: var(--shadow-lg);
}
.about__badge-num {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--paper);
  margin-bottom: 4px;
}
.about__badge-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
}
.about__inner {
  position: relative;
  padding: 100px 0;
}
.about__copy { max-width: 640px; }
.about__copy h2 { margin: 14px 0 28px; font-weight: 400; }
.about__copy p { font-size: 1.08rem; margin-bottom: 18px; }
.about__pillrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.pill {
  display: inline-flex;
  padding: 8px 16px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
}
@media (max-width: 880px) {
  .about__photo { height: 380px; }
}

/* ============ Quote CTA ============ */
.quote-cta {
  padding: 100px 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.quote-cta::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(184,65,14,.25), transparent 70%);
  pointer-events: none;
}
.quote-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.quote-cta__copy h2 { color: var(--paper); margin: 14px 0 18px; font-weight: 400; }
.quote-cta__copy p { color: #d6cdb8; font-size: 1.05rem; max-width: 560px; }
.quote-cta .label { color: var(--gold); }
.quote-cta .label::before { background: var(--gold); }
@media (max-width: 880px) {
  .quote-cta__inner { grid-template-columns: 1fr; }
}

/* ============ Contact ============ */
.contact { padding: 120px 0; background: var(--paper); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact__info { display: flex; flex-direction: column; gap: 36px; }
.contact__block p { margin-top: 10px; font-size: 1.05rem; line-height: 1.7; }
.biglink {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -.01em;
  display: inline-block;
  margin-bottom: 4px;
}
.biglink:hover { color: var(--brand); }

.contact__form {
  background: var(--card);
  padding: 48px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.contact__form h3 { margin-bottom: 28px; font-weight: 500; font-size: 1.7rem; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label {
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  font-weight: 500;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
}
.field textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note {
  text-align: center;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem;
  margin-top: 14px;
}
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: rgba(44,138,95,.1);
  color: #2c8a5f;
  border-radius: var(--r-sm);
  text-align: center;
  font-weight: 600;
}
.form-success.is-visible { display: block; }

@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .contact__form { padding: 32px 24px; }
  .field-row { grid-template-columns: 1fr; }
}

/* ============ Footer ============ */
.footer {
  background: var(--ink);
  color: #b8b0a0;
  padding: 80px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 64px;
}
.footer__brand p { margin-top: 18px; font-size: .95rem; line-height: 1.7; max-width: 320px; }
.footer__col .label { color: var(--gold); margin-bottom: 18px; }
.footer__col .label::before { background: var(--gold); }
.footer__col a, .footer__col span {
  display: block;
  font-size: .92rem;
  padding: 5px 0;
  color: #b8b0a0;
  line-height: 1.5;
}
.footer__col a:hover { color: var(--paper); }
.footer__addr { font-family: 'JetBrains Mono', monospace; font-size: .82rem; }

.footer__bottom {
  border-top: 1px solid rgba(250,250,247,.08);
  padding: 24px 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: .78rem;
  color: #6b665c;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 880px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .topband__item .dot { animation: none; }
}
