/* ==========================================================================
   drewspringer.net — shared stylesheet
   Palette is a darkroom: warm near-black, bone paper, safelight amber.
   Type is editorial: Instrument Serif for voice, Inter Tight for reading,
   JetBrains Mono for anything that behaves like a label or a number.
   ========================================================================== */

/* --------------------------------------------------------------------------
   TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces — all warm. Nothing here is neutral grey. */
  --ink:        #0a0908;
  --ink-2:      #100e0b;
  --ink-3:      #17140f;
  --ink-4:      #201c16;

  /* Paper */
  --bone:       #f5f0e6;
  --bone-2:     #b5ada0;
  --bone-3:     #7c7466;
  --bone-4:     #4a4439;

  /* Safelight */
  --amber:      #e8833a;
  --amber-lift: #f29b57;
  --amber-deep: #b45f22;
  --amber-wash: rgba(232, 131, 58, 0.10);
  --amber-edge: rgba(232, 131, 58, 0.28);

  /* Supporting — used sparingly, for state only */
  --sage:       #7d9471;
  --rust:       #c05e4a;

  --rule:       rgba(245, 240, 230, 0.09);
  --rule-md:    rgba(245, 240, 230, 0.16);
  --rule-lg:    rgba(245, 240, 230, 0.26);

  --serif: 'Instrument Serif', 'Iowan Old Style', Georgia, serif;
  --sans:  'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --gutter:    clamp(1.25rem, 4vw, 2.5rem);
  --measure:   min(1240px, 100% - (var(--gutter) * 2));
  --measure-narrow: min(760px, 100% - (var(--gutter) * 2));
  --nav-h:     68px;

  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:    150ms;
  --t:         320ms;
  --t-slow:    620ms;
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--bone-2);
  background: var(--ink);
  overflow-x: hidden;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

::selection { background: var(--amber); color: var(--ink); }

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

/* Film grain. Fixed, screen-blended, barely there — it just kills the
   flat-vector-gradient look that reads as machine-made. */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   LAYOUT PRIMITIVES
   -------------------------------------------------------------------------- */
.wrap        { width: var(--measure); margin-inline: auto; }
.wrap-narrow { width: var(--measure-narrow); margin-inline: auto; }

.band        { padding-block: clamp(4.5rem, 11vw, 9rem); position: relative; }
.band--tight { padding-block: clamp(3rem, 7vw, 5.5rem); }
.band--sunk  { background: var(--ink-2); }

.rule { height: 1px; background: var(--rule); border: 0; }

/* Skip link — small thing, but it's the kind of detail that separates a real
   site from a generated one. */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 600;
}
.skip:focus { left: 12px; top: 12px; }

/* --------------------------------------------------------------------------
   TYPE
   -------------------------------------------------------------------------- */
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--bone);
  text-wrap: balance;
}

.display em {
  font-style: italic;
  color: var(--amber);
}

h1.display { font-size: clamp(2.75rem, 8vw, 6rem); }
h2.display { font-size: clamp(2.1rem, 5.2vw, 3.75rem); }
h3.display { font-size: clamp(1.6rem, 3vw, 2.25rem); line-height: 1.05; }

/* The mono eyebrow, with a numeral. Used to mark every major section. */
.marker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin-bottom: 1.75rem;
}
.marker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.marker .num { color: var(--amber); }

.lede {
  font-size: clamp(1.0625rem, 1.6vw, 1.3125rem);
  line-height: 1.55;
  color: var(--bone-2);
  text-wrap: pretty;
  max-width: 56ch;
}

.prose p { margin-bottom: 1.15em; max-width: 68ch; text-wrap: pretty; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--bone); font-weight: 600; }
.prose a {
  color: var(--bone);
  border-bottom: 1px solid var(--amber-edge);
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.prose a:hover { color: var(--amber); border-bottom-color: var(--amber); }

.tabular { font-family: var(--mono); font-variant-numeric: tabular-nums; }

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.6em;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              transform var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--amber); color: #1a0f05; font-weight: 600; }
.btn--primary:hover { background: var(--amber-lift); }

.btn--line { border-color: var(--rule-lg); color: var(--bone); }
.btn--line:hover { border-color: var(--bone); background: rgba(245,240,230,0.04); }

.btn--ghost { padding-inline: 0; color: var(--bone); }
.btn--ghost .arw { transition: transform var(--t) var(--ease-out); }
.btn--ghost:hover .arw { transform: translateX(5px); }

.btn--block { width: 100%; }

/* --------------------------------------------------------------------------
   NAV
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 400;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10, 9, 8, 0.82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--rule);
}

.nav__inner {
  width: var(--measure);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  font-family: var(--serif);
  font-size: 1.375rem;
  color: var(--bone);
  letter-spacing: -0.01em;
  margin-right: auto;
  white-space: nowrap;
}
.nav__logo .dot { color: var(--amber); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.875rem;
  color: var(--bone-2);
  position: relative;
  padding-block: 4px;
  transition: color var(--t-fast) var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--amber);
  transition: right var(--t) var(--ease-out);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { right: 0; }
.nav__links a[aria-current='page'] { color: var(--bone); }
.nav__links a[aria-current='page']::after { right: 0; }

.nav__cta {
  padding: 0.6em 1.15em;
  border: 1px solid var(--rule-lg);
  border-radius: 2px;
  font-size: 0.875rem;
  color: var(--bone);
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav__cta:hover { border-color: var(--amber); background: var(--amber-wash); }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  width: 22px;
  background: var(--bone);
  transition: transform var(--t) var(--ease), opacity var(--t-fast) var(--ease), width var(--t) var(--ease);
}
.nav__burger span:nth-child(2) { width: 15px; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { width: 22px; transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem var(--gutter) 2rem;
    background: rgba(10, 9, 8, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--rule);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--t) var(--ease), transform var(--t) var(--ease), visibility var(--t);
  }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; transform: none; }
  .nav__links li { border-bottom: 1px solid var(--rule); }
  .nav__links li:last-child { border-bottom: 0; padding-top: 1rem; }
  .nav__links a { display: block; padding-block: 1rem; font-size: 1.0625rem; }
  .nav__links a::after { display: none; }
  .nav__cta { display: inline-block; }
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.foot {
  border-top: 1px solid var(--rule);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
  background: var(--ink-2);
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 780px) {
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .foot__brand { grid-column: 1 / -1; }
}
.foot__brand .nav__logo { font-size: 1.5rem; margin: 0 0 0.75rem; display: inline-block; }
.foot__brand p { font-size: 0.9375rem; max-width: 32ch; color: var(--bone-3); }

.foot__col h4 {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-4);
  margin-bottom: 1.1rem;
}
.foot__col ul { list-style: none; display: grid; gap: 0.7rem; }
.foot__col a {
  font-size: 0.9375rem;
  color: var(--bone-2);
  transition: color var(--t-fast) var(--ease);
}
.foot__col a:hover { color: var(--amber); }

.foot__base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
  font-size: 0.8125rem;
  color: var(--bone-4);
}
.foot__social { display: flex; gap: 1.25rem; }
.foot__social a { color: var(--bone-3); transition: color var(--t-fast) var(--ease); }
.foot__social a:hover { color: var(--amber); }

/* --------------------------------------------------------------------------
   REVEAL — one shared scroll animation, used everywhere
   -------------------------------------------------------------------------- */
/* Content only starts hidden once JS has confirmed it can reveal it again.
   site.js sets .js-rv on <html> before first paint; without it (JS disabled,
   blocked, or errored) every .rv renders normally. Never let the page depend
   on an observer firing to be readable. */
.js-rv .rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}
.js-rv .rv.is-in { opacity: 1; transform: none; }
.rv-1 { transition-delay: 90ms; }
.rv-2 { transition-delay: 180ms; }
.rv-3 { transition-delay: 270ms; }
.rv-4 { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  .js-rv .rv { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   BEFORE / AFTER COMPARISON
   -------------------------------------------------------------------------- */
/* Both images are the same aspect ratio, so --zoom and --tx/--ty punch into
   the identical region of each. That lets one pair of files serve as both a
   full-frame comparison and a 100% detail crop, with no extra assets and no
   loss of responsiveness.

   --zoom  magnification (1 = whole frame)
   --tx/ty offset as a percentage of the *image*, to pick the focal point
   --ar    frame aspect ratio */
.compare {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--ar, 1.4634);
  border-radius: 3px;
  cursor: ew-resize;
  user-select: none;
  background: var(--ink-3);
  touch-action: pan-y;
  line-height: 0;
}

.compare__base,
.compare__clip img {
  position: absolute;
  top: 0;
  left: 0;
  height: auto;
  max-width: none;
  transform: translate(var(--tx, 0%), var(--ty, 0%));
}

/* The restored frame sits underneath at full width, so it occupies whatever
   the clip does not — which puts it on the right, where "after" belongs. */
.compare__base { width: calc(100% * var(--zoom, 1)); }

/* The original is the overlay, clipped from the left edge. At high --zoom the
   browser has to invent pixels to fill the frame, which is exactly the point. */
.compare__clip {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  will-change: width;
}
/* Width is set in px by site.js — a percentage here would resolve against the
   clipping parent and squash as the divider moves. */

.compare__bar {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--bone);
  transform: translateX(-1px);
  will-change: left;
  pointer-events: none;
}
.compare__knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bone);
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.compare__tag {
  position: absolute;
  bottom: 14px;
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  background: rgba(10, 9, 8, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--bone);
  line-height: 1.4;
  pointer-events: none;
}
.compare__tag--l { left: 14px; }
.compare__tag--r { right: 14px; }

/* --------------------------------------------------------------------------
   PRICING
   -------------------------------------------------------------------------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.price {
  background: var(--ink);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background var(--t) var(--ease);
}
.price:hover { background: var(--ink-2); }

.price--featured { background: var(--ink-3); }
.price--featured::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--amber);
}

.price__flag {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-family: var(--mono);
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}

.price__name {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin-bottom: 1.25rem;
}

.price__amt {
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--bone);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.price__amt .unit {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--bone-3);
  letter-spacing: 0;
}
.price__each {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--amber);
  margin-top: 0.6rem;
}

.price__desc {
  font-size: 0.9375rem;
  color: var(--bone-2);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}

.price__list {
  list-style: none;
  margin-top: 1.25rem;
  display: grid;
  gap: 0.7rem;
  font-size: 0.875rem;
  flex: 1;
}
.price__list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  line-height: 1.5;
}
.price__list li::before {
  content: '';
  flex: none;
  width: 5px; height: 5px;
  margin-top: 0.55em;
  background: var(--amber);
  border-radius: 50%;
}
.price .btn { margin-top: 1.75rem; }

/* Line-item rate table — for digitization, where a card grid would be wrong */
.rates { width: 100%; border-collapse: collapse; }
.rates caption {
  text-align: left;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-3);
  padding-bottom: 1rem;
}
.rates th, .rates td {
  text-align: left;
  padding: 1.05rem 1rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.rates th {
  font-weight: 500;
  color: var(--bone);
  font-size: 0.9375rem;
}
.rates td { font-size: 0.9375rem; }
.rates td:last-child {
  text-align: right;
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  color: var(--amber);
  white-space: nowrap;
}
.rates .note { display: block; font-size: 0.8125rem; color: var(--bone-3); margin-top: 0.3rem; }
.rates tbody tr:hover { background: var(--ink-2); }

@media (max-width: 620px) {
  .rates th, .rates td { padding: 0.85rem 0.5rem; font-size: 0.875rem; }
}

/* --------------------------------------------------------------------------
   PROJECT / WORK ENTRIES — an editorial list, not a card grid
   -------------------------------------------------------------------------- */
.entry {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  gap: 2rem;
  align-items: baseline;
  padding-block: 2.25rem;
  border-top: 1px solid var(--rule);
  transition: background var(--t) var(--ease);
}
.entry:last-of-type { border-bottom: 1px solid var(--rule); }
.entry:hover { background: rgba(245,240,230,0.02); }

.entry__idx {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--bone-4);
  letter-spacing: 0.1em;
}
.entry__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  line-height: 1.08;
  color: var(--bone);
  letter-spacing: -0.015em;
  transition: color var(--t-fast) var(--ease);
}
.entry:hover .entry__title { color: var(--amber); }
.entry__meta { margin-top: 0.65rem; font-size: 0.9375rem; color: var(--bone-3); max-width: 62ch; }
.entry__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.entry__go { color: var(--bone-4); transition: color var(--t-fast) var(--ease), transform var(--t) var(--ease-out); }
.entry:hover .entry__go { color: var(--amber); transform: translateX(5px); }

@media (max-width: 700px) {
  .entry { grid-template-columns: 1fr auto; gap: 1rem 1.25rem; }
  .entry__idx { grid-column: 1 / -1; margin-bottom: -0.75rem; }
}

.chip {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  padding: 0.3em 0.65em;
  border: 1px solid var(--rule-md);
  border-radius: 2px;
  color: var(--bone-3);
}

/* --------------------------------------------------------------------------
   CARDS — used only where a card is genuinely the right object
   -------------------------------------------------------------------------- */
.card {
  background: var(--ink-2);
  border: 1px solid var(--rule);
  border-radius: 3px;
  padding: 1.875rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease), transform var(--t) var(--ease-out);
}
.card:hover { border-color: var(--rule-md); background: var(--ink-3); }
a.card:hover { transform: translateY(-3px); border-color: var(--amber-edge); }

.card__ico {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--amber-edge);
  border-radius: 2px;
  color: var(--amber);
  background: var(--amber-wash);
  margin-bottom: 1.35rem;
}
.card h3 { font-size: 1.0625rem; font-weight: 600; color: var(--bone); margin-bottom: 0.55rem; letter-spacing: -0.01em; }
.card p { font-size: 0.9375rem; color: var(--bone-2); }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.25rem; }

/* --------------------------------------------------------------------------
   FORMS
   -------------------------------------------------------------------------- */
.field { display: grid; gap: 0.55rem; margin-bottom: 1.25rem; }
.field label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-3);
}
.field label .req { color: var(--amber); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--ink-2);
  border: 1px solid var(--rule-md);
  border-radius: 2px;
  color: var(--bone);
  font-size: 0.9375rem;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.field textarea { min-height: 145px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--bone-4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--amber);
  background: var(--ink-3);
}

.field select {
  appearance: none;
  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 1.5L6 6.5L11 1.5' stroke='%237c7466' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.field select option { background: var(--ink-2); color: var(--bone); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

.field__hint { font-size: 0.8125rem; color: var(--bone-4); }

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 2px;
  font-size: 0.875rem;
  display: none;
}
.form-status.is-ok  { display: block; background: rgba(125,148,113,0.12); border: 1px solid rgba(125,148,113,0.35); color: #b9cdae; }
.form-status.is-err { display: block; background: rgba(192,94,74,0.12);  border: 1px solid rgba(192,94,74,0.35);  color: #e0a396; }

/* --------------------------------------------------------------------------
   CALLOUT — the honest-caveat box. Appears on every service page.
   -------------------------------------------------------------------------- */
.callout {
  border-left: 2px solid var(--amber);
  background: var(--amber-wash);
  padding: 1.25rem 1.5rem;
  border-radius: 0 2px 2px 0;
}
.callout p { font-size: 0.9375rem; color: var(--bone-2); }
.callout strong { color: var(--bone); }

/* --------------------------------------------------------------------------
   STAT ROW
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--rule);
  border-block: 1px solid var(--rule);
}
.stat { background: var(--ink); padding: 1.6rem 1.25rem; }
.stat__n {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  line-height: 1;
  color: var(--amber);
  letter-spacing: -0.02em;
}
.stat__l {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--bone-3);
  margin-top: 0.6rem;
  line-height: 1.5;
}
