/* ═══════════════════════════════════════════════════════════
   INFO PAGE LAYOUT
   Terms of Sale, Warranty Terms, Privacy Policy.
   Sticky sidebar TOC + content area with anchored sections.
   ═══════════════════════════════════════════════════════════ */

.info-page {
  background: #fff;
  padding: 0;
  position: relative;
  isolation: isolate;
}




body.cc-dark-header main {
    background: #fff;
}


/* ─── Optional CAD line-art background — How to Order only. Terms of Sale,
   Warranty Terms and Privacy Policy never include this div, so they render
   exactly as before: plain white, no decoration. ─────────────────────── */
.info-page-cad-bg {
  position: absolute;
  z-index: 0;
  top: var(--nav-h, 96px);
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}
.info-page-cad-bg img {
  position: absolute;
  top: 0;
  right: -4vw;
  width: min(1100px, 82vw);
  height: auto;
  max-width: none;
  opacity: 0.22;
  filter: brightness(0.68) saturate(1.4);
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.78) 14%, #000 34%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.78) 14%, #000 34%);
}
@media (max-width: 767px) {
  .info-page-cad-bg img {
    top: 0;
    right: -24%;
    width: 132%;
    opacity: 0.14;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.68) 16%, #000 42%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.68) 16%, #000 42%);
  }
}
.info-page > .info-page-header,
.info-page > .info-page-mobile-toc,
.info-page > .wrap {
  position: relative;
  z-index: 1;
}


/* ─── Title (full-width above layout) ────────────────────────── */

.info-page-header {
  margin-bottom: 3.5rem;
  padding-top: 64px;
}
.info-page-header .section-title {
    margin: 0;
    font-size: clamp(32px,5vw,56px);
    line-height: 1;
    letter-spacing: -0.01em;
}
.info-page-header .section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 24px;
  background: var(--rust);
}
@media (max-width: 640px) {
  .info-page-header .section-title::after {
    width: 40px;
    height: 3px;
    margin-top: 18px;
  }
}


/* ─── Mobile horizontal TOC bar (hidden ≥ 900px) ─────────────── */

.info-page-mobile-toc {
  display: none;
}
@media (max-width: 900px) {
  .info-page-mobile-toc {
    display: block;
    background: var(--white);
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 32px;
  }
  .info-page-mobile-toc-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    padding: 14px var(--page-pad);
  }
  .info-page-mobile-toc-inner a {
    font-family: var(--display);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    white-space: nowrap;
    transition: color 0.15s;
    flex-shrink: 0;
  }
  .info-page-mobile-toc-inner a.active {
    color: var(--rust);
    font-weight: 600;
  }
  /* PDF link on its own row under the section links, divided by a hairline —
     the sidebar normally carries this, but the sidebar is hidden here. */
  .info-page-mobile-toc-download {
    border-top: 1px solid #F0F0F0;
    padding: 12px var(--page-pad) 14px;
  }
  .info-page-mobile-toc-download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-size: 13px;
    font-weight: 700;
    color: var(--rust);
    text-decoration: none;
  }
  .info-page-mobile-toc-download-link:hover { text-decoration: underline; }
  .info-page-mobile-toc-download-link svg { width: 16px; height: 16px; flex-shrink: 0; }
}


/* ─── Layout grid: sidebar + content ─────────────────────────── */

.info-page-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
  padding-top: 2rem;

}
@media (max-width: 900px) {
  .info-page-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }
}


/* ─── Sidebar (sticky TOC) ───────────────────────────────────── */

.info-page-sidebar {
      position: sticky;
    top: 100px;
    align-self: start;
    background: #fff;
    border: 1px solid #E2E5E7;
    border-radius: 12px;
    padding: 24px;
}
@media (max-width: 900px) {
  .info-page-sidebar { display: none; }
}

.info-page-sidebar-label {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #050F13;
  margin: 0 0 16px;
  padding-left: 16px;
}

.info-page-toc {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.info-page-toc li { 
    margin: 0;
    border-bottom: 1px solid #F0F0F0;
}

.info-page-toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
      padding: 10px 0 10px 16px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: #55504E;
  
  border-left: 3px solid transparent;
    transition: color 0.15s, border-color 0.15s;
  line-height: 1.3;
  
}
.info-page-toc-link:hover {
 color: var(--rust) !important;
}
.info-page-toc-link.active {
  color: var(--rust);
    border-left-color: var(--rust);
    font-weight: 700;
  
}
.info-page-toc-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-page-toc-link--sub {
 
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-500);
}
.info-page-toc-link--sub:hover { color: var(--gray-900); }

.info-page-sidebar-footer {
  border-top: 1px solid #e5e5e5;
  margin-top: 16px;
  padding: 16px;
}
.info-page-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--rust);
  transition: color 0.15s;
}
.info-page-pdf-link:hover {
  color: var(--rust-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.info-page-pdf-link svg { width: 18px; height: 18px; }


/* ─── Content area ───────────────────────────────────────────── */


@media (max-width: 900px) {
  .info-page-content { padding-top: 0; }
}


/* ─── Summary card (sand top + dark Escrow bottom) ───────────── */

.info-summary-card {
  background: #F5F5F5;
  border: 1px solid #E6E2DC;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 1px 2px rgba(5, 15, 19, 0.04);
}
.info-summary-top { padding: 48px 32px; }

.info-summary-heading {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  color: var(--black-deep);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #D6D1CC;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
@media (min-width: 1024px) { .info-summary-heading { font-size: 34px; } }

.info-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.info-summary-col { padding: 0 24px; }
.info-summary-col:first-child { padding-left: 0; }
.info-summary-col:last-child { padding-right: 0; }
.info-summary-col:not(:first-child) {
  border-left: 1px solid #D6D1CC;
}

.info-summary-col-title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  color: var(--black-deep);
  margin: 0 0 14px;
}

.info-summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-summary-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.625;
  color: #3D3835;
}
.info-summary-list--dashed li::before {
  content: "—";
  color: var(--gray-400);
  flex-shrink: 0;
}
.info-summary-num {
  font-weight: 700;
  color: var(--black-deep);
  flex-shrink: 0;
  width: 32px;
}
.info-summary-list--icons li svg {
  color: var(--gray-400);
  flex-shrink: 0;
  margin-top: 2px;
}


/* ─── Escrow section ─────────────────────────────────────────── */

.info-escrow {
  color: var(--white);
  background: #111D2C;
    padding: 32px;
}
.info-escrow-heading {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 12px;
}
.info-escrow-intro {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 0 28px;
}
.info-escrow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.info-escrow-grid > * { min-width: 0; }
.info-escrow-option:not(:first-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 32px;
}
.info-escrow-option-title {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 4px;
}
.info-escrow-option-meta {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 12px;
}
.info-escrow-option-text {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 12px;
}
.info-escrow-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-escrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--rust);
}
.info-escrow-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.info-escrow-link svg { width: 12px; height: 12px; }
.info-escrow-footnote {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
  margin: 24px 0 0;
}
.info-escrow-footnote a { color: var(--rust); }
.info-escrow-footnote a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ─── Master "Complete Terms" header ─────────────────────────── */

.info-section-master-title {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--black);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.info-section-master-intro {
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0 0 32px;
}
.info-section-master-intro a {
  color: var(--rust);
  font-weight: 600;
}
.info-section-master-intro a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ─── Numbered section ───────────────────────────────────────── */

.info-section-list > .info-section {
  padding: 32px 0;
  border-bottom: 1px solid #ececec;
}
.info-section-list > .info-section:first-child { padding-top: 16px; }
.info-section-list > .info-section:last-child { border-bottom: none; }

.info-section-title {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  color: #3d3835;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.info-section-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-section-body p {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.625;
  color: #3D3835;
  max-width: 78ch;
  margin: 0;
}
.info-section-body a {
  color: var(--rust);
  font-weight: 600;
}
.info-section-body a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ─── Embedded box (payment schedule, cancellation table) ────── */

.info-section-box {
  background: #f9fafb;
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0;
}
.info-section-box-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-700);
}
.info-section-box-num {
  font-weight: 700;
  color: var(--black);
  width: 48px;
  text-align: right;
  flex-shrink: 0;
}
.info-section-box-label {
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}


/* ─── Responsive ─────────────────────────────────────────────── */

@media (max-width: 768px) {
  .info-summary-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .info-summary-col {
    padding: 0;
    border-left: none !important;
  }
  .info-summary-col:not(:last-child) {
    padding-bottom: 24px;
    border-bottom: 1px solid #D6D1CC;
  }
  .info-escrow-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .info-escrow-option:not(:first-child) {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 0;
    padding-top: 24px;
  }
  .info-summary-top { padding: 24px 20px; }
  .info-escrow { padding: 24px 20px; }
}


/* ─── Bullet lists inside section body (warranty needs these) ── */

.info-section-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.info-section-bullets li {
  position: relative;
  padding-left: 22px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.625;
  color: #3D3835;
  max-width: 78ch;
}
.info-section-bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gray-400);
}


/* ─── Ordered list (numbered claim steps) ───────────────────── */

.info-section-ordered {
  list-style: decimal;
  list-style-position: outside;
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.625;
  color: #3D3835;
  max-width: 78ch;
}
.info-section-ordered li::marker {
  font-weight: 600;
  color: var(--black-deep);
}


/* ─── Summary list with check / cross icons (warranty) ──────── */

.info-summary-list--check li svg,
.info-summary-list--cross li svg {
  flex-shrink: 0;
  margin-top: 2px;
}


/* ─── Escrow card list (claim "What to include") ────────────── */

.info-escrow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-escrow-list li {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 18px;
  position: relative;
}
.info-escrow-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.4);
}

.info-step-closing {
        font-family: var(--display);
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-700);
    margin: 0px;
}

/* ═══════════════════════════════════════════════════════════
   HOW TO ORDER — additional components
   ═══════════════════════════════════════════════════════════ */


/* ─── Title row with average time + info tooltip ──────────────── */



.info-section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  margin: 0 0 24px;
  flex-wrap: wrap;
}
.info-section-title-row .info-section-master-title {
  margin: 0;
}

/* ─── Numbered card shell — every step is its own bordered white card,
   numbered by a CSS counter so terms-of-sale / warranty-terms / privacy-policy
   get this automatically without any changes to their own PHP. ──────────── */

.info-page-content { counter-reset: step; }

.info-page-step {
  --step-pad: 32px;
  margin-bottom: 24px;
  background: #fff;
  border: 1px solid #E6E2DC;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(5, 15, 19, 0.04);
  padding: var(--step-pad);
}
.info-page-step:last-child { margin-bottom: 0; }

/* Sections built as an .info-page-card (Price & payment, Spare parts) already
   provide their own frame — the outer step just spaces them, no second
   border/padding, or the card would sit inside a card. */
.info-page-step:has(.info-page-card) {
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.info-step-head {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: calc(0px - var(--step-pad)) calc(0px - var(--step-pad)) 24px;
  padding: 20px var(--step-pad);
  background: #F5F5F5;
  border-bottom: 1px solid #E6E2DC;
  border-radius: 15px 15px 0 0;
}
.info-step-head .section-title,
.info-page-card-top .section-title {
  margin: 0;
  padding-left: 16px;
  border-left: 1px solid #E6E2DC;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--black-deep);
  flex: 1;
  min-width: 0;
}
.info-step-head::before {
  content: counter(step, decimal-leading-zero);
  color: var(--rust);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Card-variant sections have no .info-step-head — the title sits straight
   inside .info-page-card-top — so the same bar + number is built on the
   title itself instead, bled to the card-top's own padding. */
.info-page-card-top {
  --card-pad-y: 36px;
  --card-pad-x: 40px;
}
.info-page-card-top > .section-title {
  counter-increment: step;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: calc(0px - var(--card-pad-y)) calc(0px - var(--card-pad-x)) 24px;
  padding: 20px var(--card-pad-x);
  background: #F5F5F5;
  border-bottom: 1px solid #E6E2DC;
  border-radius: 15px 15px 0 0;
  border-left: 0;
  padding-left: var(--card-pad-x);
}
.info-page-card-top > .section-title::before {
  content: counter(step, decimal-leading-zero);
  color: var(--rust);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .info-step-head .section-title,
  .info-step-head::before,
  .info-page-card-top > .section-title { font-size: 26px; }
}
@media (max-width: 640px) {
  .info-page-step { --step-pad: 20px; }
  .info-page-card-top { --card-pad-y: 24px; --card-pad-x: 20px; }
  .info-step-head .section-title,
  .info-step-head::before,
  .info-page-card-top > .section-title { font-size: 18px; }
}

/* Old alternating sand-tint rows and the padding patch that offset it — no
   longer used now that every step is its own bordered white card. Left as a
   no-op rather than removed: it's still referenced in existing markup. */
.xtrapadding { padding: 0; }

.info-page-step {
    margin-bottom: 24px;
}

.info-section-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
     color: var(--black-deep);
  text-transform: none;
  letter-spacing: 0;
}

.info-section-tip {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: help;
  color: var(--gray-400);
}
.info-section-tip svg {
  width: 16px;
  height: 16px;
  stroke: var(--rust);
}
.info-section-tip:hover { color: var(--rust); }

.info-section-tip-content {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  width: 280px;
  background: var(--black-deep);
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--display);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.18s, transform 0.18s;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.info-section-tip:hover .info-section-tip-content,
.info-section-tip:focus .info-section-tip-content,
.info-section-tip:focus-within .info-section-tip-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/* ─── FAQ accordion blocks ─────────────────────────────────────── */

.info-faq-list {
  border-top: 1px solid #e2e2e2;
}
.info-faq-item {
  border-bottom: 1px solid #e2e2e2;
}

.info-faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  transition: color 0.15s;
}
.info-faq-toggle:hover { color: var(--rust); }

.info-faq-plus {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--rust);
}
.info-faq-plus::before,
.info-faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transition: transform 0.2s var(--ease);
}
.info-faq-plus::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.info-faq-plus::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.info-faq-item.is-open .info-faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.info-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}
.info-faq-item.is-open .info-faq-body {
  max-height: 800px;
}
.info-faq-body-inner {
  padding: 0 0 20px;
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-700);
}


/* ─── 3-column section grid (intro / text / gallery) ──────────── */

.info-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.info-step-grid-2col {
        display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
    align-items: start;
}
.info-step-grid-2col > * { min-width: 0; }

.info-step-grid-intro {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 2rem !important;
}

.info-section-grid-intro {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  margin: 0 0 24px;
}

.info-step-subhead {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin: 1rem auto;
}

.info-section-grid-text {
  /* Inherits text styling from .info-section-body */
}
.info-section-grid-media {
  position: sticky;
  top: 24px;
}
@media (max-width: 900px) {
  .info-section-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .info-section-grid-media {
    position: static;
  }
}


/* ─── Gallery (main image + thumbnails) ───────────────────────── */

.info-gallery {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-gallery-main {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  background: var(--gray-300);
}
.info-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.info-gallery-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.15s, box-shadow 0.15s;
  background: var(--gray-300);
}
.info-gallery-thumb:hover { opacity: 0.8; }
.info-gallery-thumb.is-active {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--rust);
}


/* ─── Description list inside grid (item with bold + description) ─ */

.info-section-dl {
  border-top: 1px solid #e2e2e2;
  display: flex;
  flex-direction: column;
}
.info-section-dl-item {
  padding: 14px 0;
  border-bottom: 1px solid #e2e2e2;
}
.info-section-dl-item:last-child { border-bottom: none; }
.info-section-dl-term {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 4px;
}
.info-section-dl-text {
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
}


/* ─── Payment schedule big numbers ─────────────────────────────── */

.info-payment-schedule {
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}
.info-payment-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #e2e2e2;
}
.info-payment-row:last-child { border-bottom: none; }
.info-payment-amount {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 700;
  color: var(--rust);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
}
.info-payment-text {
  flex: 1;
  min-width: 0;
}
.info-payment-title {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 4px;
}
.info-payment-desc {
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-700);
  margin: 0;
}


/* ─── Shipping table ──────────────────────────────────────────── */

.info-shipping-table-wrap {
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  margin: 1rem auto;
}
.info-shipping-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.info-shipping-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--display);
  font-size: 14px;
  min-width: 720px;
}
.info-shipping-table th,
.info-shipping-table td {
  text-align: left;
  padding: 14px 18px;
  vertical-align: top;
  border-bottom: 1px solid #ececec;
}
.info-shipping-table tr:last-child td {
  border-bottom: none;
}
.info-shipping-table thead th {
  background: var(--paper-2);
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
}
.info-shipping-table .info-shipping-updated {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--gray-500);
  margin-top: 2px;
}
.info-shipping-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--gray-500);
  margin-top: 2px;
}
.info-shipping-table tbody td:first-child {
  font-weight: 600;
  color: var(--black);
}
.info-shipping-muted {
  color: var(--gray-500);
  font-style: italic;
}


/* ─── Documentation list (with dash) ──────────────────────────── */

.info-section-doc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.info-section-doc-list li {
  padding-left: 18px;
  position: relative;
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-700);
}
.info-section-doc-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gray-400);
}


/* ─── Card with sand top + dark bottom (payment + spare parts) ── */

.info-page-card {
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 32px;
  background: #fff;
  border: 1px solid #E6E2DC;
  box-shadow: 0 1px 2px rgba(5, 15, 19, 0.04);
}
.info-page-card-top {
  background: #fff;
  padding: var(--card-pad-y) var(--card-pad-x);
}
.info-page-card-bottom {
  background: var(--black-deep);
  color: var(--white);
  padding: 32px 40px;
}
.info-page-card-bottom-heading {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin: 0 0 16px;
}
.info-page-card-bottom-text {
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
.info-page-card-bottom-text a {
  color: var(--rust);
  font-weight: 600;
}
.info-page-card-bottom-text a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 600px) {
  .info-page-card-bottom { padding: 24px 20px; }
  .info-payment-amount { font-size: 28px; width: 60px; }
}

@media (max-width: 900px) {
    .info-step-grid-2col {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    /* Cards drop their frame and run full width below the sidebar breakpoint,
       same treatment as the Services page cards: no border/radius/shadow,
       sections separated by a single rule instead. Deliberately NOT
       overflow:hidden — the average-time tooltip opens upward out of the
       card header and would get clipped. */
    .info-page-step {
      --step-pad: 20px;
      margin: 0;
      border: 0;
      border-top: 1px solid #E6E2DC;
      border-radius: 0;
      box-shadow: none;
    }
    .info-page-step:first-child { border-top: 0; }
    .info-step-head,
    .info-page-card-top > .section-title { border-radius: 0; }
    .info-page-card { border-radius: 0; }
}

.hto2-page {
  position: relative;
  isolation: isolate;
  padding: 64px 0;
}

/* ─── Optional CAD line-art background — this page only ────────────────── */
.hto2-cad-background {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}
.hto2-cad-background img {
  position: absolute;
  top: 0;
  right: -4vw;
  width: min(1100px, 82vw);
  height: auto;
  max-width: none;
  opacity: 0.22;
  filter: brightness(0.68) saturate(1.4);
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.78) 14%, #000 34%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.78) 14%, #000 42%);
}
@media (max-width: 767px) {
  .hto2-cad-background img {
    top: 0;
    right: -24%;
    width: 132%;
    opacity: 0.14;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.68) 16%, #000 42%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.68) 16%, #000 42%);
  }
}
.hto2-page > .content-page-hero,
.hto2-page > .hiw2-mobile-toc,
.hto2-page > .wrap {
  position: relative;
  z-index: 1;
}
.hto2-page .content-page-hero {
  background: transparent;
  border-bottom: 0;
}
.hto2-page .content-page-hero__title {
  margin: 0;
  color: var(--black-deep);
  font-family: var(--display);
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.hto2-page .content-page-hero__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  margin-top: 24px;
  background: var(--rust);
}
@media (max-width: 640px) {
  .hto2-page .content-page-hero__title::after { width: 40px; height: 3px; margin-top: 18px; }
}

/* ─── Mobile TOC bar (hidden ≥901px) ────────────────────────────────────── */
.hiw2-mobile-toc {
  display: none;
  background: #fff;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 32px;
}
.hiw2-mobile-toc-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
}
.mtoc-link {
  flex-shrink: 0;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.15s;
}
.mtoc-link:hover { color: var(--rust); }
.mtoc-link.active { color: var(--rust); font-weight: 600; }

/* ─── Sidebar + content layout — width comes from the shared .wrap ─────── */
.hiw2-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 0 48px;
  padding: 32px 0 72px;
}
.hiw2-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  background: #fff;
  border: 1px solid #E2E5E7;
  border-radius: 12px;
  padding: 24px;
}
.hiw2-sidebar-title {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  color: var(--black-deep);
  margin: 0 0 16px;
}
.hiw2-toc { list-style: none; margin: 0; padding: 0; }
.hiw2-toc li { border-bottom: 1px solid #F0F0F0; }
.hiw2-toc li:last-child { border-bottom: none; }
.toc-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px 16px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.toc-link svg { width: 18px; height: 18px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.toc-link:hover { color: var(--rust); }
.toc-link.active { color: var(--rust); border-left-color: var(--rust); font-weight: 700; }
.hiw2-content { min-width: 0; }
section[id] { scroll-margin-top: 80px; }

/* ─── Numbered card shell (same visual language as Services) ───────────── */
.hto2-card {
  margin: 0 0 24px;
  overflow: visible;
  border: 1px solid #E6E2DC;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(5, 15, 19, 0.04);
}
.hto2-card:last-child { margin-bottom: 0; }
.hto2-card-header {
  --hto2-header-py: 20px;
  display: flex;
  align-items: stretch;
  gap: 10px;
  padding: var(--hto2-header-py) 32px;
  background: #f5f5f5;
  border-bottom: 1px solid #E6E2DC;
  border-radius: 15px 15px 0 0;
}
.hto2-card-number {
  flex: 0 0 auto;
  align-self: center;
  color: var(--rust);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.18;
}
.hto2-card-separator {
  position: relative;
  flex: 0 0 auto;
  align-self: stretch;
  width: 20px;
  min-height: 1.18em;
}
.hto2-card-separator::before {
  content: '';
  position: absolute;
  background: #E6E2DC;
  top: calc(0px - var(--hto2-header-py));
  bottom: calc(0px - var(--hto2-header-py));
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
}
.hto2-card-title {
  display: flex;
  flex: 1;
  min-width: 0;
  align-self: center;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px 24px;
  flex-wrap: wrap;
  margin: 0;
  color: var(--black-deep);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.18;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .hto2-card-number, .hto2-card-title { font-size: 32px; }
}
@media (max-width: 640px) {
  .hto2-card-header { --hto2-header-py: 18px; gap: 8px; padding: var(--hto2-header-py) 20px; }
  .hto2-card-number, .hto2-card-title { font-size: 23px; }
  .hto2-card-title { gap: 8px 16px; }
}

.hto2-card-body { padding: 32px; }
.hto2-card-body--flush { padding: 0; }
@media (max-width: 1023px) { .hto2-card-body { padding: 24px; } }
@media (max-width: 640px)  { .hto2-card-body { padding: 20px; } }

/* ─── Average-time badge + tooltip ───────────────────────────────────────── */
.hiw2-time {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--black-deep);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  text-transform: none;
  letter-spacing: normal;
}
.hiw2-info { position: relative; display: inline-flex; align-items: center; justify-content: center; cursor: help; color: var(--rust); }
.hiw2-info svg { width: 17px; height: 17px; display: block; }
.hiw2-tip {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  width: 290px;
  max-width: 78vw;
  background: var(--black-deep);
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s, transform 0.15s;
  z-index: 50;
  text-transform: none;
  letter-spacing: normal;
  white-space: normal;
}
.hiw2-tip::after { content: ''; position: absolute; top: 100%; right: 6px; border: 6px solid transparent; border-top-color: var(--black-deep); }
.hiw2-info:hover .hiw2-tip, .hiw2-info:focus .hiw2-tip, .hiw2-info:focus-within .hiw2-tip { opacity: 1; visibility: visible; transform: translateY(0); }

/* ─── Body copy ──────────────────────────────────────────────────────────── */
.intro, .para {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.625;
  color: #3D3835;
  max-width: 78ch;
  margin: 0 0 24px;
}
.intro { margin-bottom: 32px; }
.para--tight { margin-bottom: 8px; }
.para--wide { max-width: none; margin-bottom: 40px; }
.para--tight-top { margin-top: 24px; }
.para-title { font-family: var(--display); font-size: 16px; font-weight: 700; color: var(--black-deep); margin: 0 0 8px; }
.para-title--wide { margin-bottom: 24px; }
.subhead { font-family: var(--display); font-size: 16px; font-weight: 800; color: var(--black-deep); margin: 0 0 16px; }
.link, .hto2-card-body a { color: var(--rust); }
.link:hover, .hto2-card-body a:hover { color: var(--rust-deep); text-decoration: underline; }

.plain-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.plain-list--tight { margin: 16px 0; }
.plain-list li { font-family: var(--sans); font-size: 16px; line-height: 1.6; color: #3D3835; padding-left: 18px; position: relative; }
.plain-list li::before { content: "-"; position: absolute; left: 0; color: var(--gray-500); }

/* ─── Detail rows ────────────────────────────────────────────────────────── */
.detail-list { border-top: 1px solid #E5E7EB; margin-bottom: 8px; }
.detail-list--plain { border-top: 0; }
.detail-item { padding: 16px 0; min-width: 0; }
.detail-list--plain .detail-item:first-child { padding-top: 0; }
.detail-item + .detail-item { border-top: 1px solid #E5E7EB; }
.detail-list--plain .detail-item + .detail-item { border-top: 0; }
.detail-title { font-family: var(--sans); font-size: 16px; font-weight: 600; color: var(--black-deep); margin: 0 0 4px; }
.detail-text { font-family: var(--sans); font-size: 16px; line-height: 1.625; color: #3D3835; margin: 0; }

/* ─── FAQ accordion ──────────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid #E5E7EB; margin-bottom: 24px; }
.faq-block { border-bottom: 1px solid #E5E7EB; }
.faq-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; background: none; border: 0; text-align: left; cursor: pointer; }
.faq-question { font-family: var(--display); font-weight: 700; color: var(--black-deep); font-size: 16px; }
.faq-body {
  display: grid;
  grid-template-rows: minmax(0, 0fr);
  opacity: 0;
  transition: grid-template-rows 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.24s ease;
}
.faq-block.open .faq-body { grid-template-rows: minmax(0, 1fr); opacity: 1; }
.faq-body > * { min-height: 0; overflow: hidden; transform: translateY(-5px); transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-block.open .faq-body > * { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .faq-body, .faq-body > *, .faq-plus::before { transition: none; } }
.faq-answer { font-family: var(--sans); font-size: 16px; line-height: 1.625; color: #3D3835; margin: 0 0 16px; padding-bottom: 4px; }
.faq-answer:last-child { margin-bottom: 0; }
.faq-body-inner > .plain-list { padding-bottom: 20px; }
.faq-plus { position: relative; width: 20px; height: 20px; flex-shrink: 0; color: #9CA3AF; }
.faq-block.open .faq-plus { color: var(--rust); }
.faq-block.open .faq-question { color: var(--rust); }
.faq-plus::before {
  content: ''; position: absolute; top: 3px; left: 5px; width: 9px; height: 9px;
  border-right: 2.5px solid currentColor; border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg); transition: transform 0.22s ease, top 0.22s ease;
}
.faq-block.open .faq-plus::before { top: 7px; transform: rotate(225deg); }

/* ─── Price & payment card (02) ──────────────────────────────────────────── */
.hto2-card-body--flush .hiw2-card-top { padding: 32px 32px 28px; }
.milestones { border-top: 1px solid #E5E7EB; border-bottom: 1px solid #E5E7EB; }
.milestone-row { display: flex; align-items: flex-start; gap: 32px; padding: 20px 0; min-width: 0; }
.milestone-row + .milestone-row { border-top: 1px solid #E5E7EB; }
.milestone-pct { font-family: var(--display); font-size: 36px; font-weight: 800; color: var(--rust); line-height: 1; flex-shrink: 0; width: 64px; }
.milestone-text { font-family: var(--sans); font-size: 16px; color: #3D3835; margin: 4px 0 0; min-width: 0; }

.hiw2-card-bottom { padding: 32px; }
.hiw2-card-bottom--flush { border-top: none; margin-top: 0; }
.hiw2-card-bottom--escrow { background: var(--black-deep); border-radius: 0 0 15px 15px; }
.escrow-title { font-family: var(--display); font-size: 16px; font-weight: 800; letter-spacing: 0.025em; color: #fff; margin: 0 0 20px; }
.escrow-intro { font-family: var(--sans); font-size: 16px; line-height: 1.625; color: rgba(255,255,255,0.85); margin: 0 0 24px; }
.escrow-options { display: grid; grid-template-columns: 1fr; gap: 24px; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 16px; }
.escrow-options > * { min-width: 0; }
.escrow-option-title { font-family: var(--sans); font-size: 16px; font-weight: 700; color: #fff; margin: 0 0 4px; }
.escrow-fee { font-family: var(--sans); font-size: 16px; font-weight: 600; color: rgba(255,255,255,0.6); margin: 0 0 8px; }
.escrow-text { font-family: var(--sans); font-size: 16px; line-height: 1.625; color: rgba(255,255,255,0.8); margin: 0; }
.escrow-text--note { margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.15); }
.escrow-text a { color: var(--rust); text-decoration: underline; }
@media (min-width: 640px) { .escrow-options { grid-template-columns: 1fr 1fr; } }

/* ─── Image galleries ────────────────────────────────────────────────────── */
:root { --gal-thumb-gap: 12px; }
.hiw2-media { margin-bottom: 32px; }
.gal-thumbs { display: flex; flex-wrap: nowrap; gap: var(--gal-thumb-gap); margin-top: 16px; }
.gal-main { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 12px; display: block; }
.gal-thumb {
  width: calc((100% - 3 * var(--gal-thumb-gap)) / 4);
  height: auto; aspect-ratio: 1; object-fit: cover; border-radius: 12px;
  border: 2px solid transparent; cursor: pointer; transition: border-color 0.15s, opacity 0.15s;
}
.gal-thumb:hover { opacity: 0.85; }
.gal-thumb-active { border-color: var(--rust); }
.ce-gallery .gal-main, .ce-gallery .gal-thumb { object-fit: contain; background: #fff; border-radius: 8px; }
@media (min-width: 768px) {
  .gal-group.hiw2-media {
    --gal-thumb-col: 14.8%;
    display: grid;
    grid-template-columns: var(--gal-thumb-col) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
  }
  .gal-group.hiw2-media:has(.gal-thumb:nth-child(4)) { --gal-thumb-col: 11.2%; }
  .gal-group.hiw2-media.ce-gallery { --gal-thumb-col: 11.2%; }
  .gal-group.hiw2-media > .gal-main { grid-column: 2; grid-row: 1; }
  .gal-group.hiw2-media > .gal-thumbs { grid-column: 1; grid-row: 1; flex-direction: column; flex-wrap: nowrap; margin-top: 0; }
  .gal-group.hiw2-media .gal-thumb { width: 100%; height: auto; aspect-ratio: 1; }
}

/* ─── Shipping (07) ──────────────────────────────────────────────────────── */
.ship-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; margin-bottom: 32px; }
.ship-grid > * { min-width: 0; }
.ship-image img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; display: block; }
@media (min-width: 1024px) { .ship-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }

.ship-table-card { border: 1px solid #D6D1CC; border-radius: 16px; background: #fff; overflow: hidden; box-shadow: 0 1px 2px rgba(5,15,19,0.04); }
.ship-scale-wrap { overflow-x: auto; }
.ship-table { width: 100%; min-width: 640px; border-collapse: collapse; text-align: left; }
.ship-table thead tr { background: #F5F5F5; }
.ship-th-label { padding: 18px 24px; font-weight: 700; color: var(--black-deep); vertical-align: bottom; font-family: var(--sans); }
.ship-updated { display: block; margin-top: 4px; font-size: 12px; font-weight: 500; color: #8A8581; }
.ship-th { padding: 18px 24px; text-align: center; vertical-align: bottom; }
.ship-label-primary { display: block; font-weight: 700; color: var(--black-deep); font-family: var(--sans); }
.ship-label-secondary { display: block; font-size: 13px; font-weight: 400; color: #8A8581; font-family: var(--sans); }
.ship-table tbody tr { border-top: 1px solid #ECE8E3; }
.ship-table tbody tr:hover { background: #FAF8F6; }
.ship-td-label { padding: 18px 24px; vertical-align: middle; }
.ship-td { padding: 18px 24px; text-align: center; vertical-align: middle; color: #3D3835; font-weight: 600; font-family: var(--sans); }
.ship-td-muted { color: #8A8581; font-weight: 500; }
.ship-row-last .ship-td { font-weight: 500; }
@media (max-width: 900px) { .ship-th-label, .ship-th, .ship-td-label, .ship-td { padding: 14px 16px; } }
@media (max-width: 640px) { .ship-scale-wrap { overflow-x: hidden; } .ship-scale-wrap .ship-table { transform-origin: top left; } }
.ship-note { font-family: var(--sans); font-size: 14px; line-height: 1.625; color: #3D3835; margin: 16px 0 0; }

/* ─── Responsive: sidebar drops below 901px ─────────────────────────────── */
@media (max-width: 900px) {
  .hiw2-layout { grid-template-columns: minmax(0, 1fr); padding: 0 0 48px; }
  .hiw2-sidebar { display: none; }
  .hiw2-mobile-toc { display: block; }
  .hto2-card { margin: 0; border: 0; border-top: 1px solid #E6E2DC; border-radius: 0; box-shadow: none; }
  .hto2-card:first-child { border-top: 0; }
  .hto2-card-header { border-radius: 0; }
  .hto2-card-body--flush .hiw2-card-top { padding: 24px; }
  .hiw2-card-bottom--escrow { border-radius: 0; }
  .hto2-page > .wrap {padding: 0 !important; }
  .hiw2-mobile-toc {margin-bottom: 0 !important; }
}
@media (max-width: 640px) {
  .hto2-page .content-page-hero .wrap { padding-left: 20px; padding-right: 20px; }
  .hiw2-mobile-toc-inner { padding: 14px 20px; }
  .hto2-card-body--flush .hiw2-card-top { padding: 20px; }
  .hiw2-card-bottom { padding: 24px 20px; }
}