/* ═══════════════════════════════════════════════════════════
   Radiant Dental — Full Arch Landing Page
   Tokens sourced from main-site _shared.css
═══════════════════════════════════════════════════════════ */
:root {
  --navy:       #0B2240;
  --navy-mid:   #122d52;
  --navy-deep:  #081828;
  --teal:       #0D9E8F;
  --teal-lt:    #E3F6F4;
  --teal-mid:   #0bb8a7;
  --white:      #FAFCFD;
  --offwhite:   #F2F7F7;
  --muted:      #6B8090;
  --ink:        #1c2f47;
  --subink:     #3a5068;
  --border:     rgba(11,34,64,.10);

  --serif:      'Barlow', system-ui, sans-serif;
  --sans:       'DM Sans', system-ui, sans-serif;

  --accent:     var(--teal);
  --accent-lt:  var(--teal-lt);
  --accent-mid: var(--teal-mid);

  --ease-out: cubic-bezier(0.22,1,0.36,1);
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;

  --section-py: 112px;
  --container-w: 1240px;
}

/* Accent themes */
body[data-accent="navy"]  { --accent: #122d52; --accent-lt: #e5eaf3; --accent-mid: #1a3d6e; }
body[data-accent="gold"]  { --accent: #b08b3e; --accent-lt: #f6efde; --accent-mid: #c89e4c; }

/* Density */
body[data-density="compact"] { --section-py: 80px; }

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ═══ UTILITIES ═══ */
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 28px; }
.section { padding: var(--section-py) 0; }
.section-muted { background: var(--offwhite); }
.section-dark  { background: var(--navy-deep); color: #fff; position: relative; overflow: hidden; }
.section-dark::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 85% 15%, color-mix(in oklab, var(--accent) 14%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, color-mix(in oklab, var(--accent) 8%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.section-dark > * { position: relative; z-index: 1; }
.section-navy { background: linear-gradient(160deg, var(--navy) 0%, #0a3040 100%); color: #fff; position: relative; overflow: hidden; }
.section-navy::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 20%, color-mix(in oklab, var(--accent) 18%, transparent) 0%, transparent 60%);
  pointer-events: none;
}
.section-navy > * { position: relative; z-index: 1; }

.label {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
  font-family: var(--sans);
}
.label-teal { color: var(--accent); }

.h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.015em;
}
.h2 em { color: var(--accent); font-style: normal; }
.on-dark { color: #fff; }
.on-dark em { color: var(--accent-mid); }
.on-dark-sub { color: rgba(255,255,255,.72); font-size: 1.05rem; line-height: 1.7; }

.body-lg { font-size: 1.08rem; line-height: 1.7; color: var(--subink); }
.body-md { font-size: 0.96rem; line-height: 1.7; color: var(--subink); }

.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .label { margin-bottom: 14px; }
.section-head .h2 { margin-bottom: 14px; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.94rem; font-weight: 600;
  letter-spacing: .005em;
  transition: all .22s var(--ease-out);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn-xs { padding: 8px 14px; font-size: 0.8rem; }
.btn-sm { padding: 10px 18px; font-size: 0.85rem; }
.btn-md { padding: 12px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 28px; font-size: 0.98rem; }

.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 6px 22px color-mix(in oklab, var(--accent) 35%, transparent);
}
.btn-primary:hover {
  background: var(--accent-mid);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px color-mix(in oklab, var(--accent) 45%, transparent);
}
.btn-outline-navy {
  background: #fff; color: var(--navy);
  border-color: var(--border);
}
.btn-outline-navy:hover {
  border-color: var(--accent); color: var(--accent);
  background: var(--accent-lt);
}
.btn-ghost-light {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.28);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}
.btn-arrow { width: 14px; height: 14px; transition: transform .22s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ═══ TOP BAR ═══ */
#topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.topbar-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--navy);
}
.topbar-logo .logo-img {
  height: 48px; width: auto; display: block;
}
.footer-logo .logo-img {
  height: 52px; width: auto; display: block;
}
.logo-mark {
  width: 30px; height: 30px; display: inline-flex;
  color: var(--accent);
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-word {
  font-family: var(--serif);
  font-weight: 800; font-size: 1.08rem;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.9rem; font-weight: 600; color: var(--navy);
  padding: 8px 12px; border-radius: 999px;
  transition: color .2s;
}
.topbar-phone:hover { color: var(--accent); }
.topbar-phone-icon {
  width: 16px; height: 16px; color: var(--accent);
  display: inline-flex;
}
.topbar-phone-icon svg { width: 100%; height: 100%; }
@media(max-width: 640px) {
  .topbar-phone span:last-child { display: none; }
  .topbar-phone { padding: 8px; }
}

/* ═══ HERO ═══ */
#hero {
  position: relative;
  background: linear-gradient(160deg, #081828 0%, #0B2240 55%, #0a2a35 100%);
  color: #fff;
  min-height: min(860px, 92vh);
  padding: 72px 0 96px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 78% 45%, color-mix(in oklab, var(--accent) 22%, transparent) 0%, transparent 60%),
    radial-gradient(ellipse 40% 55% at 15% 90%, color-mix(in oklab, var(--accent) 10%, transparent) 0%, transparent 55%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative; z-index: 1;
}
body[data-hero-layout="centered"] .hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 820px;
}
body[data-hero-layout="centered"] .hero-visual { display: none; }
body[data-hero-layout="centered"] .hero-actions,
body[data-hero-layout="centered"] .hero-trust { justify-content: center; }
body[data-hero-layout="centered"] .hero-sub { margin-left: auto; margin-right: auto; }

body[data-hero-layout="full"] #hero { min-height: 720px; padding: 72px 0 0; }
body[data-hero-layout="full"] .hero-inner { grid-template-columns: 1fr; }
body[data-hero-layout="full"] .hero-visual { display: none; }
body[data-hero-layout="full"] #hero::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 55%;
  background: url('assets/case-01-after.jpg') center / cover no-repeat;
  mask-image: linear-gradient(to left, #000 60%, transparent);
  -webkit-mask-image: linear-gradient(to left, #000 60%, transparent);
  opacity: .55;
  pointer-events: none;
}
@media(max-width: 960px) {
  body[data-hero-layout="full"] #hero::after { display: none; }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .02em;
  margin-bottom: 28px;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent-mid);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 25%, transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .5; }
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-headline em {
  color: var(--accent-mid);
  font-style: normal;
}
.hero-headline .strike {
  position: relative;
  color: rgba(255,255,255,.55);
}
.hero-headline .strike::after {
  content: '';
  position: absolute; left: -2%; right: -2%; top: 58%;
  height: 3px; background: var(--accent-mid);
  transform: rotate(-2deg);
  border-radius: 2px;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex; align-items: center; gap: 22px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 12px;
}
.hero-stars {
  color: var(--accent-mid);
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.hero-trust-icon {
  width: 32px; height: 32px;
  color: var(--accent-mid);
}
.hero-trust-icon svg { width: 100%; height: 100%; }
.hero-trust-text {
  font-size: 0.84rem;
  color: rgba(255,255,255,.72);
  line-height: 1.35;
}
.hero-trust-text strong { color: #fff; font-weight: 700; }
.hero-divider { width: 1px; height: 28px; background: rgba(255,255,255,.16); }

.hero-visual {
  position: relative;
}

/* Before/After slider */
.ba-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  user-select: none;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.08);
}
.ba-slider-frame {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #000;
}
.ba-slider-lg .ba-slider-frame { aspect-ratio: 16 / 9; }
.ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-img-wrap {
  position: absolute; inset: 0;
  width: 50%;
  overflow: hidden;
  pointer-events: none;
}
.ba-img-wrap .ba-img {
  width: calc(100% * (1 / var(--clip, 0.5)));
  min-width: 100vw;
  max-width: none;
}
.ba-img-wrap {
  width: calc(var(--clip, 0.5) * 100%);
}
.ba-img-wrap .ba-img-before {
  position: absolute; inset: 0;
  width: calc(100% / var(--clip, 0.5));
  height: 100%;
}
.ba-label {
  position: absolute; top: 14px;
  font-family: var(--sans);
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 2;
}
.ba-label-before {
  left: 14px;
  background: rgba(8,24,40,.78);
  color: rgba(255,255,255,.95);
}
.ba-label-after {
  right: 14px;
  background: color-mix(in oklab, var(--accent) 90%, black);
  color: #fff;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: calc(var(--clip, 0.5) * 100%);
  width: 44px;
  margin-left: -22px;
  cursor: ew-resize;
  z-index: 3;
  touch-action: none;
}
.ba-handle-line {
  position: absolute;
  top: 0; bottom: 0; left: 50%;
  width: 2px; margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(8,24,40,.25), 0 0 24px rgba(13,158,143,.4);
}
.ba-handle-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,.4);
  transition: transform .18s var(--ease-out);
}
.ba-handle-knob svg { width: 18px; height: 18px; }
.ba-handle:hover .ba-handle-knob,
.ba-handle:focus .ba-handle-knob { transform: translate(-50%, -50%) scale(1.08); }
.ba-caption-row {
  background: rgba(8,24,40,.85);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.ba-caption-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}

.hero-scroll {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 0.68rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  z-index: 2;
}
.hero-scroll svg { width: 14px; height: 14px; animation: bob 2s ease-in-out infinite; }
@keyframes bob {
  0%,100% { transform: translateY(0); opacity: .6; }
  50% { transform: translateY(4px); opacity: 1; }
}

@media(max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-scroll { display: none; }
  #hero { padding: 56px 0 72px; min-height: 0; }
}

/* ═══ HERO PHOTO (after-only) ═══ */
.hero-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  border: 1px solid rgba(255,255,255,.08);
  background: #000;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-photo-caption {
  position: absolute; left: 18px; bottom: 18px;
  display: flex; flex-direction: column; gap: 4px;
  padding: 12px 16px;
  background: rgba(8,24,40,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  color: rgba(255,255,255,.85);
  font-size: 0.82rem;
}
.hero-photo-caption .case-code {
  font-family: var(--sans);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: .2em;
  color: var(--accent-mid);
  text-transform: uppercase;
}

/* ═══ EMPATHY ═══ */
#empathy { background: var(--white); }
.empathy-inner {
  max-width: 880px; margin: 0 auto;
  text-align: center;
}
.empathy-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--navy);
  margin: 24px 0 40px;
  font-weight: 500;
  text-wrap: pretty;
}
.empathy-signature {
  display: inline-flex; align-items: center; gap: 14px;
}
.empathy-signature img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
}
.empathy-signature div { text-align: left; }
.empathy-signature strong {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
}
.empathy-signature span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ═══ WHY / 4 CARDS ═══ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s var(--ease-out), border-color .3s, background .3s;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--accent) 50%, transparent);
  background: color-mix(in oklab, var(--accent) 6%, transparent);
}
.why-num {
  font-family: var(--serif);
  font-size: 0.85rem; font-weight: 600;
  color: var(--accent-mid);
  letter-spacing: .08em;
  margin-bottom: 24px;
  opacity: .8;
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.01em;
  line-height: 1.25;
}
.why-card p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,.62);
}
@media(max-width: 1024px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 580px) { .why-grid { grid-template-columns: 1fr; } }

/* ═══ VIDEO ═══ */
.video-inner { max-width: 960px; margin: 0 auto; }
.video-head { text-align: center; margin-bottom: 44px; }
.video-head .label { margin-bottom: 14px; }
.video-head .h2 { margin-bottom: 14px; }
.video-head .body-lg { max-width: 620px; margin: 0 auto; }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(11,34,64,.25);
  cursor: pointer;
  background: #000;
}
.video-poster {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.video-frame:hover .video-poster { transform: scale(1.03); }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8,24,40,.6) 100%);
}
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 82px; height: 82px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  transition: transform .25s var(--ease-out), background .25s;
}
.video-play svg { width: 30px; height: 30px; margin-left: 4px; }
.video-frame:hover .video-play {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}
.video-meta {
  position: absolute; left: 20px; bottom: 20px;
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,.85);
  font-size: 0.82rem;
}
.video-duration {
  background: rgba(0,0,0,.6);
  padding: 4px 10px; border-radius: 4px;
  font-family: var(--sans);
  font-weight: 600;
  color: #fff;
}

/* ═══ TESTIMONIALS (VIDEO ROW) ═══ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-frame {
  aspect-ratio: 16 / 9;
  box-shadow: 0 18px 48px rgba(11,34,64,.18);
}
.testimonial-frame .video-play {
  width: 62px; height: 62px;
}
.testimonial-frame .video-play svg {
  width: 22px; height: 22px; margin-left: 3px;
}
.testimonial-frame .video-meta {
  left: 14px; bottom: 14px; font-size: 0.78rem;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ═══ PROCESS ═══ */
.process-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 16px;
  max-width: 980px; margin: 0 auto;
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  transition: transform .25s var(--ease-out), box-shadow .25s, border-color .25s;
}
.process-step:hover {
  transform: translateX(4px);
  border-color: var(--accent);
  box-shadow: 0 10px 32px rgba(11,34,64,.08);
}
.process-num {
  font-family: var(--serif);
  font-size: 3rem; font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.02em;
}
.process-body h3 {
  font-family: var(--serif);
  font-size: 1.25rem; font-weight: 600;
  margin-bottom: 4px;
  color: var(--navy);
}
.process-body p {
  font-size: 0.95rem;
  color: var(--subink);
  line-height: 1.6;
}
.process-meta {
  display: flex; flex-direction: column;
  gap: 6px; text-align: right;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 500;
}
.process-meta span:first-child { color: var(--accent); font-weight: 600; }
@media(max-width: 720px) {
  .process-step {
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 22px;
  }
  .process-num { font-size: 2.2rem; }
  .process-meta {
    grid-column: 1 / -1;
    flex-direction: row; gap: 16px;
    text-align: left;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
}

/* ═══ GALLERY (compact) ═══ */
.gallery-compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.case-card {
  margin: 0;
  display: flex; flex-direction: column;
  gap: 14px;
}
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
  background: #000;
}
.ba-half {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: #0a1a2a;
}
.ba-half img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-out);
}
.case-card:hover .ba-half img { transform: scale(1.03); }
.ba-tag {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  color: #fff;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
}
.ba-tag-after {
  background: var(--accent);
}
.case-card-cap {
  display: flex; align-items: baseline;
  gap: 14px;
  padding: 0 2px;
}
.case-card-cap .case-code {
  color: var(--accent-mid);
}
.case-card-sub {
  font-family: var(--serif);
  font-size: 1.02rem;
  color: rgba(255,255,255,.82);
  line-height: 1.3;
}
@media (max-width: 780px) {
  .gallery-compact { grid-template-columns: 1fr; gap: 28px; max-width: 560px; }
}

/* ═══ TECH ═══ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tech-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
}
.tech-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(11,34,64,.08);
}
.tech-photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--offwhite);
  position: relative;
}
.tech-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.tech-item:hover .tech-photo img { transform: scale(1.04); }
.tech-photo-placeholder {
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(135deg, var(--offwhite) 0 12px, #e8eef1 12px 24px);
  color: var(--muted);
  flex-direction: column;
  gap: 10px;
}
.tech-placeholder-art { width: 72px; height: 72px; color: var(--accent); opacity: .7; }
.tech-placeholder-art svg { width: 100%; height: 100%; }
.tech-placeholder-tag {
  font-family: monospace;
  font-size: 0.72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tech-body { padding: 28px 26px 30px; }
.tech-tag {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: .16em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.tech-body h3 {
  font-family: var(--serif);
  font-size: 1.3rem; font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -.01em;
}
.tech-body p {
  font-size: 0.92rem;
  color: var(--subink);
  line-height: 1.65;
}
@media(max-width: 960px) { .tech-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ═══ DR JAY ═══ */
.drjay-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.drjay-img-col { position: relative; }
.drjay-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px rgba(11,34,64,.2);
}
.drjay-img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.drjay-badge {
  position: absolute; right: -18px; bottom: -18px;
  background: var(--accent);
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: 0 16px 40px color-mix(in oklab, var(--accent) 40%, transparent);
  text-align: center;
}
.drjay-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem; font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
}
.drjay-badge span {
  font-size: 0.72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .92;
  display: block;
  margin-top: 4px;
}
.drjay-text .label { margin-bottom: 14px; }
.drjay-text .h2 { margin-bottom: 20px; }
.drjay-text .body-lg { margin-bottom: 28px; }
.drjay-creds {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}
.drjay-creds li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.92rem;
  color: var(--subink);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.drjay-creds li:last-child { border-bottom: none; }
.drjay-creds li::before {
  content: '';
  flex-shrink: 0;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.drjay-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.drjay-quote {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.drjay-quote blockquote {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 12px;
}
.drjay-quote figcaption {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.quote-stars { color: var(--accent); letter-spacing: 1px; font-size: 0.8rem; }
@media(max-width: 960px) {
  .drjay-inner { grid-template-columns: 1fr; gap: 56px; }
  .drjay-img-frame { max-width: 420px; margin: 0 auto; aspect-ratio: 1/1; }
  .drjay-quotes { grid-template-columns: 1fr; }
}

/* ═══ PRICING ═══ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.pricing-main .label { margin-bottom: 14px; }
.pricing-main .h2 { margin-bottom: 24px; }
.pricing-main .body-lg { margin-bottom: 36px; max-width: 560px; }

.pricing-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.compare-col { padding: 8px; }
.compare-tag {
  font-size: 0.72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.compare-us .compare-tag { color: var(--accent); }
.compare-them .compare-tag { color: var(--muted); }
.compare-price {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -.02em;
}
.compare-price em { color: var(--accent); font-style: normal; }
.compare-price span {
  display: block;
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: .02em;
}
.compare-them .compare-price { color: var(--muted); text-decoration: line-through; text-decoration-thickness: 1.5px; text-decoration-color: color-mix(in oklab, var(--muted) 70%, transparent); }
.compare-them .compare-price span { text-decoration: none; }
.compare-vs {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pricing-note {
  font-size: 0.92rem;
  color: var(--subink);
  line-height: 1.65;
  padding: 16px 20px;
  background: var(--accent-lt);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
}

.pricing-side {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 12px 40px rgba(11,34,64,.06);
  position: sticky;
  top: 100px;
}
.pricing-side h3 {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
}
.included-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}
.included-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.92rem;
  color: var(--subink);
}
.inc-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent-lt);
  color: var(--accent);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}
.financing {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 24px;
}
.financing-head { margin-bottom: 10px; }
.financing-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 8px;
}
.financing h4 {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 600;
  margin-bottom: 10px;
}
.financing p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 16px;
}
@media(max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-side { position: static; }
}

/* ═══ FAQ ═══ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.faq-side .label { margin-bottom: 14px; }
.faq-side .h2 { margin-bottom: 16px; }
.faq-side .body-md { margin-bottom: 20px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(11,34,64,.06);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--navy);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent-lt);
  color: var(--accent);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M4 8h8M8 4v8' stroke='%230D9E8F' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform .3s var(--ease-out), background-color .2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background-color: color-mix(in oklab, var(--accent) 18%, transparent);
}
.faq-item summary:hover { color: var(--accent); }
.faq-a {
  padding: 0 24px 22px;
}
.faq-a p {
  font-size: 0.92rem;
  color: var(--subink);
  line-height: 1.7;
}
@media(max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══ CONSULT FORM ═══ */
.consult-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.consult-copy .label { margin-bottom: 14px; }
.consult-copy .h2 { margin-bottom: 16px; }
.consult-copy .on-dark-sub { margin-bottom: 28px; max-width: 440px; }
.consult-reassure {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 32px;
}
.consult-reassure li {
  font-size: 0.92rem;
  color: rgba(255,255,255,.85);
  display: flex; align-items: center; gap: 12px;
}
.consult-reassure li span {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 30%, transparent);
  color: var(--accent-mid);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.consult-call {
  display: flex; align-items: baseline; gap: 10px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.consult-call span {
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
}
.consult-call a {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  transition: color .2s;
  white-space: nowrap;
}
.consult-call a:hover { color: var(--accent-mid); }

/* ═══ BOOKING TABS (Schedule vs. Callback) ═══ */
.consult-booking {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  overflow: hidden;
  color: var(--navy);
  display: flex; flex-direction: column;
  align-self: stretch;
}
.booking-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f2f5f8;
  border-bottom: 1px solid var(--border);
}
.booking-tab {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 18px 20px 16px;
  text-align: left;
  cursor: pointer;
  display: flex; flex-direction: column;
  gap: 2px;
  position: relative;
  color: rgba(11,34,64,.6);
  transition: color .2s, background .2s;
  border-bottom: 2px solid transparent;
  font-family: var(--sans);
}
.booking-tab:hover { color: var(--navy); }
.booking-tab.is-active {
  color: var(--navy);
  background: #fff;
  border-bottom-color: var(--accent);
}
.booking-tab + .booking-tab {
  border-left: 1px solid var(--border);
}
.booking-tab-label {
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.2;
}
.booking-tab-sub {
  font-size: 0.78rem;
  color: rgba(11,34,64,.55);
  font-weight: 500;
}
.booking-tab.is-active .booking-tab-sub { color: var(--accent); }
.booking-panel { background: #fff; }

.scheduler-frame {
  position: relative;
  width: 100%;
  height: 780px;
  background: #fafcfd;
}
.scheduler-frame iframe {
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.booking-fineprint {
  font-size: 0.78rem;
  color: rgba(11,34,64,.5);
  text-align: center;
  padding: 12px 20px 14px;
  border-top: 1px solid var(--border);
  font-family: var(--sans);
  margin: 0;
}
/* when the callback form is the active panel, let it keep the rounded bottom */
.consult-booking > .consult-form {
  box-shadow: none;
  border-radius: 0;
}

.consult-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  color: var(--navy);
}
.form-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.form-step {
  font-size: 0.75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
.form-step span { color: var(--accent); }
.form-progress {
  flex: 1;
  height: 4px; border-radius: 999px;
  background: var(--offwhite);
  overflow: hidden;
}
.form-progress-fill {
  height: 100%;
  width: 50%;
  background: var(--accent);
  border-radius: 999px;
  transition: width .35s var(--ease-out);
}
.field {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.field-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  display: flex; justify-content: space-between;
  align-items: center;
}
.field-opt {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.field input,
.field textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.95rem;
  background: #fff;
  color: var(--navy);
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 18%, transparent);
}
.field textarea { resize: vertical; min-height: 90px; }
.field-err {
  display: none;
  font-size: 0.78rem;
  color: #c84848;
  margin-top: 2px;
}
.field.error input,
.field.error textarea { border-color: #c84848; }
.field.error .field-err { display: block; }
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 18px;
}
.field-row .field { margin-bottom: 0; }
@media(max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
}
.radio-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.radio {
  position: relative;
  cursor: pointer;
}
.radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio span {
  display: inline-block;
  padding: 9px 16px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--muted);
  transition: all .18s;
}
.radio input:checked + span {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-lt);
}
.form-next,
.form-step-panel .btn-primary { width: 100%; justify-content: center; }
.form-actions { display: flex; gap: 12px; }
.form-actions .btn-primary { flex: 1; justify-content: center; }
.form-actions .form-back {
  color: var(--muted);
  background: var(--offwhite);
  border-color: transparent;
}
.form-actions .form-back:hover { color: var(--navy); background: var(--border); }
.form-fineprint {
  text-align: center;
  margin-top: 14px;
  font-size: 0.76rem;
  color: var(--muted);
  line-height: 1.5;
}
.form-success {
  text-align: center;
  padding: 28px 0 10px;
}
.success-check {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--accent-lt);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-check svg { width: 32px; height: 32px; }
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.form-success p {
  font-size: 0.92rem;
  color: var(--subink);
  max-width: 340px;
  margin: 0 auto;
  line-height: 1.6;
}
.form-success a { color: var(--accent); font-weight: 600; }

@media(max-width: 960px) {
  .consult-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ═══ FOOTER ═══ */
#footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.65);
  padding: 64px 0 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo .logo-mark { color: var(--accent-mid); }
.footer-logo .logo-word { color: #fff; font-weight: 800; }
.footer-blurb {
  font-size: 0.88rem; line-height: 1.6;
  color: rgba(255,255,255,.5);
  max-width: 300px;
}
.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-col p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent-mid); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }
@media(max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1/-1; }
}
@media(max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══ STICKY MOBILE CTA ═══ */
.mobile-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 50;
  display: none;
  gap: 10px;
  background: var(--navy);
  border-radius: 999px;
  padding: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}
.mobile-cta-call {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0;
}
.mobile-cta-call svg { width: 20px; height: 20px; }
.mobile-cta-primary {
  flex: 1;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 14px;
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
}
@media(max-width: 720px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 80px; }
}

/* ═══ TWEAKS PANEL ═══ */
.tweaks {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 100;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 20px 20px;
  width: 240px;
  box-shadow: 0 18px 60px rgba(11,34,64,.18);
}
.tweaks[hidden] { display: none; }
.tweaks-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.tweaks-head span {
  font-size: 0.72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
}
#tweaksClose {
  width: 24px; height: 24px;
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1;
}
.tweak-group { margin-bottom: 16px; }
.tweak-group:last-child { margin-bottom: 0; }
.tweak-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.tweak-options { display: flex; flex-wrap: wrap; gap: 6px; }
.tweak-opt {
  padding: 6px 12px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  transition: all .18s;
}
.tweak-opt.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-lt);
}
.tweak-swatches { gap: 10px; }
.tweak-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all .18s;
}
.tweak-swatch.active {
  border-color: var(--navy);
  transform: scale(1.1);
  box-shadow: 0 0 0 2px #fff;
}
@media(max-width: 640px) {
  .tweaks { bottom: 90px; right: 12px; left: 12px; width: auto; }
}

/* ═══ FLOATING PRICE CHIP ═══ */
.float-price {
  position: fixed; left: 24px; bottom: 24px; z-index: 55;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(11,34,64,.2);
  border: 1px solid var(--border);
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s var(--ease-out);
  pointer-events: none;
}
.float-price.show {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.float-price[hidden] { display: none; }
.float-price-inner {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 8px 8px 20px;
}
.float-price-label {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.float-price strong {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -.01em;
}
@media(max-width: 720px) { .float-price { display: none !important; } }

/* ═══ REVEAL-ON-SCROLL ═══ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
