/* ==========================================================================
   Androne Imagery — shared styles
   Design tokens are fixed. See HANDOFF.md design system section.
   ========================================================================== */

:root {
  --ink: #101112;
  --paper: #F4F4F2;
  --panel: #E7E7E4;
  --rule: #D8D8D4;
  --body: #3A3D3E;
  --label: #5A5E60;
  --on-dark-body: #E2E4E4;
  --on-dark-2: #B9BDBD;
  --on-dark-3: #C9CCCC;
  --footer-bg: #000;
  --footer-fg: #9A9E9F;

  --sans: 'Instrument Sans', system-ui, sans-serif;
  --serif: Newsreader, Georgia, serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;

  --wrap: 1180px;
  --gut: 18px;
}

@media (min-width: 900px) {
  :root { --gut: 48px; }
}

/* --------------------------------------------------------------- reset */

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .045em;
  margin: 0;
}

p { margin: 0; }

/* Type floor is 12px everywhere — do not go below. */

.mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ------------------------------------------------------- accessibility */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.on-ink a:focus-visible,
.on-ink button:focus-visible,
.on-ink input:focus-visible {
  outline-color: var(--paper);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-decoration: none;
}

.skip:focus {
  left: 8px;
  top: 8px;
}

.vh {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .rv { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* -------------------------------------------------------------- motion */

/* The reveal is opt-in and fails visible: without JS, or with reduced
   motion, .rv content is simply shown. Never hide content behind an
   animation that might not run. */

.rv { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .js .rv {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .9s cubic-bezier(.22,.61,.36,1),
                transform .9s cubic-bezier(.22,.61,.36,1);
  }
  .js .rv.in { opacity: 1; transform: none; }
}

/* -------------------------------------------------------------- layout */

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.on-ink {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

/* Contour overlay for dark sections — tuned to .11, do not raise. */
.on-ink::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/topo-lines.svg') 0 0/100% 100% no-repeat;
  opacity: .11;
  pointer-events: none;
}

.on-ink > * { position: relative; }

.on-ink p { color: var(--on-dark-body); }

/* Section heading sits on a 1px rule. */
.sec-head {
  border-top: 1px solid var(--ink);
  padding-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

@media (min-width: 900px) {
  .sec-head { padding-top: 24px; margin-bottom: 26px; }
}

.sec-head h2 { font-size: 26px; }

@media (min-width: 900px) {
  .sec-head h2 { font-size: 34px; }
}

.sec-note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--label);
}

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

.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(244,244,242,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}

.head-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-inline: var(--gut);
  min-height: 60px;
  max-width: var(--wrap);
  margin-inline: auto;
}

@media (min-width: 900px) {
  .head-row { min-height: 76px; gap: 18px; }
}

.wordmark {
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: 9px;
  text-decoration: none;
  margin-right: auto;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.wordmark svg { width: 22px; height: 22px; fill: currentColor; flex: none; }

.wordmark .sub { color: var(--label); }

@media (max-width: 519px) {
  .wordmark .sub { display: none; }
}

.head-phone {
  text-decoration: none;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
}

.nav-toggle {
  min-height: 44px;
  min-width: 44px;
  background: none;
  border: 1px solid var(--ink);
  color: inherit;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-panel {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--rule);
  padding: 0 var(--gut) 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-panel.open { display: flex; }

.nav-panel a {
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  min-height: 44px;
}

.nav-panel a.cta {
  margin-top: 14px;
  background: var(--ink);
  color: var(--paper);
  padding: 16px;
  justify-content: center;
  border-bottom: 0;
}

.nav-wide { display: none; }

@media (min-width: 900px) {
  .nav-toggle, .nav-panel, .head-phone { display: none !important; }
  .nav-wide {
    display: flex;
    align-items: center;
    gap: 26px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
  }
  .nav-wide a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
  .nav-wide a[aria-current="page"] { border-bottom: 1px solid var(--ink); }
  .nav-wide a.cta {
    background: var(--ink);
    color: var(--paper);
    padding: 0 20px;
    min-height: 48px;
  }
  .nav-wide a.cta:hover { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
}

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

.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: background .18s, color .18s, box-shadow .18s;
}

@media (min-width: 900px) {
  .btn { min-height: 58px; padding: 0 34px; }
}

.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }

.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: transparent; color: var(--paper); box-shadow: inset 0 0 0 1px var(--paper); }

.btn-ghost-light {
  background: transparent;
  color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(244,244,242,.5);
}
.btn-ghost-light:hover { box-shadow: inset 0 0 0 1px var(--paper); }

.btn-sm { min-height: 44px; padding: 0 18px; font-size: 12px; }

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

.hero {
  position: relative;
  min-height: 520px;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

@media (min-width: 900px) {
  .hero { min-height: 660px; }
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,17,18,.94) 0%, rgba(16,17,18,.78) 46%, rgba(16,17,18,.3) 100%);
}

.hero .topo {
  position: absolute;
  inset: 0;
  background: url('assets/topo-lines.svg') 0 0/100% 100% no-repeat;
  opacity: .11;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0 var(--gut) 40px;
}

@media (min-width: 900px) {
  .hero-inner { padding-bottom: 64px; }
}

.hero h1 {
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: .01em;
  margin: 0 0 18px;
  max-width: 16ch;
}

@media (min-width: 700px) { .hero h1 { font-size: 46px; } }
@media (min-width: 1100px) { .hero h1 { font-size: 60px; } }

.hero p {
  font-size: 17px;
  color: var(--on-dark-body);
  max-width: 56ch;
  margin: 0 0 26px;
}

@media (min-width: 900px) { .hero p { font-size: 19px; } }

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hero-cta .aside {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--on-dark-2);
}

/* Interior page hero (Services / Work / Quote) */
.page-hero { padding: 44px 0 40px; }

@media (min-width: 900px) { .page-hero { padding: 72px 0 64px; } }

.page-hero h1 { font-size: 32px; line-height: 1.1; margin: 0 0 14px; }

@media (min-width: 900px) { .page-hero h1 { font-size: 52px; } }

.page-hero p {
  font-size: 17px;
  max-width: 58ch;
  color: var(--on-dark-body);
}

/* -------------------------------------------------------- credential bar */

.creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--label);
}

.creds div {
  padding: 16px var(--gut);
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  min-height: 44px;
}

@media (min-width: 900px) {
  .creds {
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--wrap);
    margin-inline: auto;
  }
  .creds div { border-top: 0; justify-content: center; text-align: center; }
}

/* ------------------------------------------------------------- section */

.sec { padding: 44px 0; }

@media (min-width: 900px) { .sec { padding: 68px 0; } }

.sec-lede {
  font-size: 17px;
  color: var(--body);
  max-width: 68ch;
  margin-bottom: 28px;
}

/* --------------------------------------------------- price rows (home) */

.price-list { border-top: 1px solid var(--rule); }

.price-row { border-bottom: 1px solid var(--rule); }

.price-head {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  background: none;
  border: 0;
  padding: 20px 0;
  min-height: 44px;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

.price-no {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--label);
}

.price-name {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 17px;
  margin: 0;
}

.price-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.price-sign {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--label);
  width: 20px;
  text-align: center;
}

.price-body { display: none; padding: 0 0 24px; }

.price-row.open .price-body { display: block; }

.price-body p { color: var(--body); max-width: 62ch; margin-bottom: 14px; }

.price-who {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 16px;
}

.getbox {
  background: var(--panel);
  padding: 16px 18px;
  margin-bottom: 18px;
}

.getbox .lbl {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 8px;
}

.getbox ul { margin: 0; padding-left: 18px; color: var(--body); }
.getbox li { margin-bottom: 4px; }

/* Above 900px: rows are fully expanded, no toggle. */
@media (min-width: 900px) {
  .price-head { cursor: default; grid-template-columns: auto 1fr auto; padding: 26px 0 12px; }
  .price-sign { display: none; }
  .price-body { display: block !important; padding-bottom: 30px; }
  .price-row { display: grid; grid-template-columns: 1fr; }
  .price-detail {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    gap: 34px;
    align-items: start;
  }
  .getbox { margin-bottom: 0; }
  .price-name { font-size: 20px; }
}

.price-quote { display: inline-flex; }

/* ------------------------------------------------- recent jobs (home) */

.jobs-grid { display: grid; gap: 26px; }

@media (min-width: 900px) {
  .jobs-grid { grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
}

.job-item {
  border-top: 1px solid rgba(244,244,242,.22);
  padding: 18px 0;
  cursor: default;
  transition: opacity .25s;
}

.job-item h3 { font-size: 17px; margin: 0 0 4px; }

.job-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-dark-2);
}

.job-item p { font-size: 15px; color: var(--on-dark-3); margin-top: 8px; max-width: 52ch; }

@media (min-width: 900px) {
  .job-item { opacity: .42; }
  .job-item.active, .job-item:hover, .job-item:focus-within { opacity: 1; }
}

.job-stage {
  position: relative;
  aspect-ratio: 3 / 2;
  background: #000;
  overflow: hidden;
}

.job-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .4s;
}

.job-stage img.on { opacity: 1; }

.job-caption {
  position: absolute;
  left: 0; bottom: 0;
  background: rgba(16,17,18,.82);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 14px;
}

/* --------------------------------------------------- compare slider */

.compare {
  position: relative;
  aspect-ratio: 1400 / 703;
  overflow: hidden;
  background: #000;
  margin: 18px 0 12px;
}

.compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare .after { clip-path: inset(0 0 0 50%); }

.compare .divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--paper);
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(16,17,18,.35);
}

.compare input[type=range] {
  position: absolute;
  left: 0; right: 0; bottom: 50%;
  transform: translateY(50%);
  width: 100%;
  margin: 0;
  appearance: none;
  background: transparent;
  height: 44px;
  cursor: ew-resize;
}

.compare input[type=range]::-webkit-slider-thumb {
  appearance: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(16,17,18,.4), 0 2px 8px rgba(16,17,18,.35);
  cursor: ew-resize;
}

.compare input[type=range]::-moz-range-thumb {
  width: 38px; height: 38px;
  border: 1px solid rgba(16,17,18,.4);
  border-radius: 50%;
  background: var(--paper);
  cursor: ew-resize;
}

.compare input[type=range]::-moz-range-track { background: transparent; }

.cmp-label {
  position: absolute;
  bottom: 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: rgba(16,17,18,.78);
  color: var(--paper);
  padding: 7px 11px;
}

.cmp-label.left { left: 12px; }
.cmp-label.right { right: 12px; }

.caption {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--label);
  margin-top: 10px;
}

.on-ink .caption { color: var(--on-dark-2); }

/* -------------------------------------------------------- accuracy box */

.accuracy {
  background: var(--panel);
  padding: 24px;
}

.on-ink .accuracy { background: rgba(244,244,242,.08); }

.accuracy h3 { font-size: 17px; margin-bottom: 12px; }

.accuracy p { color: var(--body); font-size: 15px; }

.on-ink .accuracy p { color: var(--on-dark-3); }

/* ------------------------------------------------------------ steps */

.steps { display: grid; gap: 26px; }

@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 34px; } }

.step { border-top: 1px solid var(--rule); padding-top: 16px; }

.step .eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--label);
  display: block;
  margin-bottom: 10px;
}

.step h3 { font-size: 18px; margin-bottom: 10px; }

.step p { color: var(--body); font-size: 15px; }

/* ------------------------------------------------ services page cards */

.svc { border-top: 1px solid var(--ink); padding: 34px 0; }

.svc-grid { display: grid; gap: 24px; }

@media (min-width: 900px) {
  .svc { padding: 48px 0; }
  .svc-grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
  .svc-grid.flip .svc-media { order: 2; }
}

.svc-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  justify-content: space-between;
}

.svc-title h2 { font-size: 24px; }

@media (min-width: 900px) { .svc-title h2 { font-size: 30px; } }

.svc-price {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.svc-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--label);
  margin: 8px 0 16px;
}

.svc p.lede { color: var(--body); max-width: 62ch; margin-bottom: 20px; }

.spec {
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 0;
  margin-bottom: 20px;
}

.spec > div {
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
  font-size: 15px;
  color: var(--body);
}

.spec .k {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 4px;
}

.tiers { background: var(--panel); padding: 18px; margin-bottom: 20px; }

.tiers .lbl {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 10px;
}

.tiers dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .04em;
}

.tiers dt { color: var(--body); }
.tiers dd { margin: 0; text-align: right; }

.tiers .fine {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--label);
  margin-top: 12px;
}

.svc-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}

.link-under {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
}

/* --------------------------------------------------------------- FAQ */

.faq { display: grid; gap: 26px; }

@media (min-width: 800px) { .faq { grid-template-columns: 1fr 1fr; gap: 32px 48px; } }

.faq > div { border-top: 1px solid var(--rule); padding-top: 16px; }

.faq h3 { font-size: 16px; margin-bottom: 10px; }

.faq p { color: var(--body); font-size: 15px; }

/* -------------------------------------------------------- work page */

.job { border-top: 1px solid var(--ink); padding: 40px 0; }

@media (min-width: 900px) { .job { padding: 60px 0; } }

.job-head { display: grid; gap: 16px; margin-bottom: 24px; }

@media (min-width: 900px) {
  .job-head { grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
}

.job-head h2 { font-size: 26px; margin-bottom: 8px; }

@media (min-width: 900px) { .job-head h2 { font-size: 34px; } }

.job-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--label);
}

.job-head p { color: var(--body); max-width: 66ch; }

.shots { display: grid; gap: 12px; }

.pair { display: grid; gap: 12px; }

@media (min-width: 700px) { .pair { grid-template-columns: 1fr 1fr; } }

/* -------------------------------------------------------- quote page */

.quote-grid { display: grid; gap: 40px; }

@media (min-width: 980px) {
  .quote-grid { grid-template-columns: 1.35fr 1fr; gap: 64px; align-items: start; }
}

.field { margin-bottom: 22px; }

.field label, .field .lbl {
  display: block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 8px;
}

.field .req { color: var(--label); }

.field input, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 14px;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  border-radius: 0;
}

.field textarea { min-height: 118px; resize: vertical; }

.field input:focus, .field textarea:focus { border-color: var(--ink); }

.hint { font-size: 14px; color: var(--label); margin-top: 8px; }

.two-up { display: grid; gap: 22px; }

@media (min-width: 620px) { .two-up { grid-template-columns: 1fr 1fr; gap: 20px; } }

fieldset { border: 0; padding: 0; margin: 0 0 26px; }

legend {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--label);
  padding: 0;
  margin-bottom: 12px;
}

.picks { display: grid; gap: 10px; }

@media (min-width: 620px) { .picks { grid-template-columns: 1fr 1fr; } }

.pick {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  text-align: left;
  min-height: 60px;
  padding: 14px 40px 14px 16px;
  background: #fff;
  border: 1px solid var(--rule);
  color: inherit;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 16px;
  border-radius: 0;
}

.pick .p-price {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--label);
}

.pick[aria-pressed="true"] {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
  background: var(--panel);
}

.pick[aria-pressed="true"]::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px; height: 10px;
  margin-top: -5px;
  background: var(--ink);
}

.picks.timing { grid-template-columns: 1fr; }

@media (min-width: 620px) { .picks.timing { grid-template-columns: repeat(3, 1fr); } }

.picks.timing .pick { min-height: 52px; justify-content: center; }

.errbox {
  border: 1px solid var(--ink);
  background: var(--panel);
  padding: 16px 18px;
  margin-bottom: 26px;
}

.errbox .lbl {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.errbox div.e { color: var(--body); font-size: 15px; margin-top: 4px; }

.submit-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.submit-row .aside {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--label);
}

.sent .eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 12px;
}

.sent h2 { font-size: 28px; margin-bottom: 14px; }

.sent p { color: var(--body); max-width: 56ch; margin-bottom: 22px; }

.aside-card { background: var(--panel); padding: 22px; margin-bottom: 22px; }

.aside-card .lbl {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--label);
  margin-bottom: 14px;
}

.aside-card .step-mini { margin-bottom: 16px; }

.aside-card .step-mini:last-child { margin-bottom: 0; }

.aside-card .step-mini .k {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.aside-card .step-mini p { font-size: 15px; color: var(--body); }

.creds-card {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--label);
  line-height: 2;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
  margin-bottom: 18px;
}

.creds-card .lbl { color: var(--ink); margin-bottom: 6px; }

.privacy-note { font-size: 14px; color: var(--label); }

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

.cta-band { padding: 44px 0; }

@media (min-width: 900px) { .cta-band { padding: 60px 0; } }

.cta-grid { display: grid; gap: 30px; }

@media (min-width: 900px) {
  .cta-grid { grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
}

.cta-grid h2 { font-size: 26px; margin-bottom: 14px; }

@media (min-width: 900px) { .cta-grid h2 { font-size: 34px; } }

.cta-grid p { font-size: 17px; color: var(--on-dark-3); max-width: 50ch; margin-bottom: 26px; }

.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.contact-col {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .06em;
  line-height: 2;
  color: var(--on-dark-2);
}

.contact-col a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid rgba(244,244,242,.5);
  text-decoration: none;
}

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

.site-foot {
  background: var(--footer-bg);
  color: var(--footer-fg);
  padding: 32px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.foot-row {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  align-items: center;
  justify-content: space-between;
}

.site-foot svg { width: 18px; height: 18px; fill: currentColor; }

.site-foot a {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* --------------------------------------------------------- prose page */

.prose { max-width: 68ch; }

.prose h2 { font-size: 20px; margin: 32px 0 12px; }

.prose p { color: var(--body); margin-bottom: 14px; }

.prose ul { color: var(--body); padding-left: 20px; margin: 0 0 14px; }

.prose li { margin-bottom: 6px; }

.prose a { color: var(--ink); }
