:root {
  --paper: #f3efe6;
  --paper-2: #e8e2d4;
  --ink: #1c1914;
  --ink-soft: #3f3a33;
  --muted: #6a645a;
  --line: #d5cfc3;
  --line-strong: #b8b0a2;
  --forest: #3a4a3c;
  --forest-deep: #2a382c;
  --clay: #8e4b32;
  --focus: #2f5d4a;
  --shadow: 0 18px 40px rgba(28, 25, 20, 0.08);
  --serif: "Newsreader", "Iowan Old Style", Palatino, "Palatino Linotype", Georgia, serif;
  --sans: "Source Sans 3", "Source Sans Pro", "Segoe UI", system-ui, sans-serif;
  --measure: 68rem;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
}

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  min-height: 100vh;
}

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

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

a:hover {
  color: var(--ink);
}

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

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 0.55rem 0.8rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
}

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

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3,
.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1,
.display {
  font-size: clamp(2.35rem, 6vw, 4.35rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  margin: 0 0 0.85rem;
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 0.45rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 36rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--paper) 92%, white);
  backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  position: relative;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  border: 1.5px solid currentColor;
}

.brand-mark::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1.5px;
  background: currentColor;
  transform: translateX(-50%);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 0.42rem;
  right: 0.42rem;
  top: 0.55rem;
  height: 1.5px;
  background: currentColor;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.brand-llc {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1rem;
}

.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
}

.nav-login {
  color: var(--muted) !important;
  font-size: 0.88rem !important;
}

/* Header phone chip: .nav a otherwise overrides .btn color → dark-on-dark */
.nav a.btn {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  text-decoration: none;
}

.nav a.btn:hover,
.nav a.btn:focus-visible {
  color: #fff;
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0.55rem 1.05rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font: 600 0.95rem/1 var(--sans);
  cursor: pointer;
}

.btn:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--paper);
}

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

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

.btn-wide {
  width: 100%;
}

.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 5vw, 4rem);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

.hero-copy p {
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.hero-art {
  color: var(--ink);
  background: var(--paper-2);
  padding: 0.75rem;
}

.hero-art img {
  width: 100%;
  height: auto;
}

.title-block {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.band {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--line);
}

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

.split {
  display: grid;
  gap: 1.25rem;
}

.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.4rem 1.35rem 1.2rem;
}

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

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

.list-plain li + li {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 1.15rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
}

.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--muted);
  padding-top: 0.15rem;
}

.contact-card {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.5rem;
  padding: 1.3rem 1.25rem;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  max-width: 28rem;
}

.contact-card a {
  color: inherit;
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 2.4rem;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.footer-brand {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.footer-meta {
  margin: 0.25rem 0 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
}

.footer-nav a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.legal {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  max-width: 42rem;
  font-size: 0.85rem;
}

.page-intro {
  padding: clamp(2.2rem, 5vw, 3.6rem) 0 0.5rem;
}

.page-intro p {
  max-width: 40rem;
}

.form-card {
  max-width: 28rem;
  margin: 2rem 0 0;
  padding: 1.4rem 1.3rem 1.35rem;
  border: 1px solid var(--line-strong);
  background: var(--paper);
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--line-strong);
  background: #fffdf8;
  color: var(--ink);
  font: 400 1.05rem/1.4 var(--sans);
  letter-spacing: 0.04em;
}

input[type="text"]:focus,
input[type="password"]:focus {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-color: var(--focus);
}

.form-help {
  margin: 0.45rem 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.form-status {
  min-height: 1.4rem;
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
}

.form-status[data-tone="error"] {
  color: var(--clay);
}

.form-status[data-tone="ok"] {
  color: var(--forest-deep);
}

.demo-banner {
  margin: 1.25rem 0 1.5rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-strong);
  background: var(--paper-2);
  font-size: 0.95rem;
}

.job-head {
  display: grid;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.job-meta span {
  display: block;
  color: var(--ink);
  font-weight: 600;
}

.update-list {
  display: grid;
  gap: 1.15rem;
  margin: 1.25rem 0 0;
}

.update {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 1.15rem 1.15rem 1rem;
}

.update time {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.photo-grid {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0;
}

.photo-card {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.photo-card button {
  appearance: none;
  display: block;
  border: 0;
  padding: 0;
  width: 100%;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #d8d2c6;
}

.photo-card .photo-caption {
  display: block;
  padding: 0.65rem 0.75rem 0.8rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.empty-state,
.error-state {
  margin: 1.25rem 0;
  padding: 1.2rem;
  border: 1px dashed var(--line-strong);
  color: var(--muted);
}

.lightbox {
  width: min(52rem, calc(100vw - 2rem));
  max-height: calc(100vh - 2.5rem);
  margin: auto;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}

.lightbox::backdrop {
  background: rgba(28, 25, 20, 0.86);
}

.lightbox-inner {
  padding: 0.75rem;
}

.lightbox-inner img {
  width: 100%;
  max-height: min(70vh, 34rem);
  object-fit: contain;
  background: var(--paper-2);
}

.lightbox-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.25rem 0.2rem;
}

.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;
}

.note-box {
  margin-top: 2rem;
  padding: 1.1rem 1.15rem;
  border-left: 3px solid var(--forest);
  background: var(--paper-2);
  font-size: 0.95rem;
}

@media (max-width: 719px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (min-width: 720px) {
  .hero-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .job-head {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

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

  .steps {
    grid-template-columns: 1fr 1fr;
  }
}
