:root {
  --ink: #151515;
  --coal: #252422;
  --cream: #f4efe7;
  --paper: #fbf8f2;
  --sage: #7f9b8d;
  --sage-pale: #ffffff;
  --copper: #b58b74;
  --copper-dark: #7d5749;
  --line: rgba(21, 21, 21, 0.14);
  --shadow: 0 24px 70px rgba(19, 17, 15, 0.18);
  --content: 1560px;
  --edge: max(44px, calc((100vw - var(--content)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

::selection {
  background: var(--ink);
  color: #fff;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(var(--content), calc(100% - 64px));
  height: 58px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 12px 0 18px;
  color: #fff;
  background: rgba(18, 17, 16, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  transition: top 0.28s ease, width 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.site-header.is-scrolled {
  top: 10px;
  width: min(1320px, calc(100% - 64px));
  background: rgba(18, 17, 16, 0.84);
  border-color: rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 44px;
  color: #fff;
}

.brand .brand-icon {
  width: 38px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.main-nav a {
  position: relative;
  padding: 20px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--copper);
  transition: transform 0.28s ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a,
.nav-cta,
.button {
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.nav-cta:hover,
.button:hover {
  transform: translateY(-3px);
}

.nav-cta {
  padding: 11px 16px;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 128px var(--edge) 92px;
  color: #fff;
  background: #151515;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 62%);
  opacity: 0.38;
  pointer-events: none;
  animation: gridDrift 18s linear infinite;
}

.hero::after {
  content: "PETIMAO";
  position: absolute;
  z-index: 1;
  right: var(--edge);
  bottom: 118px;
  color: rgba(255, 255, 255, 0.12);
  font-size: clamp(64px, 11vw, 180px);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  animation: wordDrift 7s ease-in-out infinite;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image {
  transform: translate3d(0, var(--hero-parallax, 0px), 0) scale(1.1);
  transform-origin: 62% 50%;
  will-change: transform;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.84) 0%, rgba(18, 18, 18, 0.56) 38%, rgba(18, 18, 18, 0.08) 68%),
    linear-gradient(0deg, rgba(15, 15, 15, 0.52) 0%, rgba(15, 15, 15, 0) 30%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
  padding-top: 44px;
  animation: heroEnter 0.9s ease both;
}

.hero-logo {
  width: 166px;
  height: 142px;
  margin: 0 0 20px -14px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.92;
}

.section-logo,
.footer-logo {
  width: 118px;
  height: 102px;
  margin: 0 0 22px -10px;
  object-fit: contain;
  object-position: left center;
}

.footer-logo {
  width: 132px;
  height: 112px;
  opacity: 0.92;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro-band h2,
.package-copy h2,
.spec-content h2,
.final-cta h2 {
  margin: 0;
  line-height: 1.04;
  font-weight: 850;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(46px, 5.6vw, 96px);
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
}

.button.primary {
  background: var(--copper);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-metrics {
  position: absolute;
  z-index: 4;
  right: var(--edge);
  bottom: 20px;
  left: var(--edge);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.hero-metrics span {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(18, 18, 18, 0.46);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  text-align: center;
  transform: translateY(0);
  transition: background 0.28s ease, transform 0.28s ease;
  animation: metricEnter 0.65s ease both;
}

.hero-metrics span:nth-child(2) {
  animation-delay: 90ms;
}

.hero-metrics span:nth-child(3) {
  animation-delay: 180ms;
}

.hero-metrics span:nth-child(4) {
  animation-delay: 270ms;
}

.hero-metrics span:hover {
  transform: translateY(-12px);
  background: rgba(181, 139, 116, 0.62);
}

.hero-metrics strong {
  color: #fff;
  font-size: clamp(18px, 2vw, 24px);
}

.marquee-strip {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(21, 21, 21, 0.12);
  background: var(--ink);
  color: #fff;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 18s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 74px;
  padding: 0 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.6vw, 28px);
  font-weight: 900;
  white-space: nowrap;
}

.marquee-track span:nth-child(3n) {
  color: var(--copper);
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) 1fr;
  gap: 80px;
  padding: 64px var(--edge);
  background: var(--sage-pale);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.intro-band::after {
  content: "";
  position: absolute;
  top: 0;
  right: var(--edge);
  width: 260px;
  height: 100%;
  background: repeating-linear-gradient(
    135deg,
    rgba(21, 21, 21, 0.08) 0 1px,
    transparent 1px 16px
  );
  opacity: 0.58;
  pointer-events: none;
}

.intro-band h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.intro-band p:not(.eyebrow) {
  margin: 0;
  color: rgba(21, 21, 21, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

.section {
  padding: 124px var(--edge);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 58px;
}

.section-heading h2,
.package-copy h2,
.spec-content h2,
.final-cta h2 {
  font-size: clamp(34px, 4.8vw, 58px);
}

.product-story {
  background: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 0.82fr) minmax(280px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-card,
.scene-card,
.kit-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.feature-card {
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--copper);
  transition: transform 0.35s ease;
}

.feature-card:hover,
.kit-grid article:hover,
.spec-list div:hover {
  transform: translateY(-16px) scale(1.018);
  border-color: rgba(181, 139, 116, 0.42);
  box-shadow: 0 34px 70px rgba(19, 17, 15, 0.16);
  background: #fff;
}

.feature-card:hover::after {
  transform: scaleX(1);
}

.feature-icon,
.kit-number {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
}

.feature-card h3,
.scene-card h3,
.scene-caption h3,
.kit-grid h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0;
}

.feature-card p,
.scene-card p,
.kit-grid p,
.package-copy p {
  margin: 14px 0 0;
  color: rgba(21, 21, 21, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

.product-center {
  position: relative;
  margin: 0;
  min-height: 720px;
  display: grid;
  place-items: center;
}

.product-center::before {
  content: "";
  position: absolute;
  inset: 7% 9%;
  background: var(--sage-pale);
  border-radius: 8px;
  transform: skewY(-4deg);
  background:
    radial-gradient(circle at 50% 46%, rgba(181, 139, 116, 0.22), transparent 44%),
    linear-gradient(180deg, #fff 0%, #f4efe7 100%);
  border: 1px solid rgba(21, 21, 21, 0.08);
}

.product-center img {
  position: relative;
  max-height: 760px;
  width: min(58%, 360px);
  object-fit: contain;
  filter: drop-shadow(0 34px 42px rgba(26, 23, 20, 0.26));
  animation: productFloat 5.6s ease-in-out infinite;
}

.scene-showcase {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(181, 139, 116, 0.18), transparent 44%),
    var(--coal);
}

.scene-showcase .section-heading .eyebrow,
.scene-caption .eyebrow {
  color: #d6b29f;
}

.scene-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.scene-large {
  position: relative;
  grid-row: span 2;
  min-height: 760px;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.24);
}

.scene-large img,
.scene-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.scene-large:hover img,
.scene-card:hover img {
  transform: scale(1.095);
  filter: saturate(1.06) contrast(1.03);
}

.scene-large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 15, 15, 0.78), rgba(15, 15, 15, 0.06) 55%);
}

.scene-caption {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.scene-card {
  overflow: hidden;
  background: #f8f2eb;
  color: var(--ink);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.14);
}

.scene-card:hover {
  transform: translateY(-14px) scale(1.012);
}

.scene-card img {
  aspect-ratio: 16 / 10;
}

.scene-card h3,
.scene-card p {
  padding-right: 30px;
  padding-left: 30px;
}

.scene-card h3 {
  padding-top: 22px;
}

.scene-card p {
  padding-bottom: 24px;
}

.package-section {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 76px;
  align-items: center;
  background:
    linear-gradient(90deg, var(--cream) 0%, var(--cream) 42%, #171716 42%, #171716 100%);
}

.package-copy {
  max-width: 560px;
}

.package-copy h2,
.package-copy p {
  color: var(--ink);
}

.package-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.package-points span {
  padding: 10px 12px;
  border: 1px solid rgba(21, 21, 21, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.42);
  color: rgba(21, 21, 21, 0.72);
  font-size: 13px;
  font-weight: 700;
}

.package-visuals {
  display: grid;
  grid-template-columns: 1.62fr 0.62fr;
  gap: 22px;
  align-items: stretch;
}

.packshot,
.dieline {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.packshot:hover {
  transform: translateY(-18px) rotate(-1.2deg) scale(1.012);
  box-shadow: 0 44px 110px rgba(19, 17, 15, 0.3);
}

.dieline:hover {
  transform: rotate(-0.4deg) translateY(-18px) scale(1.018);
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.38);
}

.split-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(181, 139, 116, 0.28), rgba(181, 139, 116, 0) 40%),
    #101010;
  position: relative;
  overflow: hidden;
}

.split-banner::after {
  content: "YP-7272";
  position: absolute;
  right: var(--edge);
  bottom: -20px;
  color: rgba(255, 255, 255, 0.07);
  font-size: clamp(90px, 13vw, 220px);
  font-weight: 900;
  line-height: 1;
}

.split-copy,
.split-stats {
  position: relative;
  z-index: 1;
}

.split-copy h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.06;
  letter-spacing: 0;
}

.split-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.split-stats div {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 0.35s ease, background 0.35s ease;
}

.split-stats div:last-child {
  border-right: 0;
}

.split-stats div:hover {
  transform: translateY(-14px);
  background: rgba(255, 255, 255, 0.1);
}

.split-stats strong {
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.94;
}

.split-stats span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.packshot {
  background: #fff;
}

.packshot img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.dieline {
  background: #050505;
  transform: rotate(1.6deg);
}

.dieline img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: 58% 50%;
}

.kit-section {
  background:
    linear-gradient(180deg, #fff 0%, #f8f2eb 100%);
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kit-grid article {
  min-height: 300px;
  padding: 36px;
  background: linear-gradient(180deg, #fff 0%, #f4efe7 100%);
  position: relative;
  overflow: hidden;
}

.kit-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, transparent 50%, rgba(181, 139, 116, 0.22) 50%);
}

.kit-number {
  color: var(--copper-dark);
}

.specs-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 76px;
  align-items: center;
  background: #fff;
}

.spec-photo {
  display: grid;
  place-items: center;
  min-height: 680px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.spec-photo img {
  width: min(58%, 430px);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 28px 42px rgba(20, 20, 20, 0.2));
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.spec-list div {
  min-height: 86px;
  padding: 18px;
  border: 1px solid rgba(21, 21, 21, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.spec-list dt {
  color: rgba(21, 21, 21, 0.52);
  font-size: 13px;
  font-weight: 800;
}

.spec-list dd {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 850;
}

.product-gallery {
  color: #fff;
  background:
    radial-gradient(circle at 14% 8%, rgba(181, 139, 116, 0.18), transparent 30%),
    #101010;
}

.product-gallery .section-heading {
  max-width: 1060px;
}

.product-gallery .section-heading .eyebrow {
  color: #d6b29f;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(250px, 18vw, 340px);
  gap: 18px;
}

.gallery-item {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #080808;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  transform-style: preserve-3d;
  transform-origin: center;
  will-change: transform;
}

.gallery-item--feature {
  grid-column: span 2;
  grid-row: span 3;
}

.gallery-item::before,
.gallery-item::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.gallery-item::before {
  z-index: 1;
  inset: 0;
  background: radial-gradient(
    circle at var(--glow-x) var(--glow-y),
    rgba(255, 255, 255, 0.24),
    rgba(181, 139, 116, 0.1) 18%,
    transparent 42%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item::after {
  inset: 42% 0 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
}

.gallery-item:hover::before,
.gallery-item.is-pointer-over::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.gallery-item:hover img,
.gallery-item.is-pointer-over img {
  transform: scale(1.085);
  filter: saturate(1.1) contrast(1.06) brightness(1.04);
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 600;
}

.gallery-item figcaption span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 7vw, 112px);
  background:
    radial-gradient(circle at 8% 12%, rgba(181, 139, 116, 0.16), transparent 34%),
    var(--paper);
}

.faq-section .section-heading {
  position: sticky;
  top: 112px;
  align-self: start;
  margin-bottom: 0;
}

.faq-intro {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(21, 21, 21, 0.68);
  font-size: 17px;
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 28px 56px 28px 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 720;
  line-height: 1.3;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 25px;
  right: 8px;
  color: var(--copper);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.28s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -4px 56px 28px 0;
  color: rgba(21, 21, 21, 0.7);
  font-size: 16px;
  line-height: 1.8;
}

.final-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 92px var(--edge);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(181, 139, 116, 0.18), transparent 42%),
    var(--ink);
}

.final-cta h2 {
  max-width: 800px;
}

.motion-item {
  opacity: 0;
  transform: translateY(72px) scale(0.985);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1), transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

.motion-item.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.gallery-item.motion-item.is-visible {
  z-index: 1;
  transform: perspective(1100px) rotateX(0deg) rotateY(0deg) translateY(0) scale(1);
  transition:
    opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.18s ease-out,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-item.motion-item.is-visible:hover,
.gallery-item.motion-item.is-visible.is-pointer-over {
  z-index: 5;
  transform:
    perspective(1100px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    translateY(-15px)
    scale(1.02);
  border-color: rgba(214, 178, 159, 0.56);
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(214, 178, 159, 0.14);
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(72px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes metricEnter {
  from {
    opacity: 0;
    transform: translateY(42px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(0.8deg);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 96px 48px, 48px 96px;
  }
}

@keyframes wordDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-22px, -16px, 0);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
    align-items: end;
    padding-bottom: 160px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(13, 13, 13, 0.9) 0%, rgba(13, 13, 13, 0.52) 55%, rgba(13, 13, 13, 0.12) 100%);
  }

  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-band,
  .product-grid,
  .scene-layout,
  .package-section,
  .split-banner,
  .specs-section {
    grid-template-columns: 1fr;
  }

  .product-center {
    order: -1;
    min-height: 540px;
  }

  .scene-large {
    min-height: 520px;
  }

  .package-visuals,
  .kit-grid,
  .split-stats,
  .spec-list {
    grid-template-columns: 1fr;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-section .section-heading {
    position: static;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: min(52vw, 500px);
  }

  .gallery-item--feature {
    grid-column: span 2;
    grid-row: span 2;
  }

  .package-section {
    background: var(--cream);
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    height: 54px;
    padding-left: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand {
    width: 42px;
    height: 38px;
  }

  .brand .brand-icon {
    width: 32px;
    height: 34px;
  }

  .hero-logo {
    width: 112px;
    height: 96px;
    margin-left: -10px;
  }

  .nav-cta {
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero > img {
    object-position: 62% center;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    flex: 1 1 150px;
  }

  .hero-metrics {
    right: 20px;
    left: 20px;
  }

  .hero-metrics span {
    flex-direction: column;
    gap: 4px;
  }

  .intro-band,
  .section,
  .final-cta {
    padding-right: 20px;
    padding-left: 20px;
  }

  .product-center {
    min-height: 460px;
  }

  .product-center img {
    width: min(82%, 300px);
  }

  .scene-large {
    min-height: 430px;
  }

  .packshot img,
  .dieline img {
    min-height: 360px;
  }

  .spec-photo {
    min-height: 460px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item--feature {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .motion-item {
    opacity: 1;
    transform: none;
  }
}

.en-page {
  --cream: #f6f1eb;
  --paper: #fbfaf7;
  --copper: #b9927c;
  --copper-dark: #7b5748;
  background: var(--paper);
  font-family: "Cormorant Garamond", "Playfair Display", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.en-page .site-header {
  height: 76px;
  background: rgba(12, 12, 12, 0.62);
  padding-left: 24px;
}

.en-page .brand {
  width: 120px;
  height: 64px;
}

.en-page .brand .brand-icon {
  width: 110px;
  height: 30px;
  filter: invert(1);
}

.en-page .main-nav {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.en-page .nav-cta,
.en-page .button {
  border-radius: 999px;
  font-family: inherit;
  font-weight: 650;
}

.en-page .hero {
  min-height: 94svh;
  padding-bottom: 178px;
}

.en-page .hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.86) 0%, rgba(10, 10, 10, 0.5) 36%, rgba(10, 10, 10, 0.04) 70%),
    linear-gradient(0deg, rgba(10, 10, 10, 0.42) 0%, rgba(10, 10, 10, 0) 34%);
}

.en-page .hero-content {
  width: min(820px, 100%);
  padding-bottom: 72px;
}

.en-page .hero-logo {
  width: 250px;
  height: 60px;
  margin: 0 0 30px -3px;
  filter: invert(1);
  opacity: 0.98;
}

.en-page .hero h1 {
  max-width: 820px;
  font-size: clamp(56px, 6vw, 112px);
  font-weight: 560;
  line-height: 0.98;
}

.en-page .hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.72;
}

.en-page .eyebrow {
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.en-page .button.primary {
  background: #fff;
  color: var(--ink);
}

.en-page .button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.en-page .hero-metrics {
  border-radius: 12px;
  bottom: 34px;
}

.en-page .hero-metrics span {
  min-height: 82px;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.en-page .hero-metrics strong {
  letter-spacing: 0;
}

.en-page .section-logo {
  width: 170px;
  height: 42px;
  margin: 0 0 30px -2px;
  filter: none;
}

.en-page .marquee-track span {
  min-height: 82px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.en-page .intro-band {
  grid-template-columns: 0.55fr 1fr;
  padding-top: 88px;
  padding-bottom: 88px;
}

.en-page .intro-band h2,
.en-page .section-heading h2,
.en-page .package-copy h2,
.en-page .spec-content h2,
.en-page .final-cta h2 {
  font-weight: 520;
  line-height: 1.06;
}

.en-page .intro-band p:not(.eyebrow),
.en-page .feature-card p,
.en-page .scene-card p,
.en-page .kit-grid p,
.en-page .package-copy p {
  color: rgba(21, 21, 21, 0.62);
}

.en-page .section-heading {
  max-width: 1100px;
}

.en-page .section-heading h2,
.en-page .package-copy h2,
.en-page .spec-content h2,
.en-page .final-cta h2 {
  font-size: clamp(42px, 4.6vw, 78px);
}

.en-page .footer-logo {
  width: 184px;
  height: 44px;
  margin: 0 0 30px -2px;
  filter: invert(1);
}

.en-page .site-footer {
  padding: 24px var(--edge);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: #0d0d0d;
  color: rgba(255, 255, 255, 0.68);
}

.en-page .site-footer p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.en-page .feature-card,
.en-page .scene-card,
.en-page .kit-grid article,
.en-page .spec-list div {
  border-radius: 12px;
}

.en-page .feature-card h3,
.en-page .scene-card h3,
.en-page .scene-caption h3,
.en-page .kit-grid h3 {
  font-size: 24px;
  font-weight: 560;
}

.en-page .product-center::before {
  border-radius: 18px;
}

.en-page .scene-showcase {
  background:
    linear-gradient(90deg, rgba(185, 146, 124, 0.16), transparent 46%),
    #111;
}

.en-page .scene-large,
.en-page .scene-card,
.en-page .packshot,
.en-page .dieline,
.en-page .spec-photo {
  border-radius: 14px;
}

.en-page .split-banner {
  background:
    linear-gradient(120deg, rgba(185, 146, 124, 0.24), rgba(185, 146, 124, 0) 36%),
    #0d0d0d;
}

.en-page .split-copy h2 {
  max-width: 900px;
  font-weight: 520;
  font-size: clamp(44px, 5vw, 86px);
}

.en-page .split-stats {
  border-radius: 14px;
}

.en-page .split-stats strong {
  font-weight: 640;
}

.en-page .package-section {
  background:
    linear-gradient(90deg, var(--cream) 0%, var(--cream) 40%, #111 40%, #111 100%);
}

.en-page .package-points span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.en-page .kit-grid article {
  background: linear-gradient(180deg, #fff 0%, #f7f2ec 100%);
}

.en-page .spec-list dd {
  font-weight: 600;
}

@media (max-width: 980px) {
  .en-page .intro-band,
  .en-page .package-section {
    grid-template-columns: 1fr;
  }

  .en-page .package-section {
    background: var(--cream);
  }
}

@media (max-width: 620px) {
  .en-page .site-header {
    height: 62px;
    padding-left: 14px;
  }

  .en-page .brand {
    width: 96px;
    height: 52px;
  }

  .en-page .brand .brand-icon {
    width: 90px;
    height: 24px;
  }

  .en-page .hero-logo {
    width: 165px;
    height: 40px;
    margin-left: -2px;
  }

  .en-page .section-logo {
    width: 138px;
    height: 34px;
    margin-left: -2px;
  }

  .en-page .footer-logo {
    width: 151px;
    height: 37px;
    margin-left: -2px;
  }

  .en-page .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }
}
