/* One Man One Stump | design + build: littleoceans */

@font-face {
  font-family: 'Jost';
  src: url('/assets/fonts/jost-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --bone: #F3F1EA;
  --card: #FFFFFF;
  --bark: #29221E;
  --bark-2: #352C26;
  --ink: #29221E;
  --ink-soft: #5D554D;
  --moss: #6B7050;
  --moss-dark: #51563B;
  --chip: #B7A67F;
  --rule: #DDD8CC;
  --on-bark: #F3F1EA;
  --on-bark-soft: #C6BFB4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: 'Jost', 'Avenir Next', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--moss-dark); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--moss); outline-offset: 2px; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 22px; }

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--moss-dark);
  margin-bottom: 10px;
}
.on-dark .eyebrow { color: var(--chip); }

h1, h2, h3 { line-height: 1.15; text-wrap: balance; margin: 0 0 14px; font-weight: 500; letter-spacing: 0.005em; }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: 21px; font-weight: 600; }
p { margin: 0 0 16px; max-width: 66ch; }
.soft { color: var(--ink-soft); }

/* ---------- header ---------- */
.site-head {
  background: var(--bone);
  border-bottom: 1px solid var(--rule);
}
.site-head .bar {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { width: 52px; height: auto; mix-blend-mode: multiply; }
.brand .name { font-size: 19px; font-weight: 600; letter-spacing: 0.02em; line-height: 1.15; }
.brand .strap { font-size: 12.5px; color: var(--ink-soft); letter-spacing: 0.04em; }
.site-head nav { margin-left: auto; display: flex; gap: 22px; align-items: center; }
.site-head nav a {
  text-decoration: none; color: var(--ink); font-weight: 500; font-size: 15.5px;
  border-bottom: 2px solid transparent; padding: 2px 0;
}
.site-head nav a:hover { border-bottom-color: var(--moss); }
.site-head nav a[aria-current="page"] { border-bottom-color: var(--moss); }
.head-call {
  background: var(--moss); color: #fff !important; border-bottom: none !important;
  padding: 10px 18px !important; font-weight: 600 !important;
  letter-spacing: 0.03em;
}
.head-call:hover { background: var(--moss-dark); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: 16px;
  padding: 15px 28px; letter-spacing: 0.04em;
  border: 2px solid var(--moss);
}
.btn.solid { background: var(--moss); color: #fff; }
.btn.solid:hover { background: var(--moss-dark); border-color: var(--moss-dark); }
.btn.ghost { color: var(--ink); border-color: var(--bark); }
.btn.ghost:hover { background: var(--bark); color: var(--bone); }
.on-dark .btn.ghost { color: var(--on-bark); border-color: var(--on-bark); }
.on-dark .btn.ghost:hover { background: var(--bone); color: var(--bark); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--bark);
  color: var(--on-bark);
  overflow: hidden;
}
.hero .photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.55;
}
.hero .tint {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(24,19,16,0.92) 0%, rgba(24,19,16,0.55) 55%, rgba(24,19,16,0.25) 100%);
}
.hero .wrap { position: relative; padding-top: 92px; padding-bottom: 96px; }
.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  max-width: 15ch;
  margin-bottom: 18px;
}
.hero .lede { font-size: 19px; max-width: 46ch; color: #E4DFD5; margin-bottom: 30px; }
.hero .rings {
  position: absolute; right: -110px; bottom: -110px; width: 340px; height: 340px;
  opacity: 0.35; pointer-events: none;
}

/* ---------- trust strip ---------- */
.trust {
  background: var(--bark-2); color: var(--on-bark);
  border-top: 1px solid rgba(243,241,234,0.12);
}
.trust ul {
  list-style: none; margin: 0 auto; padding: 18px 22px;
  max-width: 1260px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center;
}
.trust li {
  font-size: 13.5px; letter-spacing: 0.04em; font-weight: 500;
  display: flex; align-items: center; gap: 8px; color: var(--on-bark-soft);
  white-space: nowrap;
}
.trust li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--chip); flex: none;
}

/* ---------- sections ---------- */
section { padding: 76px 0; }
section.dark { background: var(--bark); color: var(--on-bark); }
section.dark p { color: #D8D2C7; }
.section-head { max-width: 60ch; margin-bottom: 40px; }

/* ---------- service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
  background: var(--card);
  border: 2px solid var(--bark);
  box-shadow: 8px 8px 0 var(--moss);
  display: flex; flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translate(-2px, -2px); box-shadow: 12px 12px 0 var(--moss); }
.card img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border-bottom: 2px solid var(--bark); }
.card .body { padding: 24px 24px 26px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 14px; }
.card .more { font-weight: 600; text-decoration: none; letter-spacing: 0.03em; font-size: 15px; }
.card .more::after { content: " \2192"; }

/* ---------- process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step { border-top: 2px solid var(--chip); padding-top: 18px; }
.step .n {
  font-size: 54px; font-weight: 500; line-height: 1; color: var(--chip);
  font-variant-numeric: tabular-nums; display: block; margin-bottom: 10px;
}
.step h3 { color: var(--on-bark); }
.step p { font-size: 15.5px; }

/* ---------- machines ---------- */
.machine {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 34px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--rule);
}
.machine:last-of-type { border-bottom: 1px solid var(--rule); }
.machine:nth-child(even) .shot { order: 2; }
.machine .shot {
  border: 2px solid var(--bark);
  aspect-ratio: 4 / 3; object-fit: cover; width: 100%; height: auto;
}
.machine h3 { margin-bottom: 4px; }
.machine .use { font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--moss-dark); font-weight: 600; margin-bottom: 12px; }
.machine p { font-size: 16px; margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.chips li {
  font-size: 13.5px; font-weight: 500; letter-spacing: 0.03em;
  border: 1.5px solid var(--moss); color: var(--moss-dark);
  padding: 4px 12px;
}

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: 44px; align-items: start; }
.about-grid img { border: 2px solid var(--on-bark); width: 100%; height: auto; }
.tickets { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 8px; }
.tickets li { padding-left: 22px; position: relative; font-size: 15.5px; color: #D8D2C7; }
.tickets li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; background: var(--chip); }

/* ---------- areas strip / lists ---------- */
.county { border-top: 1px solid var(--rule); padding: 26px 0; display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 8fr); gap: 18px 34px; }
.county:last-of-type { border-bottom: 1px solid var(--rule); }
.county h3 { margin: 0; }
.county p { margin: 0; font-size: 16px; color: var(--ink-soft); max-width: none; }
.county p b { color: var(--ink); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .phone-big {
  font-size: clamp(30px, 5vw, 46px); font-weight: 600; letter-spacing: 0.02em;
  color: var(--on-bark); text-decoration: none; display: inline-block; margin: 6px 0 18px;
}
.cta-band .phone-big:hover { color: var(--chip); }

/* ---------- footer ---------- */
footer {
  background: var(--bark-2); color: var(--on-bark-soft);
  padding: 40px 0 44px;
  font-size: 14.5px;
}
@media (max-width: 860px) {
  footer { padding-bottom: 130px; } /* room for the sticky call bar */
}
footer .cols { display: flex; flex-wrap: wrap; gap: 18px 44px; justify-content: space-between; align-items: start; }
footer a { color: var(--on-bark); }
footer .credit { margin-top: 26px; font-size: 13px; }
footer .credit a { color: var(--on-bark-soft); }

/* ---------- sticky mobile call bar ---------- */
.call-bar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--moss);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
}
.call-bar a {
  display: block; text-align: center; text-decoration: none;
  color: #fff; font-weight: 600; font-size: 18px; letter-spacing: 0.03em;
  border: 2px solid rgba(255,255,255,0.9); padding: 12px;
}

/* ---------- reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- mobile ---------- */
@media (max-width: 860px) {
  .cards, .steps { grid-template-columns: 1fr; }
  .machine, .about-grid, .county { grid-template-columns: 1fr; }
  .machine:nth-child(even) .shot { order: 0; }
  .about-grid img { max-width: 340px; margin: 0 auto; }
  section { padding: 56px 0; }

  /* centred, balanced mobile layout */
  .site-head .bar { flex-direction: column; gap: 10px; text-align: center; }
  .brand { flex-direction: column; gap: 6px; }
  .site-head nav { margin: 0 auto; flex-wrap: wrap; justify-content: center; gap: 14px 18px; }
  .head-call { display: none; }
  .hero .wrap { padding-top: 60px; padding-bottom: 64px; text-align: center; }
  .hero h1, .hero .lede { margin-left: auto; margin-right: auto; }
  .btn-row { justify-content: center; }
  .section-head, .cta-band { text-align: center; }
  .section-head p { margin-left: auto; margin-right: auto; }
  .call-bar { display: block; }
}
