:root {
  --purple: #1c0f2b;        /* AbodeMOD brand purple, sampled from the logo */
  --purple-2: #2d1a45;
  --purple-3: #4a2d73;
  --lilac: #c4b0ea;
  --tint: #f5f2fa;
  --ink: #1c0f2b;
  --muted: #625a6e;
  --line: #e7e1ef;
  --white: #fff;
  --radius: 24px;
  --wrap: 1240px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--purple); } /* iOS: purple behind the status bar & top overscroll */
body {
  margin: 0;
  font: 16px/1.6 Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: Outfit, Inter, sans-serif; line-height: .98; margin: 0 0 .5em; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 7.4vw, 6.4rem); font-weight: 800; }
h1 em { font-style: normal; font-weight: 300; color: var(--lilac); }
h2 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.2; letter-spacing: -.01em; }
.dim { color: rgba(255,255,255,.35); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.eyebrow { display: inline-flex; align-items: center; gap: .6rem; text-transform: uppercase; letter-spacing: .2em; font-size: .75rem; font-weight: 600; color: var(--purple-3); margin: 0 0 1.2rem; }
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.eyebrow.light { color: var(--lilac); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .95rem 1.5rem; border-radius: 999px; font-weight: 600; text-decoration: none; border: 1px solid transparent; transition: transform .25s var(--ease), background .25s, box-shadow .25s; cursor: pointer; font: 600 .98rem Inter, sans-serif; white-space: nowrap; }
.btn span { transition: transform .25s var(--ease); }
.btn:hover span { transform: translateX(3px); }
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: .6rem 1.1rem; font-size: .88rem; }
.btn-light { background: var(--white); color: var(--purple); }
.btn-light:hover { box-shadow: 0 10px 30px -10px rgba(196,176,234,.7); }
.btn-ghost { border-color: rgba(255,255,255,.25); color: var(--white); background: rgba(255,255,255,.04); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: rgba(255,255,255,.6); }
.btn-dark { background: var(--purple); color: var(--white); }
.btn-dark:hover { background: var(--purple-3); }
.btn-outline { border-color: var(--line); color: var(--purple); background: var(--white); }
.btn-outline:hover { border-color: var(--purple); }

/* Header: glass bar */
.site-header { position: fixed; inset: 0 0 auto; z-index: 30; background: var(--purple); padding-top: env(safe-area-inset-top); transition: border-color .3s, box-shadow .3s; border-bottom: 1px solid transparent; }
.site-header.scrolled { border-color: rgba(255,255,255,.08); box-shadow: 0 10px 30px -18px rgba(0,0,0,.6); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 1rem; }
.brand img { height: 38px; width: auto; }
.nav-links { display: flex; gap: .3rem; padding: .3rem; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); }
.nav-links a { color: rgba(255,255,255,.78); text-decoration: none; font-size: .9rem; padding: .45rem .95rem; border-radius: 999px; transition: background .2s, color .2s; }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.1); }
.nav-actions { display: flex; align-items: center; gap: .5rem; }
.nav-contact { display: none; }
.menu-btn { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); cursor: pointer; position: relative; }
.menu-btn span { position: absolute; left: 13px; right: 13px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s var(--ease), top .25s var(--ease); }
.menu-btn span:first-child { top: 17px; }
.menu-btn span:last-child { top: 25px; }
.menu-open .menu-btn span:first-child { top: 21px; transform: rotate(45deg); }
.menu-open .menu-btn span:last-child { top: 21px; transform: rotate(-45deg); }

/* Hero */
.hero { position: relative; background: var(--purple); color: var(--white); padding: 150px 0 110px; overflow: hidden; isolation: isolate; }
.hero-glow { position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(600px 400px at 80% 20%, rgba(124,82,196,.45), transparent 70%),
    radial-gradient(500px 400px at 10% 90%, rgba(74,45,115,.6), transparent 70%);
}
.hero-glow::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse at 60% 40%, #000 20%, transparent 75%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: .55rem; padding: .45rem .95rem; border-radius: 999px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); font-size: .82rem; font-weight: 500; margin-bottom: 1.8rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lilac); box-shadow: 0 0 0 4px rgba(196,176,234,.2); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(196,176,234,0); } }
.lede { max-width: 540px; font-size: 1.12rem; color: rgba(255,255,255,.72); margin: 1.6rem 0 0; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.hero-visual { position: relative; }
.hero-img-wrap { border-radius: 32px; overflow: hidden; background: linear-gradient(160deg, #fff, #ece6f5); aspect-ratio: 5 / 4; box-shadow: 0 50px 100px -40px rgba(0,0,0,.6); transform: rotate(-1.5deg); }
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.float-card { position: absolute; display: flex; flex-direction: column; padding: 16px 20px; border-radius: 18px; background: rgba(28,15,43,.62); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.14); animation: float 6s ease-in-out infinite; }
.float-card strong { font-family: Outfit, sans-serif; font-size: 1.6rem; font-weight: 800; letter-spacing: -.02em; }
.float-card span { font-size: .78rem; color: rgba(255,255,255,.7); }
.fc-1 { left: -28px; bottom: 36px; }
.fc-2 { right: -18px; top: 28px; animation-delay: -3s; }
@keyframes float { 50% { transform: translateY(-10px); } }

.img-note { margin: 1.2rem 0 0; font-size: .78rem; color: rgba(255,255,255,.5); text-align: right; }

/* Marquee */
.marquee { background: var(--lilac); color: var(--purple); overflow: hidden; padding: 18px 0; border-block: 1px solid rgba(28,15,43,.1); }
.marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { font-family: Outfit, sans-serif; font-weight: 800; font-size: 1.3rem; text-transform: uppercase; letter-spacing: .02em; padding: 0 2rem; display: inline-flex; align-items: center; gap: 4rem; }
.marquee span::after { content: "✦"; font-size: .9rem; margin-left: 2rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sections */
.section { padding: 130px 0; }
.section-tint { background: var(--tint); }
.section-dark { background: var(--purple); color: var(--white); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.section-head h2 { margin: 0; }
.section-lede { max-width: 620px; color: rgba(255,255,255,.65); font-size: 1.1rem; }
.filters { display: flex; gap: .3rem; padding: .3rem; border-radius: 999px; background: var(--tint); border: 1px solid var(--line); }
.chip { font: 500 .9rem Inter, sans-serif; padding: .55rem 1.1rem; border-radius: 999px; border: 0; background: none; color: var(--muted); cursor: pointer; transition: background .2s, color .2s; }
.chip.is-active { background: var(--purple); color: var(--white); }

/* Product grid */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.card { border-radius: var(--radius); background: var(--white); display: flex; flex-direction: column; border: 1px solid var(--line); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); animation: cardIn .6s var(--ease) both; }
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(28,15,43,.35); }
@keyframes cardIn { from { opacity: 0; transform: translateY(20px); } }
.card-media { position: relative; aspect-ratio: 4 / 3; background: var(--tint); overflow: hidden; cursor: pointer; border: 0; padding: 0; margin: 8px 8px 0; border-radius: 18px; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.badge { position: absolute; top: 12px; left: 12px; z-index: 1; background: rgba(28,15,43,.8); backdrop-filter: blur(8px); color: var(--white); font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .4rem .75rem; border-radius: 999px; }
.card-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.card-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.card h3 { margin: 0; font-size: 1.6rem; font-weight: 800; letter-spacing: -.03em; }
.model-no { font-size: .75rem; color: var(--muted); letter-spacing: .12em; font-weight: 600; }
.specs { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.specs li { border: 1px solid var(--line); border-radius: 999px; padding: .22rem .7rem; font-size: .82rem; color: var(--muted); }
.price { font-family: Outfit, sans-serif; font-size: 1.9rem; font-weight: 800; letter-spacing: -.03em; margin-top: auto; }
.price small { font-family: Inter, sans-serif; font-weight: 500; font-size: .78rem; color: var(--muted); letter-spacing: 0; }
.shell-tag { margin: -.4rem 0 0; font-size: .8rem; color: var(--muted); }
.card-actions { display: flex; gap: .5rem; }
.card-actions .btn { flex: 1; justify-content: center; padding: .8rem 1rem; font-size: .92rem; }

/* Included */
.incl { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 3rem; }
.incl-col { border-radius: var(--radius); padding: 34px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); }
.incl-col.yes { background: linear-gradient(160deg, rgba(196,176,234,.2), rgba(196,176,234,.04)); border-color: rgba(196,176,234,.35); }
.incl-tag { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; padding: .35rem .8rem; border-radius: 999px; background: rgba(255,255,255,.1); margin-bottom: 1.5rem; }
.yes .incl-tag { background: var(--lilac); color: var(--purple); }
.incl-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .9rem; }
.incl-col li { padding-left: 2.1rem; position: relative; font-size: 1.02rem; }
.incl-col li::before { position: absolute; left: 0; top: .1rem; width: 1.4rem; height: 1.4rem; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 800; }
.yes li::before { content: "✓"; background: var(--lilac); color: var(--purple); }
.no li { color: rgba(255,255,255,.62); }
.no li::before { content: "✕"; background: rgba(255,255,255,.1); color: rgba(255,255,255,.7); }
.small-print { font-size: .85rem; color: rgba(255,255,255,.45); margin-top: 1.6rem; }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(220px, auto); gap: 20px; margin-top: 3rem; }
.tile { border-radius: var(--radius); padding: 30px; border: 1px solid var(--line); background: var(--white); display: flex; flex-direction: column; justify-content: flex-end; transition: transform .4s var(--ease); }
.tile:hover { transform: translateY(-4px); }
.tile p { color: var(--muted); margin: 0; }
.tile-lg { grid-column: span 2; grid-row: span 2; }
.tile-dark { background: radial-gradient(500px 300px at 90% 0%, var(--purple-3), var(--purple)); color: var(--white); border: 0; }
.tile-dark h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 800; letter-spacing: -.03em; max-width: 480px; }
.tile-dark p { color: rgba(255,255,255,.65); max-width: 420px; }
.tile-num { font-family: Outfit, sans-serif; font-weight: 900; font-size: clamp(4rem, 9vw, 8rem); line-height: .9; letter-spacing: -.05em; color: var(--lilac); margin-bottom: auto; }
.tile-tint { background: var(--lilac); border: 0; }
.tile-tint p { color: var(--purple); opacity: .75; }

/* Steps */
.steps { list-style: none; padding: 0; margin: 3rem 0 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: s; }
.steps li { border-top: 2px solid var(--purple); padding-top: 24px; }
.steps span { font-family: Outfit, sans-serif; font-weight: 800; font-size: .95rem; color: var(--purple-3); display: block; margin-bottom: 2.4rem; }
.steps p { color: var(--muted); margin: 0; }

/* CTA */
.cta { position: relative; background: var(--purple); color: var(--white); text-align: center; padding: 140px 0; overflow: hidden; isolation: isolate; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(700px 400px at 50% 110%, rgba(124,82,196,.55), transparent 70%); }
.cta-inner { display: flex; flex-direction: column; align-items: center; }
.cta-inner p { color: rgba(255,255,255,.7); max-width: 520px; font-size: 1.1rem; }
.cta-logo { height: 64px; width: auto; margin-bottom: 2.4rem; opacity: .9; }
.cta .hero-cta { justify-content: center; }

/* Footer */
.site-footer { padding: 72px 0 40px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.footer-logo { height: 42px; width: auto; }
.site-footer p { color: var(--muted); font-size: .9rem; margin: 0; max-width: 460px; }
.footer-h { font-size: .75rem; text-transform: uppercase; letter-spacing: .16em; color: var(--purple-3); margin: 0 0 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.site-footer ul a { text-decoration: none; color: var(--ink); font-size: .92rem; }
.site-footer ul a:hover { color: var(--purple-3); }
.footer-legal { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: grid; gap: .6rem; }
.footer-legal p { max-width: none; font-size: .78rem; }

.shell-box { background: var(--tint); border-radius: 14px; padding: 1rem 1.1rem; font-size: .88rem; color: var(--ink); }
.shell-box a { color: var(--purple-3); }

/* Hero entrance */
.hero-copy > *, .hero-visual { animation: rise .9s var(--ease) both; }
.hero-copy > :nth-child(2) { animation-delay: .08s; }
.hero-copy > :nth-child(3) { animation-delay: .16s; }
.hero-copy > :nth-child(4) { animation-delay: .24s; }
.hero-visual { animation-delay: .2s; animation-duration: 1.1s; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } }

/* Shell vs finished slider */
.shell-compare { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 48px; align-items: center; margin-top: 80px; }
.shell-compare h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-weight: 800; letter-spacing: -.03em; }
.shell-compare p { color: var(--muted); font-size: 1.05rem; }
.legend { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: .6rem; font-weight: 500; }
.legend li { display: flex; align-items: center; gap: .7rem; }
.sw { width: 18px; height: 18px; border-radius: 5px; flex: none; }
.sw-shell { background: #b9bcc2; }
.sw-fin { background: var(--purple); }
.compare-slider { --pos: 50%; position: relative; margin: 0; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: 0 40px 80px -50px rgba(28,15,43,.5); user-select: none; touch-action: pan-y; }
.compare-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; pointer-events: none; }
.cs-before { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.cs-handle { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: var(--purple); pointer-events: none; }
.cs-handle span { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px; border-radius: 50%; background: var(--purple); color: var(--white); display: grid; place-items: center; font-weight: 800; letter-spacing: .1em; box-shadow: 0 0 0 6px rgba(196,176,234,.45); }
.cs-label { position: absolute; top: 16px; z-index: 1; font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: .4rem .8rem; border-radius: 999px; pointer-events: none; }
.cs-label-l { left: 16px; background: #e6e7ea; color: var(--ink); }
.cs-label-r { right: 16px; background: var(--purple); color: var(--white); }
.compare-slider input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.compare-slider:has(input:focus-visible) .cs-handle span { outline: 3px solid var(--lilac); outline-offset: 3px; }

/* Weather strip */
.weather-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 3rem; }
.wx { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.wx img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.wx:hover img { transform: scale(1.05); }
.wx figcaption { position: absolute; inset: auto 0 0; padding: 60px 24px 22px; background: linear-gradient(transparent, rgba(28,15,43,.92)); display: grid; gap: .2rem; }
.wx strong { font-family: Outfit, sans-serif; font-size: 1.5rem; letter-spacing: -.02em; }
.wx span { color: rgba(255,255,255,.75); font-size: .92rem; }

/* Plan-drawing models: blueprint treatment */
.is-drawing .card-media, .gallery-main.is-drawing {
  background-color: var(--tint);
  background-image: linear-gradient(rgba(74,45,115,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(74,45,115,.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.is-drawing .card-media img { object-fit: contain; padding: 44px 18px 18px; mix-blend-mode: multiply; }
.gallery-main.is-drawing img { mix-blend-mode: multiply; background: transparent; padding: 24px; }
.badge-plan { left: auto; right: 12px; background: rgba(255,255,255,.9); color: var(--purple-3); }

/* Model gallery arrows */
.g-nav { position: absolute; top: 50%; z-index: 2; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.92); color: var(--purple); font-size: 1.6rem; line-height: 1; cursor: pointer; display: grid; place-items: center; opacity: 0; transition: opacity .2s; }
.g-prev { left: 14px; }
.g-next { right: 14px; }
.gallery-main:hover .g-nav, .g-nav:focus-visible { opacity: 1; }
.gallery-main img { transition: opacity .25s; }
.gallery-main img.fading { opacity: 0; }

/* Mobile buy bar (model pages) */
.buy-bar { display: none; }

/* Parent company */
.parent { display: flex; align-items: center; gap: 22px; padding: 22px 0; border-block: 1px solid var(--line); margin-bottom: .4rem; }
.rk { display: grid; justify-items: center; flex: none; color: var(--ink); }
.rk-mark { font-family: "Bodoni Moda", Didot, "Times New Roman", serif; font-size: 3.4rem; line-height: .9; font-weight: 500; letter-spacing: -.02em; }
.rk-name { font-size: .55rem; letter-spacing: .3em; text-transform: uppercase; margin-top: .35rem; }
.parent p { font-size: .85rem !important; }
.parent a { color: var(--purple-3); }

@media (max-width: 980px) {
  .shell-compare { grid-template-columns: minmax(0, 1fr); gap: 28px; margin-top: 56px; }
  .weather-grid { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .wx figcaption span { display: none; }
  .g-nav { opacity: 1; }
  .page-model .buy-bar { display: flex; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 40; align-items: center; gap: .5rem; padding: 10px 10px 10px 18px; border-radius: 20px; background: rgba(28,15,43,.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); color: var(--white); box-shadow: 0 20px 40px -12px rgba(0,0,0,.5); transform: translateY(140%); transition: transform .35s var(--ease); }
  .page-model .buy-bar.show { transform: none; }
  .buy-bar div { flex: 1; min-width: 0; display: grid; }
  .buy-bar strong { font-family: Outfit, sans-serif; font-size: 1.25rem; letter-spacing: -.02em; }
  .buy-bar span { font-size: .75rem; color: rgba(255,255,255,.65); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .page-model .site-footer { padding-bottom: 110px; }
}
@media (max-width: 640px) {
  .weather-grid { grid-template-columns: 1fr; }
  .wx { aspect-ratio: 16 / 11; }
  .wx figcaption span { display: block; }
  .parent { flex-direction: column; align-items: flex-start; }
  .cs-label { font-size: .7rem; top: 10px; }
  .cs-label-l { left: 10px; } .cs-label-r { right: 10px; }
}

/* Featured last card when it sits alone on a row */
@media (min-width: 1100px) {
  .grid:not(.grid-sm) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  #grid .card:last-child:nth-child(3n + 1) { grid-column: 1 / -1; flex-direction: row; }
  #grid .card:last-child:nth-child(3n + 1) .card-media { flex: 0 0 58%; aspect-ratio: 16 / 9; margin: 8px; }
  #grid .card:last-child:nth-child(3n + 1) .card-body { justify-content: center; padding: 40px 48px; }
  #grid .card:last-child:nth-child(3n + 1) h3 { font-size: 2.4rem; }
}

/* ThermaSteel column highlight */
.vs .col-hi { background: rgba(196,176,234,.22); }
.vs tbody td:nth-child(2) { font-weight: 600; color: var(--purple); }

/* Blurred backdrop so photos never sit on white bars */
.gallery-main:not(.is-drawing)::before { content: ""; position: absolute; inset: -70px; background: var(--bg) center / cover; filter: blur(32px) saturate(1.15) brightness(.92); opacity: 1; }
.gallery-main:not(.is-drawing) img { position: relative; background: transparent; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Utilities */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 50; background: var(--white); color: var(--purple); padding: .6rem 1rem; border-radius: 8px; font-weight: 600; }
.skip:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--lilac); outline-offset: 3px; }
.muted { color: var(--muted); }
.fine { font-size: .82rem; color: var(--muted); margin-top: 1rem; }
.fine.light { color: rgba(255,255,255,.5); }
.section-dark a:not(.btn), .hero a:not(.btn), .contact-hero a:not(.btn) { color: var(--lilac); }
.prose a, .faq a, .fine a, .muted a { color: var(--purple-3); }
.site-header.solid { background: var(--purple); }

/* Stats */
.stats { padding: 72px 0; border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stats-grid div { border-left: 2px solid var(--lilac); padding-left: 20px; }
.stats-grid strong { display: block; font-family: Outfit, sans-serif; font-size: clamp(2rem, 3.6vw, 3rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.05; }
.stats-grid span { color: var(--muted); font-size: .92rem; }

/* Split text sections */
.split { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.prose p { font-size: 1.08rem; color: #3b3346; margin: 0 0 1.1rem; }
.section-sub { max-width: 720px; font-size: 1.05rem; }
.uses-title { margin: 72px 0 1.2rem; font-size: 1.5rem; }
.uses { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.uses li { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 22px; display: grid; gap: .25rem; }
.uses strong { font-family: Outfit, sans-serif; font-size: 1.15rem; }
.uses span { color: var(--muted); font-size: .92rem; }

/* Packages */
.packages { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.pkg { border-radius: var(--radius); padding: 30px 34px; border: 1px solid rgba(255,255,255,.12); }
.pkg h3 { font-size: 1.4rem; margin: 0 0 1rem; }
.pkg-hi { background: rgba(255,255,255,.06); }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.ticks li { padding-left: 1.5rem; position: relative; color: rgba(255,255,255,.8); }
.ticks li::before { content: "+"; position: absolute; left: 0; color: var(--lilac); font-weight: 800; }

/* Tables */
.table-wrap { margin-top: 3rem; overflow-x: auto; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.compare { min-width: 640px; }
.vs { min-width: 520px; }
.spec-table caption { text-align: left; font-family: Outfit, sans-serif; font-weight: 800; font-size: 1.4rem; letter-spacing: -.02em; margin-bottom: 1rem; }
.spec-table th, .spec-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table thead th { font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 600; }
.spec-table tbody th { font-weight: 600; }
.spec-table tbody tr:hover { background: var(--tint); }
.compare a { color: var(--purple); font-weight: 700; }
.compare th a, .compare td { white-space: nowrap; }
.swipe-hint { display: none; }

/* FAQ */
.faq { display: grid; gap: 10px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 0 22px; }
.faq summary { cursor: pointer; list-style: none; padding: 20px 32px 20px 0; font-weight: 600; font-size: 1.04rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--purple-3); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { padding: 0 0 20px; color: var(--muted); }

/* Cards: link version */
.card { position: relative; }
.card h3 a { text-decoration: none; }
.card h3 a::after { content: ""; position: absolute; inset: 0; }
.card .btn { position: relative; z-index: 1; justify-content: center; }
.card-media { display: block; }
.card[hidden] { display: none; }
.grid-sm { margin-top: 2rem; }

/* Model page */
.page-model main, .page-contact main { padding-top: 76px; }
.model-hero { padding: 36px 0 80px; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 0 28px; padding: 0; font-size: .85rem; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: .4rem; opacity: .5; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs-light ol { color: rgba(255,255,255,.6); }
.model-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 48px; align-items: start; }
.model-grid > *, .split > *, .contact-grid > *, .hero-grid > * { min-width: 0; }
.gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--line); aspect-ratio: 4 / 3; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; }
.thumbs button { flex: 0 0 88px; height: 66px; padding: 0; border: 2px solid transparent; border-radius: 10px; overflow: hidden; cursor: pointer; background: var(--tint); opacity: .65; transition: opacity .2s; }
.thumbs button.is-active, .thumbs button:hover { border-color: var(--purple); opacity: 1; }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }
.model-info { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 1.1rem; }
.model-info .eyebrow { margin: 0; }
.model-info h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); margin: 0; }
.h1-sub { display: block; font-family: Inter, sans-serif; font-size: 1rem; font-weight: 500; letter-spacing: 0; color: var(--muted); margin-top: .8rem; line-height: 1.4; }
.stack { display: grid; gap: .6rem; }
.stack .btn { justify-content: center; }
.btn-link { color: var(--purple-3); background: none; padding: .4rem; }

/* Contact */
.contact-hero { position: relative; background: var(--purple); color: var(--white); padding: 56px 0 110px; overflow: hidden; isolation: isolate; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact-copy h1 em { font-style: normal; font-weight: 300; color: var(--lilac); }
.contact-points { list-style: none; padding: 0; margin: 2.4rem 0 0; display: grid; gap: 1.2rem; }
.contact-points li { display: grid; gap: .15rem; padding-left: 20px; border-left: 2px solid var(--lilac); }
.contact-points span { color: rgba(255,255,255,.68); font-size: .95rem; }
.lead-form { background: var(--white); color: var(--ink); border-radius: 28px; padding: 34px; display: grid; gap: 16px; box-shadow: 0 40px 80px -40px rgba(0,0,0,.6); }
.lead-form label { display: grid; gap: .4rem; font-size: .88rem; font-weight: 600; }
.lead-form .opt { font-weight: 400; color: var(--muted); }
.lead-form input[type=text], .lead-form input[type=email], .lead-form input[type=tel], .lead-form select, .lead-form textarea {
  font: 400 1rem Inter, sans-serif; color: var(--ink); background: var(--tint); border: 1px solid var(--line); border-radius: 12px; padding: .8rem .9rem; width: 100%; }
.lead-form textarea { resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { outline: none; border-color: var(--purple-3); background: var(--white); box-shadow: 0 0 0 3px rgba(124,82,196,.18); }
.lead-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form [hidden] { display: none; }
.seg { border: 0; padding: 0; margin: 0; min-width: 0; }
.seg legend { font-size: .88rem; font-weight: 600; padding: 0; margin-bottom: .5rem; }
.seg-track { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; background: var(--tint); border: 1px solid var(--line); border-radius: 999px; }
.seg label { display: block; text-align: center; padding: .7rem; border-radius: 999px; cursor: pointer; font-weight: 600; font-size: .92rem; }
.seg input { position: absolute; opacity: 0; pointer-events: none; }
.seg label:has(input:checked) { background: var(--purple); color: var(--white); }
.seg label:has(input:focus-visible) { outline: 3px solid var(--lilac); }
.btn-block { width: 100%; justify-content: center; padding: 1rem; }
.hp { position: absolute; left: -9999px; }
.form-error { margin: 0; padding: .8rem 1rem; border-radius: 12px; background: #fdecec; color: #8a1f1f; font-size: .92rem; }

/* Simple pages */
.simple { padding: 180px 0 120px; min-height: 60vh; }
.lede-dark { font-size: 1.15rem; color: var(--muted); max-width: 600px; }

@media (max-width: 980px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .split, .model-grid, .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .model-info { position: static; }
  .uses { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-grid { grid-template-columns: 1fr; }
  .fc-1 { left: 12px; } .fc-2 { right: 12px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .menu-btn { display: block; }
  .site-header.menu-open { background: var(--purple); }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; padding: 8px 16px 20px; border-radius: 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.1); background: var(--purple); display: none; }
  .menu-open .nav-links { display: flex; }
  .nav-links a { font-size: 1.1rem; padding: .95rem .5rem; border-radius: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-contact { display: block; }
}
@media (max-width: 640px) {
  .hero { padding: 120px 0 80px; }
  .section { padding: 88px 0; }
  .grid { grid-template-columns: 1fr; }
  .incl, .bento, .steps, .packages, .uses, .lead-form .row { grid-template-columns: 1fr; }
  .lead-form { padding: 24px 20px; }
  .site-footer ul a { display: inline-block; padding: .3rem 0; }
  .swipe-hint { display: block; }
  .brand img { height: 32px; }
  .stats-grid { gap: 28px 16px; }
  .tile-lg { grid-column: auto; grid-row: auto; }
  .pd-body { grid-template-columns: 1fr; }
  .pd-info { padding: 24px 20px; }
  .float-card strong { font-size: 1.2rem; }
}
