/* AltaNotary 2026 — operations console + editorial photography. */

:root {
  --navy: #17263d;
  --ivory: #f7f4ee;
  --paper: #fff;
  --ink: #202733;
  --muted: #66707d;
  --line: #ddd8cf;
  --brass: #b28a52;
  --rust: #b85c38;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --max: 1180px;
  --pad: clamp(1.1rem, 3.2vw, 2rem);
  --r: 0;
  --ctrl: 52px;
  --label: 2.75rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.alta-v2-page {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}
@media (max-width: 699px) { .alta-v2-page { font-size: 16px; } }
.alta-v2 img { max-width: 100%; display: block; height: auto; }
.alta-v2 a { color: var(--navy); }
.alta-v2 a.btn,
.alta-v2 .btn {
  color: #fff;
}
.alta-v2 a.btn:hover,
.alta-v2 .btn:hover {
  color: #fff;
}
.alta-v2 a.btn--ghost,
.alta-v2 a.btn--ghost:hover {
  color: var(--rust);
}
.alta-v2 a.btn--soft {
  color: var(--navy);
}
.alta-v2 a.btn--soft:hover {
  color: #fff;
}
.alta-v2 a.btn--call-form,
.alta-v2 a.btn--call-form:hover {
  color: var(--rust);
}
.alta-v2 a.btn--on-dark,
.alta-v2 a.btn--on-dark:hover {
  background: #fff;
  color: var(--navy);
}
.alta-v2 a.btn--line-dark {
  color: var(--navy);
}
.alta-v2 a.btn--line-dark:hover {
  color: #fff;
}
.alta-v2 p { margin: 0 0 0.85rem; color: var(--muted); max-width: 54ch; }
.alta-v2 h1, .alta-v2 h2, .alta-v2 h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.08;
  margin: 0 0 0.75rem;
}

.draft {
  background: var(--navy);
  color: rgba(255,255,255,.55);
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px var(--pad);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  background: var(--navy);
  color: #fff;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { background: #101827; color: #fff; }
.btn:active { transform: translateY(1px); }
.btn--ghost { background: transparent; color: var(--rust); border-color: var(--rust); }
.btn--ghost:hover { background: rgba(184,92,56,.12); color: var(--rust); }
.btn--on-dark { background: #fff; color: var(--navy); }
.btn--on-dark:hover { background: var(--ivory); color: var(--navy); }
.btn--line { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn--line:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--line-dark { background: transparent; color: var(--navy); border-color: rgba(23, 38, 61, 0.35); }
.btn--line-dark:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--wide { width: 100%; }

.field {
  display: grid;
  grid-template-rows: var(--label) var(--ctrl) auto;
  align-items: stretch;
}
.field > label {
  display: flex;
  align-items: flex-end;
  line-height: 1.25;
  min-height: var(--label);
  padding-bottom: 10px;
}
.field > .err { grid-row: 3; }
.field:not(:has(label)) {
  grid-template-rows: var(--ctrl) auto;
}
label { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--ink); }
input, select, textarea, button { font: inherit; }
input, select, textarea {
  width: 100%;
  height: var(--ctrl);
  min-height: var(--ctrl);
  margin-top: 0;
  padding: 0 .75rem;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}
textarea {
  padding-top: .7rem;
  padding-bottom: .7rem;
  resize: vertical;
}
select {
  -webkit-appearance: none;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink) 50%),
    linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% - 3px),
    calc(100% - 11px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}
#zip { font-size: 16px; font-weight: 700; letter-spacing: .08em; }
.field.is-asap select,
select.an-timing-asap {
  border-color: var(--rust);
  box-shadow: inset 0 0 0 1px var(--rust);
  color: var(--rust);
  font-weight: 700;
}
.err { display: none; color: #8a2b2b; font-size: .78rem; margin-top: 4px; }
.field.has-error .err { display: block; }
.field[hidden] { display: none !important; }
.field .btn { height: var(--ctrl); min-height: var(--ctrl); }
input:focus, select:focus, textarea:focus, .btn:focus-visible, a:focus-visible, .faq__q:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

/* Standalone V2 chrome (static index.html only). Live WP uses .an-header / .an-footer. */
body:not(.alta-v2-page) .nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 40;
}
body:not(.alta-v2-page) .nav__in {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
body:not(.alta-v2-page) .nav__logo { height: 28px; width: auto; }
body:not(.alta-v2-page) .nav__links { display: none; gap: 1.1rem; flex: 1; }
body:not(.alta-v2-page) .nav__links a { color: rgba(255,255,255,.8); text-decoration: none; font-size: 13px; font-weight: 600; transition: color .18s ease; }
body:not(.alta-v2-page) .nav__links a:hover { color: #fff; }
body:not(.alta-v2-page) .nav__end { margin-left: auto; display: flex; align-items: center; gap: .85rem; }
body:not(.alta-v2-page) .live { color: #e8b39a; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
body:not(.alta-v2-page) .nav__end .tel { color: #fff; text-decoration: none; font-size: 13px; font-weight: 600; }
body:not(.alta-v2-page) .nav .btn { min-height: 36px; font-size: 13px; background: #fff; color: var(--navy); }
body:not(.alta-v2-page) .nav .btn:hover { background: var(--ivory); color: var(--navy); }
body:not(.alta-v2-page) .call24 { display: none; color: #e8b39a; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; }
body:not(.alta-v2-page) .ham {
  width: 40px; height: 40px; border: 0; background: transparent;
  display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer;
}
body:not(.alta-v2-page) .ham span { display: block; height: 1.5px; background: #fff; }
body:not(.alta-v2-page) .sheet { display: none; background: #101827; padding: .75rem var(--pad) 1.25rem; }
body:not(.alta-v2-page).menu-open .sheet { display: block; }
body:not(.alta-v2-page) .sheet a { display: block; color: #fff; text-decoration: none; padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.08); font-weight: 600; }

@media (min-width: 1040px) {
  body:not(.alta-v2-page) .nav__links { display: flex; }
}
@media (max-width: 1039px) {
  body:not(.alta-v2-page) .live,
  body:not(.alta-v2-page) .nav__end .tel,
  body:not(.alta-v2-page) .nav .btn { display: none; }
  body:not(.alta-v2-page) .call24,
  body:not(.alta-v2-page) .ham { display: flex; }
}

/* ============================================================
   HERO — full-bleed photo + copy/form
   ============================================================ */
.hero {
  position: relative;
  background: #0f1724;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
}
.hero__stage {
  position: relative;
  display: block;
  min-height: min(72vh, 640px);
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  display: block;
  z-index: 0;
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(10, 16, 28, 0.92) 0%,
      rgba(10, 16, 28, 0.72) 42%,
      rgba(10, 16, 28, 0.35) 100%
    );
}
.hero__frame {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: 1.35rem 0 1.5rem;
  display: grid;
  gap: 1rem;
  align-items: center;
  min-height: inherit;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 34rem;
  color: #fff;
}
.hero__badge {
  display: inline-flex;
  margin: 0 0 .55rem;
  padding: 0;
  border-radius: 0;
  background: none;
  color: #e8b39a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.alta-v2 .hero h1,
.alta-v2-page .alta-v2 .hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  max-width: 12ch;
  margin: 0 0 .55rem;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: #fff;
}
.hero .lede {
  margin: 0 0 .4rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: .98rem;
  line-height: 1.45;
  max-width: 38ch;
}
.hero__lede--short { display: none; }
.hero__quick-call { display: none; }
.hero__panel-step { display: none; }
.hero__phone-line--desktop { display: flex; }
.lede {
  margin: 0 0 .55rem;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.5;
  max-width: 40ch;
}
.hero__note {
  margin: 0 0 .75rem;
  max-width: 40ch;
  font-size: .88rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}
.hero__phone-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .35rem .5rem;
  margin: 0;
  max-width: none;
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.72);
}
.hero__phone-link {
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}
.hero__phone-link:hover { border-bottom-color: #fff; }
.hero__phone-sep { opacity: .55; }
.hero__phone-note { color: rgba(255, 255, 255, 0.68); }

.hero__panel {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 0;
  padding: 1rem 1rem 1.25rem;
  box-shadow: none;
}
.hero__submit-row .btn--primary-form {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.hero__submit-row .btn--primary-form:hover {
  background: #101827;
  color: #fff;
  border-color: #101827;
}
.hero__panel-head { margin-bottom: .15rem; }
.hero__panel h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 .2rem;
  line-height: 1.15;
  color: var(--navy);
}
.hero__panel-intro {
  margin: 0 !important;
  max-width: none !important;
  color: var(--muted) !important;
  font-size: .85rem;
  line-height: 1.35;
}
.hero__panel p { max-width: none; }
.hero .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .45rem .55rem;
  margin: .7rem 0 .1rem;
}
.grid { display: grid; gap: .85rem; margin: 1rem 0; }
.span--2 { grid-column: 1 / -1; }
.field--full { grid-column: 1 / -1; }
.hero .field {
  grid-template-rows: auto minmax(44px, 44px) auto;
}
.hero .field > label {
  min-height: 0;
  padding-bottom: 3px;
  font-size: 10px;
}
.hero input,
.hero select,
.hero textarea {
  height: 44px;
  min-height: 44px;
  border-radius: 0;
  border-color: #d8d2c8;
  background: #fff;
  font-size: 15px;
}
.hero textarea { height: auto; min-height: 64px; }
.hero input:focus,
.hero select:focus,
.hero textarea:focus {
  background: #fff;
  border-color: var(--navy);
  box-shadow: none;
  outline: 2px solid var(--navy);
  outline-offset: 0;
}
.hero #zip {
  font-weight: 700;
  letter-spacing: 0.06em;
  background: #fff;
}
.hero__more {
  margin: 0;
  border: 1px solid #e7e1d7;
  border-radius: 0;
  background: #faf8f4;
}
.hero__more > summary {
  list-style: none;
  cursor: pointer;
  padding: .55rem .7rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
}
.hero__more > summary::-webkit-details-marker { display: none; }
.hero .hero__extras.field {
  display: block;
  grid-template-rows: none;
  margin-bottom: 0;
}
.hero__more-grid {
  display: grid;
  gap: .45rem;
  padding: 0 .7rem 1rem;
}
.hero__more-grid .field {
  grid-template-rows: auto minmax(44px, auto) auto;
}
.hero__more-grid .field[data-field="note"] {
  grid-template-rows: auto auto auto;
}
.hero__more-grid .field[data-field="note"] textarea {
  min-height: 72px;
  height: auto;
  margin-bottom: 0;
}
.hero__submit-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem;
  align-items: stretch;
  margin-top: .35rem;
}
.hero__submit-or { display: none; }
.hero__submit-row .btn {
  width: 100%;
  min-height: 46px;
  height: auto;
  white-space: normal;
  line-height: 1.25;
  border-radius: 0;
  padding: 0.65rem 0.85rem;
}
.hero .hint {
  margin-top: .45rem;
  margin-bottom: 0;
  font-size: .75rem;
  line-height: 1.3;
  color: var(--muted);
}
.btn--call-form {
  background: transparent;
  color: var(--rust);
  border-color: rgba(184, 92, 56, 0.45);
  min-width: 0;
}
.btn--call-form:hover {
  background: rgba(184, 92, 56, 0.08);
  color: var(--rust);
  border-color: var(--rust);
}
.btn--soft { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--soft:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--light { background: #fff; color: var(--navy); border-color: #fff; }
.btn--call { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.hint { font-size: .82rem; margin: .55rem 0 0; max-width: none; color: var(--muted); }
.confirm[hidden] { display: none !important; }
.quiet-inline { margin: .35rem 0 0 !important; font-size: .9rem; color: var(--muted); }
.work__urgent-link { margin-top: 1rem; max-width: none; }
.work__urgent-link a {
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--rust);
  color: var(--navy);
}
.work__urgent-link a:hover { color: var(--rust); }
.alta-v2 .draft { display: none !important; }
.eyehole {
  margin: 0 0 .5rem;
  color: var(--rust);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.acts { display: flex; flex-wrap: wrap; gap: 8px; margin: 1rem 0 .55rem; }

/* Mobile — headline on photo, form card below, single-column fields */
@media (max-width: 899.98px) {
  .hero {
    background: var(--ivory);
  }
  .hero__stage {
    position: relative;
    isolation: isolate;
    min-height: 0;
  }
  .hero__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: 62% center;
    z-index: 0;
  }
  .hero__shade {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(
        180deg,
        rgba(10, 16, 28, 0.35) 0%,
        rgba(10, 16, 28, 0.72) 38%,
        rgba(10, 16, 28, 0.88) 58%,
        rgba(247, 244, 238, 0.98) 78%,
        rgba(247, 244, 238, 1) 100%
      );
  }
  .hero__frame {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
    padding: 1rem var(--pad) calc(1.75rem + env(safe-area-inset-bottom, 0px));
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 0;
  }
  .hero__copy {
    order: 1;
    color: #fff;
    max-width: none;
    padding-top: 0.15rem;
  }
  .hero__form {
    order: 2;
    scroll-margin-top: 88px;
    scroll-margin-bottom: calc(var(--an-mobile-bar-h, 72px) + 12px);
  }
  .hero__lede--full,
  .hero__note,
  .hero__phone-line--desktop {
    display: none;
  }
  .hero__lede--short {
    display: block;
    color: rgba(255, 255, 255, 0.92);
    max-width: none;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.85rem;
  }
  .hero__badge {
    margin-bottom: 0.45rem;
    color: #f0c9b0;
  }
  .alta-v2 .hero h1,
  .alta-v2-page .alta-v2 .hero h1 {
    color: #fff;
    max-width: none;
    font-size: clamp(1.85rem, 8.2vw, 2.35rem);
    line-height: 1.08;
    margin-bottom: 0.65rem;
  }
  .hero__quick-call {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    min-height: 48px;
    padding: 0.65rem 0.85rem;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: #fff;
    text-decoration: none;
  }
  .hero__quick-call-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
  }
  .hero__quick-call-number {
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
  }
  .hero__panel {
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 1.05rem 1rem 1.35rem;
    box-shadow: none;
  }
  .hero__panel-step {
    display: block;
    margin: 0 0 0.35rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rust);
  }
  .hero__panel h2 {
    font-size: 1.35rem;
    margin-bottom: 0.25rem;
  }
  .hero__panel-intro {
    font-size: 0.92rem;
  }
  .hero .grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin-top: 0.85rem;
  }
  .hero .field {
    grid-template-rows: auto minmax(48px, 48px) auto;
  }
  .hero .field > label {
    font-size: 11px;
    letter-spacing: 0.04em;
  }
  .hero input,
  .hero select,
  .hero textarea {
    height: 48px;
    min-height: 48px;
    font-size: 16px;
    border-radius: 0;
  }
  .hero .field[data-field="zip"] {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .hero .field[data-field="zip"] > label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
  }
  .hero #zip {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: #fff;
    border-color: var(--line);
    text-align: left;
  }
  .hero .field[data-field="docType"] {
    margin-top: 0.15rem;
    padding-top: 0.75rem;
    border-top: 1px solid #ebe6dc;
  }
  .hero__submit-row {
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 0.5rem;
  }
  .hero__submit-or {
    display: block;
    order: 2;
    margin: 0.15rem 0 0;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
    color: var(--muted);
  }
  .hero__submit-row .btn {
    width: 100%;
    min-height: 48px;
    height: auto;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    border-radius: 0;
    white-space: normal;
    line-height: 1.25;
    padding: 0.7rem 0.85rem;
  }
  .hero__submit-row .btn--primary-form {
    order: 1;
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
  }
  .hero__submit-row .btn--call-form {
    order: 3;
    min-width: 0;
    background: #fff;
    color: var(--navy);
    border: 1.5px solid var(--navy);
  }
  .hero__submit-row .btn--call-form:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
  }

  .hero .hint {
    margin-top: 0.65rem;
    margin-bottom: 0.15rem;
    font-size: 0.8rem;
    text-align: center;
  }
  .hero__more {
    border-radius: 0;
  }
}
@media (min-width: 900px) {
  .hero__frame {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 24.5rem);
    gap: 1.5rem 1.75rem;
    padding: 1.85rem 0;
    width: min(1120px, calc(100% - 2.5rem));
  }
}

/* Trust / urgency bar */
.strip {
  background: var(--navy);
  color: #fff;
  padding: 1rem var(--pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.strip__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}
.strip__list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #fff;
  padding: 0;
  border: 0;
  background: none;
}
.strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--brass);
  flex: 0 0 auto;
}
@media (min-width: 860px) {
  .strip__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  .strip__list li { font-size: 0.9rem; }
}

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

/* Services */
.work {
  display: grid;
  padding: 2.75rem 0 3rem;
  background: var(--paper);
}
.work__head {
  padding: 0 var(--pad) 1.25rem;
}
.work__head > p:not(.eyehole):not(.work__urgent-link) {
  max-width: 42ch;
}
.work__list {
  border-top: 1px solid var(--line);
  padding: 0;
  gap: 0;
}
.def,
.cut {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.def {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem var(--pad);
}
.def h3 { font-size: 1.12rem; margin: 0; }
.def p { margin: 0; max-width: none; line-height: 1.55; }
.cut {
  display: grid;
  gap: 1rem;
  padding: 1.25rem var(--pad);
  background: var(--ivory);
}
.cut > div { padding: 0; }
.cut img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 35%;
}
.work__cta {
  padding: 1.25rem var(--pad) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
@media (min-width: 900px) {
  .work {
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto 1fr auto;
    width: min(var(--max), calc(100% - 2 * var(--pad)));
    margin: 0 auto;
    padding: 4rem 0 4.25rem;
    gap: 0 3rem;
  }
  .work__head {
    grid-column: 1;
    grid-row: 1 / 3;
    position: sticky;
    top: 72px;
    align-self: start;
    padding: 0;
  }
  .work__list {
    grid-column: 2;
    grid-row: 1;
  }
  .work__cta {
    grid-column: 2;
    grid-row: 2;
    padding: 1.25rem 0 0;
  }
  .def {
    grid-template-columns: 220px 1fr;
    gap: 1.35rem;
    align-items: start;
    padding: 1.25rem 0;
  }
  .cut {
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
    background: transparent;
  }
  .cut > div {
    padding: 0;
    display: block;
  }
  .cut img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

/* Arrive */
.arrive { background: var(--ivory); border-top: 1px solid var(--line); }
.arrive__in {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  padding: 2.5rem 0;
  display: grid;
  gap: 1.25rem;
}
.arrive img {
  width: 100%;
  height: clamp(210px, 42vw, 280px);
  object-fit: cover;
  object-position: 55% center;
  border-radius: 0;
  box-shadow: none;
}
.arrive__box {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.arrive__box h2 { margin-bottom: 0.65rem; }
.arrive__box p { max-width: none; }
.arrive__box .btn { margin-top: 0.35rem; }
@media (min-width: 800px) {
  .arrive__in {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 2.5rem;
    padding: 3rem 0;
  }
  .arrive img { height: 280px; }
}

/* Rush */
.rush {
  display: grid;
  background: var(--rust);
  color: #fff;
}
.rush h2,
.rush p,
.rush .eyehole { color: #fff; }
.rush .eyehole { color: rgba(255, 255, 255, 0.88); }
.rush__a,
.rush__b {
  padding: 2rem var(--pad);
}
.rush__b .btn {
  margin-top: 0.35rem;
  min-height: 48px;
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.rush__b .btn:hover {
  background: #101827;
  color: #fff;
  border-color: #101827;
}
@media (max-width: 799.98px) {
  .rush__a {
    padding: 1.35rem var(--pad) 0.5rem;
  }
  .rush__a .eyehole {
    margin-bottom: 0.35rem;
  }
  .rush__a h2 {
    margin-bottom: 0;
  }
  .rush__b {
    padding: 0.5rem var(--pad) 1.35rem;
  }
  .rush__b > p:first-of-type {
    margin-bottom: 0.75rem;
  }
  .rush__b .btn {
    width: 100%;
    justify-content: center;
  }
  .rush__b .quiet {
    margin-top: 0.65rem;
    margin-bottom: 0;
  }
}
@media (min-width: 800px) {
  .rush { grid-template-columns: 1.05fr 0.95fr; }
  .rush__a {
    padding: 3.5rem 3rem 3.5rem max(var(--pad), calc((100% - var(--max)) / 2));
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .rush__b {
    padding: 3.5rem max(var(--pad), calc((100% - var(--max)) / 2)) 3.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }
  .rush h2 { font-size: clamp(2.35rem, 4vw, 3.25rem); max-width: 11ch; }
}
.quiet { font-size: 0.88rem; opacity: 0.92; max-width: none; }

/* Dark sections — white copy (beats legacy home.css on front page) */
.alta-v2-page .alta-v2 .rush h2,
.alta-v2-page .alta-v2 .rush p,
.alta-v2-page .alta-v2 .rush .quiet,
.alta-v2-page .alta-v2 .nation__copy h2,
.alta-v2-page .alta-v2 .nation__copy p,
.alta-v2-page .alta-v2 .nation__lede,
.alta-v2-page .alta-v2 .nation__note,
.alta-v2-page .alta-v2 .nation__copy .quiet,
.alta-v2-page .alta-v2 .firm h2,
.alta-v2-page .alta-v2 .firm p,
.alta-v2-page .alta-v2 .close__copy h2,
.alta-v2-page .alta-v2 .close__copy p,
.alta-v2-page .alta-v2 .close__lede,
.alta-v2-page .alta-v2 .close__note,
.alta-v2-page .alta-v2 .close__copy .quiet {
  color: #fff;
}

/* Nation */
.nation {
  display: grid;
  background: var(--navy);
  color: #fff;
  border-top: 3px solid var(--rust);
}
.nation h2,
.nation p,
.nation .eyehole { color: #fff; }
.nation .eyehole { color: rgba(255, 255, 255, 0.78); }
.gold {
  width: 32px;
  height: 2px;
  border-radius: 0;
  background: var(--brass);
  margin-bottom: 1rem;
}
.nation__main {
  padding: 2rem var(--pad);
  display: grid;
  gap: 1.35rem;
  align-content: center;
}
.nation__copy .gold { margin-bottom: 0.85rem; }
.nation h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  max-width: 14ch;
}
.nation__lede {
  margin-bottom: 0.55rem;
  color: #fff;
  max-width: 38ch;
}
.nation__note {
  margin: 0;
  color: #fff;
  font-size: 0.88rem;
  max-width: none;
}
.nation__panel {
  background: var(--ivory);
  padding: 1.35rem;
  display: grid;
  gap: 0.75rem;
}
.nation__zip {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.nation__zip > label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nation__zip-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}
.nation__zip-row input {
  min-width: 0;
  min-height: 48px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nation__zip-row .btn {
  width: 100%;
  min-height: 48px;
}
.nation__panel .btn--line-dark {
  width: 100%;
  min-height: 48px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.nation__map {
  margin: 0;
  position: relative;
  background: #0e1522;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.nation__map-frame {
  width: 100%;
  flex: 1;
  min-height: 280px;
  border: 0;
  display: block;
  background: #0e1522;
}
.nation__map-placeholder {
  flex: 1;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}
.nation__map-placeholder p {
  margin: 0;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}
.nation__map-placeholder strong {
  color: #fff;
  font-weight: 700;
}
.nation__map figcaption {
  margin: 0;
  padding: 0 1.25rem 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}
@media (max-width: 899.98px) {
  .nation__main {
    padding-bottom: 1.35rem;
  }
  .nation__map,
  .nation__map-frame,
  .nation__map-placeholder {
    min-height: 300px;
  }
}
@media (min-width: 640px) {
  .nation__zip-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .nation__zip-row .btn {
    width: auto;
    white-space: nowrap;
  }
}
@media (min-width: 900px) {
  .nation {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: stretch;
  }
  .nation__main {
    padding: 3.5rem 3rem 3.5rem max(var(--pad), calc((100% - var(--max)) / 2));
    gap: 1.65rem;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  .nation h2 {
    font-size: clamp(2.1rem, 3.4vw, 2.85rem);
    max-width: 12ch;
  }
  .nation__panel {
    max-width: 28rem;
    padding: 1.5rem;
  }
  .nation__map {
    border-top: 0;
    min-height: 100%;
  }
  .nation__map-frame,
  .nation__map-placeholder {
    min-height: 420px;
  }
  .nation__map figcaption {
    padding: 0 1.25rem 1rem;
    text-align: left;
  }
}
@media (min-width: 1100px) {
  .nation__map-frame,
  .nation__map-placeholder {
    min-height: 480px;
  }
}

/* Flow */
.flow {
  padding: 2.75rem 0 3rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.flow__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}
.flow__top h2 { margin: 0; }
.flow ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.flow li {
  position: relative;
  padding: 1.1rem 0 1.1rem 3rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.flow li:last-child { padding-bottom: 1.1rem; }
.flow h3 { font-size: 1.12rem; margin: 0 0 0.35rem; }
.flow p { margin: 0; max-width: none; }
.num {
  position: absolute;
  left: 0;
  top: 1.1rem;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--navy);
  border-radius: 0;
  background: var(--paper);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--navy);
}
@media (min-width: 800px) {
  .flow { padding: 3rem 0 3.25rem; }
  .flow ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    border-top: 0;
    position: relative;
  }
  .flow ol::before {
    content: "";
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background: var(--line);
  }
  .flow li {
    padding: 0;
    border-bottom: 0;
  }
  .flow .num {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 0.85rem;
  }
}

/* Firm */
.firm {
  background: var(--navy);
  color: #fff;
}
.firm__in {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  padding: 2.5rem 0 2.75rem;
  display: grid;
  gap: 1.35rem;
}
.firm h2,
.firm p { color: #fff; }
.firm__types {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.firm__types li {
  margin: 0;
  padding: 0.55rem 0.85rem 0.55rem 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.18s ease;
}
.firm__types li:not(:last-child)::after {
  content: "·";
  margin-left: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 400;
}
.firm.reveal:not(.is-in) .firm__types li { opacity: 0; }
.firm.is-in .firm__types li { animation: rise 0.45s ease both; }
.firm__types li:hover { color: var(--brass); transform: none; }
.firm.is-in .firm__types li:nth-child(1) { animation-delay: 0.04s; }
.firm.is-in .firm__types li:nth-child(2) { animation-delay: 0.08s; }
.firm.is-in .firm__types li:nth-child(3) { animation-delay: 0.12s; }
.firm.is-in .firm__types li:nth-child(4) { animation-delay: 0.16s; }
.firm.is-in .firm__types li:nth-child(5) { animation-delay: 0.2s; }
.firm.is-in .firm__types li:nth-child(6) { animation-delay: 0.24s; }
.firm.is-in .firm__types li:nth-child(7) { animation-delay: 0.28s; }
.firm.is-in .firm__types li:nth-child(8) { animation-delay: 0.32s; }
.firm .btn { margin-top: 0.25rem; }
.firm .btn--on-dark {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  display: flex;
  justify-content: center;
  text-align: center;
}
@media (max-width: 899.98px) {
  .firm .btn--on-dark {
    width: 100%;
  }
}
.firm .btn--on-dark:hover {
  background: var(--ivory);
  color: var(--navy);
  border-color: var(--ivory);
}
@media (min-width: 860px) {
  .firm__in {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
  }
  .firm h2 { max-width: 16ch; }
}

/* Rate */
.rate {
  border-top: 1px solid var(--line);
  padding: 2.75rem 0 3rem;
  background: var(--ivory);
}
.rate__grid {
  display: grid;
  gap: 2rem;
}
.rate__grid > div {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.rate__sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.bits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.bits li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.rate__once {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: var(--muted);
  max-width: none;
}
@media (min-width: 640px) {
  .bits { grid-template-columns: 1fr 1fr; gap: 0 1.25rem; }
}
@media (min-width: 800px) {
  .rate { padding: 3rem 0 3.25rem; }
  .rate__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

/* FAQ */
.ask {
  background: var(--paper);
  padding: 2.75rem 0 3rem;
  border-top: 1px solid var(--line);
}
.ask__grid { display: grid; gap: 1.25rem; }
.faq-list {
  border: 0;
  border-top: 1px solid var(--line);
  display: block;
  gap: 0;
}
.faq__item {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: none;
  border: 0;
  text-align: left;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 650;
  cursor: pointer;
}
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq__a p { padding: 0 0 1rem; margin: 0; max-width: none; }
.plus { width: 12px; height: 12px; position: relative; flex: 0 0 auto; margin-top: 0.35rem; }
.plus::before,
.plus::after { content: ""; position: absolute; background: var(--navy); inset: 0; margin: auto; }
.plus::before { width: 12px; height: 1.5px; }
.plus::after { width: 1.5px; height: 12px; transition: opacity 0.2s ease; }
.faq__item.is-open .plus::after { opacity: 0; }
@media (min-width: 860px) {
  .ask { padding: 3rem 0 3.25rem; }
  .ask__grid { grid-template-columns: 280px 1fr; gap: 2.75rem; align-items: start; }
}

/* Close CTA */
.close {
  display: grid;
  background: var(--navy);
  color: #fff;
  border-top: 3px solid var(--rust);
}
.close h2,
.close p,
.close .eyehole { color: #fff; }
.close .eyehole { color: rgba(255, 255, 255, 0.78); }
.close__copy,
.close__panel {
  padding: 2rem var(--pad);
}
.close__copy .gold { margin-bottom: 0.85rem; }
.close h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  max-width: 14ch;
}
.close__lede {
  margin-bottom: 0.65rem;
  color: #fff;
  max-width: 42ch;
}
.close__note {
  margin: 0;
  color: #fff;
  font-size: 0.88rem;
  max-width: none;
}
.close__panel {
  background: var(--ivory);
  color: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.close__form {
  margin: 0;
}
.close__form > label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.close__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}
.close__form-row input {
  min-width: 0;
  min-height: 48px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.close__form-row .btn {
  width: 100%;
  min-height: 48px;
}
.close__or {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.85rem 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.close__or::before,
.close__or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.close__or span { flex-shrink: 0; }
.close__panel .btn--line-dark {
  width: 100%;
  min-height: 48px;
}
@media (max-width: 799.98px) {
  .close__copy {
    padding-bottom: 1.35rem;
  }
  .close__panel {
    padding-top: 1.35rem;
    padding-bottom: 1.75rem;
  }
}
@media (min-width: 800px) {
  .close {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .close__copy {
    padding: 3.5rem 3rem 3.5rem max(var(--pad), calc((100% - var(--max)) / 2));
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .close__panel {
    padding: 3.5rem max(var(--pad), calc((100% - var(--max)) / 2)) 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.18);
  }
  .close h2 {
    font-size: clamp(2.1rem, 3.4vw, 2.85rem);
    max-width: 12ch;
  }
  .close__form-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .close__form-row .btn {
    width: auto;
    white-space: nowrap;
  }
}
@media (min-width: 1040px) {
  .close__panel {
    padding-left: 3rem;
  }
  .close__copy {
    padding-right: 3.5rem;
  }
}

.base {
  background: #101827;
  color: rgba(255,255,255,.7);
  padding: 2.75rem 0 calc(1.5rem + 72px);
}
@media (min-width: 900px) { .base { padding-bottom: 2.25rem; } }
.base__g { display: grid; gap: 1.5rem; }
.base a { color: #fff; text-decoration: none; font-size: .92rem; }
.base ul { list-style: none; margin: 0; padding: 0; }
.base li { margin: .3rem 0; }
.lab { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: rgba(255,255,255,.4); }
.fineprint { margin-top: 1.75rem; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; color: rgba(255,255,255,.42); max-width: none; }
@media (min-width: 800px) { .base__g { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: var(--paper); border-top: 1px solid var(--line);
}
.dock a {
  min-height: 48px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; text-decoration: none; border-radius: var(--r);
  transition: background-color .18s ease, color .18s ease;
}
.dock__c { background: var(--rust); color: #fff; }
.dock__c:hover { background: #9a4a2c; color: #fff; }
.dock__g { background: var(--navy); color: #fff; }
.dock__g:hover { background: #101827; color: #fff; }
@media (min-width: 900px) { .dock { display: none; } }

/* Section reveal — JS adds .reveal then .is-in */
.reveal {
  opacity: 0;
  transform: translateY(22px);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s cubic-bezier(.16, .84, .32, 1);
}
.strip.reveal.is-in { transition-duration: .55s; }

.work.is-in .def,
.work.is-in .cut,
.flow.is-in li,
.ask.is-in .faq__item,
.rate.is-in .bits li {
  animation: rise .55s ease both;
}
.work.is-in .def:nth-child(1), .flow.is-in li:nth-child(1), .ask.is-in .faq__item:nth-child(1) { animation-delay: .05s; }
.work.is-in .def:nth-child(2), .work.is-in .cut, .flow.is-in li:nth-child(2), .ask.is-in .faq__item:nth-child(2) { animation-delay: .12s; }
.work.is-in .def:nth-child(3), .flow.is-in li:nth-child(3), .ask.is-in .faq__item:nth-child(3) { animation-delay: .18s; }
.work.is-in .def:nth-child(4), .ask.is-in .faq__item:nth-child(4) { animation-delay: .24s; }
.work.is-in .def:nth-child(5), .ask.is-in .faq__item:nth-child(5) { animation-delay: .3s; }
.work.is-in .def:nth-child(6), .ask.is-in .faq__item:nth-child(6) { animation-delay: .36s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .firm__types li, .nav__links a, .dock a, .reveal { transition: none; animation: none; }
  .btn:active, .firm__types l