:root {
  --red: #e52b2f;
  --ink: #111111;
  --paper: #f3f0e9;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.18);
  --sans: "Manrope", "DM Sans", Arial, sans-serif;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--red);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.loader {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  transition: clip-path 1s cubic-bezier(0.76, 0, 0.24, 1);
  clip-path: inset(0 0 0 0);
}

.loader.is-finished {
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}

.loader-word {
  position: relative;
  width: min(68vw, 620px);
  aspect-ratio: 457 / 109;
}

.loader-letter {
  position: absolute;
  inset: 0;
  background-image: url("https://limon.co.jp/wp/wp-content/uploads/2023/11/LIMON_logo_white_small.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  opacity: 0;
  transform: translateY(120%) rotate(5deg);
  transform-origin: 50% 100%;
  animation: loader-letter 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.loader-letter-l {
  clip-path: inset(0 81.5% 0 0);
}

.loader-letter-i {
  clip-path: inset(0 69.5% 0 18.5%);
  animation-delay: 0.08s;
}

.loader-letter-m {
  clip-path: inset(0 47% 0 30.5%);
  animation-delay: 0.16s;
}

.loader-letter-o {
  clip-path: inset(0 23.5% 0 53%);
  animation-delay: 0.24s;
}

.loader-letter-n {
  clip-path: inset(0 0 0 76.5%);
  animation-delay: 0.32s;
}

@keyframes loader-letter {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

.loader-track {
  position: absolute;
  right: 8vw;
  bottom: 8vh;
  left: 8vw;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.loader-track i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.loader-count {
  position: absolute;
  right: 8vw;
  bottom: calc(8vh + 16px);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.page-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
}

.page-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.cursor {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(0);
  transition: opacity 0.2s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cursor.is-visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.cursor span {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  width: min(100%, var(--max));
  margin-inline: auto;
  padding: 120px 5vw;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 88px;
  padding: 0 4vw;
  color: var(--white);
  transition: height 0.35s ease, background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  height: 70px;
  color: var(--ink);
  background: rgba(243, 240, 233, 0.94);
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  width: 122px;
}

.brand img {
  width: 100%;
  height: auto;
}

.brand .logo-dark {
  display: none;
}

.site-header.is-scrolled .brand .logo-light {
  display: none;
}

.site-header.is-scrolled .brand .logo-dark {
  display: block;
}

.desktop-nav {
  display: flex;
  gap: 32px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--white);
}

.site-header.is-scrolled .header-cta {
  border-color: var(--ink);
}

.site-header.is-scrolled .header-cta:hover {
  color: var(--white);
  background: var(--ink);
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 20px;
}

.header-glamp {
  position: relative;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.header-glamp::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform-origin: left;
  animation: glamp-link-pulse 2.4s ease-in-out infinite;
}

@keyframes glamp-link-pulse {
  0%, 100% { transform: scaleX(0.25); opacity: 0.4; }
  50% { transform: scaleX(1); opacity: 1; }
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background: #1a1a1a;
}

.hero-video,
.hero-shade,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  transform: scale(calc(1.04 + var(--hero-scale, 0)));
  transition: filter 1s ease;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.22) 52%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.54) 0%, transparent 45%);
}

.hero-grid {
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 25vw 100%, 100% 25vh;
  transform: translate3d(0, calc(var(--hero-shift, 0) * 0.25), 0);
}

.hero-glow {
  position: absolute;
  z-index: 1;
  top: var(--glow-y, 50%);
  left: var(--glow-x, 65%);
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 43, 47, 0.22), transparent 68%);
  filter: blur(18px);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(920px, 84vw);
  min-height: 100svh;
  padding: 130px 0 130px 7vw;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(4rem, 7.3vw, 8.1rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.hero-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.hero-line > span {
  display: block;
  transform: translateY(115%) rotate(3deg);
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-ready .hero-line:first-child > span {
  transform: translateY(0) rotate(0);
  transition-delay: 0.08s;
}

body.is-ready .hero-line:nth-child(2) > span {
  transform: translateY(0) rotate(0);
  transition-delay: 0.2s;
}

.hero-enter {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-ready .hero-enter {
  opacity: 1;
  transform: translateY(0);
}

.hero-delay-1 { transition-delay: 0.05s; }
.hero-delay-4 { transition-delay: 0.4s; }
.hero-delay-5 { transition-delay: 0.52s; }
.hero-delay-6 { transition-delay: 0.62s; }

.hero h1 em,
.contact h2 em {
  color: var(--red);
  font-style: normal;
}

.hero-copy {
  max-width: 580px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 245px;
  padding: 18px 22px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-primary:hover {
  color: var(--red);
  background: var(--white);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  color: var(--ink);
  background: var(--white);
}

.hero-proof {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 50px;
  display: flex;
  gap: 36px;
}

.hero-proof div {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 4px;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.65rem;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 50px;
  left: 7vw;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--white);
  animation: scroll-line 1.8s ease-in-out infinite;
  transform-origin: left;
}

@keyframes scroll-line {
  0%, 100% { transform: scaleX(0.35); opacity: 0.5; }
  50% { transform: scaleX(1); opacity: 1; }
}

.world-marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 18px 0 20px;
  color: var(--white);
  background: var(--red);
  transform: rotate(-1.2deg) scale(1.02);
  transform-origin: center;
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  animation: marquee-run 22s linear infinite;
}

.marquee-track span {
  font-size: clamp(1.4rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.marquee-track i {
  color: var(--ink);
  font-style: normal;
  font-size: 1.1rem;
}

@keyframes marquee-run {
  to { transform: translateX(-50%); }
}

.statement {
  display: grid;
  grid-template-columns: 0.7fr 2fr 1.1fr;
  gap: 5vw;
  min-height: 680px;
  align-items: center;
}

.section-index {
  align-self: start;
  padding-top: 10px;
  color: rgba(17, 17, 17, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.display-title {
  margin: 0;
  font-size: clamp(3.2rem, 6.2vw, 7rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.display-title span {
  color: var(--red);
}

.statement-copy {
  align-self: end;
  padding-bottom: 20px;
}

.statement-copy p {
  margin: 0 0 24px;
  font-size: 0.98rem;
  line-height: 1.8;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 8vw;
  margin-bottom: 70px;
  align-items: end;
}

.section-heading h2,
.portfolio h2,
.capabilities h2,
.process h2 {
  margin: 0;
  font-size: clamp(3rem, 5.5vw, 6.4rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.section-lead {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.8;
}

.partnership-heading {
  margin-bottom: 52px;
}

@keyframes route-line {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

.pathway {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  min-height: 650px;
  margin-bottom: 24px;
  overflow: hidden;
}

.pathway.reveal,
.pathway.reveal-mask {
  opacity: 1;
  clip-path: none;
  transform: none;
}

.pathway-dark {
  color: var(--white);
  background: var(--ink);
}

.pathway-dark .pathway-content {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #111111;
}

.pathway-copy-video,
.pathway-copy-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pathway-copy-video {
  object-fit: cover;
  object-position: center;
  transform: scale(1.025);
}

.pathway-copy-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.84), rgba(6, 6, 6, 0.54)),
    linear-gradient(0deg, rgba(6, 6, 6, 0.72), rgba(6, 6, 6, 0.22) 55%, rgba(6, 6, 6, 0.6));
}

.pathway-light {
  background: #ded9cf;
}

.pathway-content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 40px 70px 5vw;
}

.pathway-content h3 {
  margin: 0 0 28px;
  font-size: clamp(2.8rem, 4.3vw, 5rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.glamp-partner-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.glamp-partner-title img {
  width: min(100%, 300px);
  height: auto;
  margin: 12px 0 17px;
  filter: invert(1);
}

.pathway-content > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.8;
}

.feature-list {
  margin: 28px 0 36px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.76rem;
}

.pathway-light .feature-list li {
  border-color: rgba(17, 17, 17, 0.18);
}

.text-link {
  display: inline-flex;
  justify-content: space-between;
  width: 210px;
  padding-bottom: 9px;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 600;
}

.pathway-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
}

.pathway-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.pathway-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.55), transparent 40%);
}

.pathway-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.pathway:hover .pathway-media img {
  transform: scale(1.035);
}

.media-caption {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.pathway-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: radial-gradient(circle at 65% 30%, #eeeae3, transparent 38%);
}

.export-video,
.export-video-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.export-video {
  object-fit: cover;
}

.export-video-shade {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.25), transparent 52%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.3), transparent 45%);
}

.export-video-route {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.export-video-route i {
  position: relative;
  display: block;
  width: 68px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
}

.export-video-route i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--red);
  animation: route-line 2.2s ease-in-out infinite;
  transform: translateX(-100%);
}

.pathway-visual svg {
  position: absolute;
  inset: 15% 5%;
  width: 90%;
  height: 70%;
}

.pathway-visual path {
  fill: none;
  stroke: var(--red);
  stroke-width: 2;
  stroke-dasharray: 7 9;
  animation: route-flow 3s linear infinite;
}

@keyframes route-flow {
  to { stroke-dashoffset: -64; }
}

.orbit {
  position: absolute;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 50%;
  animation: orbit-turn 16s linear infinite;
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--red);
}

.orbit-two {
  animation-direction: reverse;
  animation-duration: 22s;
}

@keyframes orbit-turn {
  to { transform: rotate(360deg); }
}

.orbit-one {
  top: 12%;
  left: 16%;
  width: 360px;
  height: 360px;
}

.orbit-two {
  top: 28%;
  left: 34%;
  width: 430px;
  height: 430px;
}

.route-dot {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.dot-japan {
  bottom: 20%;
  left: 13%;
  width: 72px;
  height: 72px;
  color: var(--white);
  background: var(--red);
}

.dot-world {
  top: 28%;
  right: 13%;
  width: 105px;
  height: 105px;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.brand-showcase {
  padding-top: 90px;
  color: var(--white);
  background: var(--ink);
}

.brand-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
  padding-top: 80px;
  padding-bottom: 80px;
  align-items: end;
}

.brand-intro h2 {
  margin: 0;
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.07em;
}

.brand-logo-heading img {
  width: min(100%, 650px);
  height: auto;
  filter: invert(1);
}

.brand-intro > p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.8;
}

.brand-intro-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

.brand-intro-copy > p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.8;
}

.glamp-site-button {
  position: relative;
  display: flex;
  min-width: 270px;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 600;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.glamp-site-button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--red);
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.glamp-site-button:hover::before {
  transform: translateX(0);
}

.glamp-site-button span,
.glamp-site-button b {
  position: relative;
  z-index: 1;
}

.glamp-site-button b {
  font-weight: 400;
}

.glamp-film {
  padding-top: 30px;
  padding-bottom: 110px;
}

.glamp-film-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 8vw;
  margin-bottom: 42px;
  align-items: end;
}

.glamp-film-heading h3 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.7rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.glamp-film-heading > p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.75;
}

.glamp-film-player {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #050505;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  aspect-ratio: 16 / 9;
}

.glamp-film-player::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 22%;
  height: 3px;
  content: "";
  background: var(--red);
  pointer-events: none;
}

.glamp-film-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.glamp-film-index {
  position: absolute;
  z-index: 1;
  top: 22px;
  right: 24px;
  padding: 8px 10px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.72);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  pointer-events: none;
}

.product-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 12px;
  background: #f4f0e8;
}

.product-card {
  grid-column: span 3;
  min-height: 620px;
  color: var(--ink);
  background: #fffefa;
  overflow: hidden;
  transition: background 0.4s ease, transform 0.4s ease;
}

.product-card-wide {
  grid-column: span 3;
}

.product-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.08);
}

.product-card:hover {
  background: var(--white);
  transform: translateY(-4px);
}

.product-meta {
  display: grid;
  grid-template-columns: 40px 1fr;
  padding: 28px;
  background: #fffefa;
}

.product-meta span {
  color: rgba(17, 17, 17, 0.48);
  font-size: 0.65rem;
}

.product-meta h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.product-meta p {
  grid-column: 2;
  max-width: 480px;
  margin: 12px 0 0;
  color: rgba(17, 17, 17, 0.8);
  font-size: 0.8rem;
  line-height: 1.65;
}

.glamp-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 5vw;
  min-height: 300px;
  overflow: hidden;
  padding: 70px 6vw;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  background: var(--ink);
  align-items: center;
}

.glamp-banner-title {
  display: flex;
  align-items: center;
  gap: 0.22em;
}

.glamp-banner-title img {
  width: min(46vw, 520px);
  height: auto;
  filter: invert(1);
}

.glamp-banner::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--red);
  transform: translateX(-101%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.glamp-banner:hover::before {
  transform: translateX(0);
}

.glamp-banner > * {
  position: relative;
  z-index: 1;
}

.glamp-banner-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.glamp-banner strong {
  font-size: clamp(3.5rem, 8vw, 9rem);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.glamp-banner-arrow {
  font-size: clamp(2rem, 4vw, 5rem);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.glamp-banner:hover .glamp-banner-arrow {
  transform: rotate(45deg);
}

.portfolio {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 7vw;
  min-height: 820px;
  align-items: center;
}

.portfolio-image {
  position: relative;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-image.is-visible img {
  transform: scale(1);
}

.image-label {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 14px 18px;
  color: var(--white);
  background: var(--red);
  font-size: 0.67rem;
  letter-spacing: 0.06em;
}

.portfolio-copy > p:not(.eyebrow) {
  margin: 32px 0;
  font-size: 0.98rem;
  line-height: 1.8;
}

.brand-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.brand-ticker span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.68rem;
}

.capabilities {
  color: var(--white);
  background: var(--ink);
}

.capabilities.section {
  width: 100%;
  max-width: none;
  padding-inline: max(5vw, calc((100vw - var(--max)) / 2 + 5vw));
}

.capability-heading {
  width: min(100%, 1300px);
  margin-inline: auto;
}

.capability-list {
  width: min(100%, 1300px);
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.capability-item {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr;
  gap: 40px;
  padding: 35px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  align-items: center;
  transition: padding 0.35s ease, background 0.35s ease;
}

.capability-item:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.capability-item > span {
  color: var(--red);
  font-size: 0.65rem;
}

.capability-item h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 500;
}

.capability-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
  line-height: 1.7;
}

.process {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.process-steps li {
  display: grid;
  grid-template-columns: 55px 0.6fr 1fr;
  gap: 30px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}

.process-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-steps span {
  color: var(--red);
  font-size: 0.65rem;
}

.process-steps h3,
.process-steps p {
  margin: 0;
}

.process-steps h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

.process-steps p {
  font-size: 0.8rem;
  line-height: 1.6;
}

.contact {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: none;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
  text-align: center;
}

.contact-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.07);
  font-size: min(78vw, 900px);
  font-weight: 700;
  line-height: 0.7;
  transform: translate(-50%, -50%);
  animation: contact-breathe 5s ease-in-out infinite;
}

@keyframes contact-breathe {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(0.96); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}

.contact-content {
  position: relative;
  z-index: 1;
}

.contact h2 {
  margin: 0;
  font-size: clamp(4rem, 8vw, 9rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.065em;
}

.contact h2 em {
  color: var(--ink);
}

.contact-title-mobile {
  display: none;
}

.contact-content > p:not(.eyebrow) {
  max-width: 600px;
  margin: 32px auto 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.contact-actions {
  justify-content: center;
}

.button-white {
  color: var(--ink);
  background: var(--white);
}

.button-white:hover {
  color: var(--white);
  background: var(--ink);
}

.button-outline-white {
  border-color: rgba(255, 255, 255, 0.62);
}

.button-outline-white:hover {
  color: var(--ink);
  background: var(--white);
}

.site-footer {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 9vw;
  padding: 90px 6vw 28px;
  background: var(--paper);
}

.footer-brand img {
  width: 145px;
}

.footer-brand p {
  margin: 28px 0 0;
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-details {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
}

.footer-details div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-details span {
  margin-bottom: 8px;
  color: rgba(17, 17, 17, 0.48);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-details p,
.footer-details a {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.65;
}

.footer-details a:hover {
  color: var(--red);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.65rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-mask {
  clip-path: inset(0 0 100% 0);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), clip-path 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}

.reveal-mask.is-visible {
  clip-path: inset(0 0 0 0);
}

.capability-item:nth-child(2),
.process-steps li:nth-child(2) { transition-delay: 0.06s; }
.capability-item:nth-child(3),
.process-steps li:nth-child(3) { transition-delay: 0.12s; }
.capability-item:nth-child(4),
.process-steps li:nth-child(4) { transition-delay: 0.18s; }
.capability-item:nth-child(5) { transition-delay: 0.24s; }

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

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 11px;
    border: 0;
    color: currentColor;
    background: transparent;
    align-content: center;
    gap: 7px;
  }

  .menu-button span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 70px 0 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    padding: 50px 24px;
    color: var(--white);
    background: #111111;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-menu a {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 1.5rem;
    font-weight: 500;
  }

  body.menu-open .site-header,
  .site-header:has(.mobile-menu.is-open) {
    color: var(--white);
    background: #111111;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.menu-open .site-header .brand .logo-light,
  .site-header:has(.mobile-menu.is-open) .brand .logo-light {
    display: block;
  }

  body.menu-open .site-header .brand .logo-dark,
  .site-header:has(.mobile-menu.is-open) .brand .logo-dark {
    display: none;
  }

  .hero-content {
    width: 90vw;
    padding-left: 7vw;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 10vw, 6.6rem);
  }

  .hero-proof {
    display: none;
  }

  .statement {
    grid-template-columns: 1fr 2.5fr;
  }

  .statement-copy {
    grid-column: 2;
  }

  .pathway {
    grid-template-columns: 1fr;
  }

  .pathway-media,
  .pathway-visual {
    grid-column: 1 / -1;
    min-height: 500px;
  }

  .pathway-content {
    padding-right: 7vw;
  }

  .product-card {
    min-height: 540px;
  }

  .product-card img {
    height: 360px;
  }

  .brand-intro-copy {
    grid-template-columns: 1fr auto;
  }

  .portfolio {
    grid-template-columns: 1fr;
  }

  .portfolio-copy {
    max-width: 680px;
  }

  .capability-item {
    grid-template-columns: 50px 0.8fr 1.2fr;
    gap: 25px;
  }

  .process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 86px 22px;
  }

  .brand {
    width: 106px;
  }

  .hero-content {
    width: auto;
    padding: 120px 22px 170px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 16vw, 5.4rem);
    line-height: 0.91;
  }

  .hero-copy {
    margin-top: 24px;
    font-size: 0.94rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    bottom: 28px;
    left: 22px;
  }

  .statement {
    display: block;
    min-height: auto;
  }

  .section-index {
    margin-bottom: 70px;
  }

  .display-title {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .statement-copy {
    margin-top: 55px;
  }

  .section-heading,
  .brand-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .section-heading h2,
  .portfolio h2,
  .capabilities h2,
  .process h2 {
    font-size: clamp(2.9rem, 13.5vw, 4.5rem);
  }

  .partnership-heading {
    gap: 20px;
    margin-bottom: 24px;
  }

  .partnership-heading h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .partnership-heading .section-lead {
    max-width: 33rem;
    font-size: 0.88rem;
    line-height: 1.7;
  }

  .export-video-route {
    right: 22px;
    bottom: 22px;
  }

  .pathway {
    display: block;
    min-height: auto;
  }

  .pathway-content {
    padding: 70px 24px;
  }

  .pathway-copy-video {
    object-position: 55% center;
  }

  .pathway-copy-shade {
    background:
      linear-gradient(90deg, rgba(6, 6, 6, 0.8), rgba(6, 6, 6, 0.55)),
      linear-gradient(0deg, rgba(6, 6, 6, 0.78), rgba(6, 6, 6, 0.3) 55%, rgba(6, 6, 6, 0.68));
  }

  .pathway-content h3 {
    font-size: clamp(2.8rem, 12vw, 4.1rem);
  }

  .pathway-media,
  .pathway-visual {
    min-height: 430px;
  }

  .orbit-one {
    left: -10%;
  }

  .orbit-two {
    left: 20%;
  }

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

  .brand-logo-heading img {
    width: min(100%, 360px);
  }

  .brand-intro-copy {
    grid-template-columns: 1fr;
  }

  .glamp-film {
    padding-top: 10px;
    padding-bottom: 76px;
  }

  .glamp-film-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
  }

  .glamp-film-heading h3 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .glamp-film-heading > p {
    max-width: 31rem;
    font-size: 0.84rem;
  }

  .glamp-film-index {
    top: 12px;
    right: 12px;
  }

  .glamp-site-button {
    width: 100%;
    max-width: 270px;
    min-width: 0;
    justify-self: start;
  }

  .product-rail {
    display: block;
    padding: 10px;
  }

  .product-card {
    min-height: 0;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  }

  .product-card img {
    height: 340px;
  }

  .glamp-banner {
    grid-template-columns: 1fr auto;
    gap: 28px;
    min-height: 280px;
    padding: 55px 22px;
  }

  .glamp-banner-kicker {
    grid-column: 1 / -1;
  }

  .glamp-banner strong {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .portfolio {
    min-height: auto;
  }

  .portfolio-image img {
    height: 480px;
  }

  .capability-item {
    grid-template-columns: 35px 1fr;
    gap: 18px;
  }

  .capability-item p {
    grid-column: 2;
  }

  .process-steps li {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

  .process-steps p {
    grid-column: 2;
  }

  .contact {
    min-height: 680px;
  }

  .contact h2 {
    font-size: clamp(3.25rem, 15vw, 4.8rem);
  }

  .contact-title-desktop {
    display: none;
  }

  .contact-title-mobile {
    display: block;
  }

  .contact-title-mobile > span {
    display: block;
    white-space: nowrap;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 70px 22px 24px;
  }

  .footer-details {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }

  .footer-details div:first-child {
    grid-column: 1 / -1;
  }
}

@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .loader-letter {
    opacity: 1;
    animation: none;
    transform: none;
  }

  .hero-line > span,
  .hero-enter {
    opacity: 1;
    transform: none;
  }
}
