/* ============================================================
   OXYCELL — Global stylesheet (child theme)
   Load via wp_enqueue_style in functions.php, OR paste into
   Elementor → Site Settings → Custom CSS.
   Fonts: add Instrument Serif + Inter via Elementor → Custom Fonts
   (or keep the @import below). Gotham (licensed) is only needed
   on the model page wordmark — self-host it via @font-face there.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ox-paper); }

/* site passthrough — backgrounds stay full-bleed; only content layers below get a max-width */
.ox-site { background: var(--ox-paper); }
.ox-content-cap { max-width: var(--ox-max); margin: 0 auto; width: 100%; }

:root {
  --ox-max: 1920px;
  --ox-ink: rgb(19,28,40);
  --ox-ink-muted: rgb(76,95,113);
  --ox-paper: rgb(247,243,236);
  --ox-deep: linear-gradient(158deg, rgb(27,61,88) 0%, rgb(11,26,40) 60%, rgb(3,8,15) 100%);
  --ox-on-deep: #fff;
  --ox-on-deep-muted: rgba(209,230,255,0.66);
  --ox-accent-line: rgb(143,193,231);
  --ox-serif: 'Instrument Serif', Georgia, serif;
  --ox-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --ox-pad-x: clamp(24px, 5vw, 80px);
}

/* ---- primitives ---- */
.ox-eyebrow {
  font-family: var(--ox-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ox-ink-muted);
}
.ox-serif {
  font-family: var(--ox-serif); font-weight: 400;
  letter-spacing: .015em; line-height: 1.0;
  color: var(--ox-ink); margin: 0;
}

/* ---- capsules (buttons) ---- */
.ox-capsule {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  border: 0; border-radius: 4px; cursor: pointer;
  font-family: var(--ox-sans); letter-spacing: .02em; white-space: nowrap;
  text-decoration: none; overflow: hidden;
  transition: filter .2s ease, transform .12s ease;
  height: 60px; padding: 0 32px; font-size: 17px; font-weight: 400;
}
.ox-capsule svg { width: 20px; height: 9px; }
.ox-capsule:hover { filter: brightness(1.08); }
.ox-capsule:active { transform: translateY(1px); }
.ox-capsule--glass {
  background: linear-gradient(rgba(209,230,255,0.30) 0%, rgba(69,105,138,0.14) 100%);
  -webkit-backdrop-filter: blur(3.9px); backdrop-filter: blur(3.9px);
  color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,0.25);
}
.ox-capsule--solid {
  background: linear-gradient(rgb(27,61,88) 0%, rgb(3,8,15) 100%);
  box-shadow: inset 0 4px 4px rgb(27,67,99); color: #fff;
}

/* ---- arrow link ---- */
.ox-arrowlink {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ox-sans); font-size: 15px; font-weight: 500;
  letter-spacing: .01em; color: var(--ox-ink); text-decoration: none;
}
.ox-arrowlink > span { border-bottom: 1px solid transparent; padding-bottom: 1px; transition: border-color .18s ease; }
.ox-arrowlink:hover > span { border-bottom-color: currentColor; }
.ox-arrowlink svg { width: 22px; height: 10px; transition: transform .2s ease; }
.ox-arrowlink:hover svg { transform: translateX(3px); }

/* ---- shared section frame ---- */
.ox-section { padding: clamp(72px, 9vw, 128px) var(--ox-pad-x); }
.ox-section__inner { max-width: var(--ox-max); margin: 0 auto; }
.ox-head__title { font-family: var(--ox-serif); font-weight: 400; font-size: clamp(38px, 5vw, 68px); line-height: 1.0; letter-spacing: .015em; color: var(--ox-ink); margin: 16px 0 0; }
.ox-head__body { margin: 22px 0 0; max-width: 620px; font-family: var(--ox-sans); font-weight: 300; font-size: clamp(16px,1.4vw,19px); line-height: 1.55; color: var(--ox-ink-muted); }

/* ============================================================
   HEADER  (recreate the look in Elementor Theme Builder, OR use
   this markup in an HTML widget pinned to the top)
   ============================================================ */
body.admin-bar .ox-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .ox-header { top: 46px; } }
.ox-header { position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.18); }
/* top-down anchoring gradient — keeps the logo/nav legible over any background */
.ox-header::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 220px; pointer-events: none;
  background: linear-gradient(180deg, rgba(3,8,15,0.55) 0%, rgba(3,8,15,0.22) 42%, rgba(3,8,15,0) 100%);
  opacity: 1; transition: opacity .3s ease; }
.ox-header.is-scrolled { background: rgba(255,255,255,0.94); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(19,28,40,0.1); border-bottom-color: transparent; }
.ox-header.is-scrolled::before { opacity: 0; }
.ox-header__row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; position: relative; z-index: 1;
  max-width: calc(var(--ox-max) + 2 * var(--ox-pad-x)); margin: 0 auto;
  padding: 22px var(--ox-pad-x); transition: padding .3s ease; }
.ox-header.is-scrolled .ox-header__row { padding: 14px var(--ox-pad-x); }
.ox-header__menu, .ox-header__login, .ox-header__call { display: inline-flex; align-items: center; gap: 10px;
  background: none; border: 0; cursor: pointer; text-decoration: none;
  font-family: var(--ox-sans); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; font-weight: 400;
  color: #fff; transition: color .3s ease; }
.ox-header.is-scrolled .ox-header__menu, .ox-header.is-scrolled .ox-header__login, .ox-header.is-scrolled .ox-header__call { color: var(--ox-ink); }
.ox-header__menu span, .ox-header__login span, .ox-header__call { opacity: .85; }
.ox-header__logo { justify-self: center; height: 38px; transition: height .3s ease; }
.ox-header.is-scrolled .ox-header__logo { height: 30px; }
.ox-header__logo--dark { display: none; }
.ox-header.is-scrolled .ox-header__logo--light { display: none; }
.ox-header.is-scrolled .ox-header__logo--dark { display: block; }
.ox-header__right { justify-self: end; display: flex; align-items: center; gap: 22px; }
.ox-header__menu { justify-self: start; }
/* Plain pages (cart/checkout/account/shop, legal, contact, search, 404, raw content):
   no full-bleed hero, so make the fixed header solid (ink text + dark logo) and pad
   content clear of it. Gated by body.ox-plain (functions.php) so hero pages are untouched. */
body.ox-plain .ox-header { background: rgba(255,255,255,0.94); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(19,28,40,0.1); border-bottom-color: transparent; }
body.ox-plain .ox-header::before { opacity: 0; }
body.ox-plain .ox-header__menu, body.ox-plain .ox-header__login, body.ox-plain .ox-header__call { color: var(--ox-ink); }
body.ox-plain .ox-header__logo--light { display: none; }
body.ox-plain .ox-header__logo--dark { display: block; }
body.ox-plain .site-main { padding-top: clamp(116px, 12vw, 140px); padding-bottom: clamp(64px, 8vw, 104px); }

/* ============================================================
   HERO
   ============================================================ */
.ox-hero { position: relative; height: 100vh; min-height: 640px; overflow: hidden; background: rgb(3,8,15); }
.ox-hero__media { position: absolute; inset: 0; }
.ox-hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; will-change: opacity; }
.ox-hero__slide.is-active { opacity: 1; }
.ox-hero__slide picture { position: absolute; inset: 0; display: block; }
.ox-hero__slide img { width: 100%; height: 100%; object-fit: cover; }
.ox-hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ox-hero__scrim { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,8,15,0.46) 0%, rgba(3,8,15,0) 22%, rgba(3,8,15,0) 46%, rgba(3,8,15,0.62) 100%); }
.ox-hero__content { position: absolute; left: 0; right: 0; bottom: 9%; padding: 0 var(--ox-pad-x); z-index: 2; max-width: calc(var(--ox-max) + 2 * var(--ox-pad-x)); margin: 0 auto; }
.ox-hero__inner { max-width: 760px; }
.ox-hero__title { font-family: var(--ox-serif); font-weight: 400; font-size: clamp(46px, 6.4vw, 104px); line-height: .98; letter-spacing: .012em; color: #fff; margin: 0; text-wrap: balance; }
.ox-hero__sub { margin: 24px 0 0; max-width: 540px; font-family: var(--ox-sans); font-weight: 300; font-size: clamp(17px,1.5vw,21px); line-height: 1.5; color: rgba(255,255,255,0.88); }
.ox-hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 38px; }
.ox-hero__dots { position: absolute; bottom: 9%; right: var(--ox-pad-x); display: flex; gap: 9px; z-index: 2; }
.ox-hero__dot { width: 9px; height: 4px; border-radius: 4px; border: 0; padding: 0; cursor: pointer; background: rgba(255,255,255,0.4); transition: width .3s ease, background .3s ease; }
.ox-hero__dot.is-active { width: 26px; background: rgba(255,255,255,0.95); }
.ox-hero__cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.6); animation: oxBob 2.4s ease-in-out infinite; }
@keyframes oxBob { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,7px); } }

/* ============================================================
   MODEL RANGE  (in Elementor, prefer a Loop Grid bound to Woo products)
   ============================================================ */
.ox-range { background: var(--ox-paper); }

/* ============================================================
   CHAMBER SLIDER — large, left-aligned premium product rail.
   Uniform card sizes (no scale parade), real product drop-shadows,
   drag + snap + arrows. JS (oxycell-home.js) handles drag/arrows/progress.
   ============================================================ */
.ox-cvfsec { overflow: hidden; padding-left: 0; padding-right: 0; }
.ox-cvf__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
  max-width: calc(var(--ox-max) + 2 * var(--ox-pad-x)); margin: 0 auto clamp(36px, 5vw, 60px); padding: 0 var(--ox-pad-x); }
.ox-cvf__head .ox-head__body { max-width: 460px; }
.ox-cvf { --cvf-card: clamp(300px, 34vw, 480px); position: relative; }
/* right-edge fade invites the next card; left clears once you scroll */
.ox-cvf::after { content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: clamp(24px, 7vw, 130px);
  z-index: 3; pointer-events: none; background: linear-gradient(270deg, var(--ox-paper) 0%, rgba(247,243,236,0) 100%); }
.ox-cvf__track {
  display: flex; align-items: stretch; gap: clamp(20px, 2.4vw, 40px);
  overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  padding: 14px var(--ox-pad-x) clamp(28px,3vw,44px);
  scroll-padding-left: var(--ox-pad-x); cursor: grab;
}
.ox-cvf__track::-webkit-scrollbar { display: none; }
.ox-cvf__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.ox-cvf__track.is-dragging .ox-cvf__card { pointer-events: none; }
.ox-cvf__card {
  flex: 0 0 var(--cvf-card); scroll-snap-align: start;
  display: flex; flex-direction: column; text-decoration: none;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.ox-cvf__card:hover { transform: translateY(-6px); }
.ox-cvf__stage {
  position: relative; aspect-ratio: 4 / 5; border-radius: 24px; overflow: hidden;
  background: linear-gradient(168deg, #ffffff 0%, #eef2f6 58%, #e2e8ef 100%);
  display: flex; align-items: flex-end; justify-content: center;
  box-shadow: 0 30px 70px -34px rgba(19,28,40,.5), inset 0 1px 0 rgba(255,255,255,.7);
  transition: box-shadow .45s ease;
}
.ox-cvf__card:hover .ox-cvf__stage { box-shadow: 0 48px 90px -38px rgba(19,28,40,.6), inset 0 1px 0 rgba(255,255,255,.7); }
/* real product shadow: drop-shadow follows the PNG silhouette (contact + ambient) */
/* height:auto (not %) — % height inside an aspect-ratio stage is unreliable in
   Safari and clipped the product image on mobile; the square art sizes itself */
.ox-cvf__img { position: relative; z-index: 2; width: 86%; height: auto; max-height: 88%; object-fit: contain; object-position: center bottom;
  margin-bottom: 6%;
  filter: drop-shadow(0 26px 16px rgba(19,28,40,.30)) drop-shadow(0 6px 8px rgba(19,28,40,.18));
  transition: transform .6s cubic-bezier(.22,.61,.36,1); -webkit-user-drag: none; user-select: none; }
.ox-cvf__card:hover .ox-cvf__img { transform: scale(1.03); }
.ox-cvf__cap { padding: 22px 4px 0; }
.ox-cvf__tag { margin-bottom: 9px; font-size: 11px; color: var(--ox-ink-muted); }
.ox-cvf__name { font-family: var(--ox-serif); font-weight: 400; font-size: clamp(24px, 2.2vw, 32px); line-height: 1.04; color: var(--ox-ink); margin: 0; }
.ox-cvf__meta { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.ox-cvf__price { font-family: var(--ox-sans); font-weight: 500; font-size: 16px; color: var(--ox-ink); }
.ox-cvf__foot { display: flex; align-items: center; justify-content: space-between; gap: 24px;
  max-width: calc(var(--ox-max) + 2 * var(--ox-pad-x)); margin: clamp(24px,3vw,40px) auto 0; padding: 0 var(--ox-pad-x); }
.ox-cvf__progress { position: relative; flex: 1; max-width: 280px; height: 2px; background: rgba(19,28,40,.14); border-radius: 2px; overflow: hidden; }
.ox-cvf__progress span { position: absolute; left: 0; top: 0; height: 100%; background: var(--ox-ink); border-radius: 2px; transition: left .3s ease, width .3s ease; }
.ox-cvf__nav { display: flex; gap: 12px; }
.ox-cvf__nav--head { flex-shrink: 0; }
.ox-cvf__btn { width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(19,28,40,.18); background: #fff;
  color: var(--ox-ink); display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease, opacity .25s ease; }
.ox-cvf__btn svg { width: 24px; height: 14px; }
.ox-cvf__btn:hover { background: var(--ox-ink); color: #fff; border-color: var(--ox-ink); transform: translateY(-1px); }
.ox-cvf__btn:disabled { opacity: .3; cursor: default; transform: none; background: #fff; color: var(--ox-ink); }
@media (max-width: 720px) {
  .ox-cvf { --cvf-card: 78vw; }
  .ox-cvf__head { flex-direction: column; align-items: flex-start; }
  .ox-cvf__nav--head { display: none; }
}
@media (prefers-reduced-motion: reduce) { .ox-cvf__track { scroll-behavior: auto; } .ox-cvf__card, .ox-cvf__img { transition: none; } }

.ox-grid { display: grid; gap: clamp(20px, 2.6vw, 40px); }
.ox-grid--4 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.ox-grid--3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.ox-tile { display: flex; flex-direction: column; text-decoration: none; cursor: pointer; }
.ox-tile__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: rgb(232,226,216); }
.ox-tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.ox-tile:hover .ox-tile__media img { transform: scale(1.045); }
.ox-tile__name { font-family: var(--ox-serif); font-weight: 400; font-size: 30px; line-height: 1.05; letter-spacing: .01em; color: var(--ox-ink); margin: 0; }
.ox-tile__meta { margin-top: 14px; display: flex; align-items: center; justify-content: space-between; }
.ox-tile__price { font-family: var(--ox-sans); font-weight: 400; font-size: 15px; color: var(--ox-ink-muted); }

/* ============================================================
   EDITORIAL BAND
   ============================================================ */
.ox-band { position: relative; min-height: 78vh; display: flex; align-items: flex-end; overflow: hidden; background: rgb(3,8,15); }
.ox-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ox-band__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,8,15,0.30) 0%, rgba(3,8,15,0) 38%, rgba(3,8,15,0.72) 100%); }
.ox-band__content { position: relative; z-index: 2; padding: 0 var(--ox-pad-x) clamp(60px,7vw,96px); max-width: calc(var(--ox-max) + 2 * var(--ox-pad-x)); width: 100%; margin: 0 auto; }
.ox-band__title { font-family: var(--ox-serif); font-weight: 400; font-size: clamp(44px,6vw,88px); line-height: .98; letter-spacing: .015em; color: #fff; margin: 0; }
.ox-band__body { margin: 22px 0 30px; max-width: 520px; font-family: var(--ox-sans); font-weight: 300; font-size: clamp(16px,1.4vw,19px); line-height: 1.55; color: rgba(255,255,255,0.86); }

/* ============================================================
   WORLD CARDS
   ============================================================ */
.ox-world { background: #fff; }
.ox-card { display: flex; flex-direction: column; }
.ox-card__media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: rgb(232,226,216); }
.ox-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.ox-card:hover .ox-card__media img { transform: scale(1.045); }
.ox-card__title { font-family: var(--ox-serif); font-weight: 400; font-size: 28px; line-height: 1.05; letter-spacing: .01em; color: var(--ox-ink); margin: 22px 0 0; }
.ox-card__body { margin: 12px 0 18px; font-family: var(--ox-sans); font-weight: 300; font-size: 16px; line-height: 1.55; color: var(--ox-ink-muted); }

/* ============================================================
   CLOSING
   ============================================================ */
.ox-closing { background: var(--ox-deep); color: var(--ox-on-deep); padding: clamp(90px,11vw,156px) var(--ox-pad-x); text-align: center; }
.ox-closing__inner { max-width: 760px; margin: 0 auto; }
.ox-closing__title { font-family: var(--ox-serif); font-weight: 400; font-size: clamp(40px,5.4vw,76px); line-height: 1.0; letter-spacing: .015em; color: #fff; margin: 0; }
.ox-closing__body { margin: 24px auto 38px; max-width: 540px; font-family: var(--ox-sans); font-weight: 300; font-size: clamp(16px,1.4vw,19px); line-height: 1.55; color: var(--ox-on-deep-muted); }
.ox-closing__cta { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; align-items: center; }

/* ============================================================
   FOOTER  (recreate in Elementor Theme Builder for live menus)
   ============================================================ */
.ox-footer { background: var(--ox-deep); color: var(--ox-on-deep); padding: 80px var(--ox-pad-x) 40px; }
.ox-footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; align-items: start; max-width: var(--ox-max); margin: 0 auto; }
.ox-footer__col { display: flex; flex-direction: column; gap: 12px; }
.ox-footer__logo { height: 30px; align-self: flex-start; }
.ox-footer__tag { max-width: 320px; margin-top: 12px; font-style: italic; font-family: var(--ox-serif); font-size: 19px; line-height: 1.4; color: rgba(255,255,255,0.82); }
.ox-footer__head { font-family: var(--ox-sans); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ox-on-deep-muted); margin-bottom: 4px; }
.ox-footer__link { color: rgba(255,255,255,0.82); text-decoration: none; font-family: var(--ox-sans); font-size: 14px; font-weight: 300; line-height: 1.8; }
.ox-footer__link:hover { color: #fff; }
.ox-footer__legal { max-width: var(--ox-max); margin: 56px auto 0; }
.ox-footer__disc { font-family: var(--ox-sans); font-size: 11px; line-height: 1.7; color: var(--ox-on-deep-muted); max-width: 900px; margin: 0; }
.ox-footer__bar { margin-top: 28px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; color: var(--ox-on-deep-muted); font-family: var(--ox-sans); font-size: 12px; }

@media (max-width: 860px) {
  .ox-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ox-header__menu span, .ox-header__login span { display: none; }
}

/* ============================================================
   MAIN MENU  (Porsche-style overlay)
   ============================================================ */
body.ox-menu-open { overflow: hidden; }
.ox-menu { position: fixed; inset: 0; z-index: 200; visibility: hidden; opacity: 0;
  transition: opacity .35s ease, visibility 0s linear .35s; }
.ox-menu.is-open { visibility: visible; opacity: 1; transition: opacity .35s ease; }
.ox-menu__panel { position: absolute; inset: 0; display: grid;
  grid-template-columns: minmax(300px, 0.92fr) 1fr 1.08fr; background: var(--ox-paper);
  transform: translateY(-10px); transition: transform .4s cubic-bezier(.22,.61,.36,1); }
.ox-menu.is-open .ox-menu__panel { transform: none; }

.ox-menu__close { position: absolute; top: 22px; right: 24px; z-index: 3;
  width: 48px; height: 48px; border-radius: 999px; border: 0; cursor: pointer;
  background: rgba(255,255,255,0.16); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, transform .12s ease; }
.ox-menu__close:hover { background: rgba(255,255,255,0.3); }
.ox-menu__close:active { transform: scale(.94); }
.ox-menu__close svg { width: 20px; height: 20px; }

/* left rail */
.ox-menu__rail { background: #fff; display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(80px, 9vh, 120px) clamp(20px, 2vw, 36px) clamp(24px, 3vh, 40px); }
.ox-menu__cats { display: flex; flex-direction: column; gap: 2px; }
.ox-menu__cat { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%;
  background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--ox-sans); font-size: clamp(17px, 1.5vw, 20px); font-weight: 400; color: var(--ox-ink);
  padding: 16px 18px; border-radius: 8px; transition: background .18s ease; }
.ox-menu__cat:hover { background: rgba(19,28,40,0.05); }
.ox-menu__cat.is-active { background: rgba(19,28,40,0.06); font-weight: 500; }
.ox-menu__cat svg { width: 7px; height: 12px; color: var(--ox-ink-muted); flex: none; }
/* Sales — primary CTA: filled brand button so it stands out among the rail links */
.ox-menu__cat--cta { margin-top: 8px; background: linear-gradient(rgb(27,61,88) 0%, rgb(3,8,15) 100%); color: #fff; font-weight: 500; box-shadow: inset 0 3px 4px rgb(27,67,99); }
.ox-menu__cat--cta svg { width: 20px; height: 9px; color: rgba(255,255,255,0.85); }
.ox-menu__account { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ox-ink);
  font-family: var(--ox-sans); font-size: 16px; padding: 16px 18px; margin-top: 18px;
  border-top: 1px solid rgba(19,28,40,0.08); }
.ox-menu__account svg { width: 20px; height: 20px; }
.ox-menu__account:hover { color: var(--ox-ink-muted); }

/* middle content */
.ox-menu__content { background: rgb(243,239,232); overflow-y: auto;
  padding: clamp(80px, 9vh, 116px) clamp(22px, 3vw, 52px) clamp(40px, 5vh, 64px); }
.ox-menu__pane { display: none; }
.ox-menu__pane.is-active { display: block; animation: oxMenuFade .35s ease both; }
@keyframes oxMenuFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.ox-menu__model { display: block; text-decoration: none; padding: 10px 0 24px; border-bottom: 1px solid rgba(19,28,40,0.08); }
.ox-menu__model:last-child { border-bottom: 0; }
.ox-menu__model-name { font-family: var(--ox-serif); font-weight: 400; font-size: clamp(22px, 2vw, 28px);
  letter-spacing: .01em; color: var(--ox-ink); margin: 0 0 12px; }
.ox-menu__model-media { aspect-ratio: 3 / 2; overflow: hidden; border-radius: 4px; background: rgb(232,226,216); }
.ox-menu__model-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.ox-menu__model:hover .ox-menu__model-media img { transform: scale(1.04); }
.ox-menu__model-meta { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.ox-menu__tag { font-family: var(--ox-sans); font-size: 12px; font-weight: 500; letter-spacing: .04em;
  color: var(--ox-ink-muted); border: 1px solid rgba(19,28,40,0.2); border-radius: 999px; padding: 5px 13px; }
.ox-menu__price { font-family: var(--ox-sans); font-size: 14px; color: var(--ox-ink-muted); margin-left: auto; }
.ox-menu__pane-title { font-family: var(--ox-serif); font-weight: 400; font-size: clamp(26px, 2.4vw, 34px);
  color: var(--ox-ink); margin: 0 0 16px; }
.ox-menu__link { display: flex; align-items: center; justify-content: space-between; gap: 16px; text-decoration: none;
  color: var(--ox-ink); font-family: var(--ox-sans); font-size: 17px; padding: 18px 0;
  border-bottom: 1px solid rgba(19,28,40,0.08); transition: color .18s ease; }
.ox-menu__link svg { width: 22px; height: 10px; color: var(--ox-ink-muted); transition: transform .2s ease; }
.ox-menu__link:hover { color: var(--ox-ink-muted); }
.ox-menu__link:hover svg { transform: translateX(3px); }

/* right feature */
.ox-menu__feature { position: relative; overflow: hidden; background: var(--ox-deep); display: flex; align-items: flex-end; }
.ox-menu__feature-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ox-menu__feature-scrim { position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,8,15,0.25) 0%, rgba(3,8,15,0) 32%, rgba(3,8,15,0.78) 100%); }
.ox-menu__feature-content { position: relative; z-index: 2; padding: clamp(32px, 4vw, 60px); }
.ox-menu__feature-title { font-family: var(--ox-serif); font-weight: 400; font-size: clamp(30px, 3vw, 46px);
  line-height: 1.0; color: #fff; margin: 0 0 22px; }

/* ============================================================
   WP/ELEMENTOR COMPAT — Elementor's `.elementor img { height: auto }` reset
   (specificity 0-1-1) outranks single-class image rules, blowing logos up to
   natural size and breaking object-fit fills. Re-assert image sizing with
   parent-qualified selectors. No effect outside WordPress.
   ============================================================ */
.ox-header .ox-header__logo { height: 38px; width: auto; }
.ox-header.is-scrolled .ox-header__logo { height: 30px; }
.ox-hero .ox-hero__slide img { width: 100%; height: 100%; }
section.ox-band > img { width: 100%; height: 100%; }
.ox-tile .ox-tile__media img { width: 100%; height: 100%; }
.ox-card .ox-card__media img { width: 100%; height: 100%; }
.ox-cvf .ox-cvf__img { width: 90%; height: auto; max-height: 88%; }
.ox-footer .ox-footer__logo { height: 30px; width: auto; }
.ox-menu .ox-menu__model-media img { width: 100%; height: 100%; }
.ox-menu .ox-menu__feature-img { width: 100%; height: 100%; }

@media (max-width: 980px) {
  .ox-menu__panel { grid-template-columns: 1fr; grid-template-rows: auto 1fr; overflow-y: auto; }
  .ox-menu__rail { padding: 72px 20px 16px; }
  .ox-menu__cats { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .ox-menu__cat { width: auto; font-size: 14px; padding: 9px 15px; border-radius: 999px; background: rgba(19,28,40,0.05); }
  /* Sales CTA must stay highlighted on mobile — the pill rule above flattened it
     to a grey pill while keeping white text, making it invisible. */
  .ox-menu__cat--cta { margin-top: 0; background: linear-gradient(rgb(27,61,88) 0%, rgb(3,8,15) 100%); color: #fff; box-shadow: inset 0 3px 4px rgb(27,67,99); }
  .ox-menu__cat.is-active { background: var(--ox-ink); color: #fff; }
  .ox-menu__cat svg { display: none; }
  .ox-menu__account { margin-top: 14px; }
  .ox-menu__content { padding: 14px 20px 56px; }
  .ox-menu__feature { display: none; }
  .ox-menu__close { background: rgba(19,28,40,0.08); color: var(--ox-ink); }
  .ox-menu__close:hover { background: rgba(19,28,40,0.16); }
}

/* ============================================================
   CATALOG TILES (cut-out PNGs on light gray — Porsche pattern)
   ============================================================ */
:root { --ox-gotham: "gotham", "Inter", sans-serif; }
.ox-tile--cutout .ox-tile__media { aspect-ratio: 1 / 1; background: transparent; display: flex; align-items: center; justify-content: center; }
/* width:% + height:auto (square art) — avoids the Safari %-height clip + lets the chamber fill more of the frame */
.ox-tile--cutout .ox-tile__media img { width: 92%; height: auto; max-height: 92%; object-fit: contain; transition: transform .6s ease; }
.ox-tile--cutout:hover .ox-tile__media img { transform: scale(1.04); }
.ox-tile__body { padding-top: 18px; }
.ox-tile__tag { margin-bottom: 8px; font-size: 11px; }
/* All-Chambers grid (Tom): exactly 3 per row so chambers read larger; Discover stacked under price */
/* 2-per-row (Tom 2026-06-13) — more breathing room + each chamber reads larger
   with no neighbour for scale; capped + centred so they don't get gigantic */
#ox-all-chambers .ox-grid--3 { grid-template-columns: repeat(2, 1fr); max-width: 1140px; margin-left: auto; margin-right: auto; gap: clamp(28px, 4vw, 56px); }
@media (max-width: 700px) { #ox-all-chambers .ox-grid--3 { grid-template-columns: 1fr; max-width: 460px; } }
.ox-tile__discover { margin-top: 12px; }

/* ---- financing page (templates/financing.php) ---- */
.ox-fin__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 32px); margin-bottom: clamp(40px, 5vw, 64px); }
.ox-fin__card { display: flex; flex-direction: column; padding: clamp(26px, 2.6vw, 34px); border: 1px solid rgba(19,28,40,0.12); border-radius: 20px; background: #fff; box-shadow: 0 30px 60px -44px rgba(19,28,40,.4); }
/* logo plate — each partner ships only one logo variant (Priority white, Brickhouse
   colored), so give each a ground that suits its logo */
.ox-fin__plate { display: flex; align-items: center; justify-content: flex-start; height: 76px; padding: 0 24px; border-radius: 14px; margin-bottom: 24px; }
.ox-fin__plate img { max-height: 36px; max-width: 80%; width: auto; height: auto; display: block; }
.ox-fin__plate--dark { background: linear-gradient(150deg, rgb(27,61,88) 0%, rgb(11,26,40) 100%); }
.ox-fin__plate--light { background: rgb(247,249,252); border: 1px solid rgba(19,28,40,0.1); }
.ox-fin__desc { font-family: var(--ox-sans); font-weight: 300; font-size: 15px; line-height: 1.65; color: var(--ox-ink-muted); margin: 2px 0 26px; }
.ox-fin__apply { margin-top: auto; align-self: flex-start; }
.ox-fin__affirm { padding: clamp(24px, 3vw, 36px); border-radius: 20px; background: rgb(247,249,252); border: 1px solid rgba(19,28,40,0.08); }
.ox-fin__affirm-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ox-fin__affirm-logo { height: 30px; width: auto; }
.ox-fin__affirm-title { font-family: var(--ox-serif); font-weight: 400; font-size: clamp(22px, 2vw, 28px); color: var(--ox-ink); margin: 10px 0 0; }
.ox-fin__affirm p { margin: 12px 0 0; max-width: 720px; font-family: var(--ox-sans); font-weight: 300; font-size: 15px; line-height: 1.7; color: var(--ox-ink-muted); }
.ox-fin__affirm .ox-fin__affirm-disc { margin-top: 14px; font-size: 11.5px; line-height: 1.5; color: rgba(19,28,40,0.45); }
.ox-fin__note { margin: clamp(28px, 3.5vw, 44px) 0 0; font-family: var(--ox-sans); font-weight: 300; font-size: 12.5px; line-height: 1.6; color: rgba(19,28,40,0.5); }
@media (max-width: 760px) { .ox-fin__grid { grid-template-columns: 1fr; } }

/* ---- finance calculator (financing page) ---- */
.ox-calc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 3vw, 48px); align-items: stretch; }
.ox-calc__controls { display: flex; flex-direction: column; gap: 22px; }
.ox-calc__field { display: flex; flex-direction: column; gap: 8px; }
.ox-calc__flabel { font-family: var(--ox-sans); font-weight: 500; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ox-ink-muted); }
.ox-calc__cost { display: flex; align-items: center; border: 1px solid rgba(19,28,40,0.18); border-radius: 12px; background: #fff; padding: 0 16px; transition: border-color .2s ease; }
.ox-calc__cost:focus-within { border-color: var(--ox-ink); }
.ox-calc__dollar { font-family: var(--ox-serif); font-size: 26px; color: var(--ox-ink-muted); }
.ox-calc__cost input { flex: 1; min-width: 0; border: 0; outline: none; background: none; padding: 14px 6px; font-family: var(--ox-serif); font-size: clamp(26px, 3vw, 36px); color: var(--ox-ink); }
.ox-calc__presets { display: flex; flex-wrap: wrap; gap: 8px; }
.ox-calc__preset { padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(19,28,40,0.16); background: #fff; font-family: var(--ox-sans); font-size: 13px; color: var(--ox-ink-muted); cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.ox-calc__preset:hover { border-color: var(--ox-ink); color: var(--ox-ink); }
.ox-calc__preset.is-active { background: var(--ox-ink); border-color: var(--ox-ink); color: #fff; }
.ox-calc__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ox-calc__field select { appearance: none; -webkit-appearance: none; width: 100%; border: 1px solid rgba(19,28,40,0.18); border-radius: 12px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234c5f71' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 16px center; padding: 15px 40px 15px 16px; font-family: var(--ox-sans); font-size: 15px; color: var(--ox-ink); cursor: pointer; }
.ox-calc__field select:focus { outline: none; border-color: var(--ox-ink); }
.ox-calc__results { background: var(--ox-deep); border-radius: 20px; padding: clamp(26px, 3vw, 38px); color: #fff; display: flex; flex-direction: column; gap: 22px; }
.ox-calc__result { display: flex; flex-direction: column; gap: 5px; }
.ox-calc__result--primary { padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.ox-calc__label { font-family: var(--ox-sans); font-weight: 400; font-size: 12.5px; letter-spacing: .02em; color: rgba(209,230,255,0.7); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.ox-calc__value { font-family: var(--ox-serif); font-weight: 400; line-height: 1; color: #fff; }
.ox-calc__result--primary .ox-calc__value { font-size: clamp(40px, 5vw, 58px); }
.ox-calc__note { font-family: var(--ox-sans); font-weight: 300; font-size: 12.5px; color: rgba(209,230,255,0.6); }
.ox-calc__result--roi { padding-top: 4px; }
.ox-calc__value--roi { font-size: clamp(40px, 5vw, 56px); color: var(--ox-accent-line); }
/* breakdown panels (Net Cost Analysis / ROI Analysis) */
.ox-calc__panel { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 18px 20px; }
.ox-calc__panel-title { font-family: var(--ox-sans); font-weight: 500; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(209,230,255,0.6); margin-bottom: 10px; }
.ox-calc__line { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 6px 0; font-family: var(--ox-sans); font-weight: 300; font-size: 14px; color: rgba(209,230,255,0.82); }
.ox-calc__line span:last-child { font-weight: 400; color: #fff; white-space: nowrap; }
.ox-calc__line--total { margin-top: 4px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.14); font-weight: 500; }
.ox-calc__line--total span:last-child { font-family: var(--ox-serif); font-size: 21px; }
.ox-calc__line--lead span:last-child { font-family: var(--ox-serif); font-size: 21px; }
.ox-calc__sublabel { font-style: normal; font-size: 11px; color: rgba(209,230,255,0.5); margin-left: 3px; white-space: nowrap; }
.ox-calc__hint { margin: -8px 0 0; font-family: var(--ox-sans); font-weight: 300; font-size: 12.5px; line-height: 1.55; color: rgba(209,230,255,0.6); }
.ox-calc__hint strong { color: #fff; font-weight: 600; }
.ox-calc__hint em { font-style: italic; color: rgba(209,230,255,0.85); }
.ox-calc__apply { margin-top: 4px; align-self: flex-start; }
/* controls: revenue sub-section + small price input + assumptions note */
.ox-calc__subhead { font-family: var(--ox-sans); font-weight: 500; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ox-ink-muted); margin-top: 4px; padding-top: 18px; border-top: 1px solid rgba(19,28,40,0.1); }
.ox-calc__cost--sm input { font-size: clamp(20px, 2.2vw, 24px); padding: 11px 6px; }
.ox-calc__dollar--sm { font-size: 20px; }
.ox-calc__assume { font-family: var(--ox-sans); font-weight: 300; font-size: 12px; line-height: 1.5; color: var(--ox-ink-muted); margin: 0; }
/* prominent estimator disclaimer */
/* estimator disclaimer — sits inside the navy payment-preview block */
.ox-calc__disclaimer { margin: 14px 0 0; padding: 13px 15px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); font-family: var(--ox-sans); font-weight: 300; font-size: 11.5px; line-height: 1.55; color: rgba(209,230,255,0.6); }
.ox-calc__disclaimer strong { color: #fff; font-weight: 600; }
@media (max-width: 860px) { .ox-calc__grid { grid-template-columns: 1fr; } }
@media (max-width: 440px) { .ox-calc__row { grid-template-columns: 1fr; } }

/* financing page: hero jump buttons + anchored-section scroll offset */
.ox-pagehero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(28px, 3vw, 40px); }
#ox-estimator, #ox-financing-partners { scroll-margin-top: clamp(80px, 10vh, 110px); }
/* estimator + partners read as one flow — halve the padding at their shared edge so the gap is one break, not two */
#ox-estimator { padding-bottom: clamp(36px, 4.5vw, 64px); }
#ox-financing-partners { padding-top: clamp(36px, 4.5vw, 64px); }
.ox-arrowlink--sm { font-size: 14px; }
.ox-range__all { margin-top: 44px; }

/* ============================================================
   MENU — tight all-chambers grid (replaces 4-model vertical list)
   ============================================================ */
.ox-menu__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px 26px; }
.ox-menu__cell { display: flex; flex-direction: column; text-decoration: none; padding: 8px 0 12px; border-bottom: 1px solid rgba(19,28,40,0.07); }
.ox-menu__cell-media { aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; }
.ox-menu .ox-menu__cell-media img { width: 78%; height: 92%; object-fit: contain; transition: transform .45s ease; }
.ox-menu__cell:hover .ox-menu__cell-media img { transform: scale(1.05); }
.ox-menu__cell-name { font-family: var(--ox-serif); font-size: 17.5px; line-height: 1.1; color: var(--ox-ink); margin-top: 2px; }
.ox-menu__cell-price { font-family: var(--ox-sans); font-size: 12px; color: var(--ox-ink-muted); margin-top: 3px; }
.ox-menu__allchambers { margin-top: 22px; }
.ox-menu__cat--link { text-decoration: none; }
@media (max-width: 980px) {
  .ox-menu__grid { grid-template-columns: repeat(2, 1fr); gap: 4px 16px; }
  .ox-menu__cell-name { font-size: 15.5px; }
}

/* ============================================================
   PAGE HERO (interior pages — dark band under the fixed header)
   ============================================================ */
.ox-pagehero { background: var(--ox-deep); padding: clamp(140px, 18vh, 200px) var(--ox-pad-x) clamp(48px, 6vw, 76px); }
.ox-pagehero__inner { max-width: var(--ox-max); margin: 0 auto; }
.ox-pagehero__title { font-family: var(--ox-serif); font-weight: 400; font-size: clamp(40px, 5.4vw, 80px); line-height: 1.0; letter-spacing: .015em; color: #fff; margin: 0; }
.ox-pagehero__body { margin: 18px 0 0; max-width: 560px; font-family: var(--ox-sans); font-weight: 300; font-size: clamp(16px,1.4vw,19px); line-height: 1.55; color: rgba(255,255,255,0.85); }

/* ============================================================
   INTERACTION POLISH — kill the legacy kit's pink tap/focus flash;
   focus rings in brand blue (accessible, on-palette)
   ============================================================ */
.ox-header__menu, .ox-header__login, .ox-header__call, .ox-menu__cat, .ox-menu__close,
.ox-menu__cell, .ox-menu__link, .ox-menu__account, .ox-capsule, .ox-arrowlink, .ox-tile, .ox-hero__dot {
  -webkit-tap-highlight-color: transparent; }
.ox-header__menu:focus, .ox-menu__cat:focus, .ox-menu__close:focus { outline: none; background-color: transparent; }
.ox-menu__cat:focus { background: rgba(19,28,40,0.05); }
.ox-header__menu:focus-visible, .ox-header__login:focus-visible, .ox-header__call:focus-visible,
.ox-menu__cat:focus-visible, .ox-menu__close:focus-visible, .ox-menu__cell:focus-visible,
.ox-menu__link:focus-visible, .ox-capsule:focus-visible, .ox-arrowlink:focus-visible, .ox-tile:focus-visible {
  outline: 2px solid var(--ox-accent-line); outline-offset: 3px; border-radius: 2px; }

/* ============================================================
   HOVER LOCKDOWN — the legacy Elementor kit colors button/link
   hovers pink; pin every ox-* interactive hover to brand colors
   (ink / white / helix dark-red accents only).
   ============================================================ */
/* MENU button: a brand-color pill behind it on hover (the legacy pink pill,
   recolored to helix red — not removed, not a text-color change). White text. */
.ox-header__menu { padding: 9px 16px; margin: -9px -16px; border-radius: 999px; transition: background .2s ease, color .2s ease; }
.ox-header .ox-header__menu:hover { background: rgb(176,30,36); color: #fff; opacity: 1; }
.ox-header.is-scrolled .ox-header__menu:hover { background: rgb(176,30,36); color: #fff; }
body.ox-light-header .ox-header:not(.is-scrolled) .ox-header__menu:hover { background: rgb(176,30,36); color: #fff; }
.ox-menu .ox-menu__cat:hover { color: var(--ox-ink); background: rgba(19,28,40,0.05); }
.ox-menu .ox-menu__cat--link:hover { color: rgb(176,30,36); }
.ox-menu .ox-menu__cat--cta:hover { background: linear-gradient(rgb(33,74,106) 0%, rgb(6,14,24) 100%); color: #fff; }
.ox-menu .ox-menu__link:hover { color: rgb(176,30,36); }
.ox-menu .ox-menu__account:hover { color: var(--ox-ink); }
.ox-menu .ox-menu__cell:hover .ox-menu__cell-name { color: rgb(176,30,36); }
.ox-footer .ox-footer__link:hover { color: #fff; }
.ox-site .ox-arrowlink:hover, .pdp-wrap .ox-arrowlink:hover, .ox-section .ox-arrowlink:hover { color: inherit; }
.ox-capsule:hover, .ox-capsule--glass:hover, .ox-capsule--solid:hover { color: #fff; }
.pdp-capsule--quiet:hover { color: var(--ox-ink); }


/* kill Hello Elementor's pink [type=button] hover fallback (reset.css #c36) for
   generic buttons. The header menu button's brand hover above outranks this
   (0,3,0 > 0,2,0), so it keeps its blue/red hover. */
[type="button"]:hover, [type="button"]:focus,
[type="submit"]:hover, [type="submit"]:focus {
  background-color: transparent;
  color: inherit;
}
