/* Hero */
.v2-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: #fff;
}

.v2-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  background: #fff;
  will-change: transform;
  cursor: pointer;
}

.v2-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.12);
  transition: opacity 0.45s var(--ease-out), transform 1.2s var(--ease-out);
}

.v2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.12) 36%,
    rgba(0, 0, 0, 0.58) 100%
  );
  pointer-events: none;
}

.v2-hero-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  pointer-events: none;
}

.hero-shop-nav {
  width: 100%;
  min-height: 52px;
  display: grid;
  grid-template-columns: 0.8fr auto 0.8fr;
  align-items: center;
  gap: 16px;
  padding: calc(8px + env(safe-area-inset-top, 0)) var(--gutter) 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  pointer-events: auto;
  transition:
    background-color 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    color 0.35s var(--ease-out);
}

.hero-shop-nav.is-nav-hidden {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.hero-shop-nav.is-nav-solid {
  background: rgba(0, 0, 0, 0.88);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.hero-nav-logo {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.hero-nav-logo img {
  display: block;
  width: clamp(110px, 12vw, 148px);
  height: auto;
}

.v2-hero-nav {
  justify-self: center;
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
}

.v2-hero-nav a,
.hero-shop-nav .hero-nav-action {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.v2-hero-nav a,
.hero-nav-action,
.hero-link,
.catalog-card-copy a,
.catalog-card-copy button,
.catalog-card-action,
.v2-card-detail,
.scenario-switcher button,
.final-submit {
  position: relative;
  border: 0;
  background: transparent;
  color: currentColor;
  font-size: var(--type-small);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.v2-hero-nav a::after,
.hero-nav-action::after,
.hero-link::after,
.catalog-card-copy a::after,
.catalog-card-copy button::after,
.catalog-card-action::after,
.v2-card-detail::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.v2-hero-nav a:hover::after,
.hero-nav-action:hover::after,
.hero-link:hover::after,
.catalog-card-copy a:hover::after,
.catalog-card-copy button:hover::after,
.catalog-card:hover .catalog-card-action::after,
.v2-card-detail:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-nav-action {
  justify-self: end;
  padding: 0;
}

.collection-hero-content {
  position: relative;
  grid-row: 2;
  z-index: 2;
  align-self: end;
  width: min(43vw, 590px);
  margin: 0 0 clamp(30px, 4vw, 56px) var(--gutter);
  padding-top: clamp(70px, 9vh, 128px);
  will-change: transform;
}

.collection-hero-content h1 {
  margin: 0;
  max-width: 570px;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--type-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

.collection-hero-content > p {
  margin: 26px 0 0;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--type-body);
  line-height: 1.52;
}

.collection-hero-content h1,
.collection-hero-content > p {
  transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out);
}

.collection-hero-content.is-changing h1,
.collection-hero-content.is-changing > p,
.v2-hero-media.is-changing img {
  opacity: 0;
  transform: translateY(8px);
}

.collection-hero-actions {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-link {
  padding: 0 0 3px;
}

.hero-link.primary {
  color: #fff;
}

.hero-link.secondary {
  color: rgba(255, 255, 255, 0.74);
}

.hero-carousel-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-carousel-controls button {
  width: 34px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: width 0.28s var(--ease-out), background 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.hero-carousel-controls button.is-active {
  width: 52px;
  background: #fff;
}

.hero-carousel-controls button:hover {
  transform: translateY(-1px);
}

/* Concept */
.concept-section {
  padding: clamp(66px, 9vw, 128px) 0 clamp(62px, 8vw, 110px);
  background: #fff;
}

.concept-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.7fr);
  gap: clamp(42px, 8vw, 128px);
  align-items: start;
}

.concept-heading-media {
  margin: clamp(28px, 3.5vw, 48px) 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-deep);
  aspect-ratio: 4 / 3;
}

.concept-heading-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.concept-copy {
  padding-top: 8px;
  color: var(--ink-soft);
  font-size: var(--type-body);
  line-height: 1.55;
}

.concept-copy p {
  margin: 0;
}

.concept-copy p + p {
  margin-top: 24px;
}

.concept-copy blockquote {
  margin: clamp(36px, 5vw, 70px) 0 0;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--manual-beige);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: var(--type-title);
  font-weight: 500;
  line-height: 1.42;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(70px, 10vw, 150px);
}

.benefit-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(34px, 7vw, 112px);
  align-items: end;
  margin-top: clamp(56px, 8vw, 112px);
}

.benefit-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(36px, 5vw, 72px);
}

.benefit-grid article {
  min-height: 238px;
  padding: clamp(22px, 2.5vw, 38px);
  background: var(--manual-gray);
  color: #fff;
}

.benefit-grid h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: var(--type-title);
  font-weight: 600;
  line-height: 1.14;
}

.benefit-grid p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

/* Collection */
.collection-photo-break {
  height: 100vh;
  min-height: 680px;
  background: var(--paper);
  overflow: hidden;
}

.collection-photo-break img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.v2-collection {
  padding: clamp(76px, 10vw, 148px) 0 clamp(86px, 12vw, 176px);
  background: #fff;
}

.collection-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
  gap: clamp(34px, 7vw, 112px);
  align-items: end;
}

.collection-intro .section-heading h2 {
  max-width: 560px;
  font-size: var(--type-heading);
  line-height: 1.04;
}

.collection-lede {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: var(--type-body);
  line-height: 1.55;
}

.catalog-section {
  margin-top: clamp(82px, 12vw, 168px);
}

.catalog-grid.v2-cards-row {
  width: 100%;
  margin-left: 0;
  margin-top: clamp(32px, 5vw, 56px);
  padding: 0 0 28px;
  overflow-x: visible;
  overflow-y: visible;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.catalog-grid.v2-cards-row::-webkit-scrollbar {
  display: none;
}

.v2-cards-row-inner {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  overflow: visible;
}

.catalog-card {
  min-width: 0;
  height: clamp(390px, 31vw, 500px);
  display: grid;
  grid-template-rows: auto 1fr auto;
  row-gap: 24px;
  padding: clamp(18px, 2.2vw, 32px);
  overflow: visible;
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out),
    border-color 0.3s var(--ease-out);
  will-change: transform;
}

.catalog-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.catalog-card:focus-visible {
  outline: 2px solid var(--manual-gray);
  outline-offset: 4px;
}

.catalog-card--featured {
  background: #fff;
}

.catalog-card figure {
  grid-row: 2;
  width: 100%;
  max-width: min(100%, 320px);
  height: clamp(190px, 17vw, 250px);
  margin: auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.catalog-card figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: transform 0.7s var(--ease-out);
}

.catalog-card:hover figure img {
  transform: scale(1.06);
}

.catalog-card-copy {
  display: contents;
}

.catalog-card-copy h4 {
  grid-row: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-title);
  font-weight: 600;
  line-height: 1.1;
}

.catalog-card-copy dl,
.product-card-copy dl,
.tech-spec-grid {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
}

.catalog-card .catalog-card-copy dl {
  display: none;
}

.catalog-card-copy dl div,
.product-card-copy dl div,
.tech-spec-grid div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.catalog-card-copy dt,
.product-card-copy dt,
.tech-spec-grid span {
  color: var(--ink-faint);
  font-size: var(--type-small);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.catalog-card-copy dd,
.product-card-copy dd,
.tech-spec-grid strong {
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--type-body);
  line-height: 1.45;
  font-weight: 500;
}

.catalog-card-copy a,
.catalog-card-copy button,
.catalog-card-action {
  grid-row: 3;
  margin-top: auto;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  color: var(--oak);
  letter-spacing: 0.02em;
  transition: gap 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

.catalog-card-copy a::after,
.catalog-card-copy button::after,
.catalog-card-action::after {
  display: none;
}

.catalog-card-copy a::before,
.catalog-card-copy button::before,
.catalog-card-action::before {
  content: "";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  background-color: var(--manual-gray);
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(#fff, #fff);
  background-size: 2px 12px, 12px 2px;
  background-position: center, center;
  background-repeat: no-repeat;
  transform-origin: center center;
  transition: transform 0.3s var(--ease-out);
}

.catalog-card-copy a:hover,
.catalog-card-copy button:hover,
.catalog-card:hover .catalog-card-action {
  gap: 18px;
  opacity: 0.9;
}

.catalog-card:hover .catalog-card-copy a::before,
.catalog-card:hover .catalog-card-copy button::before,
.catalog-card:hover .catalog-card-action::before {
  transform: rotate(90deg);
}

.v2-collection-controls {
  display: none;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.v2-collection-arrow {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.v2-collection-arrow:hover {
  background: var(--ink);
  transform: scale(1.08);
}

.v2-collection-arrow img {
  width: 24px;
  height: 24px;
  opacity: 0.9;
}

.v2-collection-arrow:hover img {
  filter: invert(1);
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 430px);
  gap: 1px;
  margin-top: clamp(84px, 12vw, 172px);
  background: var(--line);
  border: 1px solid var(--line);
}

.product-card-large,
.technical-panel {
  background: var(--paper);
}

.product-card-large {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(340px, 1fr);
  min-height: 620px;
}

.product-card-copy {
  padding: clamp(34px, 4vw, 60px);
  align-self: end;
}

.product-card-copy h3 {
  margin-top: 16px;
  font-size: var(--type-heading);
  line-height: 0.88;
}

.product-card-copy > p:not(.product-code) {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: var(--type-body);
  line-height: 1.55;
}

.v2-card-detail {
  margin-top: 34px;
  padding: 0;
  color: var(--ink);
}

.v2-card-plus {
  display: none;
}

.product-card-visual {
  margin: 0;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: clamp(28px, 4vw, 64px);
  background: #fff;
}

.product-card-visual img {
  width: min(88%, 600px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(22px 28px 24px rgba(23, 21, 17, 0.1));
}

.technical-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 44px);
}

.technical-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-heading);
  font-weight: 600;
  line-height: 1.02;
}

.technical-panel img {
  display: block;
  width: 100%;
  margin: 30px 0;
  background: #fff;
  border: 1px solid var(--line);
}

.technical-panel p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.modular-section {
  margin-top: clamp(86px, 12vw, 174px);
  padding-top: clamp(56px, 8vw, 100px);
  border-top: 1px solid var(--line);
}

.scenario-board {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.68fr);
  gap: clamp(38px, 7vw, 118px);
  align-items: center;
  margin-top: 42px;
}

.scenario-visual {
  margin: 0;
  display: grid;
  place-items: center;
  min-height: 620px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.scenario-visual img {
  width: min(82%, 720px);
  max-height: 560px;
  object-fit: contain;
}

.scenario-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.scenario-switcher button {
  padding: 0 0 7px;
  color: var(--ink-faint);
  border-bottom: 1px solid transparent;
}

.scenario-switcher button.is-active {
  color: var(--ink);
  border-bottom-color: currentColor;
}

.scenario-copy h3 {
  margin-top: clamp(40px, 6vw, 76px);
  font-size: var(--type-heading);
  line-height: 0.94;
}

.scenario-copy > p {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: var(--type-body);
  line-height: 1.6;
}

.compatibility-row {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.compatibility-row span:first-child {
  padding: 18px 0 8px;
  color: var(--ink-faint);
  font-size: var(--type-small);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.compatibility-row strong {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: var(--type-body);
  font-weight: 600;
}

.compatibility-icon {
  color: var(--oak) !important;
  padding: 0 !important;
  font-size: var(--type-body) !important;
  letter-spacing: 0 !important;
}

/* Showroom */
.v2-split {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: center;
  padding: clamp(78px, 11vw, 160px) var(--gutter);
  background: var(--charcoal);
  color: #fff;
}

.v2-split-copy {
  max-width: 650px;
}

.v2-split-copy h3 {
  margin-top: 18px;
  color: #fff;
  font-size: var(--type-heading);
  line-height: 0.98;
}

.v2-split-copy p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--type-body);
  line-height: 1.58;
}

.v2-split-copy blockquote {
  margin: 24px 0 0;
  padding: 0;
  color: #fff;
  font-size: var(--type-title);
  font-weight: 700;
  line-height: 1.12;
}

.showroom-reasons {
  margin-top: 28px;
  padding: 0;
}

.showroom-reasons article + article {
  margin-top: 28px;
}

.showroom-reasons h4 {
  margin: 0;
  color: #fff;
  font-size: var(--type-title);
  line-height: 1.08;
}

.showroom-reasons p {
  margin-top: 14px;
}

.split-eyebrow--spaced {
  margin-top: clamp(28px, 3.4vw, 46px) !important;
}

.v2-split-image-wrap {
  position: relative;
}

.showroom-image-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius);
}

.showroom-image-carousel .v2-split-image {
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.showroom-image-carousel.is-changing .v2-split-image {
  opacity: 0;
  transform: scale(1.02);
}

.showroom-slideshow-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.showroom-slideshow-arrow--prev {
  left: clamp(12px, 2vw, 22px);
}

.showroom-slideshow-arrow--next {
  right: clamp(12px, 2vw, 22px);
}

.showroom-slideshow-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.06);
}

.showroom-slideshow-arrow img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.showroom-slideshow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.showroom-slideshow-controls button {
  width: 34px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
  transition: width 0.28s var(--ease-out), background 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.showroom-slideshow-controls button.is-active {
  width: 52px;
  background: #fff;
}

.showroom-slideshow-controls button:hover {
  transform: translateY(-1px);
}

.v2-split-image {
  width: 100%;
  height: clamp(480px, 72vh, 900px);
  display: block;
  object-fit: cover;
}

