@font-face {
  font-family: "Space Grotesk";
  src: url("../Space_Grotesk/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-display: swap;
}

:root { --ink: #0e1113; --muted: #a4a4a4; --line: #dedede; --soft: #efefef; --cta-blue: #2f7df6; --cta-blue-hover: #1f6ee8; }
* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body { color: var(--ink); background: #fff; font-family: "Space Grotesk", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
button, select, input, textarea { font: inherit; }
button, a { color: inherit; }
.order-page { min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1fr) 510px; gap: 18px; padding: 30px; }
.mobile-order-header { display: none; }

.product-stage {
  position: relative;
  height: calc(100svh - 60px);
  min-height: calc(100svh - 60px);
  overflow: hidden;
  border-radius: 34px;
  background: #e6e1db;
}
.main-product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: block;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  transition: opacity .24s ease, transform .35s ease;
}
.main-product-image.is-changing { opacity: 0; transform: scale(.985); }
.product-slider-controls {
  position: absolute;
  right: 28px;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 25px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(76, 72, 66, .38);
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2;
}
.slider-arrow {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.9);
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
}
.slider-dots { display: flex; align-items: center; gap: 7px; }
.slider-dot {
  position: relative;
  width: 6px;
  height: 6px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}
.slider-dot.active {
  width: 31px;
  background: rgba(255,255,255,.38);
}
.slider-dot.active::after {
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: inherit;
  background: white;
  content: "";
  animation: sliderProgress 4.8s linear forwards;
}
.slider-dot.paused::after { animation-play-state: paused; }
@keyframes sliderProgress { to { width: 100%; } }

.order-panel { min-height: calc(100svh - 60px); display: flex; flex-direction: column; padding: 18px 16px 6px 4px; }
.order-header { min-height: 94px; display: flex; align-items: flex-start; justify-content: space-between; }
.order-brand { position: relative; width: 230px; height: 82px; overflow: hidden; filter: invert(1); }
.order-brand img { position: absolute; top: -48px; left: 0; width: 235px; }
.faq-button { min-width: 68px; min-height: 46px; padding: 11px 20px; border: 0; border-radius: 100px; background: var(--soft); cursor: pointer; font-size: 17px; text-transform: lowercase; }
.order-divider { height: 1px; margin-bottom: 30px; background: var(--line); }
.option-section { margin: 0 8px 28px; }
.option-section h1 { margin: 0 0 15px; font-size: 18px; letter-spacing: .05em; }
.option-heading { margin: 0 0 22px; color: #bbb; font-size: 18px; }
.option-heading strong { color: var(--ink); font-weight: 450; }
.colour-intro { margin-bottom: 16px; }
.colour-intro h1 { margin: 0 0 5px; font-size: 30px; line-height: 1.05; letter-spacing: -.035em; text-transform: none; }
.colour-intro p { margin: 0; color: #555; font-size: 17px; line-height: 1.35; }
.colour-options { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.colour-card {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: transform .2s ease;
}
.colour-card:hover { transform: translateY(-1px); }
.colour-card.selected::after {
  position: absolute;
  inset: 2px;
  border: 2px solid #111;
  border-radius: 50%;
  content: "";
}
.colour-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  box-shadow: inset 0 1px 2px rgba(255,255,255,.55), inset 0 -8px 13px rgba(0,0,0,.18);
}
.swatch-black { background: linear-gradient(135deg, #8c8c87 0%, #34342f 42%, #0d0d0d 100%); }
.swatch-silver { background: linear-gradient(135deg, #f2f2ef 0%, #cfcfcb 46%, #8f918f 100%); }
.swatch-gold { background: linear-gradient(135deg, #f3e2a8 0%, #d7b85d 48%, #a9862d 100%); }
.selected-colour-line { margin: 0; color: #555; font-size: 15px; }
.ring-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 26px;
  margin-top: 26px;
  padding-top: 6px;
}
.feature-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.feature-item span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #46433f;
  background: #f0eae1;
  font-size: 24px;
  font-weight: 550;
  line-height: 1;
}
.feature-icon-fall img,
.feature-icon-stress img,
.feature-icon-heart img,
.feature-icon-wellness img,
.feature-icon-activity img,
.feature-icon-battery img,
.feature-icon-charging-case img,
.feature-icon-lab img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  opacity: .72;
}
.feature-item p {
  margin: 0;
  color: #454545;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}
.early-access-perks {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding: 15px 16px;
  border: 1px solid rgba(47, 125, 246, .42);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(47, 125, 246, .08), rgba(47, 125, 246, .035));
}
.perks-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.perks-heading span {
  color: var(--cta-blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.perks-heading strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}
.early-access-perks ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.early-access-perks li {
  position: relative;
  padding-left: 20px;
  color: #33383d;
  font-size: 14px;
  line-height: 1.35;
}
.early-access-perks li::before {
  position: absolute;
  left: 0;
  top: .08em;
  color: var(--cta-blue);
  font-weight: 750;
  content: "✓";
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.funding-section { margin-bottom: 32px; }
.funding-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.funding-card {
  position: relative;
  min-height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 42px 16px 16px;
  border: 1px solid #d3d3d3;
  border-radius: 14px;
  background: white;
  cursor: pointer;
  text-align: left;
}
.funding-card.selected { border: 2px solid #111; background: #f5f5f5; }
.funding-card strong { font-size: 14px; }
.funding-card span { color: #8a8a8a; font-size: 11px; line-height: 1.35; }
.funding-card-top { display: block; width: 100%; color: var(--ink) !important; }
.funding-card-top strong { color: var(--ink); }
.funding-info-icon {
  position: absolute;
  top: 15px;
  right: 16px;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #555 !important;
  background: #eeeeee;
  font-size: 12px !important;
  font-weight: 650;
  line-height: 1;
}
.funding-card.selected .funding-info-icon { color: white !important; background: #111; }
.size-section { margin-bottom: 30px; }
.size-controls { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; }
.kit-option, .size-select { min-height: 50px; display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 0; padding: 0 18px; border-radius: 100px; background: var(--soft); font-size: 15px; }
.switch-wrap { display: flex; align-items: center; gap: 10px; }
.switch-wrap input { position: absolute; opacity: 0; pointer-events: none; }
.switch-wrap i { position: relative; width: 36px; height: 21px; border-radius: 30px; background: #c6c6c6; transition: background .2s; }
.switch-wrap i::after { position: absolute; top: 3px; left: 3px; width: 15px; height: 15px; border-radius: 50%; content: ""; background: white; transition: transform .2s; }
.switch-wrap input:checked + i { background: #111; }
.switch-wrap input:checked + i::after { transform: translateX(15px); }
.size-select select { width: 145px; border: 0; background: transparent; outline: none; text-align: right; }
.price-section { margin: 24px 8px 0; }
.batch-row { display: flex; align-items: end; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.batch-row span { font-size: 18px; }
.batch-row p { margin: 5px 0 0; font-size: 17px; }
.batch-row s { color: #b9b9b9; }
.batch-row > p { padding-bottom: 2px; }
.batch-offer { display: grid; gap: 8px; }
.batch-offer .product-price { display: flex; align-items: baseline; gap: 8px; margin: 0; }
.batch-offer .deposit-price { display: flex; align-items: baseline; gap: 8px; margin: 0; }
.deposit-price strong { font-size: clamp(46px, 7vw, 68px); font-weight: 700; letter-spacing: -.06em; line-height: .9; }
.deposit-price small { color: #8c8c8c; font-size: 12px; font-weight: 650; letter-spacing: .08em; }
.product-price s { color: #aaa; font-size: 15px; text-decoration-thickness: 1px; }
.product-price strong { font-size: 23px; font-weight: 650; letter-spacing: -.035em; }
.product-price small { color: #8c8c8c; font-size: 10px; font-weight: 600; letter-spacing: .08em; }
.due-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 17px 0 20px; }
.due-row p { margin: 0 0 5px; font-size: 17px; }
.due-row p small { color: #999; font-size: 13px; }
.due-row p:nth-child(2), .due-row small { color: #aaa; }
.due-row small { display: block; max-width: 450px; line-height: 1.4; }
.batch-copy p { font-size: 17px; }
.batch-copy small { color: #aaa; }
.launch-price-line { display: flex; align-items: baseline; justify-content: flex-end; gap: 8px; flex-wrap: wrap; margin-left: auto !important; text-align: right; }
.launch-price-line span { margin-right: 2px; }
.launch-price-line s { color: #9f9f9f; text-decoration-thickness: 1px; }
.launch-price-line strong { font-size: 22px; letter-spacing: -.035em; }
.launch-price-line small { color: #8c8c8c !important; font-size: 11px; font-weight: 650; letter-spacing: .08em; }
.reservation-trust {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
}
.product-trust {
  margin: -8px 0 18px;
}
.trust-badges {
  display: grid;
  gap: 9px;
  padding-top: 2px;
}
.trust-badges > span {
  color: #8c8c8c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.trust-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-logo {
  width: auto;
  object-fit: contain;
}
.trust-logo-ndis { height: 54px; max-width: min(260px, 100%); }
.trust-logo-support-at-home { height: 58px; max-width: min(180px, 100%); }
.order-reservation-form {
  display: grid;
  gap: 14px;
  margin: 6px 8px 0;
}
.form-price-strip {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-top: 6px;
  padding: 18px 0 4px;
  border-top: 1px solid var(--line);
}
.form-price-strip .batch-copy {
  flex: 1 1 auto;
  min-width: 0;
}
.form-price-strip .batch-copy p {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1.2;
}
.form-price-strip .batch-copy small {
  display: block;
  color: #aaa;
  font-size: 14px;
  line-height: 1.35;
}
.form-price-strip .launch-price-line {
  flex: 0 0 auto;
  margin: 0;
  padding-top: 1px;
}
.checkout-label { margin: 0 0 -2px; color: #888; font-size: 11px; font-weight: 650; letter-spacing: .14em; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.order-reservation-form label { display: grid; gap: 7px; color: #555; font-size: 13px; }
.order-reservation-form input,
.order-reservation-form select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #d7d7d7;
  border-radius: 12px;
  outline: none;
  background: #fff;
}
.order-reservation-form input:focus,
.order-reservation-form select:focus { border-color: #111; }
.phone-input-row { display: grid; grid-template-columns: minmax(116px, 136px) 1fr; gap: 10px; }
.phone-input-row select { padding-right: 30px; }
.address-block { min-width: 0; display: grid; gap: 10px; margin: 0; padding: 0; border: 0; }
.address-block legend { margin-bottom: 4px; padding: 0; color: #555; font-size: 13px; }
.address-label-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.address-label-row label { color: #555; }
.address-lookup { position: relative; }
.address-search-row { display: grid; grid-template-columns: minmax(0, 1fr); }
.manual-address-button {
  width: auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #555;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.manual-address-button:hover,
.manual-address-button:focus-visible { color: #111; background: transparent; outline: none; }
.address-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  z-index: 20;
  overflow: hidden;
  border: 1px solid #d7d7d7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(14, 17, 19, .14);
}
.address-suggestion {
  width: 100%;
  min-height: 48px;
  display: block;
  padding: 11px 14px;
  border: 0;
  border-bottom: 1px solid #ededed;
  color: #202326;
  background: #fff;
  cursor: pointer;
  text-align: left;
  line-height: 1.35;
}
.address-suggestion:last-child { border-bottom: 0; }
.address-suggestion:hover, .address-suggestion:focus-visible { background: #f3f6f7; outline: none; }
.google-attribution { display: flex; justify-content: flex-end; padding: 8px 12px; background: #fff; }
.google-attribution img { width: 120px; height: auto; display: block; }
.osm-attribution { padding: 8px 12px; color: #777; background: #fff; font-size: 11px; text-align: right; }
.osm-attribution a { color: inherit; }
.address-lookup-status { margin: -2px 0 2px; color: #888; font-size: 11px; line-height: 1.4; }
.address-fields { display: grid; gap: 12px; }
.address-fields[hidden] { display: none; }
.address-grid { display: grid; grid-template-columns: 1.25fr .8fr .7fr; gap: 10px; }
.optional { color: #aaa; font-size: 11px; }
.order-error { margin: 0; padding: 12px 14px; border-radius: 12px; color: #7a1a1a; background: #fff1f1; font-size: 12px; line-height: 1.45; }
.order-error[hidden] { display: none; }
.payment-button { min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 30px; padding: 0 22px; border: 0; border-radius: 100px; color: white; background: var(--cta-blue); cursor: pointer; font-weight: 550; transition: background .2s ease, transform .2s ease; }
.payment-button:hover { background: var(--cta-blue-hover); transform: translateY(-1px); }
.payment-button:disabled { cursor: wait; opacity: .75; }
.order-panel > .payment-button { align-self: flex-end; min-width: 260px; }
.order-reservation-form > .payment-button { justify-self: end; min-width: 260px; }

dialog { width: min(560px, calc(100% - 28px)); padding: 42px; border: 0; border-radius: 22px; box-shadow: 0 28px 90px rgba(0,0,0,.3); }
dialog::backdrop { background: rgba(10,13,15,.62); backdrop-filter: blur(7px); }
.close-dialog { position: absolute; top: 15px; right: 17px; width: 36px; height: 36px; border: 1px solid #ddd; border-radius: 50%; background: white; cursor: pointer; font-size: 22px; }
.dialog-label { margin: 0 0 12px; color: #888; font-size: 11px; font-weight: 650; letter-spacing: .14em; }
dialog h2 { margin: 0 0 30px; font-size: 38px; font-weight: 450; letter-spacing: -.04em; }
.order-dialog {
  width: min(900px, calc(100% - 34px));
  max-height: min(88svh, 920px);
  overflow: auto;
  padding: 46px 54px 50px;
}
.order-dialog h2 { margin-bottom: 16px; font-size: clamp(42px, 6vw, 68px); line-height: .98; }
.faq-intro {
  max-width: 680px;
  margin: 0 0 34px;
  color: #686868;
  font-size: 18px;
  line-height: 1.5;
}
.faq-group { margin-top: 36px; }
.faq-group:first-of-type { margin-top: 0; }
.faq-group h3 {
  margin: 0 0 12px;
  color: #8a8a8a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.funding-info-dialog h2 { margin-bottom: 18px; font-size: 31px; line-height: 1.05; }
.funding-info-dialog p:not(.dialog-label) { margin: 0 0 18px; color: #555; font-size: 16px; line-height: 1.5; }
.funding-info-dialog small { display: block; color: #999; font-size: 12px; line-height: 1.45; }
.order-dialog details { border-top: 1px solid #ddd; }
.faq-group details:last-child { border-bottom: 1px solid #ddd; }
.order-dialog summary {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  cursor: pointer;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.018em;
  list-style: none;
}
.order-dialog summary::-webkit-details-marker { display: none; }
.order-dialog summary::before {
  flex: 0 0 auto;
  margin-top: .1em;
  color: #111;
  content: "▸";
  transition: transform .18s ease;
}
.order-dialog details[open] summary::before { transform: rotate(90deg); }
.order-dialog details p {
  max-width: 720px;
  margin: -4px 0 22px 34px;
  color: #626262;
  font-size: 17px;
  line-height: 1.65;
}
.checkout-summary { display: flex; justify-content: space-between; margin-bottom: 10px; padding: 18px; border-radius: 12px; background: #f1f1f1; }
.checkout-summary span { display: flex; flex-direction: column; gap: 4px; }
.checkout-summary small { color: #888; font-size: 11px; }
.checkout-pathway-note { margin: 0 0 22px; color: #666; font-size: 12px; line-height: 1.45; }
#reservation-form { display: grid; gap: 15px; }
#reservation-form label { display: grid; gap: 6px; color: #555; font-size: 12px; }
#reservation-form input { height: 48px; padding: 0 14px; border: 1px solid #d6d6d6; border-radius: 8px; outline: none; }
.checkout-note { margin: 0; color: #999; font-size: 10px; line-height: 1.4; text-align: center; }
.checkout-pending { padding: 20px 0; text-align: center; }
.checkout-pending > div { display: grid; place-items: center; width: 60px; height: 60px; margin: auto; border-radius: 50%; color: white; background: #111; font-size: 25px; }
.checkout-pending h3 { font-size: 25px; }

@media (max-width: 980px) {
  .order-page { grid-template-columns: 1fr; padding: 12px; }
  .mobile-order-header {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: -12px -12px 8px;
    padding: 10px 16px 8px;
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .product-stage { height: 58svh; min-height: 58svh; border-radius: 24px; }
  .product-slider-controls { right: 18px; bottom: 18px; }
  .order-panel { min-height: auto; padding: 25px 10px 35px; }
  .order-panel .order-header { display: none; }
  .order-header { min-height: 80px; }
  .order-brand { width: 185px; height: 68px; }
  .order-brand img { top: -37px; width: 188px; }
}

@media (max-width: 560px) {
  .product-stage { height: 48svh; min-height: 48svh; }
  .product-slider-controls { right: 14px; bottom: 14px; transform: scale(.95); transform-origin: right bottom; }
  .funding-options { grid-template-columns: 1fr; }
  .funding-card { min-height: 82px; }
  .size-controls { grid-template-columns: 1fr; }
  .batch-row { align-items: flex-end; gap: 14px; }
  .batch-row > p { max-width: 48%; margin: 0; padding-bottom: 4px; text-align: right; font-size: 15px; line-height: 1.2; }
  .deposit-price strong { font-size: clamp(42px, 14vw, 56px); }
  .deposit-price small { font-size: 10px; }
  .due-row { align-items: flex-start; }
  .batch-copy { flex: 1; min-width: 0; }
  .launch-price-line { flex: 0 0 auto; }
  .form-price-strip { gap: 14px; padding-top: 16px; }
  .form-price-strip .batch-copy p { font-size: 17px; }
  .form-price-strip .batch-copy small { font-size: 13px; }
  .form-price-strip .launch-price-line { max-width: 44%; }
  .reservation-trust { gap: 9px; margin-bottom: 22px; }
  .product-trust { margin: -2px 0 18px; }
  .trust-logo-row { gap: 12px 16px; }
  .trust-logo-ndis { height: 42px; max-width: 58%; }
  .trust-logo-support-at-home { height: 46px; max-width: 38%; }
  .option-section { margin-right: 0; margin-left: 0; }
  .option-heading { font-size: 16px; }
  .ring-features { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 12px; margin-top: 22px; }
  .feature-item { grid-template-columns: 42px minmax(0, 1fr); gap: 9px; }
  .feature-item span { width: 42px; height: 42px; font-size: 19px; }
  .feature-item p { font-size: 12px; line-height: 1.2; }
  .feature-icon-fall img,
  .feature-icon-stress img,
  .feature-icon-heart img,
  .feature-icon-wellness img,
  .feature-icon-activity img,
  .feature-icon-battery img,
  .feature-icon-charging-case img,
  .feature-icon-lab img { width: 27px; height: 27px; }
  .early-access-perks { margin-top: 22px; padding: 14px; border-radius: 16px; }
  .perks-heading { align-items: flex-start; }
  .early-access-perks ul { grid-template-columns: 1fr; gap: 8px; }
  .early-access-perks li { font-size: 13px; }
  .field-grid { grid-template-columns: 1fr; }
  .phone-input-row { grid-template-columns: minmax(104px, 34%) 1fr; gap: 8px; }
  .address-grid { grid-template-columns: 1fr 1fr; }
  .address-grid label:first-child { grid-column: 1 / -1; }
  .order-panel > .payment-button,
  .order-reservation-form > .payment-button { width: 100%; justify-self: stretch; }
  .secure-note { align-self: center; margin-right: 0; }
  dialog { padding: 36px 22px 25px; }
  .order-dialog {
    width: calc(100% - 18px);
    max-height: 90svh;
    padding: 34px 20px 28px;
    border-radius: 20px;
  }
  .order-dialog h2 { padding-right: 34px; font-size: clamp(40px, 14vw, 58px); }
  .faq-intro { margin-bottom: 28px; font-size: 15px; line-height: 1.45; }
  .faq-group { margin-top: 30px; }
  .order-dialog summary { gap: 10px; padding: 17px 0; font-size: 18px; line-height: 1.28; }
  .order-dialog details p { margin: -2px 0 18px 25px; font-size: 15px; line-height: 1.58; }
}
