:root {
  --ink: #101820;
  --ink-soft: #23303b;
  --paper: #f5f3ef;
  --white: #ffffff;
  --orange: #f36b21;
  --orange-dark: #c94c0b;
  --line: #d9d5ce;
}

* { box-sizing: border-box; }
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
[id] { scroll-margin-top: 84px; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  align-items: center;
  background: rgba(16, 24, 32, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 8px 28px rgba(8, 14, 20, .18);
  display: flex;
  height: 86px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 5vw, 76px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}
.brand img { height: 58px; width: auto; }
.desktop-nav { align-items: center; display: flex; gap: clamp(16px, 1.9vw, 28px); }
.desktop-nav a {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.desktop-nav a:hover { color: #ff9a60; }
.desktop-nav .nav-cart { align-items: center; background: rgba(243, 107, 33, .14); border: 1px solid rgba(243, 107, 33, .56); border-radius: 999px; color: #ffc2a0; display: inline-flex; gap: 7px; padding: 10px 15px; }
.desktop-nav .nav-cart.is-active { background: var(--orange); border-color: var(--orange); color: #101820; }
.cart-count { align-items: center; background: var(--orange); border-radius: 999px; color: #101820; display: inline-flex; font-size: .68rem; font-weight: 900; height: 21px; justify-content: center; min-width: 21px; padding: 0 5px; }
.cart-count[hidden] { display: none; }
.nav-cart.is-active .cart-count { background: #101820; color: #fff; }
.mobile-cart-link { display: none; }
.desktop-nav .nav-cta {
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 11px 18px;
}
.mobile-menu { display: none; position: relative; }
.mobile-menu summary {
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 800;
  list-style: none;
  padding: 9px 14px;
}
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  display: grid;
  min-width: 210px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 48px;
}
.mobile-menu nav a { border-bottom: 1px solid var(--line); font-weight: 700; padding: 15px 18px; text-decoration: none; }

.hero {
  display: grid;
  min-height: min(820px, 92vh);
  overflow: hidden;
  place-items: center start;
  position: relative;
}
.hero-media, .hero-shade { inset: 0; position: absolute; }
.hero-media img { height: 100%; object-fit: cover; width: 100%; }
.hero-shade {
  background: linear-gradient(90deg, rgba(8,14,20,.94) 0%, rgba(8,14,20,.75) 44%, rgba(8,14,20,.12) 78%);
}
.hero-content {
  color: #fff;
  margin-top: 72px;
  max-width: 820px;
  min-width: 0;
  padding: 72px clamp(20px, 7vw, 110px);
  position: relative;
  width: 100%;
  z-index: 2;
}
.eyebrow {
  color: #ff9a60;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--orange-dark); }
.hero h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  letter-spacing: -.065em;
  line-height: .93;
  margin: 0;
  max-width: 810px;
}
.hero-lead {
  color: #e6e8ea;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.6;
  margin: 30px 0 0;
  max-width: 650px;
}
.hero-price { align-items: baseline; display: flex; flex-wrap: wrap; gap: 8px 13px; margin-top: 22px; }
.hero-price strong { color: #fff; font-size: clamp(1.55rem, 3vw, 2.3rem); letter-spacing: -.04em; }
.hero-price span { color: #ffd5bd; font-size: .84rem; font-weight: 800; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-payment-note { color: #dbe1e5; font-size: .75rem; font-weight: 700; letter-spacing: .04em; margin: 14px 0 0; }
.button {
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  padding: 15px 24px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: #111; }
.button-primary:hover { background: #ff843f; }
.button-secondary { background: #ece9e4; color: var(--ink); }
.button-secondary:hover { background: #dfdbd4; }
.button-ghost { border-color: rgba(255,255,255,.58); color: #fff; }
.button-ghost:hover { background: rgba(255,255,255,.1); }

.trust-bar {
  background: linear-gradient(135deg, #121c26, #101820 55%, #19232d);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 clamp(20px, 5vw, 76px);
}
.trust-bar div { border-right: 1px solid rgba(255,255,255,.13); min-height: 145px; min-width: 0; padding: 28px 24px 26px; }
.trust-bar div:first-child { border-left: 1px solid rgba(255,255,255,.13); }
.trust-bar div::before { background: linear-gradient(90deg, #ff9a60, var(--orange)); border-radius: 999px; content: ""; display: block; height: 3px; margin-bottom: 15px; width: 42px; }
.trust-bar strong { color: #fff; display: block; font-size: clamp(1.45rem, 2vw, 1.85rem); font-weight: 900; letter-spacing: -.045em; line-height: 1.08; white-space: nowrap; }
.trust-bar span { color: #e5ebf0; display: block; font-size: .89rem; font-weight: 600; letter-spacing: .012em; line-height: 1.45; margin-top: 8px; }

.section { padding: clamp(72px, 9vw, 130px) clamp(20px, 5vw, 76px); }
.pricing { background: var(--paper); }
.offer { background: #fff; }
.section-heading { margin: 0 auto 48px; max-width: 850px; text-align: center; }
.section-heading.align-left { margin-left: 0; max-width: 980px; text-align: left; }
.section-heading h2 {
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  letter-spacing: -.05em;
  line-height: 1;
  margin: 0;
}
.section-heading > p:last-child {
  color: #58636b;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 24px auto 0;
  max-width: 680px;
}
.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1400px;
}
.price-card {
  background: #fff;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(19, 26, 31, .12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .25s ease, transform .25s ease;
}
.price-card:hover { box-shadow: 0 24px 62px rgba(19, 26, 31, .17); transform: translateY(-6px); }
.price-card > img { aspect-ratio: 16 / 9; object-fit: cover; transition: transform .35s ease; width: 100%; }
.price-card:hover > img { transform: scale(1.025); }
.price-card-body { display: flex; flex: 1; flex-direction: column; padding: 0 22px 24px; position: relative; }
.price-row {
  align-items: center;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(10, 16, 22, .25);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: -34px;
  min-height: 70px;
  order: -1;
  padding: 14px 16px;
  position: relative;
  z-index: 2;
}
.price-row h3 { color: #fff; font-size: 1.55rem; margin: 0; }
.price-row strong { background: var(--orange); border-radius: 999px; color: #101820; font-size: 1.15rem; padding: 8px 12px; text-align: center; white-space: nowrap; }
.price-row strong small { display: block; font-size: .56rem; letter-spacing: .01em; margin-top: 1px; }
.price-card .box-use { color: var(--orange-dark); display: block; font-size: .69rem; font-weight: 900; letter-spacing: .09em; margin-top: 17px; text-transform: uppercase; }
.price-card .box-dimensions { background: #f0ede7; border-radius: 999px; color: var(--ink-soft); display: inline-flex; font-size: .78rem; font-weight: 800; letter-spacing: .02em; margin-top: 18px; padding: 7px 10px; text-transform: none; }
.price-card .availability-badge { align-items: center; display: flex; font-size: .76rem; font-weight: 800; gap: 7px; letter-spacing: .01em; margin-top: 17px; text-transform: none; }
.availability-badge::before { border-radius: 50%; content: ""; height: 8px; width: 8px; }
.availability-badge.is-available { color: #247149; }
.availability-badge.is-available::before { background: #2f9c61; }
.availability-badge.is-unavailable { color: #777d81; }
.availability-badge.is-unavailable::before { background: #a0a5a8; }
.availability-badge.is-soon { color: #a34c1c; }
.availability-badge.is-soon::before { background: #f36b21; }
.availability-badge + .box-dimensions { margin-top: 12px; }
.price-card p { color: #5a646c; line-height: 1.55; margin: 16px 0 14px; min-height: 74px; }
.price-card span { color: #7b848a; font-size: .78rem; text-transform: uppercase; }
.box-fit-list { color: #37434b; display: grid; gap: 7px; list-style: none; margin: 0 0 19px; padding: 0; }
.box-fit-list li { font-size: .79rem; line-height: 1.35; padding-left: 19px; position: relative; }
.box-fit-list li::before { color: #2f8b59; content: "✓"; font-weight: 900; left: 0; position: absolute; }
.box-short-price { align-items: end; border-top: 1px solid #ebe8e3; display: flex; gap: 10px; justify-content: space-between; margin-top: auto; padding-top: 15px; }
.box-short-price span { color: #68737a; font-size: .68rem; font-weight: 700; line-height: 1.35; text-transform: none; }
.box-short-price strong { color: #17232c; font-size: 1.1rem; white-space: nowrap; }
.price-card .add-to-cart { align-items: center; background: #101820; border: 1px solid #101820; border-radius: 11px; color: #fff; display: flex; font-size: .84rem; font-weight: 800; justify-content: center; margin-top: 17px; min-height: 46px; text-decoration: none; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.price-card .add-to-cart:hover { background: var(--orange); border-color: var(--orange); color: #101820; }
.price-card .add-to-cart.is-contact { background: #fff; border-color: #c8c6c2; color: #39454d; }
.price-card .add-to-cart.is-contact:hover { border-color: var(--orange); color: var(--orange-dark); }
.pricing-note { color: #6c747a; font-size: .88rem; margin: 24px auto 0; max-width: 1400px; text-align: right; }

.cart-page { min-height: 100vh; padding-top: 86px; }
.cart-progress { align-items: center; background: #fff; border-bottom: 1px solid #e8e6e2; display: flex; gap: clamp(20px, 6vw, 88px); justify-content: center; min-height: 73px; padding: 13px 20px; }
.cart-progress > span { align-items: center; color: #45525b; display: inline-flex; font-size: .81rem; font-weight: 800; gap: 9px; white-space: nowrap; }
.cart-progress > span > strong { align-items: center; background: #fff1e8; border-radius: 50%; color: var(--orange-dark); display: inline-flex; height: 27px; justify-content: center; width: 27px; }
.cart-progress > span:first-child > strong { background: var(--orange); color: #101820; }
.booking-section.cart-booking-section { padding-bottom: clamp(72px, 8vw, 108px); padding-top: clamp(62px, 8vw, 108px); }
.booking-section { background: #101820; color: #fff; padding-bottom: clamp(84px, 10vw, 144px); padding-top: clamp(84px, 10vw, 144px); }
.booking-shell { align-items: start; display: grid; gap: clamp(44px, 8vw, 120px); grid-template-columns: minmax(0, .82fr) minmax(390px, 1fr); margin: 0 auto; max-width: 1300px; }
.booking-intro { max-width: 520px; padding-top: 48px; position: sticky; top: 126px; }
.booking-intro h1, .booking-intro h2 { font-size: clamp(2.6rem, 5vw, 5rem); letter-spacing: -.065em; line-height: .99; margin: 0; }
.booking-intro > p:not(.eyebrow) { color: #d2d8dc; font-size: 1.08rem; line-height: 1.8; margin: 28px 0 0; }
.cart-selected-product { align-items: center; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); border-radius: 16px; display: grid; gap: 15px; grid-template-columns: 106px minmax(0, 1fr); margin-top: 29px; padding: 11px; }
.cart-selected-product > img { aspect-ratio: 1; border-radius: 10px; object-fit: cover; width: 100%; }
.cart-selected-product > div { display: grid; gap: 6px; }
.cart-selected-product > div > span { color: #cbd2d7; font-size: .72rem; }
.cart-selected-product > div > strong { color: #fff; font-size: .96rem; }
.cart-selected-product > div > b { color: #ffab78; font-size: .87rem; }
.cart-back-link { color: #ffc2a0; display: inline-block; font-size: .81rem; font-weight: 800; margin-top: 18px; text-underline-offset: 4px; }
.booking-promises { display: grid; gap: 13px; margin-top: 35px; }
.booking-promises span { color: #f1f3f5; font-size: .91rem; font-weight: 700; padding-left: 24px; position: relative; }
.booking-promises span::before { color: #ff9a60; content: "✓"; left: 0; position: absolute; }
.booking-panel { background: #fff; border-radius: 24px; box-shadow: 0 28px 85px rgba(0, 0, 0, .25); color: var(--ink); padding: clamp(25px, 4vw, 42px); }
.booking-panel-heading > span { color: var(--orange-dark); font-size: .7rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.booking-panel-heading h2, .booking-panel-heading h3 { font-size: 1.65rem; letter-spacing: -.045em; margin: 8px 0 22px; }
.booking-sizes { display: grid; gap: 10px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.booking-size { appearance: none; background: #f5f3ef; border: 1px solid transparent; border-radius: 12px; color: var(--ink); cursor: pointer; min-height: 80px; padding: 13px 8px; text-align: center; }
.booking-size strong, .booking-size span { display: block; }
.booking-size strong { font-size: 1.06rem; }
.booking-size span { color: #527160; font-size: .65rem; font-weight: 700; margin-top: 5px; }
.booking-size.is-selected { background: #fff5ee; border-color: var(--orange); }
.booking-size.is-unavailable { background: #f4f4f3; color: #82888d; cursor: not-allowed; }
.booking-size.is-unavailable span { color: #82888d; }
.booking-size.is-soon { background: #fff8f2; border-color: #f6d8c3; }
.booking-size.is-soon span { color: #a34c1c; }
.booking-availability-note { border-radius: 10px; font-size: .77rem; line-height: 1.55; margin: 12px 0 0; padding: 10px 12px; }
.booking-availability-note[hidden] { display: none; }
.booking-availability-note.is-available { background: #eaf6ef; color: #24683e; }
.booking-availability-note.is-soon { background: #fff5ee; color: #9b4317; }
.booking-availability-note.is-unavailable { background: #f4f4f3; color: #667078; }
.booking-days-label { align-items: center; display: flex; justify-content: space-between; margin: 31px 0 13px; }
.booking-days-label > span { color: #5f696f; font-size: .87rem; font-weight: 700; }
.booking-days-label > strong { font-size: 1rem; }
.booking-duration-options { display: grid; gap: 8px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 15px; }
.booking-duration-options button { appearance: none; background: #f5f3ef; border: 1px solid #dedbd5; border-radius: 9px; color: #3f4b53; cursor: pointer; font: inherit; font-size: .74rem; font-weight: 800; min-height: 40px; padding: 7px 5px; }
.booking-duration-options button:hover { border-color: #ed9b6c; }
.booking-duration-options button.is-selected { background: #fff1e8; border-color: var(--orange); color: #a9430c; }
.booking-range { accent-color: var(--orange); cursor: pointer; display: block; margin: 0; width: 100%; }
.booking-range-labels { color: #81888d; font-size: .68rem; height: 14px; margin-top: 8px; position: relative; }
.booking-range-labels span { position: absolute; top: 0; white-space: nowrap; }
.booking-range-labels span:first-child { left: 0; }
.booking-range-labels span:nth-child(2) { left: 21.0526%; transform: translateX(-50%); }
.booking-range-labels span:last-child { right: 0; }
.booking-total { align-items: center; background: #f5f3ef; border-radius: 14px; display: flex; gap: 12px; justify-content: space-between; margin-top: 23px; padding: 18px; }
.booking-total > div > span, .booking-total > div > strong { display: block; }
.booking-total > div > span { color: #546069; font-size: .84rem; }
.booking-total > div > strong { color: #6b747a; font-size: .72rem; margin-top: 4px; }
.booking-total > strong { font-size: clamp(1.3rem, 3vw, 1.85rem); letter-spacing: -.04em; white-space: nowrap; }
.form-heading { border-top: 1px solid #e6e4e0; margin-top: 29px; padding-top: 25px; }
.booking-form { display: grid; gap: 14px; }
.booking-form > label:not(.booking-consent):not(.booking-honeypot), .booking-fields-row > label { color: #465159; display: grid; font-size: .8rem; font-weight: 700; gap: 7px; }
.booking-form input:not([type="checkbox"]):not([type="radio"]) { background: #fff; border: 1px solid #d8d6d2; border-radius: 8px; color: var(--ink); font: inherit; min-height: 44px; padding: 10px 12px; width: 100%; }
.booking-form input:not([type="checkbox"]):not([type="radio"]):focus { border-color: var(--orange); outline: 2px solid rgba(243, 107, 33, .14); }
.booking-fields-row { display: grid; gap: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.checkout-heading { margin-top: 12px; padding-top: 22px; }
.checkout-heading h3 { margin-bottom: 3px; }
.booking-checkout-summary { background: #f8f7f4; border: 1px solid #eeece8; border-radius: 15px; padding: 17px 16px 14px; }
.booking-checkout-line { align-items: start; display: flex; gap: 15px; justify-content: space-between; padding: 7px 0; }
.booking-checkout-line > span { color: #616b72; flex-shrink: 0; font-size: .76rem; }
.booking-checkout-line > strong { color: #18232b; font-size: .77rem; line-height: 1.45; text-align: right; }
.booking-checkout-final { align-items: center; border-top: 1px solid #dfdcd6; margin-top: 8px; padding-top: 14px; }
.booking-checkout-final > span { color: #25313a; font-size: .83rem; font-weight: 800; }
.booking-checkout-final > strong { color: var(--orange-dark); font-size: 1.28rem; letter-spacing: -.04em; white-space: nowrap; }
.booking-checkout-note { color: #637067; font-size: .7rem; margin: 8px 0 0; }
.booking-payment { border: 0; margin: 0; min-width: 0; padding: 0; }
.booking-payment > .visually-hidden { clip: rect(0, 0, 0, 0); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }
.booking-payment-option { align-items: center; background: #fff8f2; border: 1px solid #f1ad82; border-radius: 13px; cursor: pointer; display: flex; gap: 11px; padding: 14px 12px; }
.booking-payment-option > input { accent-color: var(--orange); flex: 0 0 auto; height: 16px; margin: 0; width: 16px; }
.booking-payment-copy { flex: 1 1 auto; min-width: 0; }
.booking-payment-copy strong, .booking-payment-copy > span { display: block; }
.booking-payment-copy strong { color: #17232c; font-size: .82rem; }
.booking-payment-copy > span { color: #667078; font-size: .71rem; margin-top: 4px; }
.booking-payment-selected { align-items: center; background: #f36b21; border-radius: 50%; color: #fff; display: flex; flex: 0 0 21px; font-size: .73rem; height: 21px; justify-content: center; }
.booking-payment-methods { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 11px; }
.booking-payment-methods span { background: #f1f0ed; border-radius: 7px; color: #47535c; font-size: .67rem; font-weight: 800; padding: 6px 9px; }
.booking-payment-note { color: #677078; font-size: .72rem; line-height: 1.55; margin: 10px 0 0; }
.booking-payment-title { border-top: 1px solid #e6e4e0; font-size: 1.05rem; margin: 14px 0 0; padding-top: 22px; }
.booking-honeypot { height: 0; opacity: 0; overflow: hidden; position: absolute; width: 0; }
.booking-consent { align-items: start; color: #56616a; display: flex; font-size: .76rem; gap: 8px; line-height: 1.5; margin-top: 4px; }
.booking-consent input { accent-color: var(--orange); margin-top: 3px; }
.booking-consent a { color: var(--orange-dark); font-weight: 800; text-underline-offset: 3px; }
.booking-consent[hidden] { display: none; }
.booking-consent-early { background: #fff5ee; border-radius: 9px; padding: 11px; }
.booking-final-note { background: #eef6f1; border-radius: 10px; color: #375646; display: grid; font-size: .75rem; gap: 3px; line-height: 1.45; margin: 5px 0 0; padding: 11px 13px; text-align: center; }
.booking-final-note strong { color: #214b35; }
.booking-submit { cursor: pointer; font-size: .94rem; width: 100%; }
.booking-submit:disabled { cursor: wait; opacity: .7; }
.booking-disclaimer { color: #727b80; font-size: .72rem; line-height: 1.55; margin: 0; text-align: center; }
.booking-message { border-radius: 9px; font-size: .84rem; line-height: 1.55; margin: 0; padding: 12px; }
.booking-message.is-success { background: #eaf6ef; color: #24683e; }
.booking-message.is-error { background: #fff0ed; color: #a93c28; }

.use-cases {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1400px;
}
.use-cases article {
  background: var(--paper);
  border-top: 3px solid var(--ink);
  min-height: 280px;
  padding: 34px;
}
.use-cases article:nth-child(2) { background: #ebe8e2; }
.use-cases span { color: var(--orange-dark); font-size: .8rem; font-weight: 800; letter-spacing: .15em; }
.use-cases h3 { font-size: 1.5rem; margin: 54px 0 14px; }
.use-cases p { color: #59646c; line-height: 1.7; margin: 0; }

.security { background: var(--ink); display: grid; grid-template-columns: 1.05fr .95fr; }
.security-image { min-height: 690px; }
.security-image img { height: 100%; object-fit: cover; width: 100%; }
.security-copy { align-self: center; color: #fff; max-width: 720px; padding: clamp(60px, 8vw, 120px); }
.security-copy h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  letter-spacing: -.055em;
  line-height: 1;
  margin: 0;
}
.security-copy > p:not(.eyebrow) { color: #cbd1d5; font-size: 1.05rem; line-height: 1.8; margin: 28px 0; }
.security-copy ul { display: grid; gap: 0; list-style: none; margin: 30px 0 0; padding: 0; }
.security-copy li { border-top: 1px solid rgba(255,255,255,.15); font-weight: 700; padding: 17px 0 17px 28px; position: relative; }
.security-copy li::before { color: #ff8b4a; content: "✓"; left: 0; position: absolute; }

.steps { background: #fff; }
.steps-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); margin: 0 auto; max-width: 1200px; }
.steps-grid article { border: 1px solid var(--line); border-radius: 16px; padding: 36px; }
.steps-grid strong { align-items: center; background: var(--orange); border-radius: 50%; display: flex; font-size: 1.1rem; height: 46px; justify-content: center; width: 46px; }
.steps-grid h3 { font-size: 1.35rem; margin: 28px 0 12px; }
.steps-grid p { color: #5b656d; line-height: 1.65; margin: 0; }

.gallery-section { background: var(--paper); padding: clamp(72px, 9vw, 130px) 0; }
.gallery-heading { padding: 0 clamp(20px, 5vw, 76px) 42px; }
.gallery-heading h2 { font-size: clamp(2.4rem, 4.5vw, 4.8rem); letter-spacing: -.055em; line-height: 1; margin: 0; }
.gallery-grid { display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gallery-grid img { height: 430px; object-fit: cover; width: 100%; }

.location { background: #fff; display: grid; grid-template-columns: .8fr 1.2fr; }
.location-copy { align-self: center; padding: clamp(70px, 8vw, 120px); }
.location-copy h2 { font-size: clamp(2.5rem, 4.5vw, 4.7rem); letter-spacing: -.055em; line-height: 1; margin: 0; }
.location-copy > p:not(.eyebrow) { color: #5d666d; line-height: 1.7; }
.location-copy .address { color: var(--ink); font-size: 1.2rem; font-weight: 800; margin: 30px 0 12px; }
.text-link { color: var(--orange-dark); font-weight: 800; text-underline-offset: 4px; }
.button-dark { background: var(--ink); color: #fff; margin-top: 14px; }
.map-wrap { min-height: 620px; }
.map-wrap iframe { border: 0; height: 100%; min-height: 620px; width: 100%; }

.local-page .local-hero h1 { font-size: clamp(3rem, 6.4vw, 6rem); }
.local-page .section-heading.align-left > p:last-child { margin-left: 0; }
.local-copy { background: #fff; }
.local-copy-grid { display: grid; gap: clamp(34px, 7vw, 100px); grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0 auto; max-width: 1200px; }
.local-copy-grid h2 { font-size: clamp(2.1rem, 3.7vw, 3.8rem); letter-spacing: -.05em; line-height: 1; margin: 0; }
.local-copy-grid p:not(.eyebrow) { color: #58636b; font-size: 1.05rem; line-height: 1.75; margin: 24px 0 0; }

.faq { background: var(--paper); }
.faq-list { margin: 0 auto; max-width: 900px; }
.faq-list details { border-top: 1px solid #c8c4bd; }
.faq-list details:last-child { border-bottom: 1px solid #c8c4bd; }
.faq-list summary { cursor: pointer; font-size: 1.08rem; font-weight: 800; list-style: none; padding: 24px 48px 24px 0; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { color: var(--orange-dark); content: "+"; font-size: 1.65rem; position: absolute; right: 8px; top: 18px; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { color: #58636b; line-height: 1.75; margin: -4px 50px 24px 0; }

.contact { align-items: center; background: var(--ink); color: #fff; display: flex; gap: 50px; justify-content: space-between; padding: clamp(70px, 9vw, 120px) clamp(20px, 7vw, 110px); }
.contact h2 { font-size: clamp(2.7rem, 5.5vw, 5.7rem); letter-spacing: -.06em; line-height: .95; margin: 0; }
.contact div:first-child > p:last-child { color: #cbd1d5; font-size: 1.05rem; margin: 22px 0 0; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; min-width: 280px; }

footer { background: #0b1117; color: #cbd1d5; display: grid; gap: 48px; grid-template-columns: 1.7fr repeat(3, 1fr); padding: 56px clamp(20px, 5vw, 76px); }
footer > div { display: flex; flex-direction: column; gap: 8px; }
footer strong { color: #fff; margin-bottom: 8px; }
footer a { text-decoration: none; }
footer a:hover { color: #ff8b4a; }
.footer-brand img { height: 55px; object-fit: contain; object-position: left center; width: 150px; }
.footer-brand p { line-height: 1.6; max-width: 300px; }
.footer-company { color: #cbd1d5; font-size: .79rem; line-height: 1.55; }
.legal-page { background: var(--paper); min-height: 100vh; padding-top: 86px; }
.legal-header { background: var(--ink); color: #fff; padding: clamp(62px, 9vw, 110px) clamp(20px, 7vw, 110px); }
.legal-header-inner, .legal-body { margin: 0 auto; max-width: 940px; }
.legal-header h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); letter-spacing: -.065em; line-height: 1; margin: 0; }
.legal-header > div > p:last-child { color: #cbd1d5; line-height: 1.7; margin: 20px 0 0; max-width: 640px; }
.legal-body { padding: clamp(44px, 7vw, 88px) 22px clamp(72px, 10vw, 120px); }
.legal-summary { background: #fff; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 42px; padding: 24px; }
.legal-summary strong { display: block; margin-bottom: 10px; }
.legal-summary p { color: #47545d; line-height: 1.75; margin: 5px 0; }
.legal-section { border-top: 1px solid #d9d5ce; padding: 30px 0; }
.legal-section h2 { font-size: clamp(1.22rem, 2.2vw, 1.75rem); letter-spacing: -.035em; line-height: 1.25; margin: 0 0 18px; }
.legal-section p, .legal-section li { color: #465159; font-size: .96rem; line-height: 1.78; }
.legal-section p { margin: 12px 0; }
.legal-section ul, .legal-section ol { margin: 12px 0; padding-left: 23px; }
.legal-section li + li { margin-top: 7px; }
.legal-section a, .legal-summary a { color: var(--orange-dark); text-underline-offset: 3px; }
.legal-callout { background: #fff5ee; border-left: 3px solid var(--orange); padding: 16px 18px; }
.legal-withdrawal { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; white-space: pre-line; }
.privacy-settings { appearance: none; background: none; border: 0; color: inherit; cursor: pointer; font: inherit; padding: 0; text-align: left; }
.privacy-settings:hover { color: #ff8b4a; }
.tracking-consent { align-items: center; background: #fff; border: 1px solid rgba(18,25,30,.12); border-radius: 18px; bottom: 20px; box-shadow: 0 16px 60px rgba(11,19,24,.2); display: flex; gap: 25px; left: 20px; margin: 0 auto; max-width: 1120px; padding: 20px 24px; position: fixed; right: 20px; z-index: 80; }
.tracking-consent[hidden] { display: none; }
.tracking-consent-copy { flex: 1; }
.tracking-consent-copy strong { color: var(--ink); font-size: 1rem; }
.tracking-consent-copy p { color: #536069; font-size: .79rem; line-height: 1.65; margin: 7px 0 0; }
.tracking-consent-copy a { color: var(--orange-dark); font-weight: 700; text-underline-offset: 3px; }
.tracking-consent-actions { display: flex; flex-shrink: 0; gap: 9px; }
.tracking-consent-button { appearance: none; border: 1px solid #d6d9d9; border-radius: 9px; cursor: pointer; font: inherit; font-size: .78rem; font-weight: 800; min-height: 45px; padding: 0 15px; }
.tracking-consent-button.is-secondary { background: #fff; color: var(--ink); }
.tracking-consent-button.is-primary { background: var(--orange); border-color: var(--orange); color: #12191e; }
.mobile-actions { display: none; }

@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .trust-bar div:nth-child(odd) { border-left: 1px solid rgba(255,255,255,.13); }
  .trust-bar div:nth-child(n + 3) { border-top: 1px solid rgba(255,255,255,.13); }
  .desktop-nav a:not(.nav-cta) { display: none; }
  .mobile-menu { display: block; }
  .desktop-nav .nav-cta { display: none; }
  .mobile-cart-link { align-items: center; border: 1px solid rgba(243, 107, 33, .68); border-radius: 999px; color: #ffc2a0; display: inline-flex; font-size: .77rem; font-weight: 800; gap: 6px; padding: 8px 11px; text-decoration: none; }
  .security { grid-template-columns: 1fr; }
  .booking-shell { gap: 36px; grid-template-columns: 1fr; }
  .booking-intro { max-width: 760px; padding-top: 0; position: static; }
  .security-image { min-height: 480px; }
  .security-copy { max-width: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .location { grid-template-columns: 1fr; }
  .local-copy-grid { grid-template-columns: 1fr; }
  .map-wrap, .map-wrap iframe { min-height: 480px; }
  .contact { align-items: flex-start; flex-direction: column; }
  .contact-actions { min-width: min(100%, 380px); }
  footer { grid-template-columns: 1.5fr 1fr; }
}

@media (max-width: 720px) {
  .cart-page { padding-top: 74px; }
  .cart-progress { gap: 14px; justify-content: space-between; min-height: 65px; padding-left: 13px; padding-right: 13px; }
  .cart-progress > span { font-size: .68rem; gap: 5px; }
  .cart-progress > span > strong { height: 23px; width: 23px; }
  .legal-page { padding-top: 74px; }
  .legal-header { padding-left: 20px; padding-right: 20px; }
  .legal-body { padding-left: 18px; padding-right: 18px; }
  .site-header { height: 74px; max-width: 100%; padding: 0 16px; }
  .brand img { height: 46px; max-width: min(155px, 39vw); object-fit: contain; }
  .mobile-cart-link { font-size: .72rem; gap: 4px; padding: 8px 8px; }
  .mobile-cart-link .cart-count { height: 19px; min-width: 19px; }
  .desktop-nav { display: none; }
  .hero { min-height: 720px; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,14,20,.96), rgba(8,14,20,.52)); }
  .hero-content { margin-top: 52px; padding: 96px 20px 64px; }
  .hero h1,
  .local-page .local-hero h1 {
    font-size: clamp(2rem, 9.8vw, 3.1rem);
    letter-spacing: -.05em;
    line-height: .98;
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero-lead { font-size: 1rem; line-height: 1.55; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .section-heading h2 { font-size: clamp(2rem, 9vw, 2.8rem); overflow-wrap: break-word; }
  .gallery-heading h2,
  .location-copy h2,
  .local-copy-grid h2 { font-size: clamp(2rem, 9vw, 2.8rem); overflow-wrap: break-word; }
  .contact h2 { font-size: clamp(2.25rem, 10vw, 3.1rem); overflow-wrap: break-word; }
  .trust-bar div { min-height: 126px; padding: 22px 14px 20px; }
  .trust-bar div::before { margin-bottom: 12px; width: 34px; }
  .trust-bar strong { font-size: clamp(1.28rem, 5.2vw, 1.55rem); }
  .trust-bar span { font-size: .8rem; margin-top: 7px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .booking-section { padding-left: 15px; padding-right: 15px; }
  .booking-intro { padding-left: 5px; padding-right: 5px; }
  .booking-intro h1, .booking-intro h2 { font-size: clamp(2.25rem, 10vw, 3.2rem); }
  .cart-booking-section { padding-top: 54px; }
  .cart-selected-product { gap: 12px; grid-template-columns: 85px minmax(0, 1fr); }
  .booking-panel { border-radius: 18px; padding: 24px 17px; }
  .booking-sizes { gap: 8px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-size { min-height: 72px; }
  .booking-duration-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-fields-row { grid-template-columns: 1fr; }
  .booking-checkout-summary { padding-left: 13px; padding-right: 13px; }
  .booking-checkout-line { gap: 9px; }
  .booking-checkout-line > span, .booking-checkout-line > strong { font-size: .72rem; }
  .booking-checkout-final > strong { font-size: 1.13rem; }
  .booking-submit { font-size: .84rem; padding-left: 10px; padding-right: 10px; }
  .price-card p { min-height: auto; }
  .use-cases, .steps-grid { grid-template-columns: 1fr; }
  .use-cases article { min-height: auto; }
  .use-cases h3 { margin-top: 30px; }
  .security-image { min-height: 340px; }
  .security-copy { padding: 60px 22px; }
  .gallery-grid { display: flex; gap: 10px; overflow-x: auto; padding: 0 20px 12px; scroll-snap-type: x mandatory; }
  .gallery-grid img { flex: 0 0 86%; height: 360px; scroll-snap-align: start; }
  .location-copy { padding: 70px 22px; }
  .map-wrap, .map-wrap iframe { min-height: 390px; }
  .contact-actions { min-width: 0; width: 100%; }
  .contact-actions .button { width: 100%; }
  footer { grid-template-columns: 1fr; padding-bottom: 94px; }
  .tracking-consent { align-items: stretch; border-radius: 14px; bottom: 78px; flex-direction: column; gap: 14px; left: 10px; padding: 17px; right: 10px; }
  .tracking-consent-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tracking-consent-button { font-size: .72rem; padding: 0 8px; }
  .mobile-actions {
    background: #fff;
    border-radius: 13px;
    bottom: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,.3);
    display: grid;
    gap: 8px;
    grid-template-columns: .72fr 1.28fr;
    left: 12px;
    padding: 6px;
    position: fixed;
    right: 12px;
    z-index: 30;
  }
  .mobile-actions a { align-items: center; border: 1px solid #d9d5ce; border-radius: 9px; color: #26323a; display: flex; font-size: .85rem; font-weight: 900; justify-content: center; min-height: 48px; text-decoration: none; }
  .mobile-actions a.is-primary { background: var(--orange); border-color: var(--orange); color: #111; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}

.payment-status-page { background: linear-gradient(145deg, #101820 0 34%, #f5f3ef 34% 100%); min-height: 100vh; }
.payment-status-shell { margin: 0 auto; max-width: 760px; padding: clamp(32px, 7vw, 76px) 20px 80px; }
.payment-status-logo { display: inline-block; margin-bottom: 38px; }
.payment-status-logo img { height: 62px; width: auto; }
.payment-status-card { background: #fff; border-radius: 24px; box-shadow: 0 24px 70px rgba(8, 15, 22, .18); padding: clamp(28px, 6vw, 58px); }
.payment-status-card h1 { font-size: clamp(2rem, 5vw, 3.7rem); letter-spacing: -.055em; line-height: 1; margin: 0 0 24px; }
.payment-status-card > p:not(.eyebrow) { color: #56616a; font-size: 1rem; line-height: 1.7; }
.payment-status-card a:not(.button) { color: var(--orange-dark); font-weight: 800; }
.payment-status-icon { align-items: center; background: #e8f5ed; border-radius: 999px; color: #247049; display: inline-flex; font-size: 2rem; font-weight: 900; height: 64px; justify-content: center; margin-bottom: 24px; width: 64px; }
.payment-status-card.is-pending .payment-status-icon { background: #fff2dd; color: #9a5c16; }
.payment-status-card.is-error .payment-status-icon { background: #fff0ed; color: #a84235; }
.payment-status-summary { align-items: center; background: #f5f3ef; border-radius: 13px; display: flex; justify-content: space-between; margin: 26px 0; padding: 18px 20px; }
.payment-status-summary span { color: #657078; font-size: .82rem; font-weight: 700; }
.payment-status-summary strong { font-size: 1.35rem; }
.payment-status-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
@media(max-width:560px){.payment-status-page{background:linear-gradient(145deg,#101820 0 22%,#f5f3ef 22% 100%)}.payment-status-shell{padding-top:24px}.payment-status-logo{margin-bottom:24px}.payment-status-logo img{height:52px}.payment-status-actions{display:grid}.payment-status-actions .button{width:100%}}
