/* SAWLINE — concept build · Rod & Staff Media · 2026-08-08
   bark black / sawdust amber / bone white · Big Shoulders + Work Sans */

:root {
  --bark: #121110;
  --bark-2: #1A1815;
  --panel: #17150F;
  --amber: #F2A93B;
  --amber-deep: #C77F1E;
  --bone: #EFEAE3;
  --mut: #8E857A;
  --hairline: rgba(239, 234, 227, 0.09);
  --font-disp: "Big Shoulders", system-ui, sans-serif;
  --font-body: "Work Sans", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  background: var(--bark);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--amber); color: var(--bark); }

/* ---------- header ---------- */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 20px;
  padding: 16px 28px;
  background: linear-gradient(to bottom, rgba(18,17,16,0.94), rgba(18,17,16,0));
}
.brand {
  font-family: var(--font-disp); font-weight: 900; font-size: 1.6rem;
  letter-spacing: 0.06em; color: var(--bone); text-decoration: none;
}
.brand span { color: var(--amber); }
.hdr-note { margin-left: auto; font-size: 0.68rem; letter-spacing: 0.18em; color: var(--mut); }
@media (max-width: 700px) { .hdr-note { display: none; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; cursor: pointer; text-decoration: none; text-align: center;
  font-family: var(--font-disp); font-weight: 700; letter-spacing: 0.14em; font-size: 0.85rem;
  padding: 13px 24px; border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-amber { background: var(--amber); color: var(--bark); }
.btn-amber:hover { background: var(--bone); }
.btn-line { border-color: rgba(239,234,227,0.3); color: var(--bone); }
.btn-line:hover { border-color: var(--amber); color: var(--amber); }
.btn-big { font-size: 1.05rem; padding: 18px 44px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; }
.hero-media {
  position: absolute; inset: 0;
  background: var(--bark-2) url("../assets/hero.webp") center/cover no-repeat;
  transform: scale(1.05);
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(18,17,16,0.62), rgba(18,17,16,0.18) 45%, rgba(18,17,16,0.85)); }
.hero-inner { position: relative; z-index: 3; text-align: center; padding: 0 20px; max-width: 1100px; }
.hero-kicker { font-family: var(--font-disp); font-weight: 600; letter-spacing: 0.34em; font-size: 0.8rem; color: var(--amber); margin-bottom: 10px; }

/* the cut — stacked halves of the wordmark */
.cut-wrap { position: relative; display: inline-block; line-height: 0.9; }
.cut-title {
  display: block; font-family: var(--font-disp); font-weight: 900;
  font-size: clamp(4.5rem, 17vw, 15rem); letter-spacing: 0.02em; color: var(--bone);
  user-select: none;
}
.cut-top { clip-path: inset(0 0 48% 0); }
.cut-bottom { position: absolute; inset: 0; clip-path: inset(52% 0 0 0); }
.cut-line {
  position: absolute; left: -4%; right: -4%; top: 50%; width: 108%; height: 3px;
  transform: translateY(-50%); z-index: 2;
}
.hero-sub { max-width: 520px; margin: 26px auto 32px; color: rgba(239,234,227,0.85); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.storm-tag {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  font-family: var(--font-disp); font-weight: 700; letter-spacing: 0.22em; font-size: 0.72rem;
  color: var(--amber); border: 1px solid rgba(242,169,59,0.45); padding: 9px 16px;
  background: rgba(18,17,16,0.65);
}

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: 14px 0; background: var(--amber); }
.marquee-track { display: flex; white-space: nowrap; will-change: transform; }
.marquee-track span {
  font-family: var(--font-disp); font-weight: 900; text-transform: uppercase;
  font-size: clamp(1.3rem, 3vw, 2.2rem); letter-spacing: 0.05em; color: var(--bark);
}

/* ---------- sections ---------- */
section { padding: 110px 6vw; position: relative; }
.sec-head { margin-bottom: 46px; }
.sec-kicker {
  display: block; font-family: var(--font-disp); font-weight: 600;
  letter-spacing: 0.3em; font-size: 0.72rem; color: var(--amber); margin-bottom: 12px;
}
.sec-title {
  font-family: var(--font-disp); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 0.92; position: relative;
}
.sec-title .title-cut { position: absolute; left: 0; bottom: -14px; width: min(280px, 40%); height: 3px; }

/* ---------- service rows ---------- */
.rows { border-top: 1px solid var(--hairline); }
.row {
  display: grid; grid-template-columns: 70px 1fr auto 40px; align-items: center; gap: 20px;
  padding: 26px 10px; border-bottom: 1px solid var(--hairline);
  text-decoration: none; color: var(--bone);
  transition: background 0.25s, padding-left 0.25s;
}
.row:hover { background: rgba(242,169,59,0.07); padding-left: 22px; }
.row-num { font-family: var(--font-disp); font-weight: 600; color: var(--amber); font-size: 1rem; letter-spacing: 0.1em; }
.row-name { font-family: var(--font-disp); font-weight: 800; font-size: clamp(1.4rem, 3.2vw, 2.4rem); letter-spacing: 0.03em; }
.row-desc { color: var(--mut); font-size: 0.92rem; text-align: right; }
.row-arrow { color: var(--amber); font-size: 1.3rem; opacity: 0; transform: translateX(-8px); transition: all 0.25s; }
.row:hover .row-arrow { opacity: 1; transform: none; }
@media (max-width: 760px) { .row { grid-template-columns: 50px 1fr; } .row-desc, .row-arrow { display: none; } }

/* ---------- gallery ---------- */
.work { background: var(--bark-2); }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 700px) { .gallery { grid-template-columns: 1fr; } }
.shot { position: relative; overflow: hidden; background: var(--panel); }
.shot-img {
  width: 100%; height: 100%; min-height: 340px;
  background-size: cover; background-position: center;
  transform: scale(1.12); will-change: transform;
}
.shot-tall .shot-img { min-height: 480px; }
.shot-wide { grid-column: 1 / -1; }
.shot-wide .shot-img { min-height: 380px; }
.shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 18px;
  font-family: var(--font-disp); font-weight: 700; letter-spacing: 0.16em; font-size: 0.78rem;
  color: var(--bone); background: linear-gradient(to top, rgba(18,17,16,0.9), transparent);
}
.img-climb { background-image: url("../assets/climb.webp"); }
.img-crane { background-image: url("../assets/crane.webp"); }
.img-stump { background-image: url("../assets/stump.webp"); }
.img-lot   { background-image: url("../assets/lot.webp"); }
.img-storm { background-image: url("../assets/storm.webp"); }
.img-gear  { background-image: url("../assets/gear.webp"); }

/* ---------- stats ---------- */
.stats-band {
  display: flex; justify-content: center; gap: 9vw; flex-wrap: wrap;
  background: var(--amber); color: var(--bark); padding: 70px 6vw;
}
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-disp); font-weight: 900; font-size: clamp(3rem, 8vw, 5.5rem); line-height: 1; }
.stat-label { font-family: var(--font-disp); font-weight: 700; letter-spacing: 0.22em; font-size: 0.75rem; }

/* ---------- why ---------- */
.why { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; } }
.why-media { overflow: hidden; aspect-ratio: 4 / 5; }
.why-media .shot-img { height: 100%; }
.why-copy p { max-width: 480px; color: rgba(239,234,227,0.8); margin: 22px 0 26px; }
.creds { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; max-width: 480px; }
.creds li {
  font-family: var(--font-disp); font-weight: 700; letter-spacing: 0.14em; font-size: 0.78rem;
  border: 1px solid var(--hairline); padding: 12px 14px; color: var(--bone);
}
.creds li::before { content: "— "; color: var(--amber); }

/* ---------- quote ---------- */
.quote { text-align: center; background: var(--bark-2); padding: 140px 6vw; }
.cta-title {
  font-family: var(--font-disp); font-weight: 900; text-transform: uppercase;
  font-size: clamp(3rem, 10vw, 8rem); line-height: 0.92; margin-bottom: 46px;
}
.cta-title .line { display: block; }
#quoteForm { max-width: 760px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 22px; text-align: left; }
@media (max-width: 760px) { .form-grid { grid-template-columns: 1fr; } }
#quoteForm label {
  font-family: var(--font-disp); font-weight: 600; letter-spacing: 0.2em; font-size: 0.68rem; color: var(--mut);
}
#quoteForm input, #quoteForm select {
  display: block; width: 100%; margin-top: 7px; padding: 13px 13px;
  background: var(--bark); border: 1px solid var(--hairline); color: var(--bone);
  font-family: var(--font-body); font-size: 0.95rem;
}
#quoteForm input:focus, #quoteForm select:focus { outline: none; border-color: var(--amber); }
.form-sent { display: none; margin-top: 20px; color: var(--amber); font-family: var(--font-disp); font-weight: 600; letter-spacing: 0.12em; font-size: 0.85rem; }
.quote.sent #quoteForm { display: none; }
.quote.sent .form-sent { display: block; }

/* ---------- footer / badge ---------- */
footer { border-top: 1px solid var(--hairline); padding: 32px 6vw 44px; text-align: center; font-family: var(--font-disp); letter-spacing: 0.14em; font-size: 0.8rem; }
.foot-note { margin-top: 10px; color: var(--mut); font-family: var(--font-body); letter-spacing: 0; font-size: 0.75rem; max-width: 560px; margin-inline: auto; }
.badge-concept {
  position: fixed; bottom: 18px; left: 18px; z-index: 60;
  background: rgba(18,17,16,0.85); border: 1px solid rgba(242,169,59,0.6);
  color: var(--amber); padding: 6px 10px; font-size: 0.58rem; letter-spacing: 0.2em;
  font-family: var(--font-disp); font-weight: 700;
}

/* ---------- reveal prep ---------- */
.js .sec-title, .js .cta-title { visibility: hidden; }
.js.fonts-ready .sec-title, .js.fonts-ready .cta-title { visibility: visible; }

@media (prefers-reduced-motion: reduce) {
  .js .sec-title, .js .cta-title { visibility: visible; }
  .shot-img { transform: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
