/* ===================================================================
   LIQ — Experiential Store Design LP
   Design tokens & styles (high-fidelity port of the handoff prototype)
   =================================================================== */

:root {
  --ink: #eef2ef;
  --muted: rgba(238, 242, 239, 0.6);
  --faint: rgba(238, 242, 239, 0.34);
  --gold: #a2857e;
  --water: #8fe3f0;
  --green: #4cbf94;
  --accent: #a2857e;
  --accent-hover: #bda49c;
  --line: rgba(238, 242, 239, 0.13);
  --bg: #060807;
}

* { box-sizing: border-box; }

/* smooth anchor scrolling is done in JS (main.js) — native smooth gets
   canceled by scroll anchoring while autoplay videos load */

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  /* clip (not hidden): hidden would make body a scroll container and break anchor scrolling */
  overflow-x: hidden;
  overflow-x: clip;
  position: relative;
}

::selection { background: rgba(143, 227, 240, 0.22); }

h1, h2, h3 { font-family: 'Zen Old Mincho', serif; }

a { color: inherit; }

img { display: block; }

/* ---------- keyframes ---------- */
@keyframes liqRise   { from { opacity: 0; transform: translateY(38px); } to { opacity: 1; transform: none; } }
@keyframes liqRiseSm { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes liqKenburns { 0% { transform: scale(1.06); } 100% { transform: scale(1.16); } }
@keyframes liqScroll { 0% { transform: translateY(0); opacity: .9; } 70% { opacity: .1; } 100% { transform: translateY(15px); opacity: 0; } }
@keyframes liqLine   { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes liqMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- film grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 95;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22180%22 height=%22180%22><filter id=%22n%22><feTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%222%22/></filter><rect width=%22180%22 height=%22180%22 filter=%22url(%23n)%22 opacity=%220.7%22/></svg>");
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  border-radius: 999px;
  transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.btn .arrow { font-family: 'Jost', sans-serif; }

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  padding: 18px 38px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .02em;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(162, 133, 126, 0.3);
}

.btn-outline {
  color: var(--ink);
  padding: 18px 32px;
  border: 1px solid rgba(238, 242, 239, 0.3);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: .02em;
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(238, 242, 239, 0.1);
  transform: translateY(-2px);
}

/* ---------- sticky CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 90px);
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px 10px 24px;
  border-radius: 999px;
  background: rgba(10, 13, 12, 0.82);
  border: 1px solid rgba(238, 242, 239, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1), opacity .6s ease;
  pointer-events: none;
  max-width: calc(100vw - 32px);
}
.sticky-cta.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.sticky-cta__label {
  font-size: 12.5px;
  letter-spacing: .05em;
  color: var(--muted);
  white-space: nowrap;
}
.sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--accent);
  color: #ffffff;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: .03em;
  white-space: nowrap;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.sticky-cta__btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(162, 133, 126, 0.32);
}
.sticky-cta__btn .arrow { font-family: 'Jost', sans-serif; }

/* ---------- header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 68px);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(6, 8, 7, 0.66), rgba(6, 8, 7, 0));
}
.header__logo { height: 44px; width: auto; opacity: .96; }
.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  letter-spacing: .06em;
  color: #ffffff;
  background: var(--accent);
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.header__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(162, 133, 126, 0.28);
}

.header__right { display: flex; align-items: center; gap: 12px; }

/* ---------- hamburger (mobile) ---------- */
.menu-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(238, 242, 239, 0.3);
  background: rgba(6, 8, 7, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  padding: 0;
  transition: border-color .3s ease, background .3s ease;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: transform .35s cubic-bezier(.2, .7, .2, 1), opacity .35s ease;
}
.menu-btn.is-open { border-color: var(--accent); }
.menu-btn.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-btn.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(6, 8, 7, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}
.menu-overlay.is-open { opacity: 1; pointer-events: auto; }
.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: min(86vw, 380px);
}
.menu-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 17px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  font-family: 'Zen Old Mincho', serif;
  font-size: 19px;
  letter-spacing: .04em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .2, 1), color .3s ease;
}
.menu-link:active { color: var(--accent); }
.menu-link .no {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--accent);
}
.menu-overlay.is-open .menu-link { opacity: 1; transform: none; }
.menu-overlay.is-open .menu-link:nth-child(1) { transition-delay: .08s; }
.menu-overlay.is-open .menu-link:nth-child(2) { transition-delay: .14s; }
.menu-overlay.is-open .menu-link:nth-child(3) { transition-delay: .2s; }
.menu-overlay.is-open .menu-link:nth-child(4) { transition-delay: .26s; }
.menu-overlay.is-open .menu-link:nth-child(5) { transition-delay: .32s; }
.menu-cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  background: var(--accent);
  color: #ffffff;
  padding: 17px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .03em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease .4s, transform .6s cubic-bezier(.2, .7, .2, 1) .4s, background .3s ease;
}
.menu-cta .arrow { font-family: 'Jost', sans-serif; }
.menu-overlay.is-open .menu-cta { opacity: 1; transform: none; }

body.menu-locked { overflow: hidden; }

@media (max-width: 760px) {
  .menu-btn { display: flex; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 7, 0.55) 0%, rgba(6, 8, 7, 0.12) 38%, rgba(6, 8, 7, 0.72) 82%, rgba(6, 8, 7, 0.96) 100%);
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(130% 90% at 50% 8%, transparent 50%, rgba(6, 8, 7, 0.55) 100%);
}
.hero__ghost {
  position: absolute;
  right: -1vw;
  bottom: -6vw;
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(180px, 28vw, 460px);
  line-height: .9;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(238, 242, 239, 0.09);
  pointer-events: none;
  user-select: none;
}
.hero__vertical {
  position: absolute;
  top: 50%;
  right: clamp(20px, 4.5vw, 64px);
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: .62em;
  color: rgba(238, 242, 239, 0.5);
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero__vertical span {
  width: 1px;
  height: 74px;
  background: linear-gradient(transparent, rgba(238, 242, 239, 0.4));
  display: block;
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(140px, 22vh, 210px) clamp(20px, 5vw, 68px) clamp(72px, 11vh, 120px);
}
.hero__eyebrow {
  opacity: 0;
  animation: liqRiseSm .9s .05s ease both;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: .42em;
  color: var(--accent);
  margin-bottom: 34px;
}
.hero__eyebrow span {
  width: 40px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.hero__title {
  opacity: 0;
  animation: liqRise 1.1s .15s ease both;
  margin: 0;
  font-weight: 500;
  font-size: clamp(28px, 5.4vw, 72px);
  line-height: 1.42;
  letter-spacing: .05em;
  max-width: 19ch;
}
.hero__title .mark { position: relative; white-space: nowrap; }
.hero__title .mark::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: -0.12em;
  height: 2px;
  background: linear-gradient(90deg, var(--water), var(--gold));
  border-radius: 2px;
}
.hero__sub {
  opacity: 0;
  animation: liqRise 1.1s .32s ease both;
  margin: 40px 0 0;
  max-width: 50ch;
  font-size: clamp(14.5px, 1.4vw, 17px);
  line-height: 2.1;
  color: rgba(238, 242, 239, 0.78);
  font-weight: 300;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.hero__actions {
  opacity: 0;
  animation: liqRise 1.1s .46s ease both;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 44px;
  align-items: center;
}
.hero__note {
  opacity: 0;
  animation: liqRise 1.1s .6s ease both;
  margin-top: 26px;
  font-size: 12.5px;
  letter-spacing: .03em;
  color: rgba(238, 242, 239, 0.6);
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero__note .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.hero__scroll {
  position: absolute;
  right: clamp(20px, 5vw, 68px);
  bottom: clamp(64px, 9vh, 110px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero__scroll .label {
  writing-mode: vertical-rl;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--faint);
}
.hero__scroll .track {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--accent), transparent);
  overflow: hidden;
  position: relative;
}
.hero__scroll .track span {
  position: absolute;
  top: 0; left: -1px;
  width: 3px; height: 15px;
  background: var(--accent);
  border-radius: 2px;
  animation: liqScroll 2.2s ease-in-out infinite;
}

/* ---------- generic section bits ---------- */
.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  letter-spacing: .36em;
  color: var(--accent);
}
.section-h2 {
  margin: 0;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .01em;
  text-wrap: balance;
}
.lead {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 2.15;
  color: var(--muted);
  font-weight: 300;
}
.lead .strong { color: var(--ink); }

/* reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s ease, transform 1s cubic-bezier(.2, .7, .2, 1);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- 01 empathy ---------- */
.empathy { position: relative; padding: clamp(100px, 14vw, 180px) clamp(20px, 5vw, 68px); }
.empathy__wrap { max-width: 1180px; margin: 0 auto; position: relative; }
.empathy__num {
  position: absolute;
  top: -46px; left: -8px;
  font-family: 'Jost', sans-serif;
  font-size: clamp(120px, 18vw, 230px);
  font-weight: 200;
  line-height: .8;
  color: rgba(238, 242, 239, 0.04);
  pointer-events: none;
}
.empathy__body { position: relative; }
.empathy__label { font-family: 'Jost', sans-serif; font-size: 11.5px; letter-spacing: .36em; color: var(--accent); margin-bottom: 34px; }
.empathy h2 { font-size: clamp(26px, 4.2vw, 52px); line-height: 1.42; max-width: 20ch; }
.empathy h2 .water { color: var(--water); }
.empathy__cols {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(28px, 4vw, 64px);
  max-width: 880px;
}

/* ---------- 02 strength ---------- */
.strength { position: relative; padding: clamp(40px, 5vw, 70px) clamp(20px, 5vw, 68px) clamp(80px, 10vw, 130px); }
.strength__wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.strength__text { flex: 1 1 420px; }
.strength__label { font-family: 'Jost', sans-serif; font-size: 11.5px; letter-spacing: .36em; color: var(--accent); margin-bottom: 30px; }
.strength h2 { font-size: clamp(24px, 3.4vw, 42px); line-height: 1.45; }
.strength p { margin: 34px 0 0; max-width: 46ch; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.chip {
  font-size: 12.5px;
  color: var(--ink);
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 2px;
  letter-spacing: .03em;
}
.strength__media {
  flex: 1 1 420px;
  min-height: clamp(360px, 52vh, 620px);
  transition: opacity 1.1s ease .1s, transform 1.1s cubic-bezier(.2, .7, .2, 1) .1s;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.strength__media .bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/luxe.png");
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}
.strength__media:hover .bg { transform: scale(1.07); }
.strength__media .grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 8, 7, 0.55));
  pointer-events: none;
}
.strength__media .tag {
  position: absolute;
  left: 24px; bottom: 22px;
  font-family: 'Jost', sans-serif;
  font-size: 10.5px;
  letter-spacing: .22em;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- 03 experiences ---------- */
.experiences {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0 clamp(30px, 4vw, 60px);
  overflow: hidden;
}
.experiences__ghost {
  position: absolute;
  top: clamp(8px, 1.5vw, 24px);
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: clamp(72px, 12vw, 190px);
  line-height: 1;
  letter-spacing: .04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(238, 242, 239, 0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.experiences__head {
  text-align: center;
  padding: clamp(28px, 5vw, 80px) clamp(20px, 5vw, 68px) 0;
  margin-bottom: clamp(56px, 7vw, 90px);
  position: relative;
}
.experiences__head .eyebrow { display: block; }
.experiences__head h2 { margin: 20px 0 0; font-weight: 400; font-size: clamp(28px, 4.4vw, 56px); line-height: 1.3; letter-spacing: .01em; }
.experiences__head h2 .b { font-weight: 500; }

.exp-band {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 68px) clamp(60px, 8vw, 110px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(30px, 4vw, 72px);
  align-items: center;
}
.exp-band--last { padding-bottom: clamp(20px, 3vw, 40px); }
.exp-media {
  flex: 1 1 440px;
  order: 1;
  min-height: clamp(300px, 46vh, 560px);
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.exp-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exp-media .grad { position: absolute; inset: 0; pointer-events: none; }
.exp-media .grad--l { background: linear-gradient(120deg, rgba(6, 8, 7, 0.35), transparent 50%); }
.exp-media .grad--r { background: linear-gradient(240deg, rgba(6, 8, 7, 0.35), transparent 50%); }
.exp-media .grad--r2 { background: linear-gradient(240deg, rgba(6, 8, 7, 0.3), transparent 50%); }
.exp-media .num {
  position: absolute;
  top: 22px;
  font-family: 'Jost', sans-serif;
  font-size: 46px;
  font-weight: 200;
  line-height: 1;
}
.exp-media .num--l { left: 26px; }
.exp-media .num--r { right: 26px; }
.exp-text { flex: 1 1 380px; order: 2; transition: opacity 1.1s ease .1s, transform 1.1s cubic-bezier(.2, .7, .2, 1) .1s; }
.exp-text .kicker { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: .3em; margin-bottom: 16px; }
.exp-text h3 { margin: 0 0 22px; font-size: clamp(22px, 2.6vw, 32px); font-weight: 500; letter-spacing: .01em; }
.exp-text p { margin: 0; font-size: 15px; line-height: 2.1; color: var(--muted); font-weight: 300; max-width: 46ch; }

/* ---------- 04 recommended ---------- */
.recommend {
  position: relative;
  padding: clamp(80px, 11vw, 140px) clamp(20px, 5vw, 68px);
  background: linear-gradient(180deg, #060807, #0a100e);
}
.recommend__wrap { max-width: 1180px; margin: 0 auto; }
.recommend__head { margin-bottom: 50px; }
.recommend__head h2 { margin: 18px 0 0; font-weight: 400; font-size: clamp(24px, 3.6vw, 44px); line-height: 1.35; }
.recommend__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0 60px;
  transition: opacity 1.1s ease .08s, transform 1.1s cubic-bezier(.2, .7, .2, 1) .08s;
}
.recommend__item {
  display: flex;
  gap: 17px;
  align-items: flex-start;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}
.recommend__check {
  flex: none;
  width: 23px; height: 23px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  margin-top: 2px;
}
.recommend__item span:last-child { font-size: 15.5px; line-height: 1.7; color: var(--ink); font-weight: 300; }

/* ---------- 05 industries ---------- */
.industries {
  position: relative;
  padding: clamp(80px, 11vw, 140px) 0 clamp(70px, 9vw, 110px);
  background: #0a100e;
  overflow: hidden;
}
.marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 0 clamp(46px, 6vw, 72px);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: liqMarquee 38s linear infinite;
  will-change: transform;
}
.marquee__item {
  font-family: 'Jost', sans-serif;
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 200;
  letter-spacing: .04em;
  color: rgba(238, 242, 239, 0.16);
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
}
.marquee__item .sep {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .5;
}
.industries__inner { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 68px); }
.industries__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: clamp(34px, 4vw, 52px);
}
.industries__head .eyebrow { margin-bottom: 18px; }
.industries__head h2 { margin: 0; font-weight: 400; font-size: clamp(24px, 3.6vw, 44px); line-height: 1.4; max-width: 24ch; }
.industries__head h2 .b { font-weight: 500; }
.industries__hint { margin: 0; font-size: 13.5px; line-height: 2; color: var(--muted); font-weight: 300; max-width: 30ch; }
.industries__cols { display: flex; flex-wrap: wrap; gap: clamp(24px, 3vw, 48px); align-items: stretch; }
.industries__list { flex: 1 1 320px; min-width: 280px; transition: opacity 1.1s ease .08s, transform 1.1s cubic-bezier(.2, .7, .2, 1) .08s; }
.ind-row {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 6px;
  border-bottom: 1px solid var(--line);
  color: var(--faint);
  transition: color .35s ease, padding-left .35s ease;
}
.ind-row:hover { color: var(--ink); padding-left: 12px; }
.ind-row.is-active { color: var(--ink); padding-left: 12px; }
.ind-row__no { font-family: 'Jost', sans-serif; font-size: 11px; width: 22px; flex: none; color: var(--accent); letter-spacing: .05em; }
.ind-row__bar { width: 0; height: 1px; flex: none; background: var(--accent); transition: width .4s cubic-bezier(.2, .7, .2, 1); }
.ind-row:hover .ind-row__bar,
.ind-row.is-active .ind-row__bar { width: 26px; }
.ind-row__name { font-size: clamp(15px, 1.6vw, 18px); font-weight: 300; letter-spacing: .02em; }
.ind-row__en { margin-left: auto; font-family: 'Jost', sans-serif; font-size: 9.5px; letter-spacing: .22em; opacity: .55; }
.industries__note { margin: 26px 0 0; font-size: 13px; line-height: 1.95; color: var(--faint); font-weight: 300; }

.industries__stage {
  flex: 1.25 1 460px;
  min-width: 300px;
  transition: opacity 1.1s ease .16s, transform 1.1s cubic-bezier(.2, .7, .2, 1) .16s;
  display: flex;
  flex-direction: column;
}
.stage {
  position: relative;
  flex: 1;
  min-height: clamp(360px, 52vh, 560px);
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.stage__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity .7s ease, transform 8s ease;
}
.stage__bg--a { opacity: 1; }
.stage__bg--b { opacity: 0; }
.stage__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 7, 0.1) 30%, rgba(6, 8, 7, 0.5) 62%, rgba(6, 8, 7, 0.92));
}
.stage__scan {
  position: absolute;
  inset: 0;
  mix-blend-mode: screen;
  opacity: .2;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(143, 227, 240, 0.1) 0 1px, transparent 1px 16px);
}
.stage__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: clamp(26px, 3.2vw, 44px); }
.stage__cap-en { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .32em; color: var(--accent); margin-bottom: 14px; }
.stage__cap-name { margin: 0 0 16px; font-size: clamp(24px, 3.2vw, 40px); font-weight: 500; letter-spacing: .01em; }
.stage__cap-blurb { margin: 0; max-width: 48ch; font-size: clamp(14px, 1.4vw, 16px); line-height: 1.95; color: rgba(238, 242, 239, 0.82); font-weight: 300; }

.stage__thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
}
.thumb__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.1s cubic-bezier(.2, .7, .2, 1);
}
.thumb:hover .thumb__bg { transform: scale(1.08); }
.thumb__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 8, 7, 0.78));
  pointer-events: none;
}
.thumb__label {
  position: absolute;
  left: 14px; bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: .18em;
  color: rgba(255, 255, 255, 0.92);
}
.thumb__label .arr { font-size: 12px; }

.industries__cta {
  margin-top: 18px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .04em;
  transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.industries__cta:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(162, 133, 126, 0.26);
}
.industries__cta .arrow { font-family: 'Jost', sans-serif; }

/* ---------- 06 track record ---------- */
.record {
  position: relative;
  padding: clamp(90px, 12vw, 150px) clamp(20px, 5vw, 68px);
  background: linear-gradient(180deg, #0a100e, #060807);
}
.record__wrap { max-width: 1280px; margin: 0 auto; }
.record__head { max-width: 760px; margin-bottom: 54px; }
.record__head h2 { margin: 18px 0 26px; font-weight: 400; font-size: clamp(24px, 3.8vw, 46px); line-height: 1.4; max-width: 22ch; text-wrap: balance; }
.record__head h2 .b { font-weight: 500; }
.record__head p { margin: 0; }
.record__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  transition: opacity 1.1s ease .12s, transform 1.1s cubic-bezier(.2, .7, .2, 1) .12s;
}
.record__card {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.record__card .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.record__card .grad { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6, 8, 7, 0.82)); }
.record__card .label { position: absolute; left: 20px; bottom: 18px; font-size: 14.5px; font-weight: 400; letter-spacing: .02em; }

/* ---------- 07 subsidy (light) ---------- */
.subsidy {
  position: relative;
  padding: clamp(80px, 11vw, 140px) clamp(20px, 5vw, 68px);
  background: #f5f4ef;
  color: #15201c;
}
.subsidy__wrap { max-width: 1080px; margin: 0 auto; }
.subsidy__eyebrow { text-align: center; margin-bottom: 12px; }
.subsidy__eyebrow .eyebrow { color: #a4796a; }
.subsidy h2 {
  margin: 0 auto 44px;
  text-align: center;
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.45;
  max-width: 25ch;
  color: #15201c;
  text-wrap: balance;
}
.subsidy__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.subsidy__cols p { font-size: 16px; line-height: 2.1; color: #3a4843; font-weight: 300; }
.subsidy__cols p:first-child { margin: 0 0 22px; }
.subsidy__cols p:last-child { margin: 0; }
.subsidy__menu { background: #fff; border: 1px solid rgba(21, 32, 28, 0.1); border-radius: 4px; padding: 32px; }
.subsidy__menu-label { font-family: 'Jost', sans-serif; font-size: 10.5px; letter-spacing: .22em; color: #a4796a; margin-bottom: 18px; }
.subsidy__item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(21, 32, 28, 0.08);
}
.subsidy__item .dot { flex: none; width: 7px; height: 7px; border-radius: 50%; background: #a4796a; margin-top: 8px; }
.subsidy__item span:last-child { font-size: 14.5px; line-height: 1.7; color: #15201c; font-weight: 400; }
.subsidy__note {
  margin-top: 34px;
  background: rgba(164, 121, 106, 0.08);
  border: 1px solid rgba(164, 121, 106, 0.22);
  border-radius: 4px;
  padding: 18px 22px;
  font-size: 13px;
  line-height: 1.9;
  color: #5a5240;
}

/* ---------- 08 flow ---------- */
.flow { position: relative; padding: clamp(90px, 12vw, 150px) clamp(20px, 5vw, 68px); background: #060807; }
.flow__wrap { max-width: 1040px; margin: 0 auto; }
.flow__head { text-align: center; margin-bottom: 64px; }
.flow__head h2 { margin: 18px 0 0; font-weight: 400; font-size: clamp(26px, 4vw, 48px); line-height: 1.35; }
.flow__timeline { position: relative; }
.flow__spine {
  position: absolute;
  left: 28px; top: 14px; bottom: 40px;
  width: 1px;
  background: linear-gradient(var(--line), var(--accent), var(--line));
}
.flow__step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 30px;
  padding: 16px 0 42px;
}
.flow__num {
  position: relative;
  z-index: 1;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #060807;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: var(--accent);
}
.flow__body { padding-top: 6px; }
.flow__body h3 { margin: 0 0 12px; font-size: clamp(18px, 2vw, 22px); font-weight: 500; letter-spacing: .02em; }
.flow__body p { margin: 0; font-size: 14.5px; line-height: 2; color: var(--muted); font-weight: 300; max-width: 58ch; }

/* ---------- 09 final CTA ---------- */
.final {
  position: relative;
  min-height: 88svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.final__media { position: absolute; inset: 0; overflow: hidden; }
.final__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.final__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 7, 0.78), rgba(6, 8, 7, 0.6) 50%, rgba(6, 8, 7, 0.9));
}
.final__inner {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 68px);
}
.final__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Jost', sans-serif;
  font-size: 11.5px;
  letter-spacing: .5em;
  color: rgba(238, 242, 239, 0.6);
  margin-bottom: 30px;
}
.final__eyebrow span { width: 34px; height: 1px; background: var(--accent); }
.final h2 { margin: 0; font-weight: 400; font-size: clamp(28px, 5.4vw, 66px); line-height: 1.3; letter-spacing: .01em; text-wrap: balance; }
.final h2 .grad {
  font-weight: 500;
  background: linear-gradient(110deg, #ffffff, var(--water) 55%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final__sub { margin: 34px auto 0; max-width: 50ch; font-size: clamp(15px, 1.5vw, 17px); line-height: 2.1; color: rgba(238, 242, 239, 0.82); font-weight: 300; }
.final__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 46px; }
.final__cta { padding: 19px 50px; font-size: 16px; }
.final__note { margin-top: 24px; font-size: 13px; letter-spacing: .03em; color: rgba(238, 242, 239, 0.6); }

/* ---------- footer ---------- */
.footer {
  background: #040605;
  border-top: 1px solid var(--line);
  padding: 50px clamp(20px, 5vw, 68px);
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}
.footer__brand { display: flex; align-items: center; gap: 18px; }
.footer__brand img { height: 58px; width: auto; opacity: .92; }
.footer__brand span { font-size: 10.5px; letter-spacing: .2em; color: var(--faint); }
.footer__right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer__tagline { font-size: 12px; color: var(--faint); letter-spacing: .04em; }
.footer__company { font-size: 11.5px; color: var(--faint); letter-spacing: .05em; }
.footer__link {
  font-size: 11.5px;
  color: var(--faint);
  letter-spacing: .06em;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color .3s ease, border-color .3s ease;
}
.footer__link:hover { color: var(--ink); border-color: var(--accent); }
@media (max-width: 760px) {
  .footer__right { align-items: flex-start; }
}

/* ---------- form page (contact.html) ---------- */
.page-back {
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--muted);
  text-decoration: none;
  padding: 12px 0;
  transition: color .3s ease;
}
.page-back:hover { color: var(--ink); }

.form-page {
  min-height: 100svh;
  padding: clamp(130px, 18vh, 180px) clamp(20px, 5vw, 68px) clamp(80px, 10vw, 120px);
  background:
    radial-gradient(90% 60% at 80% 0%, rgba(162, 133, 126, 0.08), transparent 60%),
    #060807;
}
.form-page__wrap { max-width: 640px; margin: 0 auto; }
.form-page__head { margin-bottom: 44px; }
.form-page__title {
  margin: 20px 0 0;
  font-weight: 500;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.35;
  letter-spacing: .03em;
}
.form-page__lead {
  margin: 24px 0 0;
  font-size: clamp(14px, 1.4vw, 15.5px);
  line-height: 2.1;
  color: var(--muted);
  font-weight: 300;
}

.form-card {
  position: relative;
  background: rgba(238, 242, 239, 0.025);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(26px, 4vw, 44px);
}
.form-field { margin-bottom: 26px; }
.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  letter-spacing: .04em;
  color: var(--ink);
  margin-bottom: 11px;
  font-weight: 400;
}
.req, .opt {
  font-size: 10px;
  letter-spacing: .1em;
  padding: 3px 8px;
  border-radius: 2px;
  font-weight: 400;
}
.req { color: #ffffff; background: var(--accent); }
.opt { color: var(--faint); border: 1px solid var(--line); }

.form-input {
  width: 100%;
  background: rgba(6, 8, 7, 0.6);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 15px 16px;
  font-size: 15px;
  color: var(--ink);
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 300;
  letter-spacing: .02em;
  transition: border-color .3s ease, background .3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: var(--faint); }
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(6, 8, 7, 0.85);
}
.form-select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%23a2857e' fill='none' stroke-width='1.2'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option { background: #0a100e; color: var(--ink); }
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.9; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
  margin: 30px 0 0;
}
.form-consent input {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  accent-color: var(--accent);
  cursor: pointer;
  flex: none;
}
.form-consent a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: color .3s ease;
}
.form-consent a:hover { color: var(--accent); }

.form-error {
  margin: 20px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: #e8a9a0;
  background: rgba(232, 169, 160, 0.07);
  border: 1px solid rgba(232, 169, 160, 0.25);
  border-radius: 3px;
  padding: 12px 16px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  margin-top: 28px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 19px 38px;
  border-radius: 999px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}
.form-submit .arrow { font-family: 'Jost', sans-serif; }
.form-submit:hover:not(:disabled) {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(162, 133, 126, 0.3);
}
.form-submit:disabled { opacity: .55; cursor: wait; }
.form-note {
  margin: 18px 0 0;
  font-size: 11.5px;
  line-height: 1.9;
  letter-spacing: .03em;
  color: var(--faint);
  text-align: center;
}

.form-done {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(238, 242, 239, 0.025);
  padding: clamp(50px, 8vw, 80px) clamp(26px, 4vw, 44px);
}
.form-done__mark {
  width: 62px;
  height: 62px;
  margin: 0 auto 26px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: 'Jost', sans-serif;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-done__title {
  margin: 0;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: .03em;
}
.form-done__text {
  margin: 20px 0 0;
  font-size: 14.5px;
  line-height: 2.1;
  color: var(--muted);
  font-weight: 300;
}
.form-done__back { margin-top: 34px; }

/* ---------- legal page (privacy.html) ---------- */
.legal-page {
  min-height: 100svh;
  padding: clamp(130px, 18vh, 180px) clamp(20px, 5vw, 68px) clamp(80px, 10vw, 120px);
  background: #060807;
}
.legal-page__wrap { max-width: 760px; margin: 0 auto; }
.legal-page__title {
  margin: 20px 0 0;
  font-weight: 500;
  font-size: clamp(26px, 4.4vw, 40px);
  line-height: 1.4;
  letter-spacing: .03em;
}
.legal-page__intro {
  margin: 28px 0 0;
  font-size: 14.5px;
  line-height: 2.15;
  color: var(--muted);
  font-weight: 300;
}
.legal-sec { margin-top: 48px; }
.legal-sec h2 {
  margin: 0 0 16px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: .02em;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.legal-sec p, .legal-sec li {
  font-size: 14px;
  line-height: 2.1;
  color: var(--muted);
  font-weight: 300;
}
.legal-sec p { margin: 0 0 14px; }
.legal-sec ul { margin: 0 0 14px; padding-left: 22px; }
.legal-sec li { margin-bottom: 6px; }
.legal-date {
  margin-top: 56px;
  font-size: 12.5px;
  color: var(--faint);
  letter-spacing: .04em;
  text-align: right;
}

/* ---------- responsive ---------- */
@media (max-width: 760px) {
  [data-m-hide] { display: none !important; }
  [data-eyebrow] { letter-spacing: .22em !important; }
}
@media (max-width: 430px) {
  [data-m-hide-sm] { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
