:root {
  --ink: #101318;
  --muted: #63738c;
  --line: #e8eef3;
  --aqua: #00bbff;
  --mint: #09ffe2;
  --pale: #f6fbff;
  --gutter: clamp(20px, 7.6vw, 146px);
  --page: 100vw;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: #fff; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}
a { color: inherit; text-decoration: none; }
.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;
}
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }

.nav {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(62px, 4.9vw, 70px);
  transform: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  padding: 0 clamp(18px, 1.7vw, 24px);
  background: rgba(246, 251, 255, .42);
  backdrop-filter: blur(10px);
}
.brand { display: inline-flex; align-items: center; width: clamp(144px, 16vw, 231px); height: 42px; overflow: hidden; }
.brand img { width: 100%; height: auto; display: block; }
.nav-links { justify-self: center; display: flex; gap: clamp(24px, 4.45vw, 64px); font-size: clamp(12px, .98vw, 14px); line-height: 17px; font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: clamp(16px, 2vw, 28px); }
.pill, .cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(44px, 3.75vw, 54px);
  padding: 0 clamp(22px, 2.35vw, 34px);
  border-radius: 999px;
  background: #050608;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  white-space: nowrap; max-width: 100%;
}
.pill { min-height: 48px; padding: 0 24px; }
.cart { font-size: 28px; line-height: 1; transform: rotate(45deg); color: #111820; }

main { width: 100%; margin: 0; overflow: visible; background: #fff; }
.section-band { width: 100%; position: relative; overflow: hidden; }
.section-pad { padding-left: var(--gutter); padding-right: clamp(28px, 6.1vw, 118px); }

.hero {
  position: relative;
  min-height: clamp(520px, 47.9vw, 760px);
  padding: clamp(86px, 9vw, 130px) var(--gutter) clamp(64px, 6vw, 86px);
  display: flex;
  align-items: center;
  background: #eef8ff;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center center; z-index: 0; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(247,252,255,.82) 0%, rgba(247,252,255,.58) 31%, rgba(247,252,255,.1) 55%, rgba(247,252,255,0) 100%); }
.hero-copy { position: relative; z-index: 2; width: min(45vw, 520px); min-width: 420px; }
.hero h1 { font-size: clamp(42px, 4.31vw, 62px); line-height: 1.18; font-weight: 800; letter-spacing: 0; margin-bottom: clamp(32px, 3.6vw, 52px); }
.hero p { max-width: 500px; font-size: clamp(15px, 1.32vw, 19px); line-height: 1.63; font-weight: 600; margin-bottom: clamp(36px, 6.2vw, 89px); }
.selection-badge { position: absolute; right: clamp(44px, 10vw, 144px); bottom: clamp(44px, 6.5vw, 94px); z-index: 2; width: clamp(150px, 12.8vw, 184px); height: auto; }

.section-title { text-align: center; max-width: 820px; margin: 0 auto; }
.section-title h2 { font-size: clamp(28px, 2.5vw, 36px); line-height: 1.22; font-weight: 800; letter-spacing: 0; }
.section-title p { color: var(--muted); font-size: clamp(13px, 1.05vw, 15px); line-height: 1.67; font-weight: 600; margin-top: 20px; }
.hardware-intro { padding-top: clamp(130px, 12vw, 190px); padding-bottom: clamp(62px, 6vw, 90px); }

.drag-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 0 0 clamp(78px, 7vw, 112px);
}
.drag-hint { display: none; }
.hardware-carousel {
  width: min(78vw, 1080px);
  margin: 0 auto;
  overflow: visible;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.hardware-carousel.is-dragging { cursor: grabbing; }
.drag-scroll {
  display: flex;
  width: 100%;
  gap: clamp(20px, 2vw, 28px);
  transform: translate3d(var(--carousel-x, 0px), 0, 0);
  transition: transform 520ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.hardware-carousel.is-dragging .drag-scroll { transition: none; }
.hardware-panel {
  position: relative;
  flex: 0 0 100%;
  overflow: hidden;
  aspect-ratio: 1080 / 720;
  border-radius: clamp(18px, 1.7vw, 24px);
  background: #f6fbff;
  isolation: isolate;
  container-type: inline-size;
}
.hardware-panel img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.hardware-copy {
  position: absolute;
  z-index: 2;
  left: 4.48%;
  top: 50%;
  transform: translateY(-50%);
  width: 57%;
  color: #000;
  pointer-events: none;
}
.hardware-copy h3 {
  display: grid;
  gap: .62em;
  margin: 0 0 1.78em;
  font-size: clamp(20px, 3.33cqw, 36px);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0;
}
.hardware-copy h3 span { display: block; }
.hardware-copy strong {
  display: block;
  width: max-content;
  margin: 0 0 .28em;
  background: linear-gradient(90deg, #00bbff 0%, #09ffe2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(36px, 5.93cqw, 64px);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
}
.hardware-copy p {
  margin: 0;
  font-size: clamp(14px, 2.22cqw, 24px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: 0;
}
.lens-panel .hardware-copy { width: 68%; }
.lens-panel .hardware-copy strong { font-size: clamp(32px, 5.93cqw, 64px); }
.scenes-intro { padding-top: clamp(84px, 8.2vw, 118px); padding-bottom: clamp(34px, 4vw, 58px); }
.marquee-section { overflow: hidden; background: #fff; padding: 0 0 clamp(74px, 9vw, 130px); }
.marquee {
  --marquee-gap: clamp(28px, 2.4vw, 44px);
  display: flex;
  gap: var(--marquee-gap);
  width: max-content;
  animation: slide-left 28s linear infinite;
}
.marquee img { height: clamp(320px, 36.25vw, 522px); width: auto; max-width: none; flex: 0 0 auto; }
.marquee-section:hover .marquee { animation-play-state: paused; }
@keyframes slide-left { from { transform: translateX(0); } to { transform: translateX(calc(-50% - (var(--marquee-gap) / 2))); } }

.compact { text-align: center; padding-top: clamp(76px, 6.25vw, 90px); padding-bottom: clamp(76px, 7vw, 100px); }
.statement h2 { font-size: clamp(26px, 2.36vw, 34px); line-height: 1.3; font-weight: 800; }
.statement p { color: var(--muted); font-size: 15px; line-height: 25px; font-weight: 600; margin-top: 23px; }

.pale { background: var(--pale); }
.sticky-frame-section { position: relative; height: 300vh; background: var(--pale); }
.sticky-frame-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--pale);
}
.sticky-stack { position: relative; width: 100%; height: 100%; overflow: hidden; }
.sticky-page {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(300px, 32vw) minmax(0, 1fr);
  align-items: center;
  gap: clamp(42px, 5.5vw, 92px);
  padding: clamp(64px, 7vw, 96px) clamp(40px, 7.6vw, 146px);
  overflow: hidden;
  background: var(--pale);
  transform: translate3d(0, var(--page-y, 0%), 0);
  transition: transform 560ms cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}
.sticky-page-1 { --page-y: 0%; z-index: 1; }
.sticky-page-2 { --page-y: 100%; z-index: 2; }
.sticky-page-3 { --page-y: 100%; z-index: 3; }
.sticky-copy { position: relative; z-index: 2; max-width: 430px; }
.sticky-copy-right { grid-column: 2; justify-self: end; max-width: 390px; }
.sticky-num { display: block; color: #27d7e8; font-size: clamp(30px, 3.1vw, 44px); line-height: 1; font-weight: 800; margin-bottom: clamp(24px, 3vw, 38px); }
.sticky-copy h3 { margin: 0 0 clamp(28px, 3vw, 42px); font-size: clamp(28px, 3.05vw, 44px); line-height: 1.18; font-weight: 800; letter-spacing: 0; }
.sticky-copy p { margin: 0 0 18px; color: #6f7f90; font-size: clamp(15px, 1.35vw, 19px); line-height: 1.75; font-weight: 600; }
.sticky-copy dl { margin: 0; }
.sticky-copy dt { margin: clamp(16px, 2vw, 26px) 0 6px; color: #2d8cff; font-size: clamp(16px, 1.6vw, 22px); line-height: 1.35; font-weight: 800; }
.sticky-copy dd { margin: 0; color: #7b8794; font-size: clamp(15px, 1.35vw, 19px); line-height: 1.75; font-weight: 600; }
.sticky-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center center;
  pointer-events: none;
}
.sticky-visual-left { grid-column: auto; grid-row: auto; justify-self: auto; width: 100%; }
.sticky-page-2 { grid-template-columns: minmax(0, 1fr) minmax(360px, 32vw); }

.style-zone {
  display: grid;
  grid-template-columns: minmax(440px, 40%) minmax(0, 1fr);
  gap: clamp(24px, 2.4vw, 34px);
  align-items: start;
  padding: clamp(58px, 5vw, 72px) 0 0 clamp(28px, 3.3vw, 48px);
  min-height: clamp(720px, 61.5vw, 885px);
  background: linear-gradient(100deg, #f8fcff, #eef8ff);
}
.style-copy span { color: var(--aqua); font-size: clamp(15px, 1.25vw, 18px); line-height: 1.2; font-weight: 800; }
.style-copy h2 { margin-top: clamp(24px, 2.9vw, 42px); font-size: clamp(32px, 2.92vw, 42px); line-height: 1.24; font-weight: 800; }
.style-copy p { margin-top: 24px; color: var(--muted); font-size: clamp(17px, 1.53vw, 22px); line-height: 1.36; font-weight: 700; }
.frame-grid { margin-top: 38px; display: grid; grid-template-columns: repeat(2, minmax(0, 248px)); gap: clamp(14px, 1.4vw, 20px); }
.frame-grid article { min-height: clamp(170px, 13.5vw, 195px); background: rgba(255,255,255,.76); border: 1px solid rgba(210,226,235,.9); border-radius: 18px; padding: 18px; text-align: center; box-shadow: 0 18px 44px rgba(15,23,42,.06); }
.frame-grid img { width: 100%; height: clamp(80px, 6.9vw, 100px); object-fit: contain; margin-bottom: 10px; }
.frame-grid b { display: block; font-size: 17px; line-height: 22px; }
.frame-grid small { display: block; color: var(--muted); margin-top: 6px; font-size: 12px; font-weight: 700; line-height: 16px; }
.model-shot { height: clamp(620px, 56.25vw, 810px); overflow: hidden; align-self: stretch; }
.model-shot img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 12%; mix-blend-mode: multiply; }

.exchange { display: grid; grid-template-columns: minmax(280px, 440px) minmax(360px, 705px); gap: clamp(36px, 5.5vw, 80px); align-items: center; padding: clamp(42px, 3.2vw, 46px) var(--gutter); background: var(--pale); }
.exchange-copy h2 { font-size: clamp(24px, 2.15vw, 31px); line-height: 1.35; font-weight: 500; }
.exchange-copy p { margin-top: clamp(28px, 3.9vw, 56px); font-size: clamp(20px, 1.94vw, 28px); line-height: 1.36; font-weight: 500; color: var(--ink); }
.exchange-img { width: 100%; aspect-ratio: 704.5 / 435.2; object-fit: cover; border: 2px solid #82c8ff; border-radius: 20px; background: #fff; padding: 0; }

.reviews { padding: clamp(116px, 20.4vw, 294px) clamp(24px, 12.5vw, 180px) clamp(96px, 8vw, 116px); background: #fff; }
.reviews .section-title { margin-bottom: 46px; }
.review-grid { width: min(100%, 1082px); margin: 0 auto; display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(14px, 1.4vw, 20px); }
.review-card { border: 2px solid #9fe9ef; border-radius: 20px; padding: clamp(18px, 1.8vw, 26px); min-height: 180px; grid-column: span 2; }
.review-card:nth-child(1), .review-card:nth-child(2) { grid-column: span 3; min-height: 204px; }
.review-card img { width: 54px; height: 54px; border-radius: 50%; margin-bottom: 18px; }
.review-card p { font-family: "Noto Sans JP", sans-serif; font-size: clamp(13px, 1.05vw, 15px); line-height: 1.65; font-weight: 600; }

.footer-cta { position: relative; min-height: clamp(330px, 31.2vw, 449px); display: grid; place-items: center; overflow: hidden; color: #fff; }
.footer-cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.82); }
.footer-copy { position: relative; text-align: center; padding: 0 24px; }
.footer-copy h2 { font-size: clamp(38px, 3.6vw, 52px); line-height: 1.21; margin-bottom: 30px; font-weight: 800; }
.site-footer { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px var(--gutter); color: #63738c; background: #fff; border-top: 1px solid #edf2f6; font-size: 12px; font-weight: 600; }
.site-footer nav { display: flex; gap: clamp(18px, 3vw, 44px); flex-wrap: wrap; justify-content: center; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@media (max-width: 1180px) {
  .nav-links { gap: 28px; }
  .brand { width: 170px; }
  .hero-copy { min-width: 380px; }
  .style-zone { grid-template-columns: minmax(390px, 44%) minmax(0, 1fr); }
}

@media (max-width: 980px) {
  .sticky-page { grid-template-columns: 1fr; align-content: center; gap: 24px; padding: 86px var(--gutter) 52px; }
  .sticky-copy, .sticky-copy-right { grid-column: auto; justify-self: start; max-width: 100%; }
  .sticky-visual, .sticky-visual-left { position: absolute; inset: 0; width: 100%; height: 100%; max-height: none; object-fit: contain; }
  :root { --gutter: 28px; }
  .nav { left: 0; width: 100%; transform: none; height: 64px; }
  .brand { width: 150px; }
  .nav-links { display: none; }
  .pill { min-height: 40px; padding: 0 18px; }
  main { width: 100%; }
  .hero { min-height: 620px; align-items: flex-start; padding-top: 116px; }
  .hero-bg { object-position: 58% center; }
  .hero-copy { width: min(100%, 520px); min-width: 0; }
  .hero h1 { font-size: clamp(38px, 8vw, 52px); line-height: 1.18; margin-bottom: 32px; }
  .hero p { width: min(100%, 500px); font-size: 16px; line-height: 28px; margin-bottom: 34px; }
  .hero::after { background: linear-gradient(90deg, rgba(247,252,255,.95) 0%, rgba(247,252,255,.76) 60%, rgba(247,252,255,.2) 100%); }
  .selection-badge { right: 28px; bottom: 34px; width: clamp(96px, 14vw, 132px); display: block; }
  .marquee img { height: min(50vw, 360px); }
  .style-zone { grid-template-columns: 1fr; padding: 80px var(--gutter); }
  .frame-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .model-shot { height: 520px; border-radius: 18px; }
  .exchange { grid-template-columns: 1fr; padding-top: 80px; padding-bottom: 80px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card, .review-card:nth-child(1), .review-card:nth-child(2) { grid-column: auto; }
  .site-footer { flex-direction: column; text-align: center; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }
  .nav-actions .pill { display: none; }
  .cart { font-size: 24px; }
  .hero { min-height: 560px; }
  .hero-bg { object-fit: contain; object-position: center bottom; }
  .hero { min-height: min(760px, 118vw); align-items: flex-start; background: #eef8ff; }
  .section-title h2 { font-size: 30px; line-height: 38px; }
  .section-title p { font-size: 13px; line-height: 22px; }
  .marquee img { height: 300px; }
  .frame-grid { grid-template-columns: 1fr; }
  .model-shot { height: 420px; }
  .footer-copy h2 { font-size: 40px; line-height: 50px; }
}







@media (max-width: 1380px) and (min-width: 981px) {
  .style-showcase {
    min-height: clamp(700px, 61vw, 860px);
  }
  .style-model-bg {
    object-fit: contain;
    object-position: right bottom;
  }
  .style-content {
    width: min(50vw, 760px);
    padding-top: clamp(64px, 5vw, 78px);
  }
  .style-card-grid {
    gap: clamp(18px, 1.5vw, 24px);
  }
  .style-card {
    min-height: clamp(230px, 18vw, 285px);
  }
  .style-card small {
    overflow-wrap: anywhere;
  }
  .style-specs {
    right: clamp(18px, 3vw, 44px);
    bottom: clamp(24px, 2.8vw, 40px);
    width: min(58vw, 840px);
    grid-template-columns: minmax(0, .86fr) minmax(0, .92fr) minmax(0, 1.28fr);
    gap: clamp(10px, 1.2vw, 18px);
    padding: clamp(16px, 1.5vw, 22px) clamp(18px, 2vw, 30px);
  }
  .style-spec {
    gap: clamp(10px, .9vw, 14px);
  }
  .spec-icon {
    width: clamp(38px, 2.8vw, 48px);
    height: clamp(38px, 2.8vw, 48px);
    flex-basis: clamp(38px, 2.8vw, 48px);
  }
  .style-spec strong {
    font-size: clamp(23px, 2.1vw, 32px);
  }
  .style-spec small,
  .style-spec em {
    font-size: clamp(10px, .82vw, 12px);
  }
}
@media (max-width: 980px) {
  .sticky-page { grid-template-columns: 1fr; align-content: center; gap: 24px; padding: 86px var(--gutter) 52px; }
  .sticky-copy, .sticky-copy-right { grid-column: auto; justify-self: start; max-width: 100%; }
  .sticky-visual, .sticky-visual-left { position: absolute; inset: 0; width: 100%; height: 100%; max-height: none; object-fit: contain; }
  .hardware-carousel { width: min(88vw, 760px); }
  .hardware-copy { width: 64%; }
  .lens-panel .hardware-copy { width: 76%; }
}



















.style-section-full {
  background: #fff;
  overflow: hidden;
}
.style-intro {
  min-height: clamp(250px, 30vw, 360px);
  display: grid;
  place-content: end center;
  gap: 24px;
  padding: clamp(72px, 8vw, 120px) var(--gutter) clamp(48px, 4.8vw, 70px);
  text-align: center;
  background: #fff;
}
.style-intro h2 {
  font-size: clamp(22px, 2.25vw, 32px);
  line-height: 1.22;
  font-weight: 800;
}
.style-intro p {
  color: #6f7f90;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.7;
  font-weight: 600;
}
.style-showcase {
  position: relative;
  min-height: clamp(660px, 56.25vw, 810px);
  background: linear-gradient(100deg, #f7fcff 0%, #eef8ff 100%);
  overflow: hidden;
}
.style-model-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
}
.style-content {
  position: relative;
  z-index: 1;
  width: min(48vw, 760px);
  padding: clamp(78px, 5.9vw, 86px) 0 clamp(42px, 4vw, 58px) var(--gutter);
}
.style-eyebrow {
  color: #18cbe2;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: clamp(30px, 2.8vw, 40px);
}
.style-content h2 {
  font-size: clamp(42px, 3.55vw, 58px);
  line-height: 1.24;
  font-weight: 800;
}
.style-subtitle {
  margin-top: clamp(14px, 1.35vw, 20px);
  color: #788797;
  font-size: clamp(22px, 1.9vw, 30px);
  line-height: 1.35;
  font-weight: 800;
}
.style-card-grid {
  margin-top: clamp(28px, 2.7vw, 38px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 1.75vw, 28px);
}
.style-card {
  position: relative;
  min-height: clamp(220px, 15.6vw, 270px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding: clamp(20px, 1.9vw, 28px);
  text-align: center;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(211,226,237,.92);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
  backdrop-filter: blur(10px);
}
.style-card span {
  position: absolute;
  top: 14px;
  left: 18px;
  color: #16cfe6;
  font-size: 12px;
  font-weight: 800;
}
.style-card img {
  width: min(86%, 300px);
  height: clamp(104px, 7.4vw, 136px);
  object-fit: contain;
  margin-bottom: clamp(8px, .9vw, 12px);
}
.style-card b {
  color: #05080d;
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.25;
  font-weight: 800;
}
.style-card small {
  margin-top: 5px;
  color: #7c8998;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.35;
  font-weight: 600;
}
.style-specs {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 6.1vw, 118px);
  bottom: clamp(34px, 3.6vw, 52px);
  width: min(55vw, 860px);
  min-height: clamp(108px, 7.4vw, 132px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
  padding: clamp(20px, 2vw, 30px) clamp(28px, 3.2vw, 48px);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(215,229,239,.85);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 44px rgba(15, 23, 42, .07);
}
.style-spec {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.15vw, 22px);
  min-width: 0;
}
.spec-icon {
  width: clamp(44px, 3.1vw, 54px);
  height: clamp(44px, 3.1vw, 54px);
  flex: 0 0 clamp(44px, 3.1vw, 54px);
  object-fit: contain;
}
.style-spec small,
.style-spec em {
  display: block;
  color: #69798a;
  font-size: clamp(12px, .9vw, 14px);
  line-height: 1.2;
  font-style: normal;
  font-weight: 600;
}
.style-spec strong {
  display: block;
  color: #18cbe2;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.05;
  font-weight: 800;
  white-space: nowrap; max-width: 100%;
  margin: 3px 0;
}

@media (max-width: 980px) {
  .style-intro { min-height: 230px; place-content: center; }
  .style-showcase { min-height: auto; padding-bottom: 30px; display: flex; flex-direction: column; }
  .style-model-bg { position: relative; order: 2; height: auto; aspect-ratio: 1.55 / 1; object-fit: contain; object-position: center bottom; display: block; background: linear-gradient(100deg, #f7fcff 0%, #eef8ff 100%); }
  .style-content { order: 1; width: auto; padding: 46px var(--gutter) 24px; }
  .style-card-grid { max-width: none; grid-template-columns: repeat(2, minmax(150px, 1fr)); }
  .style-card { min-height: 210px; }
  .style-card small { overflow-wrap: anywhere; }
  .style-specs { order: 3; position: relative; right: auto; bottom: auto; width: auto; margin: 20px var(--gutter) 0; grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .style-card-grid { grid-template-columns: 1fr; }
  .style-model-bg { aspect-ratio: 1.05 / 1; object-position: center bottom; }
  .style-card { min-height: 220px; }
}

















/* Final responsive corrections for the frame style showcase */
.style-spec > div { min-width: 0; }
.style-spec strong { max-width: 100%; overflow-wrap: anywhere; }

@media (min-width: 981px) and (max-width: 1500px) {
  .style-showcase {
    min-height: clamp(720px, 64vw, 900px);
  }
  .style-model-bg {
    object-fit: contain;
    object-position: right bottom;
  }
  .style-content {
    width: min(51vw, 780px);
    padding-top: clamp(58px, 4.8vw, 74px);
  }
  .style-card-grid {
    grid-template-columns: repeat(2, minmax(190px, 1fr));
    gap: clamp(20px, 1.6vw, 26px);
  }
  .style-card {
    min-height: clamp(230px, 19vw, 300px);
  }
  .style-card small {
    overflow-wrap: anywhere;
  }
  .style-specs {
    right: clamp(16px, 2.6vw, 48px);
    bottom: clamp(24px, 3vw, 42px);
    width: min(61vw, 920px);
    grid-template-columns: minmax(0, .82fr) minmax(0, .92fr) minmax(0, 1.36fr);
    gap: clamp(8px, 1vw, 16px);
    padding: clamp(16px, 1.5vw, 22px) clamp(18px, 2vw, 30px);
  }
  .style-spec {
    gap: clamp(8px, .9vw, 14px);
  }
  .spec-icon {
    width: clamp(36px, 2.8vw, 48px);
    height: clamp(36px, 2.8vw, 48px);
    flex-basis: clamp(36px, 2.8vw, 48px);
  }
  .style-spec strong {
    font-size: clamp(22px, 1.95vw, 32px);
    line-height: 1.05;
  }
  .style-spec small,
  .style-spec em {
    font-size: clamp(10px, .82vw, 12px);
  }
}

@media (max-width: 980px) {
  .style-showcase {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
  }
  .style-model-bg {
    position: relative;
    order: 2;
    width: 100%;
    height: auto;
    aspect-ratio: 1.55 / 1;
    object-fit: contain;
    object-position: center bottom;
    background: linear-gradient(100deg, #f7fcff 0%, #eef8ff 100%);
  }
  .style-content {
    order: 1;
    width: auto;
    padding: 46px var(--gutter) 24px;
  }
  .style-card-grid {
    max-width: none;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
  .style-card {
    min-height: 220px;
  }
  .style-card small {
    overflow-wrap: anywhere;
  }
  .style-specs {
    order: 3;
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 20px var(--gutter) 0;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .style-card-grid { grid-template-columns: 1fr; }
  .style-model-bg { aspect-ratio: 1.05 / 1; }
  .style-card { min-height: 220px; }
}

/* Style showcase overflow and alignment patch */
.style-specs {
  overflow: hidden;
}
.style-spec > div {
  min-width: 0;
  max-width: 100%;
}
.style-spec strong {
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: keep-all;
}
.style-spec:nth-child(3) strong {
  font-size: clamp(19px, 1.55vw, 28px);
  line-height: 1.08;
}

@media (min-width: 981px) and (max-width: 1500px) {
  .style-showcase {
    min-height: clamp(780px, 68vw, 980px);
  }
  .style-model-bg {
    object-position: right top;
  }
  .style-spec:nth-child(3) strong {
    font-size: clamp(18px, 1.42vw, 24px);
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .style-showcase {
    min-height: auto;
    padding-bottom: clamp(34px, 4vw, 56px);
  }
  .style-content {
    width: min(58vw, 760px);
    padding-bottom: 0;
  }
  .style-card-grid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }
  .style-card {
    min-height: clamp(245px, 22vw, 300px);
  }
  .style-specs {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(86vw, 880px);
    margin: clamp(30px, 3.4vw, 48px) var(--gutter) 0 auto;
    grid-template-columns: minmax(0, .9fr) minmax(0, .92fr) minmax(0, 1.28fr);
  }
}

@media (max-width: 980px) {
  .style-model-bg {
    object-position: center top;
  }
  .style-specs {
    margin-top: clamp(26px, 5vw, 42px);
  }
  .style-spec:nth-child(3) strong {
    font-size: clamp(22px, 5.2vw, 32px);
  }
}

/* Keep the style portrait and spec bar lifted on wide screens */
.style-model-bg {
  object-position: right top;
}

@media (min-width: 1281px) {
  .style-specs {
    bottom: clamp(70px, 5.8vw, 112px);
  }
  .style-spec:nth-child(3) strong {
    font-size: clamp(20px, 1.5vw, 28px);
  }
}

/* Move style specs into the marked band on the portrait side */
@media (min-width: 1281px) {
  .style-specs {
    position: absolute !important;
    right: clamp(24px, 3vw, 58px) !important;
    bottom: clamp(136px, 8.2vw, 176px) !important;
    width: min(42vw, 820px) !important;
    min-height: clamp(96px, 6.2vw, 118px) !important;
    grid-template-columns: minmax(0, .82fr) minmax(0, .86fr) minmax(0, 1.18fr) !important;
    gap: clamp(8px, .85vw, 14px) !important;
    padding: clamp(15px, 1.35vw, 22px) clamp(18px, 1.9vw, 30px) !important;
  }
  .style-spec {
    gap: clamp(8px, .85vw, 14px) !important;
  }
  .style-spec:nth-child(3) strong {
    font-size: clamp(17px, 1.22vw, 23px) !important;
    line-height: 1.08 !important;
  }
  .style-spec small,
  .style-spec em {
    font-size: clamp(10px, .76vw, 12px) !important;
  }
  .spec-icon {
    width: clamp(34px, 2.35vw, 46px) !important;
    height: clamp(34px, 2.35vw, 46px) !important;
    flex-basis: clamp(34px, 2.35vw, 46px) !important;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .style-specs {
    position: absolute !important;
    right: var(--gutter) !important;
    bottom: clamp(120px, 12vw, 150px) !important;
    width: min(46vw, 560px) !important;
    margin: 0 !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 16px 18px !important;
  }
  .style-spec strong {
    font-size: clamp(20px, 2vw, 26px) !important;
  }
  .style-spec:nth-child(3) strong {
    font-size: clamp(18px, 1.8vw, 22px) !important;
  }
}

/* Wide desktop: move style specs down into the marked orange band */
@media (min-width: 1281px) {
  .style-specs {
    bottom: clamp(42px, 4.2vw, 82px) !important;
  }
}

/* Tablet/narrow desktop: use the portrait as the section background */
@media (max-width: 1280px) {
  .style-showcase {
    position: relative !important;
    min-height: clamp(760px, 96vw, 1040px) !important;
    display: block !important;
    padding-bottom: clamp(42px, 5vw, 64px) !important;
    overflow: hidden !important;
  }
  .style-model-bg {
    position: absolute !important;
    inset: 0 !important;
    order: initial !important;
    width: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: right top !important;
    z-index: 0 !important;
    background: transparent !important;
  }
  .style-content {
    position: relative !important;
    z-index: 1 !important;
    width: min(52vw, 620px) !important;
    padding: clamp(54px, 6vw, 84px) 0 0 var(--gutter) !important;
  }
  .style-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(18px, 2.2vw, 28px) !important;
  }
  .style-card {
    min-height: clamp(220px, 24vw, 310px) !important;
  }
  .style-specs {
    position: absolute !important;
    z-index: 2 !important;
    right: var(--gutter) !important;
    bottom: clamp(42px, 5vw, 72px) !important;
    width: min(51vw, 720px) !important;
    margin: 0 !important;
    grid-template-columns: minmax(0, .82fr) minmax(0, .86fr) minmax(0, 1.22fr) !important;
    gap: clamp(8px, 1vw, 14px) !important;
    padding: clamp(16px, 1.8vw, 22px) clamp(18px, 2vw, 28px) !important;
  }
  .style-spec:nth-child(3) strong {
    font-size: clamp(18px, 1.7vw, 24px) !important;
  }
}

@media (max-width: 760px) {
  .style-showcase {
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .style-model-bg {
    position: absolute !important;
    height: 100% !important;
    object-position: center top !important;
    opacity: .28 !important;
  }
  .style-content {
    width: auto !important;
    padding: 46px var(--gutter) 24px !important;
  }
  .style-specs {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    margin: 24px var(--gutter) 0 !important;
    grid-template-columns: 1fr !important;
  }
}

/* Narrow desktop polish: align cards and make portrait read as a background */
@media (min-width: 981px) and (max-width: 1280px) {
  .style-showcase {
    min-height: clamp(900px, 104vw, 1140px) !important;
    display: block !important;
    padding-bottom: clamp(70px, 7vw, 96px) !important;
  }
  .style-model-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: right top !important;
    transform: scale(1.08) !important;
    transform-origin: right top !important;
    z-index: 0 !important;
    pointer-events: none !important;
  }
  .style-content {
    width: min(46vw, 560px) !important;
    padding-left: var(--gutter) !important;
    padding-right: 0 !important;
  }
  .style-card-grid {
    width: 100% !important;
    max-width: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(20px, 2.4vw, 30px) !important;
  }
  .style-card {
    min-height: clamp(230px, 24vw, 300px) !important;
  }
  .style-specs {
    right: var(--gutter) !important;
    bottom: clamp(44px, 5.2vw, 70px) !important;
    width: min(49vw, 700px) !important;
    grid-template-columns: minmax(0, .82fr) minmax(0, .86fr) minmax(0, 1.2fr) !important;
    gap: clamp(8px, 1vw, 14px) !important;
  }
}

/* Enlarge frame images inside style cards */
.style-card img {
  width: min(96%, 380px) !important;
  height: clamp(136px, 10vw, 190px) !important;
  margin-bottom: clamp(12px, 1.2vw, 18px) !important;
}

@media (min-width: 981px) and (max-width: 1280px) {
  .style-card img {
    width: min(98%, 360px) !important;
    height: clamp(150px, 14vw, 210px) !important;
  }
}

@media (max-width: 760px) {
  .style-card img {
    width: min(92%, 320px) !important;
    height: clamp(128px, 28vw, 180px) !important;
  }
}

/* Final Figma-aligned style-section correction */
.style-section-full {
  --style-cyan: #18cbe2;
  --style-ink: #050608;
  --style-muted: #737f8d;
  --style-border: rgba(211, 226, 237, .92);
}
.style-eyebrow { color: var(--style-cyan) !important; }
.style-content h2 { color: var(--style-ink) !important; }
.style-subtitle,
.style-card small,
.style-spec small,
.style-spec em { color: var(--style-muted) !important; }
.style-spec strong { color: var(--style-cyan) !important; }
.style-card {
  background: rgba(255, 255, 255, .78) !important;
  border-color: var(--style-border) !important;
}
.style-card img {
  width: min(106%, 430px) !important;
  height: clamp(158px, 11.8vw, 220px) !important;
  object-fit: contain !important;
}

@media (min-width: 1281px) {
  .style-showcase {
    min-height: clamp(720px, 54vw, 840px) !important;
  }
  .style-model-bg {
    object-fit: cover !important;
    object-position: right top !important;
    transform: none !important;
  }
  .style-specs {
    right: clamp(44px, 5.2vw, 100px) !important;
    bottom: clamp(58px, 4.8vw, 92px) !important;
    width: min(49vw, 840px) !important;
    max-width: calc(100vw - var(--gutter) * 2) !important;
    grid-template-columns: minmax(0, .9fr) minmax(0, .95fr) minmax(0, 1.2fr) !important;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .style-showcase {
    min-height: clamp(1000px, 108vw, 1210px) !important;
    padding-bottom: clamp(54px, 5vw, 76px) !important;
    display: block !important;
    overflow: hidden !important;
  }
  .style-model-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: right top !important;
    transform: none !important;
    z-index: 0 !important;
  }
  .style-content {
    position: relative !important;
    z-index: 1 !important;
    width: min(47vw, 610px) !important;
    padding: clamp(56px, 5.4vw, 82px) 0 0 var(--gutter) !important;
  }
  .style-content h2 {
    font-size: clamp(42px, 4.3vw, 60px) !important;
    line-height: 1.18 !important;
  }
  .style-subtitle {
    color: #737f8d !important;
  }
  .style-card-grid {
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(22px, 2.6vw, 34px) !important;
  }
  .style-card {
    min-height: clamp(270px, 28vw, 350px) !important;
    padding: clamp(22px, 2.2vw, 30px) !important;
    justify-content: end !important;
  }
  .style-card img {
    width: min(112%, 390px) !important;
    height: clamp(178px, 16.4vw, 235px) !important;
    margin-bottom: clamp(12px, 1.4vw, 18px) !important;
  }
  .style-card b {
    font-size: clamp(24px, 2.55vw, 34px) !important;
    line-height: 1.12 !important;
  }
  .style-card small {
    font-size: clamp(14px, 1.25vw, 17px) !important;
    line-height: 1.35 !important;
  }
  .style-specs {
    position: absolute !important;
    z-index: 2 !important;
    right: var(--gutter) !important;
    bottom: clamp(50px, 4.8vw, 70px) !important;
    width: min(43vw, 620px) !important;
    max-width: calc(100vw - var(--gutter) * 2) !important;
    margin: 0 !important;
    grid-template-columns: minmax(0, .86fr) minmax(0, .9fr) minmax(0, 1.18fr) !important;
    gap: clamp(8px, .9vw, 13px) !important;
    padding: clamp(15px, 1.6vw, 20px) clamp(16px, 1.9vw, 24px) !important;
  }
  .style-spec { gap: clamp(8px, .9vw, 12px) !important; }
  .style-spec strong { font-size: clamp(19px, 1.9vw, 25px) !important; }
  .style-spec:nth-child(3) strong { font-size: clamp(16px, 1.55vw, 21px) !important; }
  .style-spec small,
  .style-spec em { font-size: clamp(10px, .88vw, 12px) !important; }
  .spec-icon {
    width: clamp(34px, 3.1vw, 42px) !important;
    height: clamp(34px, 3.1vw, 42px) !important;
    flex-basis: clamp(34px, 3.1vw, 42px) !important;
  }
}

@media (max-width: 760px) {
  .style-card-grid {
    grid-template-columns: 1fr !important;
  }
  .style-card img {
    width: min(108%, 360px) !important;
    height: clamp(150px, 34vw, 210px) !important;
  }
}

/* Final pass: separate style cards from portrait/specs and match Figma cyan */
.style-section-full {
  --style-cyan-a: #00bbff;
  --style-cyan-b: #09ffe2;
  --style-cyan-solid: #18cbe2;
  --style-muted: #737d8a;
}
.style-eyebrow,
.style-card span {
  color: #00bbff !important;
  background: linear-gradient(90deg, var(--style-cyan-a), var(--style-cyan-b)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.style-subtitle,
.style-card small,
.style-spec small,
.style-spec em {
  color: var(--style-muted) !important;
}
.style-spec strong {
  color: #00bbff !important;
  background: linear-gradient(90deg, var(--style-cyan-a), var(--style-cyan-b)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

@media (min-width: 1281px) {
  .style-showcase {
    min-height: clamp(790px, 58vw, 910px) !important;
  }
  .style-model-bg {
    object-fit: cover !important;
    object-position: calc(100% + 54px) top !important;
    transform: none !important;
  }
  .style-content {
    width: min(43vw, 760px) !important;
    padding-top: clamp(58px, 4.8vw, 82px) !important;
  }
  .style-card-grid {
    gap: clamp(22px, 1.8vw, 30px) !important;
  }
  .style-card {
    min-height: clamp(270px, 18.2vw, 330px) !important;
    padding: clamp(20px, 1.7vw, 28px) !important;
  }
  .style-card img {
    width: min(114%, 460px) !important;
    height: clamp(178px, 13.2vw, 245px) !important;
    margin-bottom: clamp(10px, 1vw, 16px) !important;
  }
  .style-specs {
    right: clamp(42px, 4.4vw, 84px) !important;
    bottom: clamp(36px, 3vw, 56px) !important;
    width: min(43vw, 760px) !important;
    max-width: calc(100vw - var(--gutter) * 2) !important;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .style-showcase {
    min-height: clamp(1080px, 116vw, 1280px) !important;
    padding-bottom: clamp(48px, 4vw, 66px) !important;
  }
  .style-model-bg {
    object-fit: cover !important;
    object-position: calc(100% + 72px) top !important;
    transform: none !important;
  }
  .style-content {
    width: min(43vw, 560px) !important;
    padding-top: clamp(56px, 5vw, 76px) !important;
  }
  .style-card-grid {
    gap: clamp(22px, 2.5vw, 32px) !important;
  }
  .style-card {
    min-height: clamp(268px, 27vw, 334px) !important;
    padding: clamp(18px, 2vw, 26px) !important;
    justify-content: end !important;
  }
  .style-card img {
    width: min(118%, 420px) !important;
    height: clamp(186px, 17.4vw, 246px) !important;
    margin-bottom: clamp(10px, 1.2vw, 16px) !important;
  }
  .style-specs {
    right: var(--gutter) !important;
    bottom: clamp(42px, 4vw, 58px) !important;
    width: min(39vw, 520px) !important;
    max-width: calc(100vw - var(--gutter) * 2) !important;
    grid-template-columns: minmax(0, .84fr) minmax(0, .88fr) minmax(0, 1.14fr) !important;
    gap: clamp(6px, .8vw, 10px) !important;
    padding: clamp(14px, 1.4vw, 18px) clamp(14px, 1.6vw, 20px) !important;
  }
  .style-spec:nth-child(3) strong {
    font-size: clamp(15px, 1.42vw, 19px) !important;
  }
}

/* Figma Group 22 exact structure override: landscape frame cards + right portrait */
@media (min-width: 981px) {
  .style-section-full {
    --style-cyan-a: #00bbff;
    --style-cyan-b: #09ffe2;
    --style-value: #00bbff;
    --style-muted: #737d8a;
  }
  .style-showcase {
    min-height: clamp(720px, 50vw, 790px) !important;
    overflow: hidden !important;
  }
  .style-model-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: right top !important;
    transform: translateX(clamp(18px, 3.8vw, 74px)) !important;
    transform-origin: right top !important;
    z-index: 0 !important;
  }
  .style-content {
    position: relative !important;
    z-index: 1 !important;
    width: clamp(560px, 44.8vw, 646px) !important;
    padding-top: clamp(54px, 4.2vw, 62px) !important;
    padding-left: clamp(36px, 3.1vw, 44px) !important;
  }
  .style-eyebrow,
  .style-card span {
    color: #00bbff !important;
    background: linear-gradient(90deg, var(--style-cyan-a), var(--style-cyan-b)) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }
  .style-eyebrow {
    font-size: clamp(18px, 1.35vw, 20px) !important;
    margin-bottom: clamp(26px, 2.25vw, 34px) !important;
  }
  .style-content h2 {
    font-size: clamp(38px, 2.75vw, 42px) !important;
    line-height: 1.18 !important;
  }
  .style-subtitle {
    color: var(--style-muted) !important;
    font-size: clamp(23px, 1.75vw, 26px) !important;
    line-height: 1.25 !important;
    margin-top: clamp(12px, 1.1vw, 16px) !important;
  }
  .style-card-grid {
    margin-top: clamp(28px, 2.4vw, 36px) !important;
    width: min(42vw, 602px) !important;
    max-width: 602px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(18px, 1.7vw, 28px) clamp(18px, 1.7vw, 24px) !important;
  }
  .style-card {
    min-height: clamp(194px, 14.7vw, 212px) !important;
    height: clamp(194px, 14.7vw, 212px) !important;
    padding: clamp(12px, 1.2vw, 18px) clamp(16px, 1.5vw, 22px) clamp(18px, 1.55vw, 22px) !important;
    justify-content: end !important;
    border-radius: clamp(20px, 1.6vw, 24px) !important;
    background: rgba(255,255,255,.55) !important;
    border: 1px solid rgba(0,0,0,.04) !important;
    box-shadow: 0 14px 33px rgba(0,0,0,.05) !important;
  }
  .style-card span {
    top: clamp(12px, 1vw, 15px) !important;
    left: clamp(16px, 1.25vw, 20px) !important;
    font-size: clamp(13px, 1.05vw, 16px) !important;
    line-height: 1.15 !important;
  }
  .style-card img {
    width: min(108%, 250px) !important;
    height: clamp(78px, 7.6vw, 106px) !important;
    margin-bottom: clamp(8px, .8vw, 11px) !important;
    object-fit: contain !important;
  }
  .style-card b {
    font-size: clamp(17px, 1.3vw, 20px) !important;
    line-height: 1.18 !important;
  }
  .style-card small {
    display: block !important;
    width: 100% !important;
    max-width: 250px !important;
    color: var(--style-muted) !important;
    font-size: clamp(11px, .88vw, 13px) !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-wrap: nowrap !important;
  }
  .style-specs {
    position: absolute !important;
    z-index: 2 !important;
    right: clamp(44px, 3.05vw, 56px) !important;
    bottom: clamp(28px, 2.2vw, 36px) !important;
    width: min(50.5vw, 728px) !important;
    min-height: clamp(118px, 9.2vw, 134px) !important;
    margin: 0 !important;
    padding: clamp(22px, 2.05vw, 30px) clamp(28px, 3vw, 50px) !important;
    grid-template-columns: 1fr 1.35fr 1.45fr !important;
    gap: clamp(28px, 4vw, 58px) !important;
    border-radius: clamp(22px, 1.7vw, 24px) !important;
    background: rgba(255,255,255,.9) !important;
    box-shadow: 0 14px 33px rgba(0,0,0,.05) !important;
    overflow: hidden !important;
  }
  .style-spec {
    gap: clamp(12px, 1.2vw, 16px) !important;
    align-items: center !important;
  }
  .spec-icon {
    width: clamp(42px, 3.15vw, 46px) !important;
    height: clamp(42px, 3.15vw, 46px) !important;
    flex: 0 0 clamp(42px, 3.15vw, 46px) !important;
  }
  .style-spec small,
  .style-spec em {
    color: var(--style-muted) !important;
    -webkit-text-fill-color: currentColor !important;
    background: none !important;
    font-size: clamp(8px, .72vw, 10px) !important;
    line-height: 1.2 !important;
  }
  .style-spec small:first-child {
    color: #050608 !important;
    font-size: clamp(12px, .9vw, 13px) !important;
  }
  .style-spec strong,
  .style-spec:nth-child(3) strong {
    color: var(--style-value) !important;
    -webkit-text-fill-color: var(--style-value) !important;
    background: none !important;
    font-size: clamp(20px, 1.6vw, 24px) !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .style-showcase {
    min-height: clamp(720px, 60vw, 800px) !important;
  }
  .style-model-bg {
    object-fit: contain !important;
    object-position: right top !important;
    transform: translateX(clamp(42px, 6.4vw, 92px)) !important;
  }
  .style-content {
    width: min(45vw, 590px) !important;
  }
  .style-card-grid {
    width: min(43vw, 590px) !important;
  }
  .style-card {
    min-height: clamp(188px, 15.9vw, 210px) !important;
    height: clamp(188px, 15.9vw, 210px) !important;
  }
  .style-specs {
    right: clamp(24px, 3vw, 40px) !important;
    bottom: clamp(24px, 2.4vw, 32px) !important;
    width: min(48vw, 610px) !important;
    grid-template-columns: .88fr 1.2fr 1.35fr !important;
    gap: clamp(16px, 2.2vw, 28px) !important;
    padding-left: clamp(20px, 2vw, 28px) !important;
    padding-right: clamp(20px, 2vw, 28px) !important;
  }
  .style-spec:nth-child(3) strong {
    font-size: clamp(17px, 1.62vw, 20px) !important;
  }
}

/* Recovery pass: keep previous wide layout, fix narrow card alignment without touching earlier sections */
@media (min-width: 1281px) {
  .style-showcase {
    min-height: clamp(790px, 58vw, 910px) !important;
  }
  .style-model-bg {
    object-fit: cover !important;
    object-position: calc(100% + 34px) top !important;
    transform: none !important;
  }
  .style-content {
    width: min(43vw, 760px) !important;
    padding-top: clamp(58px, 4.8vw, 82px) !important;
    padding-left: var(--gutter) !important;
  }
  .style-card-grid {
    width: min(42vw, 680px) !important;
    max-width: 680px !important;
    gap: clamp(22px, 1.8vw, 30px) !important;
  }
  .style-card {
    min-height: clamp(258px, 17.7vw, 320px) !important;
    height: auto !important;
    padding: clamp(22px, 1.8vw, 30px) !important;
    justify-content: end !important;
  }
  .style-card img {
    width: min(116%, 430px) !important;
    height: clamp(158px, 12vw, 218px) !important;
  }
  .style-card small {
    white-space: nowrap !important;
    font-size: clamp(13px, .92vw, 15px) !important;
  }
  .style-specs {
    right: clamp(42px, 4.4vw, 84px) !important;
    bottom: clamp(36px, 3vw, 56px) !important;
    width: min(43vw, 760px) !important;
    min-height: clamp(110px, 7.4vw, 132px) !important;
    grid-template-columns: minmax(0,.9fr) minmax(0,.95fr) minmax(0,1.28fr) !important;
    gap: clamp(18px, 2vw, 32px) !important;
    padding: clamp(20px, 2vw, 30px) clamp(28px, 3.2vw, 48px) !important;
  }
  .style-spec strong,
  .style-spec:nth-child(3) strong {
    color: #00bbff !important;
    -webkit-text-fill-color: #00bbff !important;
    background: none !important;
    font-size: clamp(22px, 1.7vw, 28px) !important;
    white-space: nowrap !important;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .style-showcase {
    min-height: clamp(940px, 92vw, 1080px) !important;
    padding-bottom: clamp(44px, 4vw, 64px) !important;
    overflow: hidden !important;
  }
  .style-model-bg {
    object-fit: cover !important;
    object-position: calc(100% + 48px) top !important;
    transform: none !important;
  }
  .style-content {
    width: min(44vw, 560px) !important;
    padding: clamp(58px, 5vw, 76px) 0 0 var(--gutter) !important;
  }
  .style-card-grid {
    width: 100% !important;
    max-width: 560px !important;
    gap: clamp(22px, 2.4vw, 30px) !important;
  }
  .style-card {
    min-height: clamp(230px, 22vw, 280px) !important;
    height: auto !important;
    padding: clamp(18px, 1.9vw, 24px) !important;
    justify-content: end !important;
  }
  .style-card img {
    width: min(116%, 360px) !important;
    height: clamp(132px, 12.5vw, 172px) !important;
    margin-bottom: clamp(10px, 1.1vw, 14px) !important;
  }
  .style-card b {
    font-size: clamp(21px, 2.05vw, 27px) !important;
  }
  .style-card small {
    white-space: nowrap !important;
    max-width: none !important;
    font-size: clamp(12px, 1.08vw, 14px) !important;
    line-height: 1.2 !important;
  }
  .style-card span {
    font-size: clamp(14px, 1.25vw, 17px) !important;
    top: clamp(14px, 1.2vw, 18px) !important;
    left: clamp(16px, 1.4vw, 22px) !important;
  }
  .style-specs {
    right: var(--gutter) !important;
    bottom: clamp(40px, 4vw, 58px) !important;
    width: min(40vw, 540px) !important;
    min-height: clamp(102px, 8vw, 122px) !important;
    grid-template-columns: .85fr .9fr 1.2fr !important;
    gap: clamp(8px, 1vw, 14px) !important;
    padding: clamp(15px, 1.5vw, 20px) clamp(16px, 1.7vw, 22px) !important;
    border-radius: 22px !important;
  }
  .style-spec strong,
  .style-spec:nth-child(3) strong {
    color: #00bbff !important;
    -webkit-text-fill-color: #00bbff !important;
    background: none !important;
    font-size: clamp(18px, 1.7vw, 22px) !important;
    white-space: nowrap !important;
  }
  .style-spec:nth-child(3) strong {
    font-size: clamp(15px, 1.45vw, 18px) !important;
  }
}

/* Balance style spec card columns so 銉囥儱銈儷銈广償銉笺偒銉?is fully visible */
@media (min-width: 981px) {
  .style-specs {
    overflow: hidden !important;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.08fr) minmax(230px, 1.72fr) !important;
    gap: clamp(16px, 2vw, 32px) !important;
    padding-left: clamp(30px, 3vw, 46px) !important;
    padding-right: clamp(30px, 3vw, 46px) !important;
  }
  .style-spec {
    min-width: 0 !important;
  }
  .style-spec:nth-child(3) {
    min-width: 230px !important;
  }
  .style-spec:nth-child(3) strong {
    font-size: clamp(20px, 1.55vw, 24px) !important;
    letter-spacing: 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .style-specs {
    width: min(45vw, 590px) !important;
    grid-template-columns: minmax(0, .72fr) minmax(0, .9fr) minmax(205px, 1.5fr) !important;
    gap: clamp(8px, 1.1vw, 14px) !important;
    padding-left: clamp(20px, 2vw, 28px) !important;
    padding-right: clamp(20px, 2vw, 28px) !important;
  }
  .style-spec:nth-child(3) {
    min-width: 205px !important;
  }
  .style-spec:nth-child(3) strong {
    font-size: clamp(17px, 1.45vw, 19px) !important;
  }
}

/* Spec card: make the bar longer instead of bulky, keep labels on one line */
@media (min-width: 981px) {
  .style-specs {
    width: min(55vw, 820px) !important;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.18fr) minmax(0, 1.45fr) !important;
    gap: clamp(18px, 2.4vw, 42px) !important;
    padding-left: clamp(28px, 2.6vw, 42px) !important;
    padding-right: clamp(28px, 2.6vw, 42px) !important;
  }
  .style-spec,
  .style-spec > div {
    min-width: 0 !important;
  }
  .style-spec small,
  .style-spec em,
  .style-spec strong,
  .style-spec:nth-child(3),
  .style-spec:nth-child(3) strong {
    white-space: nowrap !important;
    text-wrap: nowrap !important;
    overflow-wrap: normal !important;
    word-break: keep-all !important;
  }
  .style-spec:nth-child(3) {
    min-width: 0 !important;
  }
  .style-spec:nth-child(3) strong {
    font-size: clamp(20px, 1.5vw, 24px) !important;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .style-specs {
    width: min(52vw, 650px) !important;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1fr) minmax(0, 1.45fr) !important;
    gap: clamp(10px, 1.4vw, 18px) !important;
    padding-left: clamp(18px, 1.8vw, 24px) !important;
    padding-right: clamp(18px, 1.8vw, 24px) !important;
  }
  .style-spec:nth-child(3) strong {
    font-size: clamp(16px, 1.38vw, 18px) !important;
  }
}

/* Fix overlap by returning the four style cards to a landscape ratio */
@media (min-width: 981px) {
  .style-card-grid {
    width: min(38.5vw, 620px) !important;
    max-width: 620px !important;
    gap: clamp(18px, 1.55vw, 26px) !important;
  }
  .style-card {
    aspect-ratio: 296 / 210 !important;
    min-height: 0 !important;
    height: auto !important;
    padding: clamp(14px, 1.25vw, 18px) clamp(16px, 1.45vw, 22px) clamp(16px, 1.35vw, 20px) !important;
  }
  .style-card img {
    width: min(112%, 285px) !important;
    height: clamp(86px, 7vw, 118px) !important;
    margin-bottom: clamp(6px, .7vw, 10px) !important;
  }
  .style-card b {
    font-size: clamp(17px, 1.28vw, 21px) !important;
  }
  .style-card small {
    font-size: clamp(11px, .86vw, 13px) !important;
    white-space: nowrap !important;
  }
  .style-specs {
    width: min(48vw, 760px) !important;
    right: clamp(38px, 4vw, 76px) !important;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .style-card-grid {
    width: min(39vw, 500px) !important;
    max-width: 500px !important;
    gap: clamp(16px, 2vw, 24px) !important;
  }
  .style-card {
    aspect-ratio: 296 / 210 !important;
    min-height: 0 !important;
    height: auto !important;
  }
  .style-card img {
    width: min(112%, 250px) !important;
    height: clamp(78px, 8.2vw, 104px) !important;
  }
  .style-specs {
    width: min(47vw, 590px) !important;
    right: clamp(24px, 3vw, 38px) !important;
  }
}

/* Move style specs into the marked chest band and trim excess lower space */
@media (min-width: 1281px) {
  .style-showcase {
    min-height: clamp(710px, 50vw, 800px) !important;
    padding-bottom: 0 !important;
  }
  .style-specs {
    bottom: clamp(118px, 8vw, 150px) !important;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .style-showcase {
    min-height: clamp(800px, 78vw, 940px) !important;
    padding-bottom: 0 !important;
  }
  .style-specs {
    bottom: clamp(108px, 10vw, 138px) !important;
  }
}

/* Align spec card bottom with the lower style cards and soften transparency */
@media (min-width: 981px) {
  .style-specs {
    bottom: clamp(150px, 10.4vw, 190px) !important;
    background: rgba(255,255,255,.76) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .style-specs {
    bottom: clamp(126px, 11.6vw, 158px) !important;
    background: rgba(255,255,255,.76) !important;
  }
}

/* Lower style spec card so its bottom aligns with the left bottom cards */
@media (min-width: 1281px) {
  .style-specs {
    bottom: clamp(78px, 5.4vw, 104px) !important;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .style-specs {
    bottom: clamp(72px, 6.8vw, 96px) !important;
  }
}

/* Fine tune: lower style spec card a little more for exact bottom alignment */
@media (min-width: 1281px) {
  .style-specs {
    bottom: clamp(58px, 4.2vw, 82px) !important;
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .style-specs {
    bottom: clamp(54px, 5.2vw, 76px) !important;
  }
}

/* Exchange screen: use product post image and align the visual column to the right */
.exchange {
  grid-template-columns: minmax(280px, 440px) minmax(520px, 705px) !important;
  justify-content: end !important;
  column-gap: clamp(48px, 6.2vw, 96px) !important;
  padding-left: clamp(90px, 7.7vw, 160px) !important;
  padding-right: clamp(52px, 6vw, 92px) !important;
}
.exchange-img {
  justify-self: end !important;
  width: min(100%, 705px) !important;
  object-fit: cover !important;
  object-position: center center !important;
}
@media (max-width: 980px) {
  .exchange {
    grid-template-columns: 1fr !important;
    justify-content: stretch !important;
    padding-left: var(--gutter) !important;
    padding-right: var(--gutter) !important;
  }
  .exchange-img {
    justify-self: stretch !important;
    width: 100% !important;
  }
}

/* Exchange wide layout: balanced left copy + right image */
@media (min-width: 981px) {
  .exchange {
    grid-template-columns: minmax(300px, 430px) minmax(520px, 705px) !important;
    justify-content: center !important;
    align-items: center !important;
    column-gap: clamp(72px, 10vw, 150px) !important;
    padding-left: clamp(44px, 6.4vw, 92px) !important;
    padding-right: clamp(44px, 6.4vw, 92px) !important;
  }
  .exchange-copy {
    justify-self: start !important;
    width: min(100%, 430px) !important;
  }
  .exchange-img {
    justify-self: end !important;
    width: min(100%, 705px) !important;
  }
}

/* Exchange final alignment: match upper section edges and remove image white backing */
@media (min-width: 981px) {
  .exchange {
    grid-template-columns: minmax(320px, 440px) minmax(560px, 705px) !important;
    justify-content: space-between !important;
    column-gap: clamp(56px, 8vw, 120px) !important;
    padding-left: clamp(118px, 7.6vw, 154px) !important;
    padding-right: clamp(118px, 7.6vw, 154px) !important;
  }
  .exchange-copy {
    justify-self: start !important;
    align-self: center !important;
    width: min(100%, 440px) !important;
  }
  .exchange-img {
    justify-self: end !important;
    width: min(100%, 705px) !important;
    background: transparent !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
}

/* Reviews screen: five user voice cards with avatar layout */
.reviews {
  padding: clamp(110px, 13vw, 190px) clamp(24px, 7vw, 96px) clamp(96px, 9vw, 130px) !important;
  background: #fff !important;
}
.reviews .section-title {
  margin-bottom: clamp(54px, 6vw, 82px) !important;
}
.reviews .section-title h2 {
  font-size: clamp(34px, 3vw, 52px) !important;
  line-height: 1.18 !important;
  font-weight: 800 !important;
}
.reviews .section-title p {
  margin-top: clamp(20px, 2.3vw, 34px) !important;
  color: #6f7f90 !important;
  font-size: clamp(16px, 1.35vw, 24px) !important;
  font-weight: 800 !important;
}
.review-grid {
  width: min(100%, 1440px) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: clamp(26px, 2.4vw, 34px) !important;
}
.review-card {
  grid-column: span 2 !important;
  min-height: clamp(300px, 22vw, 350px) !important;
  border: 2px solid #27b9ff !important;
  border-radius: 24px !important;
  padding: clamp(26px, 2.3vw, 42px) !important;
  display: grid !important;
  grid-template-columns: clamp(64px, 5.5vw, 88px) minmax(0, 1fr) !important;
  gap: clamp(22px, 2vw, 34px) !important;
  align-items: start !important;
  background: #fff !important;
  box-shadow: none !important;
}
.review-card-wide,
.review-card:nth-child(1),
.review-card:nth-child(2) {
  grid-column: span 3 !important;
  min-height: clamp(300px, 20vw, 328px) !important;
}
.review-card img {
  width: clamp(64px, 5.5vw, 88px) !important;
  height: clamp(64px, 5.5vw, 88px) !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  margin: 0 !important;
}
.review-body {
  min-width: 0 !important;
}
.review-quote {
  margin: 0 !important;
  color: #05080d !important;
  font-size: clamp(18px, 1.45vw, 24px) !important;
  line-height: 1.34 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}
.review-meta {
  margin: clamp(28px, 2.4vw, 42px) 0 0 !important;
  color: #6f7f90 !important;
  font-size: clamp(15px, 1.18vw, 20px) !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
}
@media (max-width: 980px) {
  .reviews {
    padding: 84px var(--gutter) 86px !important;
  }
  .review-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  .review-card,
  .review-card-wide,
  .review-card:nth-child(1),
  .review-card:nth-child(2) {
    grid-column: auto !important;
    min-height: 0 !important;
    grid-template-columns: 56px minmax(0, 1fr) !important;
    padding: 22px !important;
    border-radius: 18px !important;
  }
  .review-card img {
    width: 56px !important;
    height: 56px !important;
  }
  .review-quote {
    font-size: 15px !important;
    line-height: 1.55 !important;
  }
  .review-meta {
    font-size: 12px !important;
    line-height: 1.45 !important;
    margin-top: 18px !important;
  }
}

/* Exchange image crop: fill the bordered frame edge-to-edge */
.exchange-img {
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}
@media (min-width: 981px) {
  .exchange-img {
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* Exchange copy: match short two-line text layout */
.exchange-copy {
  width: min(100%, 560px) !important;
}
.exchange-copy h2 {
  white-space: nowrap !important;
  font-size: clamp(28px, 2.65vw, 42px) !important;
  line-height: 1.25 !important;
  font-weight: 500 !important;
}
.exchange-copy p {
  margin-top: clamp(56px, 5.2vw, 78px) !important;
  font-size: clamp(26px, 2.45vw, 40px) !important;
  line-height: 1.18 !important;
  font-weight: 500 !important;
}
@media (max-width: 980px) {
  .exchange-copy h2 {
    white-space: normal !important;
    font-size: clamp(26px, 7vw, 36px) !important;
  }
  .exchange-copy p {
    margin-top: 36px !important;
    font-size: clamp(23px, 6vw, 32px) !important;
  }
}

/* Exchange copy: punctuation-based line breaks without overlapping the image */
@media (min-width: 981px) {
  .exchange {
    grid-template-columns: minmax(300px, 520px) minmax(560px, 705px) !important;
    column-gap: clamp(70px, 9vw, 140px) !important;
  }
  .exchange-copy {
    width: min(100%, 520px) !important;
    max-width: 520px !important;
  }
  .exchange-copy h2 {
    white-space: normal !important;
    font-size: clamp(30px, 2.35vw, 38px) !important;
    line-height: 1.28 !important;
  }
  .exchange-copy p {
    font-size: clamp(25px, 2.1vw, 34px) !important;
    line-height: 1.3 !important;
    margin-top: clamp(54px, 5vw, 76px) !important;
  }
}

/* Reviews fit pass: compact Figma-like one-screen layout */
.reviews {
  padding: clamp(86px, 8.8vw, 128px) clamp(24px, 6.2vw, 88px) clamp(76px, 6.4vw, 96px) !important;
  min-height: 100vh !important;
}
.reviews .section-title {
  margin-bottom: clamp(46px, 4.2vw, 62px) !important;
}
.reviews .section-title h2 {
  font-size: clamp(30px, 2.35vw, 42px) !important;
  line-height: 1.18 !important;
}
.reviews .section-title p {
  margin-top: clamp(16px, 1.7vw, 24px) !important;
  font-size: clamp(14px, 1.06vw, 18px) !important;
  line-height: 1.45 !important;
}
.review-grid {
  width: min(100%, 1230px) !important;
  gap: clamp(20px, 1.75vw, 28px) !important;
}
.review-card {
  min-height: clamp(250px, 17vw, 292px) !important;
  max-height: none !important;
  padding: clamp(20px, 1.75vw, 28px) clamp(22px, 1.9vw, 30px) !important;
  grid-template-columns: clamp(56px, 4.4vw, 74px) minmax(0, 1fr) !important;
  gap: clamp(18px, 1.55vw, 26px) !important;
  overflow: hidden !important;
}
.review-card-wide,
.review-card:nth-child(1),
.review-card:nth-child(2) {
  min-height: clamp(255px, 17.2vw, 296px) !important;
}
.review-card img {
  width: clamp(56px, 4.4vw, 74px) !important;
  height: clamp(56px, 4.4vw, 74px) !important;
}
.review-quote {
  font-size: clamp(14px, 1.03vw, 17px) !important;
  line-height: 1.38 !important;
  font-weight: 800 !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
}
.review-meta {
  margin-top: clamp(18px, 1.6vw, 26px) !important;
  font-size: clamp(12px, .86vw, 14px) !important;
  line-height: 1.22 !important;
  font-weight: 800 !important;
  overflow-wrap: break-word !important;
  word-break: break-word !important;
}
@media (min-width: 981px) and (max-height: 850px) {
  .reviews {
    padding-top: 70px !important;
    padding-bottom: 68px !important;
  }
  .reviews .section-title {
    margin-bottom: 38px !important;
  }
  .review-grid {
    gap: 18px !important;
  }
  .review-card,
  .review-card-wide,
  .review-card:nth-child(1),
  .review-card:nth-child(2) {
    min-height: 230px !important;
    padding: 18px 22px !important;
  }
  .review-quote {
    font-size: 13px !important;
    line-height: 1.34 !important;
  }
  .review-meta {
    font-size: 11px !important;
    line-height: 1.18 !important;
    margin-top: 14px !important;
  }
}

/* Footer CTA: use product detail background with softer opacity */
.footer-cta > img {
  opacity: .82 !important;
  filter: brightness(.9) !important;
}
.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.12);
  z-index: 1;
}
.footer-copy {
  z-index: 2 !important;
}
/* Style model image: keep the face visible while staying aligned to the top edge */
@media (min-width: 981px) {
  .style-model-bg {
    object-fit: contain !important;
    object-position: right top !important;
  }
}
/* Mobile dropdown navigation */
.nav-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 24px rgba(16, 19, 24, .10);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  justify-self: end;
  z-index: 45;
}
.nav-menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #101318;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  top: calc(clamp(62px, 4.9vw, 70px) + 10px);
  right: clamp(14px, 4vw, 28px);
  z-index: 44;
  width: min(260px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(232, 238, 243, .95);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(16, 19, 24, .14);
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  color: #101318;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: #eef8ff;
  outline: none;
}
@media (max-width: 980px) {
  .nav { grid-template-columns: auto 1fr auto auto; }
  .nav-menu-toggle { display: inline-flex; }
  .mobile-menu:not([hidden]) { display: grid; gap: 2px; }
}
@media (max-width: 620px) {
  .nav { gap: 10px; padding-right: 12px; }
  .nav-menu-toggle { width: 42px; height: 42px; }
  .mobile-menu { top: 72px; right: 12px; left: 12px; width: auto; }
}
/* End mobile dropdown navigation */
/* Sticky split media layout */
.sticky-page {
  grid-template-columns: minmax(300px, 34vw) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: clamp(44px, 5.2vw, 92px) !important;
}
.sticky-copy {
  grid-column: 1 !important;
  grid-row: 1 !important;
  max-width: 460px !important;
}
.sticky-visual {
  position: relative !important;
  inset: auto !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: stretch !important;
  width: 100% !important;
  height: auto !important;
  max-height: min(62vh, 620px) !important;
  object-fit: contain !important;
  object-position: center center !important;
  z-index: 1 !important;
}
.sticky-page-2 {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 34vw) !important;
}
.sticky-page-2 .sticky-copy-right {
  grid-column: 2 !important;
  justify-self: end !important;
}
.sticky-page-2 .sticky-visual-left {
  grid-column: 1 !important;
  grid-row: 1 !important;
}
@media (max-width: 980px) {
  .sticky-page,
  .sticky-page-2 {
    grid-template-columns: 1fr !important;
    align-content: center !important;
    gap: clamp(22px, 5vw, 36px) !important;
    padding: 86px var(--gutter) 44px !important;
  }
  .sticky-copy,
  .sticky-copy-right,
  .sticky-page-2 .sticky-copy-right {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    max-width: min(100%, 620px) !important;
  }
  .sticky-visual,
  .sticky-visual-left,
  .sticky-page-2 .sticky-visual-left {
    position: relative !important;
    inset: auto !important;
    grid-column: 1 !important;
    grid-row: 2 !important;
    width: 100% !important;
    height: auto !important;
    max-height: 38vh !important;
    object-fit: contain !important;
  }
}
@media (max-width: 620px) {
  .sticky-frame-pin {
    height: auto !important;
    min-height: 100vh !important;
  }
  .sticky-page,
  .sticky-page-2 {
    min-height: 100vh !important;
    padding-top: 78px !important;
    padding-bottom: 34px !important;
  }
  .sticky-visual,
  .sticky-visual-left {
    max-height: 32vh !important;
  }
}
/* End sticky split media layout */
/* Sticky mobile left alignment */
@media (max-width: 980px) {
  .sticky-page,
  .sticky-page-2 {
    justify-items: start !important;
    text-align: left !important;
  }
  .sticky-copy,
  .sticky-copy-right,
  .sticky-page-2 .sticky-copy-right {
    justify-self: start !important;
    text-align: left !important;
  }
  .sticky-visual,
  .sticky-visual-left,
  .sticky-page-2 .sticky-visual-left {
    justify-self: start !important;
    object-position: left center !important;
  }
}
/* End sticky mobile left alignment */
/* Design system resilience */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(0, 187, 255, .72);
  outline-offset: 4px;
}
.nav a:focus-visible,
.nav button:focus-visible,
.cta:focus-visible,
.pill:focus-visible {
  outline-offset: 5px;
}
.review-card,
.review-body,
.review-quote,
.review-meta,
.sticky-copy,
.style-card,
.style-spec,
.exchange-copy,
.footer-copy {
  min-width: 0;
}
.review-meta,
.site-footer a,
.mobile-menu a {
  overflow-wrap: anywhere;
  word-break: normal;
}
.hardware-copy,
.sticky-copy,
.style-content,
.exchange-copy {
  overflow-wrap: break-word;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .marquee {
    animation: none !important;
    transform: none !important;
  }
  .drag-scroll,
  .sticky-page {
    transition: none !important;
  }
}
/* End design system resilience */
/* Mobile header CTA visibility */
@media (max-width: 620px) {
  .nav {
    grid-template-columns: minmax(0, 1fr) auto auto !important;
    gap: clamp(8px, 2.4vw, 12px) !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .brand {
    width: clamp(136px, 38vw, 178px) !important;
    min-width: 0 !important;
  }
  .nav-actions {
    display: flex !important;
  }
  .nav-actions .pill {
    display: inline-flex !important;
    min-height: 40px !important;
    padding: 0 clamp(14px, 3.8vw, 22px) !important;
    font-size: clamp(12px, 3.2vw, 14px) !important;
    line-height: 1 !important;
  }
  .nav-menu-toggle {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
  }
}
@media (max-width: 390px) {
  .brand {
    width: clamp(116px, 34vw, 138px) !important;
  }
  .nav-actions .pill {
    min-height: 38px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }
  .nav-menu-toggle {
    width: 40px !important;
    height: 40px !important;
    flex-basis: 40px !important;
  }
}
/* End mobile header CTA visibility */
/* DESIGN.md small-screen static flow */
@media (max-width: 980px) {
  .sticky-frame-section {
    height: auto !important;
    min-height: 0 !important;
    background: var(--pale) !important;
  }
  .sticky-frame-pin {
    position: relative !important;
    top: auto !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    background: var(--pale) !important;
  }
  .sticky-stack {
    position: relative !important;
    display: grid !important;
    gap: clamp(54px, 10vw, 86px) !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
    padding: clamp(70px, 10vw, 98px) 0 !important;
  }
  .sticky-page,
  .sticky-page-1,
  .sticky-page-2,
  .sticky-page-3,
  .sticky-page[aria-hidden="true"] {
    position: relative !important;
    inset: auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto !important;
    align-content: start !important;
    justify-items: start !important;
    gap: clamp(20px, 5vw, 32px) !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 0 var(--gutter) !important;
    overflow: visible !important;
    transform: none !important;
    transition: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: left !important;
    background: var(--pale) !important;
  }
  .sticky-copy,
  .sticky-copy-right,
  .sticky-page-2 .sticky-copy-right {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    max-width: min(100%, 620px) !important;
    text-align: left !important;
    transform: none !important;
    transition: none !important;
  }
  .sticky-visual,
  .sticky-visual-left,
  .sticky-page-2 .sticky-visual-left {
    position: relative !important;
    inset: auto !important;
    grid-column: 1 !important;
    grid-row: 2 !important;
    justify-self: start !important;
    width: min(100%, 720px) !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: left center !important;
    transform: none !important;
    transition: none !important;
  }
  .sticky-page .reveal,
  .exchange .reveal,
  .style-section-full .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
@media (max-width: 620px) {
  .sticky-stack {
    gap: 58px !important;
    padding: 58px 0 !important;
  }
  .sticky-copy h3 {
    margin-bottom: 22px !important;
  }
  .sticky-copy p,
  .sticky-copy dd {
    font-size: clamp(13px, 3.7vw, 15px) !important;
    line-height: 1.62 !important;
  }
  .sticky-copy dt {
    font-size: clamp(16px, 4.8vw, 20px) !important;
    line-height: 1.32 !important;
    margin-top: 12px !important;
  }
}
/* End DESIGN.md small-screen static flow */
/* Style specs tablet placement */
@media (min-width: 981px) and (max-width: 1500px) {
  .style-showcase {
    display: grid !important;
    grid-template-columns: minmax(430px, 47%) minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    align-items: start !important;
    column-gap: clamp(34px, 5vw, 80px) !important;
    row-gap: clamp(24px, 3.2vw, 44px) !important;
    min-height: clamp(760px, 76vw, 980px) !important;
    padding: clamp(74px, 8vw, 118px) var(--gutter) clamp(78px, 8vw, 120px) !important;
  }
  .style-content {
    position: relative !important;
    z-index: 2 !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    max-width: 650px !important;
    padding: 0 !important;
  }
  .style-card-grid {
    max-width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: clamp(22px, 3vw, 34px) !important;
  }
  .style-specs {
    position: relative !important;
    z-index: 3 !important;
    grid-column: 1 !important;
    grid-row: 2 !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 650px !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(14px, 1.8vw, 24px) !important;
    padding: clamp(22px, 2.4vw, 30px) clamp(22px, 2.8vw, 36px) !important;
    border-radius: 20px !important;
    background: rgba(255, 255, 255, .86) !important;
    border: 1px solid rgba(210, 226, 238, .95) !important;
    box-shadow: 0 18px 44px rgba(51, 92, 122, .12) !important;
    backdrop-filter: blur(16px) !important;
  }
  .style-spec {
    min-width: 0 !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 10px !important;
    white-space: normal !important;
  }
  .style-spec strong {
    font-size: clamp(20px, 2.1vw, 28px) !important;
    line-height: 1.05 !important;
    overflow-wrap: anywhere !important;
  }
  .style-spec small,
  .style-spec em {
    font-size: clamp(10px, .95vw, 12px) !important;
    line-height: 1.25 !important;
  }
  .style-model-bg {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: right top !important;
  }
}
@media (max-width: 980px) {
  .style-specs {
    position: relative !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    top: auto !important;
    width: auto !important;
    max-width: none !important;
    margin: clamp(22px, 5vw, 34px) var(--gutter) 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
}
/* End style specs tablet placement */
/* Style specs tablet vertical layout */
@media (min-width: 981px) and (max-width: 1500px) {
  .style-specs {
    grid-template-columns: 1fr !important;
    align-content: start !important;
    justify-items: start !important;
    gap: clamp(14px, 1.7vw, 20px) !important;
    min-height: clamp(164px, 14vw, 230px) !important;
    padding: clamp(24px, 2.6vw, 34px) clamp(26px, 3vw, 42px) !important;
  }
  .style-spec {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: clamp(44px, 4.4vw, 62px) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: clamp(14px, 1.7vw, 22px) !important;
    justify-items: start !important;
  }
  .style-spec .spec-icon {
    width: clamp(40px, 4vw, 56px) !important;
    height: clamp(40px, 4vw, 56px) !important;
    align-self: center !important;
  }
  .style-spec > div {
    min-width: 0 !important;
    display: block !important;
    text-align: left !important;
  }
  .style-spec small,
  .style-spec em {
    display: block !important;
    font-size: clamp(12px, 1.1vw, 15px) !important;
    line-height: 1.28 !important;
    white-space: normal !important;
  }
  .style-spec strong {
    display: block !important;
    font-size: clamp(25px, 2.7vw, 36px) !important;
    line-height: 1.02 !important;
    white-space: normal !important;
  }
}
/* End style specs tablet vertical layout */