.preorder-announcement {
  position: relative;
  z-index: 110;
}

.mobile-purchase-bar {
  display: none;
}

.order-hero {
  max-width: 1600px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(440px, 0.82fr);
  grid-template-areas:
    "gallery buy"
    "pair buy";
  gap: clamp(34px, 5vw, 82px);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 90px) clamp(24px, 5vw, 80px);
  background: var(--ivory);
}

.order-gallery {
  grid-area: gallery;
  min-width: 0;
}

.order-gallery-main {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow);
}

.order-gallery-main::after {
  display: none;
}

.order-gallery-main img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
}

.order-gallery-main figcaption {
  position: static;
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 24px clamp(24px, 6vw, 54px) 28px;
  border: 0;
  background: var(--white);
  color: var(--navy-900);
  text-align: center;
}

.order-caption-mark {
  width: 72px;
  fill: none;
  stroke: var(--gold-light);
  stroke-linecap: round;
  stroke-width: 2;
}

.order-gallery-main figcaption span {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.order-gallery-main figcaption strong {
  font-family: var(--serif);
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}

.order-gallery-pair {
  grid-area: pair;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.order-gallery-pair figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.order-gallery-pair img {
  width: 100%;
  height: clamp(260px, 23vw, 390px);
  object-fit: cover;
}

.order-gallery-pair figure:first-child img {
  object-position: 54% center;
}

.order-gallery-pair figure:last-child img {
  object-position: 50% center;
}

.order-gallery-pair figcaption {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px;
  text-align: center;
}

.order-gallery-pair figcaption span {
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 14px;
}

.order-gallery-pair figcaption strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.order-buy-box {
  grid-area: buy;
  position: sticky;
  top: 108px;
  align-self: start;
  padding: clamp(34px, 4vw, 58px);
  border-top: 3px solid var(--gold);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(4, 16, 29, 0.13);
}

.order-buy-box h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--navy-900);
  font-size: clamp(48px, 4.4vw, 72px);
  line-height: 0.98;
}

.order-subhead {
  margin-bottom: 30px;
  color: var(--slate);
  font-size: 17px;
  line-height: 1.7;
}

.order-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.order-price-row div {
  display: grid;
  gap: 6px;
}

.order-price-row span,
.order-summary span {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.order-price-row strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 45px;
  font-weight: 500;
  line-height: 1;
}

.order-price-row p {
  max-width: 150px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  line-height: 1.5;
  text-align: right;
}

.order-includes {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.order-includes-heading {
  display: grid;
  gap: 4px;
  margin-top: 26px;
  padding: 15px 17px;
  border: 0;
  background: var(--cream-100);
}

.order-includes-heading strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1;
}

.order-includes-heading span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.order-includes li {
  position: relative;
  padding: 13px 0 13px 25px;
  border-bottom: 1px solid var(--line);
  color: var(--navy-800);
  font-size: 13px;
  line-height: 1.45;
}

.order-includes li::before {
  content: "✓";
  position: absolute;
  top: 13px;
  left: 0;
  color: var(--gold-dark);
  font-weight: 800;
}

/* Product package cards */
.order-includes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.order-includes-heading {
  justify-items: center;
  gap: 7px;
  margin: 28px 0 18px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  text-align: center;
}

.order-includes-heading strong {
  font-size: clamp(25px, 2vw, 31px);
}

.order-includes-heading span {
  font-size: 12px;
}

.order-includes-heading .order-includes-kicker {
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.order-includes li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-height: 82px;
  padding: 12px;
  border: 1px solid rgba(16, 35, 58, 0.1);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--white), var(--cream-100));
}

.order-includes li::before {
  content: none;
}

.order-includes-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-light);
}

.order-includes-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.order-includes li > span:last-child {
  display: grid;
  gap: 3px;
}

.order-includes li strong {
  color: var(--navy-900);
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.order-includes li small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.order-includes-warranty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.order-includes-warranty svg {
  width: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: var(--gold-dark);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.order-includes-warranty strong {
  color: var(--navy-900);
}

.build-note,
.no-charge-note {
  padding: 18px 20px;
  border-left: 2px solid var(--gold);
  background: var(--ivory);
}

.build-note {
  margin-bottom: 26px;
}

.build-note strong,
.no-charge-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.build-note p,
.no-charge-note p {
  margin: 0;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.6;
}

.order-primary-cta {
  width: 100%;
}

.order-cta-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 20px;
  background: var(--line);
}

.order-cta-trust span {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--white);
  color: var(--navy-800);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.order-cta-note {
  display: block;
  margin-top: 10px;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.order-commercial-link {
  display: block;
  margin-top: 17px;
  color: var(--navy-800);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.order-commercial-link:hover,
.order-commercial-link:focus-visible {
  color: var(--gold-dark);
}

.order-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(24px, 5vw, 80px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.order-proof article {
  min-height: 190px;
  padding: 38px clamp(20px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

.order-proof article:last-child {
  border-right: 0;
}

.order-proof span,
.order-process-grid > article > span {
  display: block;
  margin-bottom: 17px;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 18px;
}

.order-proof strong {
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 20px;
}

.order-proof p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.order-experience {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(212, 174, 99, 0.14), transparent 28%),
    linear-gradient(180deg, var(--ivory) 0%, #ffffff 100%);
}

.order-experience-heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 58px;
}

.order-experience-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: var(--slate);
  font-size: 16px;
}

.order-experience-grid {
  position: relative;
  z-index: 1;
  max-width: 1450px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: clamp(18px, 2.6vw, 38px);
  margin: 0 auto;
}

.order-experience-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(4, 27, 51, 0.09);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.order-experience-motion {
  grid-column: span 7;
}

.order-experience-social {
  grid-column: span 5;
  margin-top: 72px;
}

.order-experience-card img {
  width: 100%;
  height: clamp(390px, 35vw, 560px);
  object-fit: cover;
}

.order-experience-motion img {
  object-position: center;
}

.order-experience-social img {
  object-position: center;
}

.order-experience-card figcaption {
  padding: clamp(24px, 3vw, 40px);
  text-align: center;
}

.order-experience-card figcaption span {
  display: block;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.order-experience-card figcaption strong {
  max-width: 560px;
  display: block;
  margin: 10px auto 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.12;
}

.order-experience-card figcaption p {
  max-width: 520px;
  margin: 13px auto 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.7;
}

.order-process {
  background: var(--navy-900);
  color: var(--white);
}

.order-process .section-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.order-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.order-process-grid article {
  min-height: 300px;
  padding: 40px clamp(20px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.order-process-grid article:last-child {
  border-right: 0;
}

.order-process-grid h3 {
  color: var(--white);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.order-process-grid p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.7;
}

.order-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 115px);
  background: var(--ivory);
}

.order-detail-image {
  position: relative;
  min-height: 650px;
}

.order-detail-image > img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.order-detail-image > div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  padding: 20px 22px;
  background: rgba(4, 16, 29, 0.82);
  color: var(--white);
  text-align: center;
  backdrop-filter: blur(10px);
}

.order-detail-image span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.order-detail-image strong {
  max-width: 430px;
  display: block;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.order-detail-copy > p:not(.eyebrow) {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.75;
}

.order-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 35px 0 0;
  border-top: 1px solid var(--line);
}

.order-specs div {
  padding: 18px 12px 18px 0;
  border-bottom: 1px solid var(--line);
}

.order-specs dt {
  margin-bottom: 5px;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.order-specs dd {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: 17px;
}

.custom-order-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(48px, 8vw, 130px);
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 120px);
  background: var(--navy-900);
  color: var(--white);
}

.checkout-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  align-items: center;
  gap: clamp(55px, 9vw, 145px);
  padding: clamp(80px, 10vw, 150px) clamp(24px, 7vw, 120px);
  background: var(--navy-900);
  color: var(--white);
}

.checkout-callout > div > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
}

.checkout-callout-summary {
  padding: clamp(30px, 4vw, 48px);
  border-top: 3px solid var(--gold);
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.checkout-callout-summary > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-callout-summary span {
  color: var(--slate);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-callout-summary strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.checkout-callout-summary .due-now {
  margin: 5px 0;
  padding: 24px 0;
  color: var(--gold-dark);
}

.checkout-callout-summary .due-now span {
  color: var(--gold-dark);
}

.checkout-callout-summary .due-now strong {
  font-size: 36px;
}

.checkout-callout-summary .button {
  width: 100%;
  margin-top: 24px;
}

.checkout-callout-summary small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.custom-order-intro {
  align-self: start;
}

.custom-order-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.75;
}

.order-summary {
  display: grid;
  gap: 0;
  margin: 38px 0 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.order-summary > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.order-summary strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  text-align: right;
}

.order-summary small {
  display: block;
  padding-top: 17px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.6;
}

.custom-order-intro .no-charge-note {
  border-left-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.07);
}

.custom-order-intro .no-charge-note strong {
  color: var(--white);
}

.custom-order-intro .no-charge-note p {
  color: rgba(255, 255, 255, 0.66);
}

.custom-order-form {
  --form-pad: clamp(30px, 4vw, 58px);
  display: grid;
  gap: 20px;
  padding: var(--form-pad);
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.form-premium-header {
  margin: calc(0px - var(--form-pad)) calc(0px - var(--form-pad)) 12px;
  padding: clamp(28px, 4vw, 46px) var(--form-pad);
  border-bottom: 1px solid rgba(212, 174, 99, 0.5);
  background: var(--ivory);
}

.form-premium-header .eyebrow {
  margin-bottom: 10px;
}

.form-premium-header h3 {
  margin: 0 0 10px;
  color: var(--navy-900);
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 500;
}

.form-premium-header > p:last-child {
  max-width: 600px;
  margin: 0;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.65;
}

.form-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.form-section-title:first-of-type {
  margin-top: 0;
}

.form-section-title > span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  font-family: var(--serif);
}

.form-section-title strong,
.form-section-title small {
  display: block;
}

.form-section-title strong {
  font-family: var(--serif);
  font-size: 20px;
}

.form-section-title small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.custom-order-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-800);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.custom-order-form input,
.custom-order-form select,
.custom-order-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  border: 1px solid #ccd2d8;
  border-radius: 0;
  outline: 0;
  background: #fff;
  color: var(--navy-900);
  font: 400 14px/1.4 var(--sans);
  letter-spacing: 0;
  text-transform: none;
}

.custom-order-form textarea {
  min-height: 120px;
  resize: vertical;
}

.custom-order-form input:focus,
.custom-order-form select:focus,
.custom-order-form textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(180, 137, 52, 0.12);
}

.order-acknowledgement,
.consent-field {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  gap: 11px !important;
  padding: 16px;
  background: var(--ivory);
  color: var(--slate) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.6 !important;
  text-transform: none !important;
}

.order-acknowledgement input,
.consent-field input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--gold-dark);
}

.custom-order-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.custom-order-form .form-note {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.form-payment-note {
  margin: -3px 0 0;
  padding: 15px;
  border-left: 2px solid var(--gold);
  background: var(--ivory);
  color: var(--slate);
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

.form-payment-note strong {
  color: var(--navy-900);
}

.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.order-faq {
  display: grid;
  grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 8vw, 120px);
  background: var(--ivory);
}

.order-thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--navy-900);
  color: var(--white);
}

.order-thanks {
  width: min(720px, 100%);
  padding: clamp(36px, 6vw, 70px);
  border-top: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.order-thanks-logo {
  width: 180px;
  display: inline-block;
  margin-bottom: 40px;
}

.order-thanks-logo img {
  width: 100%;
  height: 72px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.order-thanks h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 78px);
}

.order-thanks > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.order-thanks > p a {
  color: var(--gold-light);
}

.order-thanks .no-charge-note {
  margin: 30px 0;
  text-align: left;
}

.order-thanks-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 1120px) {
  .order-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "gallery"
      "buy"
      "pair";
  }

  .order-buy-box {
    position: static;
  }

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

  .order-proof article:nth-child(2),
  .order-process-grid article:nth-child(2) {
    border-right: 0;
  }

  .order-proof article:nth-child(-n+2),
  .order-process-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .order-process-grid article:nth-child(-n+2) {
    border-bottom-color: rgba(255, 255, 255, 0.15);
  }

  .custom-order-section {
    grid-template-columns: 1fr;
  }

  .checkout-callout {
    grid-template-columns: 1fr;
  }

  .custom-order-intro {
    max-width: 760px;
  }
}

@media (max-width: 820px) {
  .order-experience-grid {
    grid-template-columns: 1fr;
  }

  .order-experience-motion,
  .order-experience-social {
    grid-column: auto;
    margin-top: 0;
  }

  .order-experience-card img {
    height: 500px;
  }

  .order-detail,
  .order-faq {
    grid-template-columns: 1fr;
  }

  .order-detail-image,
  .order-detail-image > img {
    min-height: 500px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 72px;
  }

  .mobile-purchase-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 95;
    min-height: 72px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-top: 1px solid rgba(212, 174, 99, 0.55);
    background: rgba(4, 16, 29, 0.97);
    color: var(--white);
    box-shadow: 0 -10px 30px rgba(4, 16, 29, 0.2);
  }

  .mobile-purchase-bar span,
  .mobile-purchase-bar strong {
    display: block;
  }

  .mobile-purchase-bar span {
    color: var(--gold-light);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-purchase-bar strong {
    margin-top: 2px;
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 500;
  }

  .mobile-purchase-bar .button {
    min-height: 48px;
    padding: 10px;
    font-size: 9px;
  }

  .preorder-announcement a,
  .preorder-announcement .announcement-launch-divider {
    display: none;
  }

  .order-hero {
    gap: 28px;
    padding: 28px 16px 56px;
  }

  .order-gallery-main img {
    height: auto;
    aspect-ratio: 3 / 2;
    object-position: center;
  }

  .order-gallery-main figcaption {
    padding: 20px 18px 24px;
  }

  .order-gallery-main figcaption strong {
    font-size: 24px;
  }

  .order-caption-mark {
    width: 58px;
  }

  .order-gallery-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .order-gallery-pair img {
    height: 180px;
  }

  .order-gallery-pair figcaption {
    min-height: 70px;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    padding: 11px 8px;
  }

  .order-gallery-pair figcaption span {
    font-size: 11px;
  }

  .order-gallery-pair figcaption strong {
    font-size: 14px;
  }

  .order-experience-heading {
    margin-bottom: 36px;
  }

  .order-experience-card img {
    height: 330px;
  }

  .order-experience-card figcaption {
    padding: 25px 20px 28px;
  }

  .order-buy-box {
    padding: 30px 22px;
  }

  .order-buy-box h1 {
    font-size: 48px;
  }

  .order-subhead {
    font-size: 14px;
  }

  .order-price-row {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .order-price-row p {
    max-width: none;
    text-align: left;
  }

  .order-includes {
    grid-template-columns: 1fr;
  }

  .order-cta-trust {
    grid-template-columns: 1fr;
  }

  .order-cta-trust span {
    min-height: 44px;
    justify-content: flex-start;
    padding: 10px 13px 10px 32px;
    text-align: left;
  }

  .order-cta-trust span::before {
    content: "✓";
    margin-left: -18px;
    margin-right: 10px;
    color: var(--gold-dark);
  }

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

  .order-proof article,
  .order-proof article:nth-child(2),
  .order-process-grid article,
  .order-process-grid article:nth-child(2) {
    min-height: auto;
    padding: 28px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .order-process-grid article,
  .order-process-grid article:nth-child(2) {
    border-bottom-color: rgba(255, 255, 255, 0.15);
  }

  .order-process-grid {
    margin-top: 38px;
  }

  .order-detail-image,
  .order-detail-image > img {
    min-height: 430px;
  }

  .order-detail-image > div {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .order-detail-image strong {
    font-size: 18px;
  }

  .order-specs {
    grid-template-columns: 1fr;
  }

  .custom-order-section {
    gap: 44px;
    padding: 72px 16px;
  }

  .checkout-callout {
    gap: 38px;
    padding: 72px 16px;
  }

  .checkout-callout > div {
    padding: 0 6px;
  }

  .checkout-callout-summary {
    padding: 28px 22px;
  }

  .checkout-callout-summary > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .custom-order-intro {
    padding: 0 6px;
  }

  .order-summary > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .order-summary strong {
    text-align: left;
  }

  .custom-order-form {
    gap: 22px;
    padding: 30px 24px;
  }

  .form-premium-header {
    margin: -30px -24px 6px;
    padding: 30px 24px;
  }

  .form-premium-header h3 {
    font-size: 30px;
  }

  .custom-order-form label {
    gap: 10px;
    font-size: 11px;
    line-height: 1.5;
  }

  .custom-order-form input,
  .custom-order-form select {
    min-height: 56px;
  }

  .custom-order-form textarea {
    min-height: 140px;
  }

  .order-acknowledgement,
  .consent-field {
    gap: 14px !important;
    padding: 18px !important;
    font-size: 11px !important;
    line-height: 1.65 !important;
  }

  .custom-order-form .button {
    min-height: 58px;
  }

  .form-payment-note {
    padding: 17px;
    font-size: 11px;
  }

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

  .order-faq {
    gap: 30px;
  }

  .order-thanks-page {
    padding: 16px;
  }

  .order-thanks-actions {
    flex-direction: column;
  }

  .order-thanks-actions .button {
    width: 100%;
  }
}
