:root {
  --color-white: #dddddd;
  --color-red: #b36f2c;
  --color-bronze: #b36f2c;
  --color-black: #040020;
  --ease-slide: cubic-bezier(.19, 1, .22, 1);
  --hero-slide-interval: 4s;
  --hero-zoom-duration: 6.5s;
  --header-height: 88px;
  --metal-light-angle: 75deg;
  --bronze-gradient: linear-gradient(
    var(--metal-light-angle),
    #6f4116 0%,
    #8b571c 28%,
    #aa7934 46%,
    #9c6e2d 54%,
    #b36f2c 68%,
    #6f4516 100%
  );
  --bronze-shadow: rgba(179, 111, 44, .34);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--color-black);
  color: var(--color-white);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--color-black);
  color: var(--color-white);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1;
  background:
    /* radial-gradient(
      ellipse at left center,
      #11076b 0%,
      #11076b 0%,
      rgba(22, 0, 0, .32) 52%,
      transparent 76%
    ),
    linear-gradient(
      90deg,
      #11076b 0%,
      #11076b 0%,
      rgba(8, 0, 0, 0) 78%
    ), */
    linear-gradient(180deg, var(--color-black) 0%, var(--color-black) 100%);
  opacity: 0;
  transition: opacity 1.45s cubic-bezier(.22, 1, .36, 1);
  content: "";
  pointer-events: none;
  will-change: opacity;
}

body.is-lineup-bg-active::before {
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--header-height);
  padding: 24px clamp(24px, 5.8vw, 104px) 14px;
  pointer-events: none;
}

.site-header__brand,
.site-header__nav,
.site-header__toggle {
  pointer-events: auto;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  width: clamp(156px, 11.6vw, 224px);
}

.site-header__logo {
  display: block;
  width: 100%;
  height: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.6vw, 58px);
  margin-left: auto;
  text-transform: uppercase;
  font-size: clamp(12px, .78vw, 14px);
  font-weight: 700;
  letter-spacing: .12em;
}

.site-header__nav a {
  position: relative;
  padding: 8px 0;
  color: var(--color-white);
  transition: color .25s ease;
}

.site-header__nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(.2);
  transition: opacity .25s ease, transform .25s ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  color: var(--color-white);
}

.site-header__nav a:hover::after,
.site-header__nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header__nav .site-header__contact {
  min-width: 110px;
  padding: 8px 18px;
  border: 1px solid var(--color-red);
  border-radius: 999px;
  color: var(--color-red);
  text-align: center;
  transition: background-color .25s ease, color .25s ease, box-shadow .25s ease;
}

.site-header__nav .site-header__contact::after {
  display: none;
}

.site-header__nav .site-header__contact:hover,
.site-header__nav .site-header__contact:focus-visible {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 0 28px rgba(97, 71, 2, 0.35);
}

.site-header__toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--color-black);
  isolation: isolate;
}

.hero__slides,
.hero__slide,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__slides {
  z-index: -3;
}

.hero__slide {
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.1s ease;
}

.hero__slide.is-active {
  opacity: 1;
  animation: heroZoomOut var(--hero-zoom-duration) ease-out forwards;
}

@keyframes heroZoomOut {
  from {
    transform: scale(1.14);
  }

  to {
    transform: scale(1);
  }
}

.hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
  filter: brightness(42%);
}

.hero__slide--one img {
  object-position: 50% 50%;
}

.hero__slide--two img {
  object-position: 50% 50%;
}

.hero__slide--three img {
  object-position: 52% 50%;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .08) 0%,
      rgba(0, 0, 0, .03) 48%,
      rgba(0, 0, 0, .06) 100%
    ),
    linear-gradient(
      180deg,
      rgba(30, 30, 31, 0) 0%,
      rgba(30, 30, 31, .05) 45%,
      rgba(30, 30, 31, .55) 78%,
      var(--color-black) 100%
    );
}



.hero__content {
  position: absolute;
  z-index: 5;
  left: clamp(76px, 6vw, 116px);
  top: 34.8%;
  width: min(65vw, 1080px);
  transform: translateY(-20%);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 clamp(20px, 2vw, 26px);
  text-transform: uppercase;
  font-size: clamp(16px, 1.2vw, 24px);
  font-weight: 700;
  letter-spacing: .08em;
}

.hero__eyebrow span {
  width: 11px;
  height: 12px;
  background: var(--color-red);
  clip-path: polygon(0 0, 72% 0, 100% 50%, 72% 100%, 0 100%);
}

.hero h1 {
  max-width: 1080px;
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(58px, 5.45vw, 104px);
  font-weight: 00;
  line-height: 1.04;

}


.features-section h2,
.detail-section h2 {
  color: var(--color-white);
  background-image: linear-gradient(
    var(--metal-light-angle),
    #8f8f8f 0%,
    #a8a8a8 36%,
    #a8a8a8 43%,
    #f2f2f2 46%,
    #ebebeb 49%,
    #ffffff 58%,
    #eeeeee 61%,
    #a3a3a3 66%,
    #b5b5b5 78%,
    #8f8f8f 100%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;


}

.hero h1 {
  display: inline-block;
  width: fit-content;
  max-width: max-content;

  color: #f2f2f2;
  background-image: linear-gradient(
    var(--metal-light-angle),
    #8f8f8f 0%,
    #a8a8a8 36%,
    #a8a8a8 43%,
    #f2f2f2 46%,
    #ebebeb 49%,
    #ffffff 58%,
    #eeeeee 61%,
    #a3a3a3 66%,
    #b5b5b5 78%,
    #8f8f8f 100%
  );

  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;

  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;


}

.hero__lead {
  margin: clamp(16px, 1.8vw, 24px) 0 0;
  color: var(--color-white);;
  font-size: clamp(15px, 1.05vw, 22px);
  font-weight: 600;
  letter-spacing: .22em;
}

.hero__product {
  position: absolute;
  z-index: 4;
  right: clamp(118px, 10vw, 220px);
  top: 17.8%;
  width: clamp(260px, 20.5vw, 395px);
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, .5));
  transition: opacity .35s ease;
}

.hero__product.is-changing {
  opacity: 0;

}

.hero__product img {
  display: block;
  width: 100%;
  height: auto;
}





.hero__content,
.hero__product,
.subdials,
.hero__vertical,
.slide-indicator {
  opacity: 0;
  animation: heroPartsFadeIn 2.4s ease-out forwards;
}

@keyframes heroPartsFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.hero__product {
  position: absolute;
  z-index: 4;
  right: clamp(118px, 10vw, 220px);
  top: 17.8%;
  width: clamp(260px, 20.5vw, 395px);
  opacity: 0;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, .5));
  transition: opacity 1.6s cubic-bezier(.19, 1, .22, 1);
  animation: heroPartsFadeIn 2.4s ease-out .55s forwards;
}

.hero__product.is-changing {
  opacity: 0;
}









.slide-indicator {
  position: absolute;
  z-index: 8;
  top: 52%;
  left: clamp(28px, 2.1vw, 42px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateY(-50%);
}

.slide-indicator__dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition:
    height .58s var(--ease-slide),
    background-color .35s ease,
    border-color .35s ease,
    transform .35s ease;
}

.slide-indicator__dot:hover,
.slide-indicator__dot:focus-visible {
  transform: scale(1.18);
}

.slide-indicator__dot.is-active {
  height: 36px;
  background: #fff;
  border-color: #fff;
  transform: scale(1);
}

.subdials {
  position: absolute;
  z-index: 7;
  left: 50%;
  bottom: clamp(24px, 4.2vh, 48px);
  display: block;
  width: calc(var(--dial-size) * 2.34);
  height: calc(var(--dial-size) * 2);
  transform: translateX(-50%);
  pointer-events: none;
  --dial-size: clamp(116px, 9.4vw, 164px);
}

.subdial {
  position: absolute;
  width: var(--dial-size);
}

.subdial--minute {
  left: 50%;
  bottom: calc(var(--dial-size) * .12);
  transform: translateX(-50%);
}

.subdial--elapsed {
  top: 0;
  left: 0;
}

.subdial--day {
  top: 0;
  right: 0;
}

.subdial__face {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  color:  var(--color-white);
}

.subdial__face::before {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  content: "";
}

.subdial__ticks {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(255, 255, 255, .48) 0deg 1.6deg, transparent 1.6deg 9deg);
  opacity: .46;
  -webkit-mask: radial-gradient(circle, transparent 0 66%, #000 67% 70%, transparent 71%);
  mask: radial-gradient(circle, transparent 0 66%, #000 67% 70%, transparent 71%);
}

.subdial__number {
  position: absolute;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(11px, .78vw, 15px);
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .55);
}

.subdial__number--top {
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
}

.subdial__number--right {
  top: 50%;
  right: 14%;
  transform: translateY(-50%);
}

.subdial__number--bottom {
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
}

.subdial__number--left {
  top: 50%;
  left: 14%;
  transform: translateY(-50%);
}

.subdial__hand {
  position: absolute;
  inset: 0;
  transform: rotate(var(--angle, 0deg));
  transition: transform .5s var(--ease-slide);
}

.subdial--minute .subdial__hand,
.subdial--day .subdial__hand {
  transition: none;
}

.subdial__hand::before {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 2px;
  height: 32%;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 14px rgba(255, 255, 255, .32);
  content: "";
  transform: translateX(-50%);
}

.subdial__pin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .18), 0 0 14px rgba(255, 255, 255, .34);
  transform: translate(-50%, -50%);
}

.hero__vertical {
  position: absolute;
  z-index: 8;
  right: clamp(16px, 1.35vw, 28px);
  top: 50%;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(12px, .72vw, 14px);
  font-weight: 700;
  letter-spacing: .24em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: translateY(-50%);
}

.brand-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--color-black);
  color: var(--color-white);
  isolation: isolate;
}

.brand-section__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(420px, 520px) minmax(300px, 1fr);
  align-items: center;
  width: 100%;
  max-width: 1540px;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(92px, 9vh, 120px) clamp(40px, 6vw, 78px) clamp(54px, 7vh, 84px);
  column-gap: clamp(22px, 3.4vw, 52px);
}

.brand-section__lead {
  align-self: center;
  padding-top: clamp(32px, 6vh, 64px);
}

.brand-section__lead h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: .04em;
   white-space: nowrap;
}

.brand-section p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 3.5;
  letter-spacing: .08em;
}

.brand-section__copy {
  align-self: center;
  max-width: 430px;
  padding-top: clamp(16px, 4vh, 46px);
}

.brand-section__copy p + p {
  margin-top: 18px;
}

.brand-section__watch {
  position: relative;
  z-index: 2;
  align-self: center;
  display: flex;
  justify-content: center;
  height: min(72vh, 540px);
  overflow: hidden;
   --brand-watch-width: clamp(670px, 50vw, 830px);
  --brand-watch-y: 0px;
}

.brand-section__watch img {
  display: block;
  width: var(--brand-watch-width);
  height: auto;
  object-fit: contain;
  transform: translateY(var(--brand-watch-y));
  filter: drop-shadow(0 32px 38px rgba(0, 0, 0, .68));
}

.brand-marquee {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.brand-marquee__row {
  position: absolute;
  left: 0;
  width: max-content;
  opacity: .62;
}

.brand-marquee__row--top {
  top: clamp(76px, 9.4vh, 104px);
}

.brand-marquee__row--bottom {
   bottom: clamp(12px, 2vh, 28px);
}

.brand-marquee__track {
  display: flex;
  width: max-content;
  animation: brandMarquee 34s linear infinite;
}

.brand-marquee__row--bottom .brand-marquee__track {
  animation-direction: reverse;
  animation-duration: 38s;
}

.brand-marquee__track span {
  display: block;
  padding-right: .28em;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: clamp(112px, 13.8vw, 188px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: 0;
  color: transparent;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.13) 0 1.9px, transparent 2.1px);
  background-position: 0 0;
  background-size: 7px 7px;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}




@keyframes brandMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* 左から隠れていた文字がゆっくり見えてくる演出 */
.reveal-left-mask {
  display: block;
  overflow: hidden;
}

.reveal-left {
  display: inline-block;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}

/* brand-section が画面に入ったら発火 */
.brand-section.is-show .reveal-left {
  animation: revealFromLeft 2.4s cubic-bezier(.19, 1, .22, 1) forwards;
}

.brand-section.is-show .reveal-left-delay {
  animation-delay: .35s;
}

@keyframes revealFromLeft {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}





.features-section {
  position: relative;
  overflow: hidden;
  background: var(--color-black);
  color: var(--color-white);
}

.features-section__inner {
  display: flex;
  flex-direction: column;
  width: min(1160px, calc(100% - 88px));
  height: 108svh;
  margin: 0 auto;
  padding: clamp(80px, 9vh, 118px) 0 clamp(68px, 8vh, 98px);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 8px;
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .12em;
}

.section-eyebrow span {
  width: 9px;
  height: 10px;
  background: var(--color-red);
  clip-path: polygon(0 0, 72% 0, 100% 50%, 72% 100%, 0 100%);
}

.features-section h2 {
  flex-shrink: 0;
  margin: 0 0 28px;
  text-transform: uppercase;
  font-size: clamp(42px, 9vw, 68px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: .02em;
}

.feature-cards {
  display: flex;
  width: 100%;
  flex: 1;
  min-height: 0;
  overflow: visible;
  background: var(--color-black);
  isolation: isolate;
}

.feature-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  background: var(--color-black);
  transition: flex-grow .65s var(--ease-slide), transform .65s var(--ease-slide);
}

.feature-card + .feature-card {
  border-left: 1px solid var(--color-black);
}

.feature-card:hover,
.feature-card:focus-within {
  z-index: 4;
  flex-grow: 1.34;
   transform: none;
}

.feature-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  filter: grayscale(.08) brightness(.9);
  transform: scale(1.04);
  transition: transform .75s var(--ease-slide), opacity .45s ease, filter .45s ease;
  filter: brightness(50%);
}

.feature-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    var(--color-black);
  content: "";
  pointer-events: none;
    opacity: .2;
  
}

.feature-card:hover .feature-card__bg,
.feature-card:focus-within .feature-card__bg {
  opacity: 1;
  filter: grayscale(0) brightness(1.05);
  transform: scale(1);
    filter: brightness(70%);
}

.feature-card__body {
  position: relative;
  z-index: 3;
  width: min(250px, 76%);
  padding: clamp(148px, 15vw, 185px) 0 0 clamp(24px, 2vw, 34px);
  transition: transform .65s var(--ease-slide);
}

.feature-card:hover .feature-card__body,
.feature-card:focus-within .feature-card__body {
  transform: translateX(-12px);
}

.feature-card h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .58);
}

.feature-card p {
  margin: 0;
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  line-height: 2.05;
  letter-spacing: .03em;
  text-shadow: 0 2px 9px rgba(0, 0, 0, .62);
}

.feature-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
    min-width: auto;
  height: 30px;
  padding: 0 16px;
  margin-top: 28px;
  border: 1px solid rgba(255, 255, 255, .58);
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
  transition: border-color .25s ease, background-color .25s ease;
}

.feature-card a:hover,
.feature-card a:focus-visible {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, .1);
}

.feature-card__watch {
  position: absolute;
  z-index: 2;
  right: -24%;
  bottom: 30%;
  width: min(58%, 310px);
  max-width: none;
  height: auto;
  filter: drop-shadow(0 26px 28px rgb(0, 0, 0));
  transition: right .72s var(--ease-slide), transform .72s var(--ease-slide), width .72s var(--ease-slide);
}

.feature-card:hover .feature-card__watch,
.feature-card:focus-within .feature-card__watch {
  right: -8%;
  transform: translateX(-12px);
}


.features-section__inner {
  display: flex;
  flex-direction: column;
  width: min(1680px, calc(100% - 44px));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(40px, 5vh, 64px) 0 clamp(32px, 4vh, 48px);
}

.features-section h2 {
  flex-shrink: 0;
  margin: 0 0 clamp(28px, 3.2vh, 42px);
  text-transform: uppercase;
  font-size: clamp(42px, 9vw, 68px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: .02em;
}

.feature-cards {
  display: flex;
  width: 100%;
  height: clamp(620px, 72vh, 760px);
  overflow: visible;
  background: #050505;
  isolation: isolate;
}

.feature-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #101010;
  transition: flex-grow .65s var(--ease-slide), transform .65s var(--ease-slide);
}














.detail-section {
  position: relative;
  height: 460svh;
  background: var(--color-black);
  color: var(--color-white);
}

.detail-section__sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  overflow: hidden;
  background: var(--color-black);
}

.detail-section__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: min(1160px, calc(100% - 90px));
  height: 100svh;
  margin: 0 auto;
  padding: clamp(56px, 6.5vh, 78px) 0 clamp(30px, 4vh, 44px);
}

.detail-section h2 {
  position: relative;
  z-index: 3;
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(42px, 9vw, 68px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .01em;
}

.detail-section__bg {
  position: absolute;
  z-index: 0;
  top: clamp(76px, 9vh, 104px);
  right: max(-90px, -5vw);
  color: transparent;
  text-transform: uppercase;
  font-size: clamp(118px, 17vw, 230px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .11) 0 1.8px, transparent 2px);
  background-size: 7px 7px;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
  user-select: none;
}

.detail-stage {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 0;
  margin-top: clamp(20px, 3vh, 32px);
}

.detail-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 66%) minmax(280px, 1fr);
  align-items: start;
  gap: clamp(32px, 4.4vw, 64px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .72s ease, visibility .72s ease;
}

.detail-panel.is-active {
  opacity: 1;
  visibility: visible;
}

.detail-panel__media {
  position: relative;
  width: 600px;
  height: 400px;
}

.detail-panel__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.detail-panel__media--drawing img {
  object-position: center center;
  filter: contrast(1.08) brightness(.92);
}

.detail-panel__media--scene img {
  object-fit: cover;
  object-position: center;
}

.detail-panel__copy {
  max-width: 440px;
}

.detail-panel__point {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 20px 0 40px;
  text-transform: uppercase;
}

.detail-panel__point span {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
}

.detail-panel__point strong {
  color: var(--color-red);
  font-size: 120px;
  font-weight: 300;
  line-height: .8;
  letter-spacing: 0;
  font-family: "Barlow Condensed", sans-serif;
  
}

.detail-panel h3 {
  margin: 0 0 22px;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 900;
  line-height: 1.5;
}

.detail-panel__copy > p:not(.detail-panel__point) {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 2.05;
  letter-spacing: .04em;
}

.lineup-section {
  position: relative;
  overflow: hidden;
  background: transparent;
  color: var(--color-white);
}

.lineup-section__inner {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 84px));
  margin: 0 auto;
  padding: clamp(76px, 8vh, 112px) 0 clamp(58px, 7vh, 86px);
  opacity: 0;
  transform: translate(-24px, -18px);
}

.lineup-section__bg {
  position: absolute;
  z-index: 2;
  top: clamp(76px, 9vh, 104px);
  right: max(-90px, -5vw);
  color: transparent;
  text-transform: uppercase;
  font-size: clamp(118px, 17vw, 230px);
  font-weight: 900;
  line-height: .8;
  letter-spacing: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transform: translate(-20px, -14px);

  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, .11) 0 1.8px,
    transparent 2px
  );
  background-size: 7px 7px;
  background-position: 0 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lineup-section.has-lineup-revealed .lineup-section__inner,
.lineup-section.has-lineup-revealed .lineup-section__bg {
  animation: lineupFadeFromTopLeft 1.1s cubic-bezier(.19, 1, .22, 1) forwards;
}

.lineup-section.has-lineup-revealed .lineup-section__bg {
  animation-delay: .08s;
}

.lineup-section h2,
.lineup-section h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .01em;
}

.lineup-section h3 {
  margin-top: clamp(78px, 9vh, 112px);
}

.lineup-section__subtitle {
  margin: 14px 0 28px;
  color: var(--color-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
}

.lineup-row {
  position: relative;
}

.lineup-row__grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 4);
  gap: 12px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.lineup-row__grid::-webkit-scrollbar {
  display: none;
}

.lineup-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 292px;
  padding: 20px 18px 18px;
  background: #ffffffd0;
  overflow: hidden;
  transition: transform .35s ease, background-color .35s ease;
  scroll-snap-align: start;
}

.lineup-card:hover {
  transform: translateY(-4px);

}

.lineup-card:focus-visible {
  outline: 1px solid rgba(255, 255, 255, .86);
  outline-offset: 4px;
}

.lineup-card span {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 3px 8px 4px;
  border: 1px solid var(--color-red);
  color: var(--color-red);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}

.lineup-card img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 18px auto 10px;
  
  transform: scale(1.12);
  transform-origin: center bottom;
  transition: transform .35s ease;
}

.lineup-card:hover img {
  transform: scale(1.17);
}

.lineup-card p {
  margin: 0;
  text-align: center;
  color: var(--color-black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}





.lineup-row__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
   width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-red);
  color: var(--color-white);
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .35);
  transition:
    transform .25s ease,
    background-color .25s ease,
    box-shadow .25s ease,
    opacity .25s ease;
}

.lineup-row__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
   font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: var(--color-white);
  transform: translate(-50%, -54%);
}

.lineup-row__arrow::after {
  display: none;
}

.lineup-row__arrow--prev {
    left: -50px;
}

.lineup-row__arrow--prev::before {
  content: "←";
}

.lineup-row__arrow--next {
  right: -50px;
}

.lineup-row__arrow--next::before {
  content: "→";
}

.lineup-row__arrow:hover,
.lineup-row__arrow:focus-visible {
  background: var(--color-red);
  color: var(--color-white);
  box-shadow: 0 18px 34px rgba(149, 95, 40, .32);
}

.lineup-row__arrow--prev:hover,
.lineup-row__arrow--prev:focus-visible {
  transform: translateY(-50%) translateX(-2px);
}

.lineup-row__arrow--next:hover,
.lineup-row__arrow--next:focus-visible {
  transform: translateY(-50%) translateX(2px);
}


.lineup-row__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-red);
  border-radius: 50%;
  background: transparent;
  color: var(--color-red);
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: none;
  transition:
    transform .25s ease,
    background-color .25s ease,
    border-color .25s ease,
    color .25s ease,
    opacity .25s ease;
}

.lineup-row__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: var(--color-red);
  transform: translate(-50%, -54%);
}

.lineup-row__arrow:hover,
.lineup-row__arrow:focus-visible {
  background: transparent;
  color: var(--color-red);
  border-color: var(--color-red);
  box-shadow: none;
}

.lineup-row__arrow:hover::before,
.lineup-row__arrow:focus-visible::before {
  color: var(--color-red);
}





.lineup-row__pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.lineup-row__pager button {
  position: relative;
  width: 24px;
  height: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.lineup-row__pager button::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .32);
  content: "";
  transform: translateY(-50%);
  transition: background-color .25s ease, opacity .25s ease, transform .25s ease;
}

.lineup-row__pager button.is-active::before,
.lineup-row__pager button:hover::before,
.lineup-row__pager button:focus-visible::before {
  background: rgba(255, 255, 255, .88);
  transform: translateY(-50%) scaleX(1.14);
}

@keyframes lineupFadeFromTopLeft {
  0% {
    opacity: 0;
    transform: translate(-24px, -18px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media (max-width: 1320px) {
  .site-header__nav {
    gap: 28px;
    font-size: 12px;
  }

  .hero__content {
    width: min(68vw, 900px);
  }

  .hero h1 {
    font-size: clamp(48px, 5.7vw, 78px);
  }

  .hero__product {
    right: 64px;
    width: clamp(250px, 24vw, 340px);
  }

  .brand-section__inner {
    grid-template-columns: minmax(220px, 1fr) minmax(380px, 480px) minmax(260px, 1fr);
    column-gap: 4px;
  }

  .brand-section__watch {
    height: min(76vh, 510px);
     --brand-watch-width: clamp(670px, 50vw, 830px);
    --brand-watch-y: 0px;

  }

  .brand-marquee__track span {
    font-size: clamp(96px, 13vw, 150px);
  }

  .features-section__inner {
    width: min(1100px, calc(100% - 64px));
  }

  .feature-card__body {
    width: min(226px, 74%);
    padding-top: 158px;
  }

  .feature-card__watch {
    width: min(64%, 280px);
  }

  .detail-section__inner {
    width: min(1100px, calc(100% - 72px));
  }

  .detail-panel {
    grid-template-columns: minmax(0, 60%) minmax(270px, 1fr);
    gap: 34px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 82px;
  }

  .site-header {
    isolation: isolate;
    min-height: var(--header-height);
    padding: 22px 22px 14px;
  }

  .site-header::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      radial-gradient(circle, rgba(255, 255, 255, .11) 0 1px, transparent 1.25px),
      linear-gradient(180deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .82) 58%, rgba(0, 0, 0, .36) 100%);
    background-size: 8px 8px, 100% 100%;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
    content: "";
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .32s ease, transform .32s ease;
  }

  .site-header.is-past-hero::before,
  .site-header.is-open::before {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header__brand,
  .site-header__nav,
  .site-header__toggle {
    position: relative;
    z-index: 1;
  }

  .site-header__brand {
    width: 172px;
  }

  .site-header__toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    background: rgba(0, 0, 0, .22);
    color: var(--color-white);
    cursor: pointer;
  }

  .site-header__toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform .25s ease;
  }

  .site-header__toggle span:first-child {
    transform: translateY(-4px);
  }

  .site-header__toggle span:last-child {
    transform: translateY(4px);
  }

  .site-header.is-open .site-header__toggle span:first-child {
    transform: rotate(45deg);
  }

  .site-header.is-open .site-header__toggle span:last-child {
    transform: rotate(-45deg);
  }

  .site-header__nav {
    position: fixed;
    top: 72px;
    right: 18px;
    display: grid;
    width: min(320px, calc(100vw - 36px));
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(0, 0, 0, .86);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .46);
    gap: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    visibility: hidden;
  }

  .site-header.is-open .site-header__nav {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .site-header__nav a {
    padding: 13px 0;
    font-size: 14px;
  }

  .site-header__nav .site-header__contact {
    width: 100%;
    margin-top: 8px;
  }






@media (max-width: 920px) {
  .site-header {
    isolation: isolate;
    overflow: visible;
  }

  .site-header::before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 150px;
    z-index: 0;
    content: "";
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .32s ease, transform .32s ease;
    box-shadow: none;

    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 36%,
      rgba(0, 0, 0, .92) 58%,
      rgba(0, 0, 0, .68) 78%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .site-header.is-past-hero::before,
  .site-header.is-open::before {
    opacity: 1;
    transform: translateY(0);
  }
}









  

  .hero__content {
    left: 56px;
    top: 27.5%;
    width: calc(100vw - 86px);
  }

  .hero__eyebrow {
    margin-bottom: 14px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: clamp(42px, 11vw, 72px);
    line-height: 1.02;
  }

  .hero__lead {
    max-width: 540px;
    font-size: 14px;
    margin-top: 14px;
    line-height: 1.9;
  }

  .hero__product {
    right: -28px;
    top: auto;
    bottom: 25%;
    width: min(42vw, 300px);
    opacity: .94;
  }

  .slide-indicator {
    left: 22px;
    display: none;
  }

  .subdials {
    bottom: 28px;
    --dial-size: clamp(88px, 23vw, 122px);
  }

  .subdial--minute {
    transform: translateX(-50%);
  }

  .hero__vertical {
    right: 14px;
    font-size: 12px;
  }

  .brand-section__inner {
    grid-template-columns: 1fr;
    align-content: center;
    min-height: auto;
    padding: 104px 40px 80px;
    row-gap: 34px;
  }

  .brand-section__lead {
    padding-top: 20px;
  }

  .brand-section__lead h2 {
    font-size: clamp(24px, 5.6vw, 34px);
  }

  .brand-section__watch {
    justify-self: center;
    order: 2;
    width: min(560px, 82vw);
    height: 540px;
    --brand-watch-width: min(560px, 86vw);
    --brand-watch-y: 8px;
  }

  .brand-section__copy {
    order: 3;
    max-width: 560px;
    padding-top: 0;
  }

  .brand-marquee__row--top {
    top: 88px;
  }

  .brand-marquee__track span {
    font-size: clamp(82px, 18vw, 132px);
  }

  .features-section__inner {
    width: calc(100% - 48px);
    height: auto;
    padding: 82px 0 74px;
  }

  .features-section h2 {
    font-size: clamp(42px, 9vw, 68px);
  }

  .feature-cards {
    display: grid;
    height: auto;
    gap: 14px;
    background: transparent;
  }

  .feature-card {
    min-height: 360px;
  }

  .feature-card:hover,
  .feature-card:focus-within {
    transform: translateX(0);
  }

  .feature-card__body {
    width: min(330px, 72%);
    padding: 116px 0 0 28px;
  }

  .feature-card:hover .feature-card__body,
  .feature-card:focus-within .feature-card__body {
    transform: translateX(-8px);
  }

  .feature-card__watch {
    right: -18%;
    bottom: -24%;
    width: min(48%, 230px);
  }

  .feature-card:hover .feature-card__watch,
  .feature-card:focus-within .feature-card__watch {
    right: 5%;
  }

  .detail-section {
    height: 470svh;
  }

  .detail-section__inner {
    width: calc(100% - 48px);
    padding: 84px 0 64px;
  }

  .detail-section h2 {
    font-size: clamp(40px, 8vw, 60px);
  }

  .detail-section__bg {
    top: 118px;
    right: -110px;
    font-size: clamp(110px, 26vw, 180px);
  }

  .detail-stage {
    flex: none;
    height: 68vh;
    min-height: 560px;
    margin-top: 28px;
  }

  .detail-panel {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 26px;
  }

  .detail-panel__media {
    height: min(34vh, 280px);
  }

  .detail-panel__copy {
    max-width: 620px;
  }

  .lineup-section__inner {
    width: calc(100% - 48px);
  }

  .lineup-row__grid {
    display: flex;
    gap: 12px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .lineup-row__grid::-webkit-scrollbar {
    display: none;
  }

  .lineup-card {
    min-width: 210px;
    min-height: 292px;
    scroll-snap-align: start;
  }

  .lineup-row__arrow {
    display: block;
  }

  .lineup-row__arrow--prev {
    left: 8px;
  }

  .lineup-row__arrow--next {
    right: 8px;
  }
}

@media (max-width: 560px) {
  :root {
    --metal-light-angle: 10deg;
  }

  .hero {
    min-height: 100svh;
    background: var(--color-black);
  }

  .hero__slides {
    top: 0;
    bottom: auto;
    height: min(72svh, 560px);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 62%,
      rgba(0, 0, 0, .78) 80%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 62%,
      rgba(0, 0, 0, .78) 80%,
      transparent 100%
    );
  }

  .hero__slide.is-active {
    animation: heroMobileZoomOut var(--hero-zoom-duration) ease-out forwards;
  }

  .hero__slide img {
    height: 100%;
    object-fit: cover;
  }

  .hero__slide--one img,
  .hero__slide--two img,
  .hero__slide--three img {
    object-position: 46% 42%;
  }

@media (max-width: 560px) {
  .hero__shade {
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, .18) 0%,
        rgba(0, 0, 0, .04) 54%,
        rgba(0, 0, 0, .14) 100%
      ),
      linear-gradient(
        180deg,
        rgba(4, 0, 32, 0) 0%,
        rgba(4, 0, 32, .08) 40%,
        rgba(4, 0, 32, .44) 68%,
        rgba(4, 0, 32, .86) 86%,
        var(--color-black) 100%
      );
  }
}

  .hero__content {
    left: 28px;
    top: clamp(288px, 46.5svh, 328px);
    width: calc(100vw - 56px);
    transform: none;
  }

  .hero__eyebrow {
    gap: 7px;
    margin-bottom: 13px;
    font-size: 13px;
    letter-spacing: .06em;
  }

  .hero__eyebrow span {
    width: 9px;
    height: 10px;
  }

  .hero h1 {
    font-size: clamp(40px, 8.2vw, 48px);
    line-height: 1.2;
  }

  .hero__lead {
    max-width: 310px;
    margin-top: 12px;
    font-size: clamp(11px, 3.15vw, 13px);
    line-height: 1.75;
    letter-spacing: .09em;
  }

  .hero__product {
    top: clamp(76px, 14svh, 108px);
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(56vw, 220px);
    opacity: .96;
    transform: translateX(-50%);
  }

  .slide-indicator {
    top: 37%;
    right: 18px;
    left: auto;
    display: flex;
  }

  .subdials {
    top: clamp(514px, 69svh, 558px);
    bottom: auto;
    --dial-size: 82px;
  }

  .subdial__face::before,
  .subdial__ticks {
    opacity: .34;
  }

  .subdial__number {
    font-size: 8px;
    opacity: .64;
  }

  .subdial__hand::before {
    height: 30%;
    box-shadow: 0 0 10px rgba(255, 255, 255, .22);
  }

  .subdial__pin {
    width: 5px;
    height: 5px;
  }

  .hero__vertical {
    display: none;
  }

  @keyframes heroMobileZoomOut {
    from {
      transform: scale(1.05);
    }

    to {
      transform: scale(1);
    }
  }

  @media (max-height: 620px) {
    .hero__content {
      top: clamp(228px, 39.5svh, 250px);
    }

    .hero h1 {
      font-size: clamp(24px, 7vw, 28px);
    }

    .hero__lead {
      margin-top: 8px;
      font-size: 10px;
      line-height: 1.55;
    }

    .hero__product {
      top: 58px;
      width: min(46vw, 176px);
    }

    .subdials {
      top: clamp(418px, 74svh, 446px);
      --dial-size: clamp(58px, 12svh, 70px);
    }
  }

  .brand-section__inner {
    padding: 96px 30px 66px 24px;
    row-gap: 26px;
  }

  .brand-section__lead h2 {
    font-size: 32px;
  }

  .brand-section p {
    font-size: 14px;
    line-height: 2.35;
  }

  .brand-section__watch {
    width: min(410px, 90vw);
    height: 430px;
    --brand-watch-width: min(410px, 92vw);
    --brand-watch-y: 6px;
  }

  .brand-section__watch img {
    width: var(--brand-watch-width);
    
  }

  .brand-marquee__track span {
    font-size: 78px;
  }


.reveal-left-mask {
  width: 100%;
  overflow: visible;
}









  

  .features-section__inner {
    width: 100%;
    padding: 64px 0 48px;
  }

  .features-section .section-eyebrow,
  .features-section h2 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .features-section h2 {
    margin-bottom: 22px;
    font-size: 38px;
    line-height: 1.03;
  }

  .feature-cards {
    width: 100vw;
    gap: 0;
  }

  .feature-card {
    width: 100vw;
    min-height: clamp(400px, 132vw, 480px);
    transition: none;
  }

  .feature-card + .feature-card {
    border-left: 0;
  }

  .feature-card:hover,
  .feature-card:focus-within {
    z-index: auto;
    flex-grow: 1;
    transform: none;
  }

  .feature-card__bg {
    opacity: .85;
    filter: grayscale(.08) brightness(.9);
    transform: scale(1);
    transition: none;
  }

  .feature-card:hover .feature-card__bg,
  .feature-card:focus-within .feature-card__bg {
    opacity: .85;
    filter: grayscale(.08) brightness(.9);
    transform: scale(1);
  }

  .feature-card__body {
    width: min(218px, 69vw);
    padding: clamp(118px, 38vw, 142px) 0 0 20px;
    transition: none;
  }

  .feature-card:hover .feature-card__body,
  .feature-card:focus-within .feature-card__body {
    transform: none;
  }

  .feature-card h3 {
    font-size: 22px;
  }

  .feature-card p {
    font-size: 12px;
  }

  .feature-card__watch {
    right: -20%;
    bottom: 56px;
    width: min(74vw, 250px);
    transition: none;
  }

  .feature-card:hover .feature-card__watch,
  .feature-card:focus-within .feature-card__watch {
    right: -20%;
    transform: none;
  }

  .feature-card a {
    transition: none;
  }

  .feature-card a:hover,
  .feature-card a:focus-visible {
    border-color: rgba(255, 255, 255, .58);
    background: transparent;
  }

  .detail-section__inner {
    width: calc(100% - 32px);
    padding: 72px 0 54px;
  }

  .detail-section {
    height: auto;
    overflow: hidden;
  }

  .detail-section__sticky {
    position: relative;
    top: auto;
    min-height: auto;
    overflow: visible;
  }

  .detail-section__inner {
    height: auto;
  }

  .detail-section h2 {
    font-size: 38px;
    line-height: 1.05;
  }

  .detail-section__bg {
    top: 108px;
    right: -24px;
    font-size: 88px;
  }

  .detail-stage {
    display: grid;
    gap: 72px;
    height: auto;
    min-height: 0;
    margin-top: 34px;
  }

  .detail-panel {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    visibility: visible;
  }

  .detail-stage .detail-panel {
    opacity: 0;
    transform: translateY(34px);
    transition:
      opacity .82s cubic-bezier(.19, 1, .22, 1),
      transform .82s cubic-bezier(.19, 1, .22, 1);
  }

  .detail-stage .detail-panel.is-mobile-detail-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .detail-panel__media {
    width: 100%;
    height: clamp(210px, 62vw, 280px);
    overflow: hidden;
  }

  .detail-panel__copy {
    max-width: none;
    overflow-wrap: anywhere;
  }

  .detail-panel__point {
    margin: 6px 0 18px;
  }

  .detail-panel__point strong {
    font-size: 58px;
  }

  .detail-panel h3 {
    font-size: 20px;
  }

  .detail-panel__copy > p:not(.detail-panel__point) {
    font-size: 13px;
  }

  .lineup-section__inner {
    width: calc(100% - 32px);
    padding: 72px 0 58px;
  }

  .lineup-section__bg {
    top: 34px;
    right: -26px;
    font-size: 82px;
  }

  .lineup-section h2,
  .lineup-section h3 {
    font-size: 24px;
  }

  .lineup-section h3 {
    margin-top: 68px;
  }

  .lineup-row {
    padding-bottom: 62px;
  }

  .lineup-row__grid {
    --lineup-mobile-gap: 8px;
    --lineup-card-width: calc((100% - var(--lineup-mobile-gap)) / 2);
    display: grid;
    grid-template-columns: repeat(var(--lineup-column-count, 2), var(--lineup-card-width));
    grid-template-rows: repeat(2, clamp(244px, 64vw, 263px));
    grid-auto-flow: row;
    gap: 26px var(--lineup-mobile-gap);
    overflow-x: hidden;
    padding-bottom: 0;
    scroll-snap-type: x mandatory;
  }

  .lineup-card {
    grid-column: var(--lineup-card-column, auto);
    grid-row: var(--lineup-card-row, auto);
    width: auto;
    min-width: 0;
    min-height: 0;
    padding: 18px 14px 16px;
    scroll-snap-align: none;
  }

  .lineup-card:nth-child(4n + 1) {
    scroll-snap-align: start;
  }

  .lineup-card span {
    top: 13px;
    left: 12px;
    padding: 4px 7px 3px;
    font-size: 8px;
  }

  .lineup-card img {
    width: 92%;
    max-width: 154px;
    margin: 18px auto 32px;
  }

  .lineup-card p {
    font-size: 12px;
  }

  .lineup-row__arrow {
    top: auto;
    bottom: 0;
    width: 36px;
    height: 36px;
    transform: none;
  }

  .lineup-row__arrow::before {
    font-size: 15px;
    transform: translate(-50%, -52%);
  }

  .lineup-row__arrow--prev {
    left: calc(50% - 46px);
  }

  .lineup-row__arrow--next {
    right: calc(50% - 46px);
  }

  .lineup-row__arrow--prev:hover,
  .lineup-row__arrow--prev:focus-visible {
    transform: translateX(-2px);
  }

  .lineup-row__arrow--next:hover,
  .lineup-row__arrow--next:focus-visible {
    transform: translateX(2px);
  }

  .lineup-row__pager {
    display: none;
  }
}

.image-loop-section {
  width: 100%;
  background: var(--color-black);
  padding: 80px 0;
  overflow: hidden;
}

.image-loop {
  width: 100%;
  overflow: hidden;
}

.image-loop__track {
  display: flex;
  width: max-content;
  animation: loop-slide 60s linear infinite;
}

.image-loop__track img {
  width: 520px;
  height: 360px;
  object-fit: cover;
  flex-shrink: 0;
    /* 画像を暗くする */
  filter: brightness(55%);
  opacity: .65;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 768px) {
  .image-loop-section {
    padding: 48px 0;
  }

  .image-loop__track img {
    width: 260px;
    height: 180px;
  }

  .image-loop__track {
    animation-duration: 18s;
  }
}






.site-footer__inner {
  position: relative;
  z-index: 2;
  width: min(1680px, calc(100% - 120px));
  min-height: 460px;
  margin: 0 auto;
  padding: 40px 0 54px;
}

.site-footer__logo {
  display: block;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(42px, 3.6vw, 64px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
}

.site-footer__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(34px, 3.2vw, 62px);
  margin-top: 56px;
}

.site-footer__nav a {
  color: var(--color-white);
  text-transform: uppercase;
  font-size: clamp(12px, .82vw, 15px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  transition: color .25s ease, opacity .25s ease;
}

.site-footer__nav-lineup {
  min-width: 120px;
  padding: 11px 24px 12px;
  border: 1px solid var(--color-red);
  border-radius: 999px;
  color: var(--color-red) !important;
  text-align: center;
}

.site-footer__bottom {
  position: absolute;
  right: 0;
  bottom: 54px;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 52px);
}

.site-footer__links a {
  color: var(--color-red);
  text-transform: uppercase;
  font-size: clamp(12px, .82vw, 15px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}

.site-footer__pagetop {
  position: absolute;
  right: 18px;
  bottom: 48px;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  transition: background-color .25s ease, transform .25s ease;
}

.site-footer__pagetop span {
  position: absolute;
  top: 52%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  transform: translate(-50%, -35%) rotate(45deg);
}

.site-footer__copyright {
  justify-self: end;
  margin: 0;
  color: rgba(255, 255, 255, .38);
  font-size: clamp(12px, .82vw, 15px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: .01em;
}

/* Product detail */
body.product-page {
  background: var(--color-black);
  color: var(--color-white);
}

body.product-page .site-header {
  isolation: isolate;
}

body.product-page .site-header::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  height: 108px;
  background: linear-gradient(180deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .7) 56%, rgba(0, 0, 0, 0) 100%);
  content: "";
  pointer-events: none;
}

body.product-page .site-header__brand,
body.product-page .site-header__nav,
body.product-page .site-header__toggle {
  position: relative;
  z-index: 1;
}

.product-detail {
  min-height: 100svh;
  padding: calc(var(--header-height) + 34px) 0 clamp(64px, 8vw, 104px);
  background: var(--color-black);
  color: var(--color-white);
}

.product-detail__inner {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .58);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
}

.product-breadcrumb a {
  color: inherit;
  transition: color .25s ease;
}

.product-breadcrumb a:hover,
.product-breadcrumb a:focus-visible {
  color: var(--color-red);
}

.product-breadcrumb span::before {
  margin-right: 10px;
  content: "/";
}

.product-detail__body {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(420px, 1.05fr);
  align-items: start;
  gap: clamp(42px, 6vw, 86px);
}

.product-gallery {
  position: sticky;
  top: calc(var(--header-height) + 20px);
  display: grid;
  gap: 26px;
}

.product-gallery__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  
  margin: 0;
}

.product-gallery__stage img {
  display: block;
  width: min(78%, 390px);
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, .68));
  transition: opacity .22s ease, transform .22s ease;
}

.product-gallery.is-changing .product-gallery__stage img {
  opacity: 0;
  transform: translateY(8px);
}

.product-gallery__arrow {
  position: absolute;
  top: 30%;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .58);
  cursor: pointer;
}

.product-gallery__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border-top: 1px solid currentColor;
  content: "";
  transition: color .25s ease, transform .25s ease;
}

.product-gallery__arrow--prev {
  left: -12px;
}

.product-gallery__arrow--prev::before {
  border-left: 1px solid currentColor;
  transform: translate(-35%, -50%) rotate(-45deg);
}

.product-gallery__arrow--next {
  right: -12px;
}

.product-gallery__arrow--next::before {
  border-right: 1px solid currentColor;
  transform: translate(-65%, -50%) rotate(45deg);
}

.product-gallery__arrow:hover,
.product-gallery__arrow:focus-visible {
  color: var(--color-red);
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(62px, 1fr));
  gap: 14px;
}

.product-gallery__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .22);
  background: #ffffffd0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .25s ease, opacity .25s ease, transform .25s ease;
}

.product-gallery__thumb:hover,
.product-gallery__thumb:focus-visible,
.product-gallery__thumb.is-active {
  border-color: rgba(255, 255, 255, .72);
}

.product-gallery__thumb:hover,
.product-gallery__thumb:focus-visible {
  transform: translateY(-2px);
}

.product-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.22);
}

.product-summary {
  padding-top: 6px;
}

.product-summary__series {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .48);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
}

.product-summary h1 {
  margin: 0;
  color: var(--color-white);
  
  font-size: clamp(42px, 5.2vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
}

.product-summary__price {
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.8;
}

.product-specs {
  display: grid;
  gap: 42px;
}

.product-specs__group h2,
.product-variations h2 {
  margin: 0 0 18px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .04em;
}

.product-specs dl {
  margin: 0;
}

.product-specs dl > div {
  display: grid;
  grid-template-columns: minmax(130px, .34fr) 1fr;
  gap: 24px;
  padding: 13px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .32);
}

.product-specs dt,
.product-specs dd {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: .03em;
  font-weight: 500;
}

.product-variations {
  margin-top: clamp(54px, 7vw, 80px);
}

.product-variations__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(86px, 1fr));
  gap: 10px;
}

.product-variation {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: #ffffffd0;
  transition: border-color .25s ease, transform .25s ease;
}

.product-variation:hover,
.product-variation:focus-visible,
.product-variation.is-active {
  border-color: rgba(255, 255, 255, .7);
}

.product-variation:hover,
.product-variation:focus-visible {
  transform: translateY(-2px);
}

.product-variation img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 920px) {
  .site-footer__inner {
    width: calc(100% - 48px);
    min-height: 500px;
    padding: 54px 0 52px;
  }

  .site-footer__logo {
    font-size: clamp(42px, 9vw, 68px);
  }

  .site-footer__nav {
    flex-wrap: wrap;
    gap: 24px 34px;
    margin-top: 52px;
  }

  .site-footer__bottom {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 110px;
  }

  .site-footer__links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 36px;
    order: 2;
  }

  .site-footer__pagetop {
    position: relative;
    inset: auto;
    justify-self: center;
    order: 1;
  }

  .site-footer__copyright {
    justify-self: center;
    order: 3;
    text-align: center;
  }

  .site-footer__pagetop span {
    top: 52%;
    left: 50%;
    transform: translate(-50%, -35%) rotate(45deg);
  }

  .product-detail {
    padding: calc(var(--header-height) + 20px) 0 72px;
  }

  .product-detail__inner {
    width: calc(100% - 44px);
  }

  .product-detail__body {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-gallery {
    position: relative;
    top: auto;
  }

  .product-gallery__stage {
    min-height: clamp(360px, 78vw, 500px);
  }

  .product-gallery__stage img {
    width: min(72%, 320px);
  }

  .product-gallery__arrow--prev {
    left: 0;
  }

  .product-gallery__arrow--next {
    right: 0;
  }

  .product-gallery__thumbs {
    gap: 10px;
  }

  .product-summary h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .product-variations__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-footer__inner {
    width: calc(100% - 32px);
    min-height: auto;
    padding: 48px 0 44px;
  }

  .site-footer__logo {
    font-size: 42px;
  }

  .site-footer__nav {
    display: grid;
    gap: 22px;
    margin-top: 42px;
    text-align: center;
  }

  .site-footer__nav-lineup {
    justify-self: center;
    min-width: 130px;
  }

  .site-footer__bottom {
    margin-top: 72px;
  }

  .site-footer__links {
    display: grid;
    gap: 20px;
    text-align: center;
  }

  .site-footer__pagetop {
    width: 54px;
    height: 54px;
  }

  .site-footer__copyright {
    font-size: 13px;
  }

  .product-detail__inner {
    width: calc(100% - 28px);
  }

  .product-breadcrumb {
    margin-bottom: 16px;
  }

  .product-gallery__stage {
    min-height: 334px;
  }

  .product-gallery__stage img {
    width: min(76%, 250px);
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-gallery__thumb {
    padding: 6px;
  }

  .product-specs dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 13px 0;
  }

  .product-specs dt,
  .product-specs dd {
    font-size: 13px;
  }

  .product-variations__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}





/* ===== リンクホバー専用カーソル：中央配置版 ===== */

.link-cursor {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 58px;
  height: 58px;
  border: 1px solid var(--color-white);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.85);
  transition:
    opacity .16s ease,
    transform .16s ease;
}

.link-cursor span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25px;
  height: 1px;
  background: var(--color-white);
  transform: translate(-50%, -50%) rotate(-38deg);
  transform-origin: center center;
}

.link-cursor span::after {
  position: absolute;
  right: -1px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  content: "";
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
}

.link-cursor.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
/* header / footer は普通の指カーソルに戻す */
.site-header a:hover,
.site-header button:hover,
.site-footer a:hover,
.site-footer button:hover {
  cursor: pointer;
}

/* header / footer 以外だけ、丸い矢印カーソル用に通常カーソルを消す */
@media (min-width: 921px) and (hover: hover) and (pointer: fine) {
  a:not(.site-header a):not(.site-footer a):hover,
  button:not(.site-header button):not(.site-footer button):hover {
    cursor: none;
  }
}

@media (max-width: 920px), (hover: none), (pointer: coarse) {
  .link-cursor {
    display: none;
  }
}



/* 左から隠れていた文字がゆっくり見えてくる演出 */
.reveal-left-mask {
  display: block;
  overflow: hidden;
}

.reveal-left {
  display: inline-block;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}

.brand-section.is-show .reveal-left,
.features-section.is-show .reveal-left,
.detail-section.is-show .reveal-left {
  animation: revealFromLeft 2.4s cubic-bezier(.19, 1, .22, 1) forwards;
}

@keyframes revealFromLeft {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}




.brand-section__lead .reveal-left-mask {
  width: max-content;
  max-width: none;
  overflow: visible;
}

@media (max-width: 560px) {
  .detail-section .reveal-left-mask {
    overflow: visible;
  }

  .detail-section h2 {
    margin-bottom: 22px;
    font-size: 38px;
    line-height: 1.03;
  }

  .detail-section h2.reveal-left {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@media (max-width: 920px) {
  .reveal-left,
  .detail-section h2.reveal-left {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transform: translateY(34px);
  }

  .brand-section.is-show .reveal-left,
  .features-section.is-show .reveal-left,
  .detail-section.is-show .reveal-left {
    animation: revealFromBottom 1.45s cubic-bezier(.19, 1, .22, 1) forwards;
  }

  .brand-section__watch img {
    opacity: 0;
    clip-path: inset(100% 0 0 0);
    transform: translateY(calc(var(--brand-watch-y) + 76px));
    will-change: opacity, clip-path, transform;
  }

  .brand-section.is-show .brand-section__watch img {
    animation: revealWatchFromBottom 1.45s cubic-bezier(.19, 1, .22, 1) .12s forwards;
  }

  .feature-card {
    opacity: 0;
    transform: translateX(-42px);
    will-change: opacity, transform;
  }

  .feature-card.is-feature-card-revealed {
    animation: featureCardFadeFromLeft 1s cubic-bezier(.19, 1, .22, 1) forwards;
  }

  @keyframes revealFromBottom {
    0% {
      opacity: 0;
      clip-path: inset(100% 0 0 0);
      transform: translateY(34px);
    }

    100% {
      opacity: 1;
      clip-path: inset(0 0 0 0);
      transform: translateY(0);
    }
  }

  @keyframes revealWatchFromBottom {
    0% {
      opacity: 0;
      clip-path: inset(100% 0 0 0);
      transform: translateY(calc(var(--brand-watch-y) + 76px));
    }

    100% {
      opacity: 1;
      clip-path: inset(0 0 0 0);
      transform: translateY(var(--brand-watch-y));
    }
  }

  @keyframes featureCardFadeFromLeft {
    0% {
      opacity: 0;
      transform: translateX(-42px);
    }

    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

/* Tablet only: keep PC and mobile rules untouched */
@media (min-width: 561px) and (max-width: 920px) {
  :root {
    --metal-light-angle: 10deg;
  }

  .site-header {
    padding: 24px 36px 16px;
  }

  .site-header__brand {
    width: 220px;
  }

  .site-header__toggle {
    width: 52px;
    height: 52px;
  }

  .site-header__toggle span {
    width: 22px;
    height: 2px;
  }

  .site-header__toggle span:first-child {
    transform: translateY(-5px);
  }

  .site-header__toggle span:last-child {
    transform: translateY(5px);
  }

  .site-header__nav {
    right: 34px;
    width: min(360px, calc(100vw - 68px));
  }

  .hero__slides {
    top: 0;
    bottom: auto;
    height: min(60svh, 560px);
    overflow: hidden;
  }

  .hero__content {
    left: 48px;
    top: clamp(430px, 54svh, 500px);
    width: calc(100vw - 96px);
    transform: none;
  }

  .hero__eyebrow {
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: clamp(42px, 7.4vw, 62px);
    line-height: 1;
  }

  .hero__lead {
    max-width: 500px;
    font-size: 14px;
    line-height: 1.85;
  }

  .hero__product {
    top: clamp(82px, 13svh, 118px);
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(42vw, 300px);
    transform: translateX(-50%);
  }

  .slide-indicator {
    top: 40%;
    right: 28px;
    left: auto;
    display: flex;
  }

  .subdials {
    bottom: 34px;
    --dial-size: clamp(86px, 15vw, 112px);
  }

  .hero__vertical {
    display: none;
  }

  .brand-section__inner {
    grid-template-columns: 1fr;
    align-content: center;
    min-height: auto;
    padding: 118px 48px 88px;
    row-gap: 34px;
  }

  .brand-section__lead {
    padding-top: 0;
  }

  .brand-section__lead h2 {
    font-size: clamp(30px, 5.2vw, 42px);
    line-height: 1.28;
    white-space: normal;
  }

  .brand-section p {
    max-width: 620px;
    font-size: 15px;
    line-height: 2.45;
  }

  .brand-section__watch {
    justify-self: center;
    order: 2;
    width: min(560px, 86vw);
    height: 520px;
    --brand-watch-width: min(560px, 90vw);
    --brand-watch-y: 6px;
  }

  .brand-section__copy {
    order: 3;
    max-width: 620px;
    padding-top: 0;
  }

  .brand-marquee__row--top {
    top: 92px;
  }

  .brand-marquee__track span {
    font-size: clamp(92px, 16vw, 128px);
  }

  .features-section__inner {
    width: 100%;
    height: auto;
    padding: 90px 0 74px;
  }

  .features-section .section-eyebrow,
  .features-section h2 {
    margin-left: 48px;
    margin-right: 48px;
  }

  .features-section h2 {
    margin-bottom: 28px;
    font-size: clamp(44px, 7vw, 60px);
    line-height: 1.02;
  }

  .feature-cards {
    display: grid;
    width: 100vw;
    height: auto;
    gap: 0;
    background: transparent;
  }

  .feature-card {
    width: 100vw;
    min-height: clamp(520px, 72vw, 640px);
    transition: none;
  }

  .feature-card + .feature-card {
    border-left: 0;
  }

  .feature-card:hover,
  .feature-card:focus-within {
    z-index: auto;
    flex-grow: 1;
    transform: none;
  }

  .feature-card__bg {
    opacity: .85;
    filter: grayscale(.08) brightness(.9);
    transform: scale(1);
    transition: none;
  }

  .feature-card:hover .feature-card__bg,
  .feature-card:focus-within .feature-card__bg {
    opacity: .85;
    filter: grayscale(.08) brightness(.9);
    transform: scale(1);
  }

  .feature-card__body {
    width: min(360px, 54vw);
    padding: clamp(172px, 27vw, 220px) 0 0 48px;
    transition: none;
  }

  .feature-card:hover .feature-card__body,
  .feature-card:focus-within .feature-card__body {
    transform: none;
  }

  .feature-card h3 {
    font-size: clamp(28px, 4.4vw, 36px);
  }

  .feature-card p {
    font-size: 14px;
  }

  .feature-card__watch {
    right: -10%;
    bottom: 0px;
    width: min(54vw, 380px);
    transition: none;
  }

  .feature-card:hover .feature-card__watch,
  .feature-card:focus-within .feature-card__watch {
    right: -10%;
    transform: none;
  }

  .feature-card a {
    transition: none;
  }

  .feature-card a:hover,
  .feature-card a:focus-visible {
    border-color: rgba(255, 255, 255, .58);
    background: transparent;
  }

  .detail-section {
    height: auto;
    overflow: hidden;
  }

  .detail-section__sticky {
    position: relative;
    top: auto;
    min-height: auto;
    overflow: visible;
  }

  .detail-section__inner {
    width: calc(100% - 96px);
    height: auto;
    padding: 90px 0 76px;
  }

  .detail-section h2 {
    font-size: clamp(44px, 7vw, 60px);
    line-height: 1.03;
  }

  .detail-section__bg {
    top: 92px;
    right: -56px;
    font-size: clamp(106px, 19vw, 150px);
  }

  .detail-stage {
    display: grid;
    gap: 72px;
    height: auto;
    min-height: 0;
    margin-top: 42px;
  }

  .detail-panel {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    visibility: visible;
  }

  .detail-stage .detail-panel {
    opacity: 0;
    transform: translateY(38px);
    transition:
      opacity .82s cubic-bezier(.19, 1, .22, 1),
      transform .82s cubic-bezier(.19, 1, .22, 1);
  }

  .detail-stage .detail-panel.is-mobile-detail-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .detail-panel__media {
    width: 100%;
    height: clamp(340px, 52vw, 460px);
    overflow: hidden;
  }

  .detail-panel__copy {
    max-width: 640px;
    overflow-wrap: anywhere;
  }

  .detail-panel__point {
    margin: 8px 0 24px;
  }

  .detail-panel__point strong {
    font-size: 78px;
  }

  .detail-panel h3 {
    font-size: clamp(22px, 3.6vw, 28px);
  }

  .detail-panel__copy > p:not(.detail-panel__point) {
    font-size: 14px;
  }

  .lineup-section__inner {
    width: calc(100% - 72px);
    padding: 90px 0 74px;
  }

  .lineup-section__bg {
    top: 54px;
    right: -44px;
    font-size: clamp(100px, 18vw, 136px);
  }

  .lineup-section h2,
  .lineup-section h3 {
    font-size: clamp(28px, 4.8vw, 36px);
  }

  .lineup-row {
    padding-bottom: 0;
  }

  .lineup-row__grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 42px) / 4);
    grid-template-columns: none;
    grid-template-rows: none;
    gap: 14px;
    overflow-x: hidden;
    padding-bottom: 0;
    scroll-snap-type: x mandatory;
  }

  .lineup-card {
    grid-column: auto;
    grid-row: auto;
    align-content: center;
    width: auto;
    min-width: 0;
    min-height: 238px;
    padding: 36px 14px 16px;
    scroll-snap-align: start;
  }

  .lineup-card:nth-child(4n + 1) {
    scroll-snap-align: start;
  }

  .lineup-card img {
    width: 100%;
    max-width: 150px;
    margin: 0 auto 10px;
  }

  .lineup-card p {
    font-size: 10px;
  }

  .lineup-row__arrow {
    top: 50%;
    bottom: auto;
    width: 42px;
    height: 42px;
    transform: translateY(-50%);
  }

  .lineup-row__arrow--prev {
    left: -28px;
  }

  .lineup-row__arrow--next {
    right: -28px;
  }

  .lineup-row__arrow--prev:hover,
  .lineup-row__arrow--prev:focus-visible {
    transform: translateY(-50%) translateX(-2px);
  }

  .lineup-row__arrow--next:hover,
  .lineup-row__arrow--next:focus-visible {
    transform: translateY(-50%) translateX(2px);
  }

  .lineup-row__pager {
    display: none;
  }

  .image-loop__track img {
    width: 360px;
    height: 240px;
  }

  .site-footer__inner {
    width: calc(100% - 72px);
    min-height: auto;
    padding: 64px 0 56px;
  }

  .site-footer__logo {
    font-size: clamp(38px, 6.4vw, 52px);
  }

  .site-footer__nav {
    display: grid;
    gap: 24px;
    margin-top: 48px;
    text-align: center;
  }

  .site-footer__nav-lineup {
    justify-self: center;
    min-width: 150px;
  }

  .site-footer__bottom {
    justify-items: center;
    margin-top: 88px;
  }

  .site-footer__links {
    justify-content: center;
    gap: 30px;
    width: 100%;
  }

  .site-footer__links a {
    font-size: 13px;
  }

  .site-footer__pagetop {
    display: block;
    position: relative;
    inset: auto;
    justify-self: center;
    width: 58px;
    height: 58px;
  }

  .site-footer__pagetop span {
    top: 52%;
    left: 50%;
    transform: translate(-50%, -35%) rotate(45deg);
  }
}








/* ==============================
   CONTACT PAGE
   style.css の一番下に丸ごと追加
============================== */

body.contact-page {
  background: #000;
  color: var(--color-white);
}

body.contact-page .site-header {
  isolation: isolate;
}

body.contact-page .site-header::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  height: 108px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, .96) 0%,
    rgba(0, 0, 0, .7) 56%,
    rgba(0, 0, 0, 0) 100%
  );
  content: "";
  pointer-events: none;
}

body.contact-page .site-header__brand,
body.contact-page .site-header__nav,
body.contact-page .site-header__toggle {
  position: relative;
  z-index: 1;
}

.contact-section {
  min-height: 100svh;
  padding: calc(var(--header-height) + 70px) 0 110px;
  background: #000;
}

.contact-section__inner {
  width: min(1100px, calc(100% - 80px));
  margin: 0 auto;
}

.contact-section h1 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .12em;
}

.contact-section__line {
  width: 100%;
  height: 1px;
  margin: 34px 0 76px;
  background: rgba(255, 255, 255, .28);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 448px);
  gap: clamp(80px, 10vw, 160px);
  align-items: start;
}

.contact-information h2,
.contact-form-wrap h2 {
  margin: 0 0 34px;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .02em;
}

.contact-information p {
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: .02em;
}

.contact-form {
  display: grid;
  gap: 22px;
}

.contact-form__field {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.contact-form__note {
  margin: -2px 0 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: .02em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 4px;
  background: #ddd;
  color: #000;
  font-size: 14px;
  line-height: 1.6;
  font-family: inherit;
}

.contact-form input {
  height: 48px;
  padding: 8px 14px;
}

.contact-form textarea {
  min-height: 180px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--color-red);
  border-color: var(--color-red);
}

.contact-form__submit {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.contact-form__submit button {
  min-width: 120px;
  height: 38px;
  padding: 0 28px;
  border: 1px solid var(--color-red);
  background: transparent;
  color: var(--color-red);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .35em;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease;
}

.contact-form__submit button:hover,
.contact-form__submit button:focus-visible {
  background: var(--color-red);
  color: var(--color-white);
}

.contact-thanks {
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: .02em;
}

.contact-thanks__link {
  margin-top: 36px;
  text-align: center;
}

.contact-thanks__link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 38px;
  border: 1px solid var(--color-red);
  color: var(--color-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: background-color .25s ease, color .25s ease;
}

.contact-thanks__link a:hover,
.contact-thanks__link a:focus-visible {
  background: var(--color-red);
  color: var(--color-white);
}

/* tablet */
@media (max-width: 920px) {
  .contact-section {
    padding: calc(var(--header-height) + 48px) 0 80px;
  }

  .contact-section__inner {
    width: calc(100% - 48px);
  }

  .contact-section__line {
    margin: 30px 0 60px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .contact-form-wrap {
    max-width: 620px;
  }
}

/* mobile */
@media (max-width: 560px) {
  .contact-section {
    padding: calc(var(--header-height) + 36px) 0 68px;
  }

  .contact-section__inner {
    width: calc(100% - 32px);
  }

  .contact-section h1 {
    font-size: 15px;
  }

  .contact-section__line {
    margin: 24px 0 44px;
  }

  .contact-information h2,
  .contact-form-wrap h2 {
    margin-bottom: 28px;
    font-size: 22px;
  }

  .contact-information p,
  .contact-form label,
  .contact-form__note {
    font-size: 14px;
  }

  .contact-form-wrap {
    max-width: none;
  }

  .contact-form input {
    height: 44px;
  }

  .contact-form textarea {
    min-height: 160px;
  }

  .contact-form__submit button {
    height: 38px;
    min-width: 112px;
  }
}




.hero-slide-cursor {
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 74px;
  height: 74px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(.92);
  transition: opacity .15s ease, visibility .15s ease, transform .15s ease;
}

.hero-slide-cursor.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.hero-slide-cursor__button {
  position: absolute;
  inset: 7px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(37, 37, 37, 0.658);
}

.hero-slide-cursor__arrow {
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #e9e9e9;
  transform: translateX(1px);
}

.hero-slide-cursor__arrow::after {
  position: absolute;
  right: 0;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #e9e9e9;
  border-right: 2px solid #e9e9e9;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.hero-slide-cursor__circle {
  position: absolute;
  inset: 0;
  width: 74px;
  height: 74px;
  transform: rotate(-90deg);
}

.hero-slide-cursor__track,
.hero-slide-cursor__progress {
  fill: none;
  stroke-width: 3;
}

.hero-slide-cursor__track {
  stroke: rgba(255, 255, 255, .16);
}

.hero-slide-cursor__progress {
  stroke: #e9e9e9;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
}

.hero-slide-cursor.is-active .hero-slide-cursor__progress {
  animation: heroCursorProgress var(--hero-slide-interval) linear forwards;
}

.hero-slide-cursor:not(.is-active) .hero-slide-cursor__progress,
.hero-slide-cursor.is-resetting .hero-slide-cursor__progress {
  animation: none;
  stroke-dashoffset: 283;
}

@keyframes heroCursorProgress {
  from {
    stroke-dashoffset: 283;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 920px), (hover: none), (pointer: coarse) {
  .hero-slide-cursor {
    display: none;
  }
}

@media (min-width: 921px) and (hover: hover) and (pointer: fine) {
  .hero a:hover,
  .hero button:hover {
    cursor: pointer;
  }

  html.hero-cursor-ready .hero {
    cursor: none;
  }

  html.hero-cursor-ready .hero a:hover,
  html.hero-cursor-ready .hero button:hover {
    cursor: none;
  }
}

/* ===== sub page header fix ===== */



@media (max-width: 920px) {
  body.product-page .site-header,
  body.contact-page .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: var(--header-height) !important;
    padding: 22px 22px 14px !important;
    overflow: visible !important;
    pointer-events: none !important;
  }

  body.product-page .site-header__brand,
  body.contact-page .site-header__brand {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 172px !important;
    flex: 0 0 auto !important;
    pointer-events: auto !important;
  }

  body.product-page .site-header__toggle,
  body.contact-page .site-header__toggle {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    display: inline-flex !important;
    width: 44px !important;
    height: 44px !important;
    margin-left: auto !important;
    flex: 0 0 44px !important;
    pointer-events: auto !important;
  }

  body.product-page .site-header__nav,
  body.contact-page .site-header__nav {
    position: fixed !important;
    top: 72px !important;
    right: 18px !important;
    width: min(320px, calc(100vw - 36px)) !important;
  }
}

@media (min-width: 921px) {
  body.product-page .site-header::before,
  body.contact-page .site-header::before {
    display: none;
  }
}

@media (max-width: 920px) {
  .site-header::before,
  body.product-page .site-header::before,
  body.contact-page .site-header::before {
    background: linear-gradient(
      180deg,
      rgba(4, 0, 32, .98) 0%,
      rgba(4, 0, 32, .94) 40%,
      rgba(4, 0, 32, .74) 72%,
      rgba(4, 0, 32, 0) 100%
    );
  }

  .site-header__toggle {
    background: rgba(4, 0, 32, .42);
  }

  .site-header__nav {
    background: rgba(4, 0, 32, .92);
  }
}


.site-footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.site-footer__logo-img {
  display: block;
  width: 160px;
  height: auto;
}

/* Bronze accents */
.hero__eyebrow span,
.section-eyebrow span,
.lineup-row__arrow:hover,
.lineup-row__arrow:focus-visible,
.site-header__nav .site-header__contact:hover,
.site-header__nav .site-header__contact:focus-visible,
.contact-form__submit button:hover,
.contact-form__submit button:focus-visible,
.contact-thanks__link a:hover,
.contact-thanks__link a:focus-visible {
  background: var(--color-bronze);
}

.detail-panel__point strong {
  color: var(--color-bronze);
  background-image: var(--bronze-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lineup-section__subtitle,
.lineup-card span,
.lineup-row__arrow::before,
.site-header__nav .site-header__contact,
.site-footer__nav-lineup,
.site-footer__links a,
.product-breadcrumb a:hover,
.product-breadcrumb a:focus-visible,
.contact-form__submit button,
.contact-thanks__link a {
  color: var(--color-bronze);
  background-image: none;
  -webkit-text-fill-color: currentColor;
}

.site-header__nav .site-header__contact:hover,
.site-header__nav .site-header__contact:focus-visible,
.contact-form__submit button:hover,
.contact-form__submit button:focus-visible,
.contact-thanks__link a:hover,
.contact-thanks__link a:focus-visible {
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
  box-shadow: 0 0 28px var(--bronze-shadow);
}

.lineup-row__arrow:hover,
.lineup-row__arrow:focus-visible {
  box-shadow: 0 18px 34px var(--bronze-shadow);
}

.lineup-row__arrow:hover::before,
.lineup-row__arrow:focus-visible::before {
  color: var(--color-white);
  background-image: none;
  -webkit-text-fill-color: currentColor;
}

.product-gallery__arrow:hover,
.product-gallery__arrow:focus-visible {
  color: var(--color-bronze);
}

/* Header contact button hover: bronze gradient */
.site-header__nav .site-header__contact:hover,
.site-header__nav .site-header__contact:focus-visible {
  background: var(--bronze-gradient);
  border-color: transparent;
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white);
  box-shadow: 0 0 28px var(--bronze-shadow);
}

/* Footer LINEUP button hover: bronze gradient */
.site-footer__nav-lineup:hover,
.site-footer__nav-lineup:focus-visible {
  background: var(--bronze-gradient);
  border-color: transparent;
  color: var(--color-white) !important;
  -webkit-text-fill-color: var(--color-white);
  box-shadow: 0 0 28px var(--bronze-shadow);
}
