@font-face {
  font-family: "Archivo Black";
  src: url("assets/fonts/archivo-black.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/ibm-plex-sans-400.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/ibm-plex-sans-600.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("assets/fonts/ibm-plex-sans-700.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-600.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

:root {
  --ink: #15212c;
  --ink-soft: #495866;
  --blue: #0d3b66;
  --blue-deep: #072b4b;
  --blue-bright: #176aa6;
  --orange: #ff6b2c;
  --orange-dark: #d94b14;
  --paper: #f6f2e9;
  --kraft: #d4bd98;
  --white: #fffdf8;
  --line: #c7d0d7;
  --success: #1d6c55;
  --shadow: 0 22px 70px rgba(5, 28, 48, 0.18);
  --display: "Archivo Black", "Arial Black", sans-serif;
  --body: "IBM Plex Sans", Arial, sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: #fff;
  background: var(--blue);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.utility-bar {
  color: #dbe9f3;
  background: var(--blue-deep);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.utility-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 32px;
}

.utility-bar a {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(13, 59, 102, 0.13);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--blue-deep);
  background: var(--orange);
  border-radius: 5px 5px 5px 1px;
  box-shadow: 4px 4px 0 var(--blue);
  font-family: var(--display);
  font-size: 15px;
  line-height: 1;
}

.brand__name {
  font-family: var(--display);
  font-size: 19px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
}

.primary-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding-inline: 17px;
}

.button--large {
  min-height: 56px;
  padding: 16px 24px;
}

.button--orange {
  color: #151515;
  background: var(--orange);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.22);
}

.button--orange:hover {
  background: #ff7b44;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.18);
}

.button--blue {
  color: #fff;
  background: var(--blue);
}

.button--full {
  width: 100%;
}

.text-link {
  color: var(--blue);
  font-weight: 700;
  text-underline-offset: 5px;
}

.text-link--light {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  color: #fff;
  background: var(--blue-deep);
  isolation: isolate;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -3;
  object-fit: cover;
  object-position: 57% center;
  animation: hero-arrival 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 27, 47, 0.98) 0%, rgba(4, 27, 47, 0.92) 37%, rgba(4, 27, 47, 0.42) 68%, rgba(4, 27, 47, 0.14) 100%),
    linear-gradient(0deg, rgba(4, 27, 47, 0.8), transparent 42%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--orange) 0 28px, transparent 28px 40px);
  content: "";
}

.hero__inner {
  display: grid;
  min-height: 750px;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 70px;
  padding-block: 88px 96px;
}

.hero__copy {
  max-width: 720px;
  animation: copy-arrival 760ms 120ms ease both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #ff9a6f;
}

.hero h1,
.section-heading h2,
.offer-intro h2,
.location-card h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 810px;
  font-size: clamp(52px, 7.2vw, 100px);
  text-wrap: balance;
}

.hero h1 span {
  color: var(--orange);
}

.hero__lede {
  max-width: 640px;
  margin: 28px 0 0;
  color: #e5eef5;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 25px;
  margin: 34px 0 0;
  padding: 0;
  color: #cfdae3;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.03em;
  list-style: none;
  text-transform: uppercase;
}

.hero__checks li::before {
  margin-right: 8px;
  color: var(--orange);
  content: "✓";
}

.offer-ticket {
  position: relative;
  align-self: end;
  margin-bottom: 2px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
  animation: ticket-arrival 720ms 340ms ease both;
}

.offer-ticket::before,
.offer-ticket::after {
  position: absolute;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(5, 38, 65, 0.76);
  content: "";
}

.offer-ticket::before {
  top: 71%;
}

.offer-ticket::after {
  top: 76%;
}

.offer-ticket__top {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  color: #fff;
  background: var(--orange);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offer-ticket__body {
  padding: 22px 20px 25px;
}

.offer-ticket__body > p {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.offer-ticket__body > strong {
  display: block;
  margin: 4px 0 16px;
  color: var(--blue);
  font-family: var(--display);
  font-size: 60px;
  line-height: 1;
}

.offer-ticket__rows {
  display: grid;
  gap: 7px;
}

.offer-ticket__rows span {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #a6afb6;
  font-family: var(--mono);
  font-size: 11px;
}

.offer-ticket__rows b {
  color: var(--success);
}

.offer-ticket__stub {
  padding: 18px 20px;
  border-top: 2px dashed #919da7;
  background: #f7efe0;
}

.offer-ticket__stub span,
.offer-ticket__stub b {
  display: block;
}

.offer-ticket__stub span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offer-ticket__stub b {
  margin-top: 4px;
  color: var(--blue);
  font-size: 17px;
}

.proof-strip {
  color: #fff;
  background: var(--blue);
}

.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip__grid > div {
  padding: 24px 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-strip__grid > div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.proof-strip b,
.proof-strip span {
  display: block;
}

.proof-strip b {
  color: #fff;
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.proof-strip span {
  color: #afc8dc;
  font-size: 13px;
}

.section {
  padding-block: 120px;
}

.section--paper {
  background:
    radial-gradient(circle at 10% 20%, rgba(13, 59, 102, 0.035) 0 1px, transparent 1.5px) 0 0 / 18px 18px,
    var(--paper);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 58px;
}

.section-heading h2,
.offer-intro h2,
.location-card h2 {
  font-size: clamp(48px, 6vw, 78px);
}

.section-heading > p:last-child {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
}

.buy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #aebbc4;
  border-radius: 7px;
  background: #aebbc4;
  box-shadow: 0 20px 60px rgba(13, 59, 102, 0.08);
}

.buy-card {
  position: relative;
  min-height: 390px;
  padding: 34px 30px 30px;
  background: var(--white);
}

.buy-card__stamp {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 56px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 12px;
  transform: rotate(-9deg);
}

.buy-card h3 {
  max-width: 290px;
  margin: 0;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.06;
  text-transform: uppercase;
}

.buy-card p {
  margin: 16px 0 18px;
  color: var(--ink-soft);
  font-size: 15px;
}

.buy-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  list-style: none;
  text-transform: uppercase;
}

.buy-card li::before {
  margin-right: 7px;
  color: var(--orange);
  content: "+";
}

.buy-card--orange {
  color: #181818;
  background: var(--orange);
}

.buy-card--orange .buy-card__stamp {
  border-color: var(--blue);
  color: var(--blue);
}

.buy-card--orange p {
  color: #4a270f;
}

.buy-card--orange a {
  display: inline-block;
  margin-top: 25px;
  color: var(--blue-deep);
  font-weight: 700;
  text-underline-offset: 4px;
}

.buy-card--wide {
  display: grid;
  min-height: 230px;
  grid-column: 1 / -1;
  grid-template-columns: 55px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.buy-card--wide .buy-card__stamp,
.buy-card--wide p,
.buy-card--wide a {
  margin: 0;
}

.buy-card--wide .buy-card__stamp {
  grid-row: 1 / 3;
}

.buy-card--wide h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.buy-card--wide p {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  max-width: 470px;
}

.buy-card--wide .bulk-capacity {
  grid-column: 3;
  grid-row: 1 / 3;
}

.bulk-capacity {
  display: grid;
  min-width: 245px;
  gap: 2px;
  padding-left: 30px;
  border-left: 1px solid rgba(7, 43, 75, 0.35);
}

.bulk-capacity strong {
  color: var(--blue-deep);
  font-family: var(--display);
  font-size: 46px;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.bulk-capacity > span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bulk-capacity a {
  margin-top: 18px;
  white-space: nowrap;
}

.featured-inventory {
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.75fr);
  margin-top: 34px;
  border-radius: 7px;
  background: var(--blue-deep);
  box-shadow: var(--shadow);
}

.featured-inventory__image {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  background: #d5dce0;
}

.featured-inventory__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 49% center;
}

.featured-inventory__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, rgba(5, 35, 59, 0.34));
  content: "";
  pointer-events: none;
}

.featured-inventory__image figcaption {
  position: absolute;
  bottom: 17px;
  left: 18px;
  z-index: 1;
  padding: 8px 11px;
  color: #fff;
  background: rgba(4, 35, 59, 0.88);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-inventory__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 42px;
  color: #fff;
}

.featured-inventory__copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(34px, 3.6vw, 51px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-transform: uppercase;
}

.featured-inventory__copy > p:not(.eyebrow) {
  margin: 21px 0 0;
  color: #c5d7e4;
  font-size: 14px;
}

.featured-inventory__copy ul {
  display: grid;
  gap: 8px;
  margin: 25px 0 30px;
  padding: 0;
  color: #eef5f8;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.02em;
  list-style: none;
  text-transform: uppercase;
}

.featured-inventory__copy li::before {
  margin-right: 8px;
  color: var(--orange);
  content: "+";
}

.featured-inventory__copy .button {
  align-self: flex-start;
}

.condition-ribbon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.condition-ribbon span {
  padding: 7px 11px;
  border: 1px solid var(--blue);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.safety-note {
  max-width: 900px;
  margin: 25px auto 0;
  color: #5d6871;
  font-size: 13px;
  text-align: center;
}

.section--blue {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--blue);
}

.section--blue::before {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  border: 100px solid rgba(255, 107, 44, 0.09);
  border-radius: 50%;
  content: "";
}

.section-heading--light h2 {
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-card {
  position: relative;
  min-height: 340px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(4, 37, 64, 0.3);
}

.process-card__number {
  display: block;
  margin-bottom: 110px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 12px;
}

.process-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.process-card p {
  margin: 14px 0 0;
  color: #c7d8e5;
  font-size: 15px;
}

.section--offer {
  background: #dce9f0;
}

.offer-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.offer-intro {
  position: sticky;
  top: 132px;
}

.offer-intro > p:not(.eyebrow) {
  max-width: 440px;
  margin-top: 23px;
  color: var(--ink-soft);
  font-size: 18px;
}

.offer-callout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  max-width: 360px;
  margin-top: 40px;
  padding: 24px;
  border-left: 5px solid var(--orange);
  background: var(--white);
  box-shadow: 8px 8px 0 rgba(13, 59, 102, 0.12);
}

.offer-callout b {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offer-callout span {
  font-size: 14px;
}

.offer-callout span::before {
  margin-right: 9px;
  color: var(--orange);
  content: "□";
}

.offer-form {
  padding: 36px;
  border: 1px solid #bacbd5;
  border-radius: 7px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px 18px;
}

.offer-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.offer-form label > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-form input,
.offer-form select,
.offer-form textarea {
  width: 100%;
  border: 1px solid #9eafb9;
  border-radius: 3px;
  color: var(--ink);
  background: #fff;
}

.offer-form input,
.offer-form select {
  min-height: 49px;
  padding: 10px 12px;
}

.offer-form textarea {
  padding: 12px;
  resize: vertical;
}

.offer-form input:focus,
.offer-form select:focus,
.offer-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(23, 106, 166, 0.16);
}

.offer-form [aria-invalid="true"] {
  border-color: #b3292d;
}

.form-span-2 {
  grid-column: 1 / -1;
}

.photo-field {
  padding: 17px;
  border: 1px dashed var(--blue-bright);
  border-radius: 3px;
  background: #f1f8fb;
}

.photo-field input {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.photo-field small {
  color: #5e6d78;
  font-size: 12px;
}

.form-error {
  min-height: 22px;
  margin: 18px 0 7px;
  color: #9d1f24;
  font-size: 13px;
  font-weight: 700;
}

.form-privacy {
  margin: 14px 0 0;
  color: #66737d;
  font-size: 12px;
  text-align: center;
}

.section--location {
  color: #fff;
  background: var(--blue-deep);
}

.location-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 50px;
  align-items: stretch;
}

.location-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 0;
}

.location-card address {
  max-width: 330px;
  margin: 32px 0 0;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}

.location-card > p:not(.eyebrow) {
  max-width: 430px;
  margin: 12px 0 0;
  color: #c4d4df;
  font-size: 15px;
}

.location-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 35px;
}

.location-actions .button--blue {
  color: var(--ink);
  background: var(--orange);
}

.location-actions .text-link {
  color: #fff;
}

.map-frame {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 7px solid #fff;
  background: #d8e0e4;
  box-shadow: 12px 12px 0 var(--orange);
}

.map-frame::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 0;
  color: #151515;
  background: var(--orange);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
  content: "OC";
  font-family: var(--display);
  font-size: 12px;
  transform: translate(-50%, -70%) rotate(-45deg);
}

.map-frame::after {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  padding: 12px 16px;
  color: #fff;
  background: rgba(4, 36, 61, 0.9);
  content: "2001 S Susan St • Santa Ana, CA 92704";
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.map-frame::before,
.map-frame::after {
  pointer-events: none;
}

.map-frame::before {
  line-height: 1;
  rotate: 45deg;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 530px;
  filter: saturate(0.85) contrast(1.05);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
}

.faq-list {
  border-top: 1px solid #aeb9c1;
}

.faq-list details {
  border-bottom: 1px solid #aeb9c1;
}

.faq-list summary {
  position: relative;
  padding: 25px 45px 25px 0;
  cursor: pointer;
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 6px;
  color: var(--orange-dark);
  font-family: var(--mono);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: -5px 0 26px;
  padding-right: 50px;
  color: var(--ink-soft);
  font-size: 15px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding-block: 84px;
  color: #fff;
  background: var(--blue);
}

.final-cta::after {
  position: absolute;
  top: -150px;
  left: 40%;
  width: 360px;
  height: 360px;
  border: 60px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  content: "";
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}

.final-cta h2 {
  max-width: 800px;
  font-size: clamp(38px, 5.2vw, 67px);
}

.site-footer {
  padding-block: 68px 95px;
  color: #c0ced9;
  background: #061f35;
  font-size: 13px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr 1fr;
  gap: 48px;
}

.brand--footer {
  color: #fff;
}

.site-footer__grid > div > b {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 360px;
  margin: 24px 0 0;
}

.site-footer address,
.site-footer span,
.site-footer a {
  display: block;
  margin-bottom: 8px;
  font-style: normal;
}

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

.mobile-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-arrival {
  from { opacity: 0.72; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes copy-arrival {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

@keyframes ticket-arrival {
  from { opacity: 0; transform: translateY(30px) rotate(5deg); }
  to { opacity: 1; transform: rotate(2.5deg); }
}

@media (max-width: 980px) {
  .site-header__inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
    border: 0;
    color: var(--blue);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
  }

  .menu-button__lines,
  .menu-button__lines::before,
  .menu-button__lines::after {
    display: block;
    width: 21px;
    height: 2px;
    background: currentcolor;
  }

  .menu-button__lines {
    position: relative;
  }

  .menu-button__lines::before,
  .menu-button__lines::after {
    position: absolute;
    left: 0;
    content: "";
  }

  .menu-button__lines::before { top: -6px; }
  .menu-button__lines::after { top: 6px; }

  .primary-nav {
    position: fixed;
    top: 110px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    padding: 30px 20px;
    visibility: hidden;
    opacity: 0;
    background: var(--white);
    transform: translateY(-10px);
    transition: 180ms ease;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .primary-nav a {
    padding: 19px 10px;
    border-bottom: 1px solid var(--line);
    color: var(--blue);
    font-family: var(--display);
    font-size: 28px;
    text-transform: uppercase;
  }

  .header-cta {
    justify-self: end;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .offer-ticket {
    display: none;
  }

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

  .featured-inventory {
    grid-template-columns: 1fr;
  }

  .featured-inventory__image {
    min-height: 500px;
  }

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

  .process-card {
    display: grid;
    min-height: 0;
    grid-template-columns: 60px 1fr;
    gap: 22px;
  }

  .process-card__number {
    margin: 0;
  }

  .offer-layout,
  .location-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .offer-intro {
    position: static;
  }

  .location-card {
    padding: 0;
  }

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

@media (max-width: 700px) {
  body {
    padding-bottom: 60px;
    font-size: 16px;
  }

  .shell {
    width: min(100% - 28px, 1180px);
  }

  .utility-bar__inner span:nth-of-type(n + 2) {
    display: none;
  }

  .utility-bar__inner {
    justify-content: space-between;
  }

  .site-header__inner {
    min-height: 68px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    top: 100px;
  }

  .brand__mark {
    width: 35px;
    height: 35px;
    box-shadow: 3px 3px 0 var(--blue);
  }

  .brand__name {
    font-size: 16px;
  }

  .hero,
  .hero__inner {
    min-height: 690px;
  }

  .hero__inner {
    align-items: end;
    padding-block: 88px 72px;
  }

  .hero__image {
    object-position: 63% center;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(4, 27, 47, 0.99) 0%, rgba(4, 27, 47, 0.86) 58%, rgba(4, 27, 47, 0.2) 100%);
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 65px);
  }

  .hero__lede {
    font-size: 17px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 17px;
  }

  .hero__actions .text-link {
    text-align: center;
  }

  .hero__checks {
    display: grid;
    gap: 8px;
  }

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

  .proof-strip__grid > div {
    padding: 18px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .section {
    padding-block: 82px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .offer-intro h2,
  .location-card h2 {
    font-size: 46px;
  }

  .section-heading > p:last-child {
    font-size: 17px;
  }

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

  .buy-card {
    min-height: 330px;
  }

  .buy-card__stamp {
    margin-bottom: 38px;
  }

  .buy-card--wide {
    display: block;
    min-height: 330px;
    grid-column: auto;
  }

  .buy-card--wide .buy-card__stamp {
    margin-bottom: 38px;
  }

  .buy-card--wide h3,
  .buy-card--wide p,
  .buy-card--wide a,
  .buy-card--wide .bulk-capacity,
  .buy-card--wide .buy-card__stamp {
    grid-column: auto;
    grid-row: auto;
  }

  .buy-card--wide p {
    margin: 16px 0 18px;
  }

  .buy-card--wide a {
    margin-top: 25px;
  }

  .bulk-capacity {
    margin-top: 28px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(7, 43, 75, 0.35);
    border-left: 0;
  }

  .featured-inventory__image {
    min-height: 330px;
  }

  .featured-inventory__copy {
    padding: 38px 24px 42px;
  }

  .process-card {
    grid-template-columns: 45px 1fr;
    padding: 24px 20px;
  }

  .offer-layout,
  .location-layout,
  .faq-layout {
    gap: 42px;
  }

  .offer-form {
    padding: 22px 17px;
  }

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

  .form-span-2 {
    grid-column: auto;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 390px;
  }

  .map-frame {
    border-width: 4px;
    box-shadow: 7px 7px 0 var(--orange);
  }

  .map-frame::after {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .faq-list summary {
    font-size: 16px;
  }

  .final-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 60px;
    color: #fff;
    background: var(--blue-deep);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
  }

  .mobile-actions a {
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-actions a:first-child {
    color: #151515;
    background: var(--orange);
  }

  .mobile-actions a[hidden] {
    display: none;
  }

  .mobile-actions:has(a[hidden]) {
    grid-template-columns: 1fr;
  }
}

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

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

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