/* ============================================================
   LOTS & TRACTS LLC — Forestry Clearing · Earthmoving
   Rustic, gritty, paper-and-ink. Palette pulled from the
   business card: bone paper, ink black, machine-bucket orange.
   ============================================================ */

:root {
  --bone:    #EAE5D6;   /* card paper */
  --bone-2:  #E0DAC7;   /* darker paper */
  --bone-3:  #D4CDB6;   /* borders on paper */
  --ink:     #17140E;   /* card black */
  --ink-2:   #221E16;   /* raised ink panel */
  --ink-3:   #2E2920;   /* borders on ink */
  --orange:  #BD6730;   /* bucket orange */
  --orange-2:#A5531F;   /* hover */
  --brown:   #6E5F49;   /* muted earth */
  --faded:   #4A4334;   /* secondary text on paper */
  --faded-d: #B5AD97;   /* secondary text on ink */

  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Archivo", "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --shadow-stamp: 5px 5px 0 rgba(23, 20, 14, 0.9);
  --shadow-stamp-sm: 3px 3px 0 rgba(23, 20, 14, 0.9);
  --maxw: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bone);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* paper grain over the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }

a { color: inherit; }

::selection { background: var(--orange); color: var(--bone); }

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

/* ---------- type ---------- */

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.25rem; letter-spacing: 0.03em; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--orange);
  flex: none;
}

.lede { font-size: 1.1rem; color: var(--faded); max-width: 60ch; }
.on-dark .lede { color: var(--faded-d); }

.accent { color: var(--orange); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.95rem;
  padding: 15px 28px;
  border: 2px solid var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  white-space: nowrap;
}
.btn-solid {
  background: var(--orange);
  color: var(--bone);
  box-shadow: var(--shadow-stamp);
}
.btn-solid:hover {
  background: var(--orange-2);
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 rgba(23, 20, 14, 0.9);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(23, 20, 14, 0.07); }
.on-dark .btn-ghost,
.btn-ghost.light {
  color: var(--bone);
  border-color: var(--bone);
}
.on-dark .btn-ghost:hover,
.btn-ghost.light:hover { background: rgba(234, 229, 214, 0.1); }

/* ---------- top bar ---------- */

.topbar {
  background: var(--ink);
  color: var(--faded-d);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar a { color: var(--bone); text-decoration: none; }
.topbar a:hover { color: var(--orange); }
.topbar-links { display: flex; gap: 22px; align-items: center; }
@media (max-width: 720px) {
  .topbar-area { display: none; }
  .topbar-links { width: 100%; justify-content: space-between; gap: 12px; }
  .topbar-links a { white-space: nowrap; }
}
@media (max-width: 480px) {
  .topbar-links a[href^="mailto"] { display: none; }
  .topbar-links { justify-content: center; gap: 28px; }
}
@media (max-width: 420px) {
  .brand-name { font-size: 1.2rem; }
  .brand-name small { letter-spacing: 0.16em; }
}

/* ---------- header / nav ---------- */

.site-header {
  background: var(--bone);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--ink);
  flex: none;
  background: var(--bone);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-name small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--brown);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-links a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--ink);
  padding: 6px 2px;
  border-bottom: 3px solid transparent;
}
.nav-links a:not(.btn):hover { border-bottom-color: var(--bone-3); }
.nav-links a.active { border-bottom-color: var(--orange); }
.nav-links .btn { padding: 11px 20px; font-size: 0.85rem; box-shadow: var(--shadow-stamp-sm); }
.nav-links .btn:hover { transform: translate(1px, 1px); box-shadow: 2px 2px 0 rgba(23,20,14,.9); }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--ink);
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bone);
    border-bottom: 2px solid var(--ink);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 22px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--bone-3); }
  .nav-links li:last-child { border-bottom: 0; padding-top: 16px; }
  .nav-links a:not(.btn) { display: block; padding: 14px 2px; border-bottom: 0; }
  .nav-links a.active { color: var(--orange); }
  .nav-links .btn { width: 100%; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---------- sections ---------- */

section { padding: 90px 0; position: relative; }
@media (max-width: 720px) { section { padding: 64px 0; } }

.on-dark {
  background: var(--ink);
  color: var(--bone);
}
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--bone); }

.paper-2 { background: var(--bone-2); }

.section-head { margin-bottom: 52px; max-width: 760px; }
.section-head h2 { margin-bottom: 14px; }

/* torn brush-stroke divider between sections (echoes the card edges) */
.tear {
  display: block;
  width: 100%;
  height: 26px;
  margin-bottom: -1px;
}
.tear path { fill: var(--ink); }
.tear.flip { transform: scaleY(-1); margin-bottom: 0; margin-top: -1px; }
.tear.to-bone path { fill: var(--bone); }

/* ---------- hero ---------- */

.hero {
  background: var(--ink);
  color: var(--bone);
  padding: 96px 0 84px;
  position: relative;
  overflow: hidden;
}
/* faint contour lines, like a survey map */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cg fill='none' stroke='%236E5F49' stroke-width='1.2'%3E%3Cpath d='M-20 120 C 120 60, 240 180, 380 120 S 620 60, 720 140'/%3E%3Cpath d='M-20 180 C 120 120, 250 240, 390 180 S 620 120, 720 200'/%3E%3Cpath d='M-20 250 C 130 190, 260 310, 400 250 S 630 190, 720 270'/%3E%3Cpath d='M-20 330 C 130 270, 270 390, 410 330 S 630 270, 720 350'/%3E%3Cpath d='M-20 420 C 140 360, 280 480, 420 420 S 640 360, 720 440'/%3E%3Cpath d='M-20 510 C 140 450, 290 570, 430 510 S 640 450, 720 530'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 600px;
}
.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin: 0 0 22px; }
.hero .lede { margin-bottom: 36px; }
.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-ctas .btn-solid { border-color: var(--bone); box-shadow: 5px 5px 0 rgba(234, 229, 214, 0.25); }
.hero-ctas .btn-solid:hover { box-shadow: 3px 3px 0 rgba(234, 229, 214, 0.25); }

.hero-card {
  background: var(--bone);
  border: 2px solid var(--ink-3);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.45);
  padding: 18px 18px 14px;
}
.hero-card img { width: 100%; }
.hero-card figcaption {
  font-family: var(--font-mono);
  color: var(--brown);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
  padding-top: 10px;
}

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { max-width: 360px; margin: 0 auto; }
}

/* services ticker strip */
.ticker {
  border-top: 1px solid var(--ink-3);
  background: var(--ink-2);
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faded-d);
  animation: ticker 36s linear infinite;
  width: max-content;
}
.ticker-track span::after {
  content: "◆";
  color: var(--orange);
  margin-left: 48px;
  font-size: 0.6rem;
  vertical-align: 1px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ---------- trust bar ---------- */

.trustbar { background: var(--orange); padding: 0; }
.trustbar .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trustbar .item {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone);
  padding: 18px 18px;
  text-align: center;
  border-left: 1px solid rgba(23, 20, 14, 0.25);
}
.trustbar .item:first-child { border-left: 0; }
@media (max-width: 860px) {
  .trustbar .wrap { grid-template-columns: 1fr 1fr; }
  .trustbar .item:nth-child(3) { border-left: 0; }
  .trustbar .item { border-top: 1px solid rgba(23,20,14,.25); }
  .trustbar .item:nth-child(-n+2) { border-top: 0; }
}

/* ---------- service cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cards { grid-template-columns: 1fr; } }

.card {
  background: var(--bone);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-stamp);
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  position: relative;
}
a.card:hover { transform: translate(2px, 2px); box-shadow: var(--shadow-stamp-sm); }
.card .num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--brown);
}
.card .icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  color: var(--orange);
}
.card .icon svg { width: 100%; height: 100%; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--faded); font-size: 0.97rem; flex: 1; }
.card .more {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
}

/* ---------- video / work section ---------- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  gap: 36px;
  justify-content: center;
}
@media (max-width: 760px) { .video-grid { grid-template-columns: minmax(0, 380px); } }

.video-frame {
  background: var(--ink-2);
  border: 2px solid var(--ink-3);
  padding: 12px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.4);
}
.video-frame video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}
.video-frame figcaption {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faded-d);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
}
.video-frame figcaption b { color: var(--orange); font-weight: 600; }

/* ---------- split (who we work for / dev section) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

.panel {
  border: 2px solid var(--ink);
  background: var(--bone);
  box-shadow: var(--shadow-stamp);
  padding: 36px 34px;
}
.panel .eyebrow { margin-bottom: 10px; }
.panel h3 { font-size: 1.6rem; margin-bottom: 16px; }
.panel ul { list-style: none; margin-top: 8px; }
.panel li {
  padding: 11px 0 11px 30px;
  border-bottom: 1px solid var(--bone-3);
  position: relative;
  font-size: 0.99rem;
  color: var(--faded);
}
.panel li:last-child { border-bottom: 0; }
.panel li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 19px;
  width: 14px;
  height: 8px;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 78% 100%, 22% 100%); /* little dirt-pile wedge */
}

/* ---------- numbered "why us" ---------- */

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--ink-3);
}
@media (max-width: 980px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }
.why {
  padding: 34px 28px 38px;
  border-left: 2px solid var(--ink-3);
  background: var(--ink-2);
}
.why:first-child { border-left: 0; }
@media (max-width: 980px) {
  .why:nth-child(3) { border-left: 0; }
  .why:nth-child(n+3) { border-top: 2px solid var(--ink-3); }
}
@media (max-width: 600px) {
  .why { border-left: 0; }
  .why + .why { border-top: 2px solid var(--ink-3); }
}
.why .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}
.why h3 { font-size: 1.08rem; margin-bottom: 10px; }
.why p { color: var(--faded-d); font-size: 0.93rem; }

/* ---------- meet the owner ---------- */

.owner-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .owner-grid { grid-template-columns: 1fr; gap: 44px; } }

.owner-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 480px) { .owner-stats { grid-template-columns: 1fr; } }
.stat {
  border: 2px solid var(--ink);
  background: var(--bone);
  box-shadow: var(--shadow-stamp-sm);
  padding: 26px 24px 22px;
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 10px;
}
.stat span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faded);
}

/* ---------- testimonials ---------- */

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .quotes { grid-template-columns: 1fr; max-width: 640px; } }

.quote {
  background: var(--bone);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-stamp);
  padding: 34px 30px 28px;
  position: relative;
}
.quote::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 4.6rem;
  line-height: 0.6;
  color: var(--orange);
  display: block;
  margin-bottom: 18px;
}
.quote p { font-size: 1rem; color: var(--faded); font-style: italic; }
.quote footer {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--bone-3);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.quote footer small { display: block; color: var(--brown); font-weight: 400; margin-top: 4px; letter-spacing: 0.1em; }
.stars { color: var(--orange); letter-spacing: 3px; margin-bottom: 14px; font-size: 0.85rem; }

/* ---------- service area ---------- */

.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) { .area-grid { grid-template-columns: 1fr; } }
.area-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 30px;
}
.area-cols .county {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  color: var(--orange);
  margin: 18px 0 6px;
  grid-column: 1 / -1;
}
.area-cols .county:first-child { margin-top: 0; }
.area-cols span {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 0;
  border-bottom: 1px dashed var(--bone-3);
  color: var(--faded);
}
.on-dark .area-cols span { color: var(--faded-d); border-bottom-color: var(--ink-3); }

/* ---------- big CTA band ---------- */

.cta-band {
  background: var(--orange);
  color: var(--bone);
  text-align: center;
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin-bottom: 12px; color: var(--bone); }
.cta-band p {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 36px;
  color: rgba(234, 229, 214, 0.85);
}
.cta-band .phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: 0.02em;
  color: var(--bone);
  text-decoration: none;
  display: inline-block;
  border-bottom: 4px solid var(--ink);
  margin-bottom: 38px;
  line-height: 1.15;
}
.cta-band .phone:hover { color: var(--ink); }
.cta-band .btn { border-color: var(--ink); background: var(--ink); color: var(--bone); box-shadow: 5px 5px 0 rgba(23, 20, 14, 0.35); }
.cta-band .btn:hover { transform: translate(2px,2px); box-shadow: 3px 3px 0 rgba(23,20,14,.35); }

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--faded-d);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  padding-bottom: 54px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

.footer-brand img { width: 150px; mix-blend-mode: multiply; }
.footer-badge {
  background: var(--bone);
  width: 170px;
  padding: 10px;
  border: 2px solid var(--ink-3);
  box-shadow: 6px 6px 0 rgba(0,0,0,.4);
  margin-bottom: 22px;
}
.site-footer p { font-size: 0.92rem; max-width: 36ch; }

.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a {
  text-decoration: none;
  color: var(--faded-d);
  font-size: 0.95rem;
}
.site-footer ul a:hover { color: var(--bone); }
.footer-contact a { color: var(--bone); }
.footer-contact .tel {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
}
.footer-contact .tel:hover { color: var(--orange); }

.fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--ink-3);
  padding: 10px 18px;
  margin-top: 18px;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone);
}
.fb-btn:hover { border-color: var(--orange); color: var(--orange); }
.fb-btn svg { width: 16px; height: 16px; flex: none; }

.footer-bottom {
  border-top: 1px solid var(--ink-3);
  padding: 20px 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-bottom .wrap {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--faded-d); text-decoration: none; }
.footer-bottom a:hover { color: var(--bone); }

/* ---------- inner page hero ---------- */

.page-hero {
  background: var(--ink);
  color: var(--bone);
  padding: 78px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cg fill='none' stroke='%236E5F49' stroke-width='1.2'%3E%3Cpath d='M-20 120 C 120 60, 240 180, 380 120 S 620 60, 720 140'/%3E%3Cpath d='M-20 250 C 130 190, 260 310, 400 250 S 630 190, 720 270'/%3E%3Cpath d='M-20 420 C 140 360, 280 480, 420 420 S 640 360, 720 440'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 600px;
}
.page-hero .wrap { position: relative; }
.page-hero h1 { font-size: clamp(2.4rem, 5.4vw, 3.8rem); margin-bottom: 16px; }
.page-hero .lede { color: var(--faded-d); }

/* ---------- services page detail rows ---------- */

.svc-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 30px;
  padding: 44px 0;
  border-bottom: 2px solid var(--bone-3);
}
.svc-row:last-child { border-bottom: 0; }
.svc-row .icon { width: 56px; height: 56px; color: var(--orange); }
.svc-row .icon svg { width: 100%; height: 100%; }
.svc-row h3 { font-size: 1.5rem; margin-bottom: 12px; }
.svc-row h3 .tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--brown);
  vertical-align: middle;
  margin-left: 14px;
}
.svc-row p { color: var(--faded); max-width: 70ch; }
.svc-row .uses {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.svc-row .uses span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--bone-3);
  background: var(--bone);
  color: var(--faded);
  padding: 6px 12px;
}
@media (max-width: 640px) {
  .svc-row { grid-template-columns: 1fr; gap: 16px; }
}

/* ---------- gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr; } }
.shot {
  border: 2px solid var(--ink);
  background: var(--bone);
  padding: 10px 10px 8px;
  box-shadow: var(--shadow-stamp-sm);
}
.on-dark .shot {
  border-color: var(--ink-3);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
}
.shot img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.shot figcaption {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  padding-top: 8px;
}

/* ---------- contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--ink);
  color: var(--bone);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-stamp);
  padding: 40px 36px;
}
.contact-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.contact-card .role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}
.contact-card dl { display: grid; gap: 20px; }
.contact-card dt {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faded-d);
  margin-bottom: 4px;
}
.contact-card dd a {
  color: var(--bone);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.contact-card dd a:hover { color: var(--orange); }
.contact-card .note {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-3);
  font-size: 0.9rem;
  color: var(--faded-d);
}

/* form */
.intake {
  background: var(--bone);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-stamp);
  padding: 42px 38px;
}
@media (max-width: 560px) { .intake { padding: 30px 22px; } }
.intake h3 { font-size: 1.4rem; margin-bottom: 8px; }
.intake .sub { color: var(--faded); font-size: 0.95rem; margin-bottom: 30px; }

.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--ink);
}
.field label .req { color: var(--orange); }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  border: 2px solid var(--ink);
  background: #F4F0E4;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  border-radius: 0;
  -webkit-appearance: none;
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2317140E' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 3px solid var(--orange);
  outline-offset: -1px;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 18px;
}
@media (max-width: 560px) { .check-grid { grid-template-columns: 1fr; } }
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--bone-3);
  background: #F4F0E4;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 0.92rem;
  user-select: none;
}
.check:hover { border-color: var(--ink); }
.check input {
  accent-color: var(--orange);
  width: 17px;
  height: 17px;
  flex: none;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border: 2px solid var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}
.form-status.ok { display: block; background: #DCE5CE; }
.form-status.err { display: block; background: #EAD4C3; }

/* ---------- facebook strip ---------- */

.fb-strip {
  border: 2px solid var(--ink);
  background: var(--bone);
  box-shadow: var(--shadow-stamp);
  padding: 38px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.fb-strip h3 { font-size: 1.4rem; margin-bottom: 6px; }
.fb-strip p { color: var(--faded); font-size: 0.96rem; max-width: 52ch; }
.fb-strip .btn svg { width: 18px; height: 18px; }

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- utility ---------- */

.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
