/* =============================================================================
   Sawtooth Euro — shared stylesheet
   Look: outfitter's catalog. Warm paper, charcoal ink, burnt-rust accent,
   slab-serif display, thin rules and letter-spaced labels.
   ========================================================================== */

:root {
  --paper:    #f2ece0;
  --paper-2:  #e8dfcd;
  --card:     #faf6ee;
  --ink:      #1f1d1a;
  --ink-2:    #45403a;
  --ink-3:    #6b6458;
  --rule:     #cdbfa6;
  --rust:     #a3431c;
  --rust-2:   #7f3312;
  --rust-lt:  #f3dccd;
  --tag:      #e3b440;

  --display: 'Zilla Slab', 'Rockwell', 'Roboto Slab', Georgia, serif;
  --body:    'Source Sans 3', 'Source Sans Pro', 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, 'Cascadia Mono', Consolas, monospace;

  --wrap: 1180px;
  --gutter: clamp(20px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
main { flex: 1; }

/* Paper grain — a fixed noise layer multiplied over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .32;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .35  0 0 0 0 .28  0 0 0 0 .2  0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--rust); color: var(--paper); }

:focus-visible { outline: 2px solid var(--rust); outline-offset: 3px; }

/* Keep in-page anchors (#pricing etc.) clear of the sticky header */
[id] { scroll-margin-top: 100px; }

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

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 2000;
  background: var(--ink); color: var(--paper); padding: 10px 16px;
  font-family: var(--mono); font-size: 13px; text-decoration: none;
}
.skip:focus { top: 12px; }

/* ── Type primitives ─────────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.01em;
  color: var(--ink);
}
h1 { font-size: clamp(44px, 6.6vw, 88px); }
h2 { font-size: clamp(32px, 4.2vw, 52px); }
h3 { font-size: 26px; font-weight: 600; }
h4 { font-size: 21px; font-weight: 600; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rust);
}
.label::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: currentColor;
}

.mono { font-family: var(--mono); font-size: 13px; letter-spacing: .02em; }

.lede {
  font-size: clamp(18px, 1.6vw, 20px);
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 34em;
}

.prose p { color: var(--ink-2); max-width: 36em; }
.prose p + p { margin-top: 1em; }

/* ── Buttons ─────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px 14px;
  background: var(--rust);
  color: var(--paper);
  border: 1.5px solid var(--rust);
  border-radius: 2px;
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.btn:hover { background: var(--rust-2); border-color: var(--rust-2); }
.btn:active { transform: translateY(1px); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-line {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-line:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.btn-paper { background: var(--paper); color: var(--rust-2); border-color: var(--paper); }
.btn-paper:hover { background: var(--card); border-color: var(--card); color: var(--rust-2); }

.textlink {
  color: var(--rust);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}
.textlink:hover { color: var(--rust-2); }

/* ── Top bar + header ────────────────────────────────────────────────── */

.topbar {
  background: var(--ink);
  color: #d9cfbd;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.topbar a { color: var(--paper); text-decoration: none; }
.topbar a:hover { color: var(--tag); }
.topbar .dot { color: var(--tag); padding: 0 .5em; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 236, 224, .94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 3px double var(--ink);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 58px;
  height: 58px;
  flex: none;
  filter: drop-shadow(0 1px 1px rgba(31, 29, 26, .18));
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .01em;
}
.brand-sub {
  margin-top: 5px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.nav { display: flex; align-items: center; gap: 34px; }
.nav ul { display: flex; gap: 30px; list-style: none; padding: 0; }
.nav ul a {
  position: relative;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-2);
  padding: 6px 0;
  transition: color .2s;
}
.nav ul a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav ul a:hover { color: var(--ink); }
.nav ul a:hover::after,
.nav ul a[aria-current="page"]::after { transform: scaleX(1); }
.nav ul a[aria-current="page"] { color: var(--ink); }
.nav .btn { padding: 12px 18px 11px; font-size: 12.5px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  padding: 9px 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}

/* ── Ridgeline divider (the Sawtooth range, drawn as a rule) ────────── */

.ridge {
  display: block;
  width: 100%;
  height: 46px;
  color: var(--ink);
}
.ridge path { vector-effect: non-scaling-stroke; }

/* ── Sections ────────────────────────────────────────────────────────── */

.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-tight { padding: clamp(48px, 6vw, 72px) 0; }
.band { background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px 60px;
  align-items: end;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.section-head h2 { margin-top: 14px; }
.section-head .lede { justify-self: end; }
.section-head.solo { grid-template-columns: 1fr; }

/* ── Hero (home) ─────────────────────────────────────────────────────── */

.hero { padding: clamp(40px, 6vw, 80px) 0 clamp(24px, 3vw, 40px); }
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.hero h1 { margin: 22px 0 26px; }
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--rust);
}
.hero .lede { margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--ink-3);
  list-style: none;
  padding-left: 0;
}
.spec-row li::before { content: "✓ "; color: var(--rust); }

.hero-photo { position: relative; justify-self: end; width: 100%; max-width: 480px; }
.hero-photo .frame {
  background: var(--card);
  border: 1px solid var(--ink);
  padding: 12px 12px 44px;
  box-shadow: 10px 10px 0 var(--paper-2), 10px 10px 0 1px var(--rule);
}
.hero-photo img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }
.hero-photo .frame-cap {
  position: absolute;
  left: 24px; bottom: 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
}

/* Hang tag — hole, string, stamped lines */
.hang-tag {
  position: absolute;
  top: 34px;
  left: -46px;
  width: 150px;
  padding: 30px 14px 14px;
  background: var(--tag);
  color: var(--ink);
  border-radius: 4px 4px 4px 4px;
  clip-path: polygon(22% 0, 78% 0, 100% 14%, 100% 100%, 0 100%, 0 14%);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.45;
  transform: rotate(-6deg);
  transform-origin: 50% 12px;
  box-shadow: 0 8px 18px rgba(31, 29, 26, .18);
  animation: swing 1.6s cubic-bezier(.3, 1.6, .5, 1) .5s both;
}
.hang-tag::before {
  content: "";
  position: absolute;
  top: 9px; left: 50%;
  width: 12px; height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--card);
  box-shadow: inset 0 0 0 2px rgba(31, 29, 26, .35);
}
.hang-tag strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.hang-tag hr { border: 0; border-top: 1px dashed rgba(31, 29, 26, .45); margin: 8px 0; }

@keyframes swing {
  0%   { transform: rotate(-24deg); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: rotate(-6deg); opacity: 1; }
}

/* Load-in stagger */
.rise { animation: rise .8s cubic-bezier(.2, .7, .2, 1) both; }
.rise-2 { animation-delay: .08s; }
.rise-3 { animation-delay: .16s; }
.rise-4 { animation-delay: .24s; }
.rise-5 { animation-delay: .32s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

/* Scroll reveal (class added by main.js only when JS runs) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.js .reveal.in { opacity: 1; transform: none; }

/* ── Services trio ───────────────────────────────────────────────────── */

.trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.trio > article {
  padding: 36px 32px 40px;
  border-left: 1px solid var(--rule);
}
.trio > article:first-child { border-left: 0; padding-left: 0; }
.trio > article:last-child { padding-right: 0; }
.numeral {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: var(--rust);
  margin-bottom: 18px;
}
.trio h3 { margin-bottom: 12px; }
.trio p { color: var(--ink-2); font-size: 16.5px; }
.trio .spec {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px dashed var(--rule);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Price list (catalog leaders) ────────────────────────────────────── */

.price-wrap {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.pricelist {
  background: var(--card);
  border: 1px solid var(--ink);
  padding: 30px clamp(20px, 3vw, 38px) 26px;
  position: relative;
}
.pricelist::after {                /* inner hairline, like a printed card */
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--rule);
  pointer-events: none;
}
.pricelist-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pricelist ul { list-style: none; padding: 0; }
.pricelist li {
  display: flex;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
}
.pricelist li:last-child { border-bottom: 0; }
.pricelist .item { font-family: var(--display); font-weight: 600; font-size: 21px; line-height: 1.15; }
.pricelist .item small {
  display: block;
  margin-top: 3px;
  font-family: var(--body);
  font-weight: 400;
  font-size: 13.5px;
  color: var(--ink-3);
}
.pricelist .leader {
  flex: 1;
  min-width: 24px;
  margin: 0 12px;
  border-bottom: 2px dotted var(--ink-3);
  transform: translateY(-5px);
  opacity: .55;
}
.pricelist .price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  color: var(--rust);
  white-space: nowrap;
}
.pricelist .price.quote { font-size: 17px; font-weight: 600; font-style: italic; }
.pricelist-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid var(--ink);
  font-size: 14.5px;
  color: var(--ink-2);
}

/* ── Photo grid (home feature) ───────────────────────────────────────── */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(150px, 17vw, 220px);
  gap: 14px;
}
.feature-grid figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.feature-grid figure:nth-child(2) { grid-column: span 2; grid-row: span 2; }
.feature-grid figure:nth-child(3) { grid-column: span 2; }
.feature-grid figure:nth-child(4) { grid-column: span 2; }
.feature-grid figure:nth-child(5) { grid-column: span 3; }
.feature-grid figure:nth-child(6) { grid-column: span 3; }

.shot { position: relative; overflow: hidden; background: var(--paper-2); }
/* Skulls sit low in most of the photos, so bias crops toward the bottom */
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 80%; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.shot:hover img { transform: scale(1.035); }
.shot figcaption,
.shot .no {
  position: absolute;
  left: 10px; bottom: 10px;
  background: var(--card);
  color: var(--ink);
  padding: 4px 8px 3px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  border: 1px solid var(--ink);
}

/* ── Process steps ───────────────────────────────────────────────────── */

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  counter-reset: step;
  list-style: none;
  padding: 0;
}
.steps li {
  position: relative;
  padding: 30px 26px 0 0;
  border-top: 2px solid var(--ink);
}
.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 64px;
  line-height: .9;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--rust);
  margin-bottom: 16px;
}
.steps li::after {                  /* tick on the rule */
  content: "";
  position: absolute;
  top: -8px; left: 0;
  width: 2px; height: 14px;
  background: var(--ink);
}
.steps h4 { margin-bottom: 8px; }
.steps p { font-size: 16px; color: var(--ink-2); }

/* ── Species chips ───────────────────────────────────────────────────── */

.chips { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; }
.chips li {
  padding: 8px 14px 7px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--card);
}

/* ── CTA band ────────────────────────────────────────────────────────── */

.cta {
  position: relative;
  background: var(--rust);
  color: var(--paper);
  overflow: hidden;
}
.cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px 40px;
  padding-top: clamp(52px, 7vw, 84px);
  padding-bottom: clamp(70px, 9vw, 110px);
  position: relative;
  z-index: 1;
}
.cta h2 { color: var(--paper); max-width: 15em; }
.cta p { color: var(--rust-lt); margin-top: 12px; max-width: 34em; }
.cta .ridge {                      /* ink mountains that run into the footer */
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 70px;
  color: var(--ink);
}

/* ── Inner page head ─────────────────────────────────────────────────── */

.page-head { padding: clamp(48px, 7vw, 88px) 0 0; }
.crumbs {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  margin-bottom: 26px;
}
.crumbs a { text-decoration: none; color: var(--ink-3); }
.crumbs a:hover { color: var(--rust); }
.page-head h1 { margin: 18px 0 22px; }
.page-head .ridge { margin-top: clamp(40px, 5vw, 64px); }

/* ── Services detail rows ────────────────────────────────────────────── */

.service-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px clamp(28px, 4vw, 60px);
  padding: 44px 0;
  border-top: 1px solid var(--rule);
}
.service-row:first-child { border-top: 2px solid var(--ink); }
.service-row .numeral { font-size: 56px; margin: 0; }
.service-row h3 { font-size: clamp(26px, 2.6vw, 34px); margin-bottom: 14px; }
.service-row .facts { list-style: none; padding: 0; font-size: 15.5px; color: var(--ink-2); }
.service-row .facts li { padding: 10px 0; border-bottom: 1px dashed var(--rule); display: flex; gap: 12px; }
.service-row .facts li:first-child { padding-top: 0; }
.service-row .facts b { font-family: var(--mono); font-weight: 500; font-size: 12px; color: var(--rust); letter-spacing: .06em; text-transform: uppercase; min-width: 88px; padding-top: 3px; }

/* ── FAQ ─────────────────────────────────────────────────────────────── */

.faq { border-top: 2px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 21px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--mono);
  font-weight: 400;
  font-size: 22px;
  color: var(--rust);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 24px; color: var(--ink-2); max-width: 44em; }

/* ── Gallery ─────────────────────────────────────────────────────────── */

.masonry { columns: 3 300px; column-gap: 16px; }
.masonry .shot {
  display: block;
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  break-inside: avoid;
}
.masonry .shot img { height: auto; }

.lightbox {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(24, 22, 19, .96);
  color: var(--paper);
}
.lightbox[open] { display: grid; grid-template-rows: auto 1fr; }
.lightbox::backdrop { background: rgba(24, 22, 19, .8); }
.lb-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  font-family: var(--mono);
  font-size: 13px;
  color: #cfc5b3;
}
.lb-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 72px 32px;
  min-height: 0;
}
.lb-stage img { max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 20px 60px rgba(0, 0, 0, .5); }
.lb-btn {
  background: none;
  border: 1px solid #5e574c;
  color: var(--paper);
  width: 46px; height: 46px;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 20px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.lb-btn:hover { border-color: var(--tag); background: rgba(227, 180, 64, .1); }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); }
.lb-prev { left: 14px; }
.lb-next { right: 14px; }

/* ── Contact ─────────────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.facts-list { list-style: none; padding: 0; border-top: 2px solid var(--ink); }
.facts-list li { padding: 20px 0; border-bottom: 1px solid var(--rule); }
.facts-list .k {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 4px;
}
.facts-list .v { font-family: var(--display); font-size: 23px; font-weight: 600; line-height: 1.2; }
.facts-list .v a { text-decoration: none; }
.facts-list .v a:hover { color: var(--rust); }
.facts-list .note { font-size: 15px; color: var(--ink-3); margin-top: 4px; }

.field-notes {
  margin-top: 32px;
  padding: 24px 26px 22px;
  background: var(--card);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--rust);
}
.field-notes h4 { font-size: 19px; margin-bottom: 10px; }
.field-notes ul {                   /* ruled like a notebook, one rule per line */
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 30px;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 29px, rgba(163, 67, 28, .18) 29px, rgba(163, 67, 28, .18) 30px);
}

.form-card { background: var(--card); border: 1px solid var(--ink); }
.form-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 18px 30px 16px;
  border-bottom: 2px solid var(--ink);
}
.form-card-head h2 { font-size: 28px; }
.form-card-head .mono { color: var(--ink-3); font-size: 12px; }
.form-card form { padding: 28px 30px 30px; }

.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 7px;
}
.field label .opt { font-weight: 400; letter-spacing: .04em; text-transform: none; color: var(--ink-3); }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: #fffdf8;
  border: 1px solid var(--rule);
  border-bottom: 1.5px solid var(--ink-3);
  border-radius: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: #9b9384; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(163, 67, 28, .15);
}
.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231f1d1a' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.field textarea { resize: vertical; min-height: 140px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.form-foot .mono { color: var(--ink-3); font-size: 12px; }

.alert {
  margin: 0 30px;
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid var(--rust);
  border-left-width: 4px;
  background: var(--rust-lt);
  color: var(--rust-2);
  font-size: 15.5px;
}

/* ── Simple message pages (thank-you / 404) ─────────────────────────── */

.message-page { padding: clamp(72px, 12vw, 150px) 0; text-align: center; }
.message-page .label { justify-content: center; }
.message-page h1 { margin: 20px auto 20px; max-width: 12em; }
.message-page .lede { margin: 0 auto 34px; }
.message-page .hero-actions { justify-content: center; }
.big-no {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(90px, 16vw, 180px);
  line-height: .9;
  color: transparent;
  -webkit-text-stroke: 2px var(--rust);
}

/* ── Footer ──────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--ink);
  color: #cfc5b3;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding: 44px 0 48px;
}
.site-footer .brand { color: var(--paper); }
.site-footer .brand { gap: 16px; }
.site-footer .brand-mark { width: 96px; height: 96px; filter: none; }
.site-footer > .ridge { background: var(--paper); color: var(--ink); height: 56px; }
.site-footer .brand-sub { color: #a1978a; }
.site-footer p { margin-top: 16px; max-width: 26em; color: #a1978a; }
.site-footer h4 {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tag);
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { text-decoration: none; color: #e6ddcc; }
.site-footer a:hover { color: var(--tag); }
.footer-base {
  border-top: 1px solid #3a3630;
  padding: 18px 0 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: #8d8477;
}

/* ── Responsive ──────────────────────────────────────────────────────── */

@media (max-width: 1020px) {
  .hang-tag { left: -18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 40px 0; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 3px double var(--ink);
    padding: 8px var(--gutter) 22px;
    display: none;
  }
  .nav.open { display: flex; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav ul a { display: block; padding: 15px 0; border-bottom: 1px solid var(--rule); }
  .nav ul a::after { display: none; }
  .nav ul a[aria-current="page"] { color: var(--rust); }
  .nav .btn { margin-top: 18px; justify-content: center; }

  .hero .wrap,
  .price-wrap,
  .contact-grid,
  .section-head { grid-template-columns: 1fr; }
  .section-head .lede { justify-self: start; }
  .hero-photo { justify-self: center; max-width: 420px; margin-left: 30px; }

  .trio { grid-template-columns: 1fr; }
  .trio > article { border-left: 0; border-top: 1px solid var(--rule); padding: 30px 0; }
  .trio > article:first-child { border-top: 0; }

  .service-row { grid-template-columns: 1fr; gap: 14px; }

  .feature-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .feature-grid figure:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .feature-grid figure:nth-child(1) { grid-row: span 2; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .topbar .hide-sm { display: none; }
  .brand-name { font-size: 21px; }
  .brand-mark { width: 48px; height: 48px; }
  .site-header .wrap { height: 68px; }
  .hang-tag { width: 128px; left: -22px; top: 20px; font-size: 10.5px; }
  .hang-tag strong { font-size: 19px; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .form-card form { padding: 22px 20px 24px; }
  .form-card-head { padding: 16px 20px 14px; flex-direction: column; }
  .alert { margin: 18px 20px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricelist .item { font-size: 18.5px; }
  .pricelist .price { font-size: 21px; }
  .lb-stage { padding: 0 8px 70px; }
  .lb-prev, .lb-next { top: auto; bottom: 14px; transform: none; }
  .lb-prev { left: calc(50% - 56px); }
  .lb-next { right: calc(50% - 56px); }
}
