/* Clockworks Front Desk — draft design system
   Paper / ink / copper accent (live MN Clockworks brand)
   Locked ship prices: $247 diagnostic · $1,997–$3,500 setup · $297–$397/mo managed
*/

:root {
  --paper: #f5f1e8;
  --paper-2: #ede7d8;
  --paper-3: #e4dec9;
  --cream: #fdfbf5;
  --ink: #1a1916;
  --ink-muted: #3a372f;
  --ink-faint: #6e6a5f;
  --copper: #d4582a;
  --copper-deep: #a8441f;
  --copper-hover: #c04e26;
  --copper-soft: #f2d9c8;
  --steel: #d4ccb4;
  --steel-light: #e4dec9;
  --rule: rgba(26, 25, 22, 0.12);
  --rule-strong: rgba(26, 25, 22, 0.22);
  --shadow: 0 1px 1px rgba(26, 25, 22, 0.04), 0 10px 28px rgba(26, 25, 22, 0.06);
  --shadow-btn: 0 1px 0 rgba(14, 14, 12, 0.25), 0 12px 32px -14px rgba(212, 88, 42, 0.55);
  --radius: 3px;
  --max: 1120px;
  --measure: 40rem;
  --pad: clamp(1.15rem, 4vw, 2rem);
  --section: clamp(3.75rem, 9vw, 6.75rem);
  --font-display: "Instrument Serif", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-sans: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  --header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Quiet paper grain (CSS only) */
body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

body > * {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  body::before {
    opacity: 0.02;
  }
}

@media (max-width: 47.99rem) {
  body {
    padding-bottom: 5.25rem;
  }

  body.no-sticky-cta {
    padding-bottom: 0;
  }
}

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

a {
  color: var(--copper);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--copper-deep);
}

:focus {
  outline: none;
}

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

.skip-link {
  position: absolute;
  left: var(--pad);
  top: -3.5rem;
  z-index: 100;
  padding: 0.55rem 0.9rem;
  background: var(--copper);
  color: var(--paper);
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 0.65rem;
  color: var(--paper);
}

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

::selection {
  background: var(--copper);
  color: var(--paper);
}

.wrap {
  width: min(100% - 2 * var(--pad), var(--max));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - 2 * var(--pad), 42rem);
  margin-inline: auto;
}

/* Type */

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
  font-variation-settings: "SOFT" 28, "WONK" 0;
}

h1,
h2,
h3 {
  margin: 0 0 0.85rem;
}

h1 {
  font-size: clamp(1.85rem, 1.15rem + 2.6vw, 2.85rem);
  max-width: 17em;
}

h2 {
  font-size: clamp(1.55rem, 1.1rem + 1.5vw, 2.15rem);
  max-width: 22em;
}

h3 {
  font-size: 1.28rem;
  letter-spacing: -0.015em;
}

p {
  margin: 0 0 1rem;
  max-width: var(--measure);
}

p:last-child {
  margin-bottom: 0;
}

.lede {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 38rem;
  text-wrap: pretty;
}

h1,
h2 {
  text-wrap: pretty;
}

.muted {
  color: var(--ink-muted);
}

.fine {
  font-size: 0.95rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.eyebrow {
  display: block;
  margin: 0 0 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  line-height: 1.45;
}

.trust-line {
  margin-top: 1.35rem;
  font-size: 0.98rem;
  color: var(--ink-muted);
}

.price,
.price-figure {
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

/* Header / nav */

.util-bar {
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
}

.util-bar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 2.15rem;
}

.util-bar p {
  margin: 0;
  max-width: none;
  min-width: 0;
}

@media (max-width: 40rem) {
  .util-rest {
    display: none;
  }
}

.util-bar a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
}

.util-bar a:hover {
  color: var(--copper);
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--header-h);
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1;
}

.brand-dot {
  color: var(--copper);
}

.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}

.nav-toggle {
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--steel);
  background: var(--cream);
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.05rem;
  height: 1.5px;
  background: var(--ink);
  position: relative;
  border-radius: 1px;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -5px;
}

.nav-toggle-bars::after {
  top: 5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem 1.35rem;
}

.site-nav a:not(.btn) {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0;
}

.site-nav a:not(.btn):hover {
  color: var(--copper);
}

.site-nav a[aria-current="page"]:not(.btn) {
  color: var(--copper);
  box-shadow: inset 0 -1px 0 var(--copper);
}

@media (max-width: 61.99rem) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: min(100vw, var(--max));
    background: var(--paper);
    border-bottom: 1px solid var(--steel);
    padding: 0.5rem var(--pad) 1.25rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav li {
    border-top: 1px solid var(--rule);
  }

  .site-nav a:not(.btn) {
    display: block;
    padding: 0.85rem 0;
  }

  .site-nav a[aria-current="page"]:not(.btn) {
    box-shadow: none;
  }

  .site-nav .btn {
    margin-top: 0.85rem;
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 62rem) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: none;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.btn-primary {
  background: var(--copper);
  color: var(--paper);
  border-color: var(--copper);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--copper-hover);
  color: var(--paper);
  border-color: var(--copper-hover);
  box-shadow: 0 2px 0 rgba(26, 28, 26, 0.06), 0 8px 18px rgba(26, 28, 26, 0.12);
}

.btn-secondary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: 0 1px 0 rgba(14, 14, 12, 0.2), 0 10px 24px -12px rgba(26, 25, 22, 0.45);
}

.btn-secondary:hover {
  background: #0e0e0c;
  color: var(--paper);
  border-color: #0e0e0c;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

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

.btn-invert {
  background: var(--paper);
  color: var(--copper);
  border-color: var(--paper);
  box-shadow: var(--shadow-btn);
}

.btn-invert:hover {
  background: var(--cream);
  color: var(--copper-deep);
  box-shadow: 0 2px 0 rgba(26, 28, 26, 0.05), 0 8px 18px rgba(26, 28, 26, 0.1);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  margin-top: 1.6rem;
}

.link-quiet {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--steel);
}

.link-quiet:hover {
  color: var(--copper);
  border-bottom-color: var(--copper);
}

/* Sections */

.section {
  padding: var(--section) 0;
}

.section + .section {
  border-top: 1px solid var(--rule);
}

.section-flush {
  border-top: 0;
  padding-top: 0;
}

.mt-s {
  margin-top: 0.75rem;
}

.mt-m {
  margin-top: 1.25rem;
}

.mt-l {
  margin-top: 1.5rem;
}

.panel-measure {
  max-width: 42rem;
  margin-top: 1.5rem;
}

.aside-stack {
  display: grid;
  gap: 1.25rem;
}

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

.hero {
  padding: clamp(3.25rem, 8vw, 6.25rem) 0 clamp(3.5rem, 8vw, 6.5rem);
}

.hero h1 {
  margin-bottom: 1.1rem;
}

.hero-layout {
  display: grid;
  gap: 2.75rem;
}

@media (min-width: 60rem) {
  .hero-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(13.5rem, 0.55fr);
    gap: 4.5rem;
    align-items: end;
  }
}

.hero-facts {
  border-top: 1px solid var(--steel);
  padding-top: 1.1rem;
  margin: 0;
}

.hero-facts div {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule);
}

.hero-facts dt {
  margin: 0 0 0.2rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--ink-faint);
}

.hero-facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 59.99rem) {
  .hero-facts {
    display: none;
  }
}

@media (max-width: 47.99rem) {
  .actions .btn {
    width: 100%;
  }
}

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

.hairline {
  width: 3rem;
  height: 1px;
  background: var(--copper);
  margin: 0 0 1.5rem;
}

/* Lists */

.tick-list,
.plain-list,
.not-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  max-width: 38rem;
}

.tick-list li,
.plain-list li,
.not-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.55rem;
  border-top: 1px solid var(--rule);
}

.tick-list li:last-child,
.plain-list li:last-child,
.not-list li:last-child {
  border-bottom: 1px solid var(--rule);
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 0.45rem;
  height: 0.45rem;
  border: 1.5px solid var(--copper);
  border-radius: 1px;
}

.not-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 0.7rem;
  height: 1px;
  background: var(--ink-faint);
}

/* Panels / cards */

.panel {
  background: var(--cream);
  border: 1px solid var(--steel-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.panel h2,
.panel h3 {
  max-width: none;
}

.panel-note {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-size: 0.98rem;
  color: var(--ink-muted);
}

/* Path / steps */

.steps {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 52rem) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.step {
  padding-top: 1.15rem;
  border-top: 1px solid var(--steel);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--copper);
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
  font-variant-numeric: tabular-nums;
}

.step h3 {
  margin-bottom: 0.45rem;
}

.step p {
  color: var(--ink-muted);
  font-size: 1.02rem;
}

.step .price-figure {
  display: block;
  margin: 0.15rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* Split columns */

.split {
  display: grid;
  gap: 2rem;
  margin-top: 1.75rem;
}

@media (min-width: 48rem) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .split-rule {
    position: relative;
  }

  .split-rule::before {
    content: "";
    position: absolute;
    left: calc(50% - 0.5px);
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--rule);
  }
}

.split h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.85rem;
}

/* Price sheet */

.price-sheet {
  margin-top: 2rem;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-row {
  display: grid;
  gap: 0.65rem 1.5rem;
  padding: 1.4rem 1.35rem;
  border-top: 1px solid var(--rule);
}

.price-row:first-child {
  border-top: 0;
}

.price-row h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.price-row p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
}

.price-row .price-figure {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}

@media (min-width: 44rem) {
  .price-row {
    grid-template-columns: 1fr auto;
    align-items: start;
    padding: 1.6rem 1.75rem;
  }

  .price-row .price-figure {
    padding-top: 0.2rem;
    text-align: right;
  }
}

/* Agenda */

.agenda {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  max-width: 40rem;
}

.agenda li {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
}

.agenda li:last-child {
  border-bottom: 1px solid var(--rule);
}

.agenda-time {
  font-variant-numeric: tabular-nums;
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: var(--copper);
  padding-top: 0.15rem;
}

.agenda strong {
  display: block;
  font-weight: 650;
  margin-bottom: 0.2rem;
}

.agenda p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.02rem;
}

.promise {
  margin-top: 1.35rem;
  font-weight: 600;
}

/* FAQ */

.faq-list {
  margin-top: 1.75rem;
  border-top: 1px solid var(--steel);
}

.faq-list details {
  border-bottom: 1px solid var(--steel);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 2rem 1.15rem 0;
  font-weight: 600;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 0.15rem;
  top: 1.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 1.5px solid var(--copper);
  border-bottom: 1.5px solid var(--copper);
  transform: rotate(45deg);
}

.faq-list details[open] summary::after {
  top: 1.6rem;
  transform: rotate(-135deg);
}

.faq-list .faq-a {
  padding: 0 0 1.25rem;
  color: var(--ink-muted);
  max-width: 42rem;
}

.faq-tease {
  margin-top: 1.5rem;
}

.faq-tease article {
  padding: 1.15rem 0;
  border-top: 1px solid var(--rule);
}

.faq-tease article:last-of-type {
  border-bottom: 1px solid var(--rule);
  margin-bottom: 1.25rem;
}

.faq-tease h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: 0;
  margin-bottom: 0.35rem;
}

.faq-tease p {
  color: var(--ink-muted);
}

/* CTA band */

.cta-band {
  background: var(--copper);
  color: var(--paper);
  padding: clamp(3.25rem, 8vw, 5.5rem) 0;
}

.cta-band h2,
.cta-band p {
  color: var(--paper);
}

.cta-band .eyebrow {
  color: #c5d6cc;
}

.cta-band a:not(.btn) {
  color: var(--paper);
}

.cta-band .lede,
.cta-band .muted {
  color: rgba(245, 241, 232, 0.45);
}

.cta-band .btn-secondary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: 0 1px 0 rgba(14, 14, 12, 0.2), 0 10px 24px -12px rgba(26, 25, 22, 0.45);
}

.btn-secondary:hover {
  background: #0e0e0c;
  color: var(--paper);
  border-color: #0e0e0c;
}

.btn-ghost {
  border-color: rgba(245, 241, 232, 0.45);
  color: var(--paper);
}

.cta-band .btn-ghost:hover {
  background: rgba(245, 241, 232, 0.12);
  color: var(--paper);
}

.cta-band .link-quiet {
  color: var(--paper);
  border-bottom-color: #9bb5a6;
}

.cta-band .link-quiet:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.phone-copper {
  color: var(--copper);
}

.phone-copper:hover {
  color: var(--copper-deep);
}

.phone-xl {
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.phone-xl:hover {
  text-decoration: underline;
}

/* Footer */

.site-footer {
  background: var(--ink);
  color: #d6d3cc;
  padding: 3rem 0 2.25rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 52rem) {
  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2.5rem;
  }
}

.site-footer a {
  color: #eceae4;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer .brand-name {
  color: var(--paper);
}

.site-footer .brand-dot {
  color: var(--copper);
}

.site-footer .brand-sub {
  color: #b7b3ab;
}

.footer-tag {
  margin-top: 1rem;
  max-width: 22rem;
  color: #b7b3ab;
  font-size: 0.95rem;
}

.footer-label {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9a968e;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 0.35rem 0;
}

.footer-phone {
  font-size: 1.15rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  color: var(--paper);
}

.footer-base {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 244, 238, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  justify-content: space-between;
  color: #9a968e;
  font-size: 0.82rem;
}

.footer-base p {
  margin: 0;
  max-width: none;
}

.draft-note {
  color: #8f8b83;
}

/* Sticky mobile CTA */

.sticky-cta {
  display: none;
}

@media (max-width: 47.99rem) {
  .sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    padding: 0.65rem var(--pad) calc(0.65rem + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--paper) 94%, white);
    border-top: 1px solid var(--steel);
    box-shadow: 0 -8px 24px rgba(26, 28, 26, 0.06);
  }

  .sticky-cta .btn {
    width: 100%;
  }

  body.no-sticky-cta .sticky-cta {
    display: none;
  }
}

/* Page extras */

.stack-note {
  margin-top: 2rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: transparent;
  max-width: 40rem;
}

.stack-note p + p {
  margin-top: 0.65rem;
}

.fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fit-list li {
  padding: 0.55rem 0 0.55rem 1.15rem;
  position: relative;
  border-bottom: 1px solid var(--rule);
}

.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--copper);
  border-radius: 1px;
}

.split .fit-list.bad li::before {
  background: transparent;
  border: 1px solid var(--ink-faint);
}

.kill-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  max-width: 40rem;
}

.kill-list li {
  padding: 0.8rem 0;
  border-top: 1px solid var(--rule);
  color: var(--ink-muted);
}

.kill-list li:last-child {
  border-bottom: 1px solid var(--rule);
}

/* Form */

.book-layout {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (min-width: 56rem) {
  .book-layout {
    grid-template-columns: 1.35fr 0.85fr;
    gap: 3rem;
    align-items: start;
  }
}

.form {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.92rem;
  font-weight: 650;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.4;
}

.field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #b5aea2;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(31, 77, 58, 0.16);
}

.price-callout {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.95rem 0 0.35rem;
  border-top: 1px solid var(--rule);
  margin-top: 0.35rem;
}

.price-callout span {
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 1rem;
  padding: 0.35rem 0 0.5rem;
}

.check input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--copper);
  flex-shrink: 0;
}

.form .btn {
  justify-self: start;
  min-width: 15rem;
}

@media (max-width: 47.99rem) {
  .form .btn {
    width: 100%;
  }
}

.form-status {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--copper);
  background: var(--copper-soft);
  color: var(--copper-deep);
  font-size: 1.02rem;
}

.form-status[hidden] {
  display: none;
}

.aside-card h2 {
  font-size: 1.45rem;
}

.is-isnt {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 44rem) {
  .is-isnt {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.is-isnt h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 650;
  color: var(--copper);
}

/* Honesty pull */

.pull {
  max-width: 36rem;
  padding-left: 1.15rem;
  border-left: 2px solid var(--copper);
}

/* Page title on inner pages */

.page-hero h1 {
  max-width: 20ch;
}

@media (min-width: 52rem) {
  .page-hero h1.wide {
    max-width: 21em;
  }
}


/* --- Craft patch 1 --- */

.home-h1 {
  max-width: 18.5em;
  text-wrap: balance;
}

.home-h1 .h1-line {
  display: inline;
}

@media (max-width: 47.99rem) {
  .home-h1 {
    max-width: 15em;
    line-height: 1.22;
  }

  .home-h1 .h1-line {
    display: block;
  }

  .home-h1 .h1-line + .h1-line {
    margin-top: 0.12em;
  }
}

@media (min-width: 48rem) and (max-width: 61.99rem) {
  .home-h1 {
    max-width: 16.5em;
  }
}

.subhead {
  margin: 0 0 1rem;
  max-width: 36rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 550;
  letter-spacing: 0.01em;
  color: var(--ink-muted);
  line-height: 1.45;
}

.page-hero .subhead {
  margin-top: -0.15rem;
}

.page-hero h1 {
  max-width: 18em;
}


/* About — Parker portrait */
.about-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 52rem) {
  .about-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(12rem, 0.7fr);
    gap: 3rem;
  }
}

.about-photo {
  margin: 0;
}

.about-photo img {
  display: block;
  width: 100%;
  max-width: 22rem;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 4px;
  border: 1px solid var(--steel);
  box-shadow: var(--shadow);
}

.about-photo figcaption {
  margin-top: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
