@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;600;700&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
:root {
  --bg: #f7f6f3;
  --bg-2: #efeeea;
  --bg-3: #e7e6e1;
  --paper: #ffffff;
  --ink: #0e0e0d;
  --ink-soft: #45443f;
  --ink-faint: #8a897f;
  --line: #e3e2dc;
  --line-soft: #ededea;
  --gold: #cf4322;
  --gold-deep: #b3381a;
  --gold-soft: #e8836a;
  --au: #c2a368;
  --au-deep: #a8884b;
  --au-soft: #ddc79a;
  --taupe: #9b8c72;
  --sage: #7d8f80;
  --latin: Outfit, sans-serif;
  --jp: Zen Kaku Gothic New, sans-serif;
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(43, 42, 38, 0.04), 0 6px 18px rgba(43, 42, 38, 0.05);
  --shadow-md: 0 4px 10px rgba(43, 42, 38, 0.05), 0 20px 50px rgba(43, 42, 38, 0.1);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  font-family: var(--jp);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.section {
  position: relative;
  padding-block: clamp(52px, 7.5vw, 104px);
}
.section[id] {
  scroll-margin-top: 64px;
}

.eyebrow {
  font-family: var(--latin);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.sec-head {
  margin-bottom: clamp(30px, 4.5vw, 52px);
}

.sec-title {
  font-family: var(--latin);
  font-weight: 300;
  font-size: clamp(38px, 6.4vw, 76px);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-top: 20px;
  color: var(--ink);
}

.sec-sub {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 46ch;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
.reveal.d4 {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.4s var(--ease);
}
.hdr.solid {
  background: rgba(245, 242, 236, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 1px 0 var(--line);
  padding-block: 14px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
  color: #fff;
  transition: color 0.5s var(--ease);
}
.hdr.solid .brand {
  color: var(--ink);
}
.brand b {
  font-family: var(--latin);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.26em;
}
.brand span {
  font-family: var(--latin);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.42em;
  opacity: 0.7;
  padding-left: 0.2em;
}

.nav {
  display: none;
}
.nav a {
  font-family: var(--latin);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  padding: 10px 16px;
  position: relative;
  transition: color 0.5s var(--ease), opacity 0.3s;
}
.hdr.solid .nav a {
  color: var(--ink-soft);
}
.nav a .idx {
  font-size: 9px;
  opacity: 0.5;
  margin-right: 6px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav a:hover {
  color: var(--gold);
}
.hdr.solid .nav a:hover {
  color: var(--gold-deep);
}
.nav a:hover::after {
  transform: scaleX(1);
}
@media screen and (min-width: 900px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 6px;
  }
}

.burger {
  display: block;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  position: relative;
  z-index: 80;
}
.burger span {
  position: absolute;
  left: 9px;
  right: 9px;
  height: 1.5px;
  background: #fff;
  transition: 0.4s var(--ease);
}
.hdr.solid .burger span {
  background: var(--ink);
}
.burger span:nth-child(1) {
  top: 15px;
}
.burger span:nth-child(2) {
  top: 21px;
}
.burger span:nth-child(3) {
  top: 27px;
}
body.menu-open .burger span {
  background: var(--ink);
}
body.menu-open .burger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
body.menu-open .burger span:nth-child(2) {
  opacity: 0;
}
body.menu-open .burger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
@media screen and (min-width: 900px) {
  .burger {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 var(--pad);
  clip-path: circle(0% at calc(100% - 38px) 38px);
  transition: clip-path 0.7s var(--ease);
  pointer-events: none;
}
body.menu-open .mobile-menu {
  clip-path: circle(150% at calc(100% - 38px) 38px);
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--latin);
  font-weight: 300;
  font-size: 13vw;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 0;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.mobile-menu a .idx {
  font-size: 13px;
  color: var(--gold-deep);
  font-weight: 500;
  letter-spacing: 0.2em;
}
body.menu-open .mobile-menu a {
  opacity: 1;
  transform: none;
}
body.menu-open .mobile-menu a:nth-child(1) {
  transition-delay: 0.18s;
}
body.menu-open .mobile-menu a:nth-child(2) {
  transition-delay: 0.26s;
}
body.menu-open .mobile-menu a:nth-child(3) {
  transition-delay: 0.34s;
}
body.menu-open .mobile-menu a:nth-child(4) {
  transition-delay: 0.42s;
}

.menu-close {
  position: absolute;
  top: 26px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s var(--ease) 0.12s, transform 0.4s var(--ease) 0.12s;
}
body.menu-open .menu-close {
  opacity: 1;
  transform: scale(1);
}
.menu-close span {
  position: absolute;
  left: 9px;
  right: 9px;
  top: 50%;
  height: 1.5px;
  background: var(--ink);
}
.menu-close span:nth-child(1) {
  transform: rotate(45deg);
}
.menu-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.ftr {
  background: var(--ink);
  color: rgba(245, 242, 236, 0.5);
  padding: 40px var(--pad);
  border-top: 1px solid rgba(245, 242, 236, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (min-width: 560px) {
  .ftr {
    flex-direction: row;
    align-items: center;
  }
}
.ftr b {
  font-family: var(--latin);
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--bg);
  font-size: 15px;
}
.ftr .links {
  display: flex;
  gap: 24px;
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ftr .links a:hover {
  color: var(--gold-soft);
}
.ftr small {
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--latin);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease);
}
.btn .arr {
  transition: transform 0.4s var(--ease);
}
.btn:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn:hover .arr {
  transform: translateX(6px);
}
.btn.gold {
  border-color: var(--au-deep);
  color: var(--au-deep);
}
.btn.gold:hover {
  background: var(--au-deep);
  color: #fff;
}
.btn.solid {
  background: var(--ink);
  color: var(--bg);
}
.btn.solid:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: #fff;
}

.fv {
  position: relative;
  height: 72svh;
  min-height: 420px;
  overflow: hidden;
  background: #1c1b18;
}
@media screen and (min-width: 560px) {
  .fv {
    height: 78svh;
    min-height: 440px;
  }
}
@media screen and (min-width: 900px) {
  .fv {
    height: 100svh;
    min-height: 600px;
  }
}

.fv-slides {
  position: absolute;
  inset: 0;
}

.fv-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
  background-size: cover;
  background-position: center;
}
.fv-slide.active {
  opacity: 1;
}
.fv-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 18, 15, 0.45) 0%, rgba(20, 18, 15, 0.2) 38%, rgba(20, 18, 15, 0.55) 100%);
}
.fv-slide .kb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 9s ease both;
}
.fv-slide.active .kb {
  animation: kenburns 9s ease both;
}

@keyframes kenburns {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}
.fv-inner {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(70px, 11vh, 120px);
}

.fv-tag {
  color: #f3ede2;
  max-width: 720px;
}
.fv-tag .lead {
  font-family: var(--latin);
  font-weight: 200;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: clamp(11px, 1.4vw, 13px);
  color: var(--au-soft);
  margin-bottom: 26px;
}
.fv-tag h1 {
  font-family: var(--jp);
  font-weight: 500;
  line-height: 1.32;
  font-size: clamp(30px, 5.2vw, 60px);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}
.fv-tag h1 em {
  font-style: normal;
  color: var(--au-soft);
}
.fv-tag p {
  margin-top: 24px;
  font-size: clamp(14px, 1.6vw, 16px);
  color: #ddd5c7;
  max-width: 40ch;
}

.fv-meta {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 30px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(243, 237, 226, 0.65);
}
@media screen and (min-width: 560px) {
  .fv-meta {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

.fv-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.fv-dots button {
  width: 30px;
  height: 2px;
  background: rgba(243, 237, 226, 0.3);
  border: none;
  padding: 0;
  transition: background 0.4s;
}
.fv-dots button.on {
  background: var(--au-soft);
}

.fv-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fv-scroll .line {
  width: 1px;
  height: 34px;
  background: rgba(243, 237, 226, 0.4);
  position: relative;
  overflow: hidden;
}
.fv-scroll .line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-soft);
  animation: scrolldot 2.2s var(--ease) infinite;
}

@keyframes scrolldot {
  0% {
    transform: translateY(-100%);
  }
  60%, 100% {
    transform: translateY(100%);
  }
}
#skill {
  background: var(--bg);
  padding-bottom: clamp(34px, 4vw, 56px);
}

.skill-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media screen and (min-width: 900px) {
  .skill-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.venn-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: 360px;
  margin-inline: auto;
}
@media screen and (min-width: 900px) {
  .venn-wrap {
    max-width: 520px;
  }
}

.venn {
  position: absolute;
  inset: 0;
}

.disc {
  position: absolute;
  width: 60%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1.5px solid var(--au);
  background: rgba(194, 163, 104, 0.18);
  mix-blend-mode: multiply;
  overflow: hidden;
  transform-origin: center;
}
.disc.d1 {
  top: 2%;
  left: 20%;
}
.disc.d2 {
  bottom: 4%;
  left: 1%;
  background: rgba(155, 140, 114, 0.18);
}
.disc.d3 {
  bottom: 4%;
  right: 1%;
  background: rgba(125, 143, 128, 0.18);
}
.disc::before {
  content: "";
  position: absolute;
  inset: -25%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0 190deg, rgba(168, 136, 75, 0.3) 290deg, transparent 360deg);
}
.disc::after {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(168, 136, 75, 0.55);
}

.venn.live .disc {
  animation: vbreathe 6.5s ease-in-out infinite;
}
.venn.live .disc.d2 {
  animation-delay: 0.9s;
}
.venn.live .disc.d3 {
  animation-delay: 1.8s;
}
.venn.live .disc::before {
  animation: vrot 9s linear infinite;
}
.venn.live .disc.d2::before {
  animation-direction: reverse;
  animation-duration: 11s;
}
.venn.live .disc.d3::before {
  animation-duration: 8s;
}
.venn.live .disc::after {
  animation: vrot 17s linear infinite;
}
.venn.live .disc.d2::after {
  animation-direction: reverse;
  animation-duration: 21s;
}
.venn.live .disc.d3::after {
  animation-duration: 14s;
}

@keyframes vbreathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.055);
  }
}
@keyframes vrot {
  to {
    transform: rotate(360deg);
  }
}
.vlab {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 6;
  pointer-events: none;
}
.vlab span {
  font-family: var(--latin);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--au-deep);
  display: block;
  margin-bottom: 3px;
}
.vlab b {
  display: block;
  font-weight: 700;
  font-size: clamp(15px, 2vw, 19px);
  letter-spacing: 0.04em;
  color: var(--ink);
}
.vlab.l1 {
  left: 50%;
  top: 19%;
}
.vlab.l2 {
  left: 23%;
  top: 73%;
}
.vlab.l3 {
  left: 77%;
  top: 73%;
}

.venn-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.venn-core::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--au-soft);
  z-index: 2;
}
.venn-core .glow {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 163, 104, 0.55), transparent 70%);
}
.venn-core .ring {
  position: absolute;
  inset: -12px;
  border: 1px dashed var(--au);
  border-radius: 50%;
  opacity: 0.6;
}

.venn.live .venn-core .glow {
  animation: vpulse 3.2s ease-in-out infinite;
}
.venn.live .venn-core .ring {
  animation: vrot 22s linear infinite;
}

@keyframes vpulse {
  0%, 100% {
    transform: scale(0.7);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.95;
  }
}
@keyframes vennspin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .venn.live .disc,
  .venn.live .disc::before,
  .venn.live .disc::after,
  .venn.live .venn-core .glow,
  .venn.live .venn-core .ring {
    animation: none !important;
  }
}
.skill-copy .skill-list {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.skill-copy .skill-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.skill-copy .skill-item:last-child {
  border-bottom: 1px solid var(--line);
}
.skill-copy .skill-item .no {
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
}
.skill-copy .skill-item h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 4px;
}
.skill-copy .skill-item p {
  font-size: 14px;
  color: var(--ink-soft);
}

#work {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  padding-top: clamp(34px, 4vw, 56px);
  padding-bottom: clamp(34px, 4vw, 56px);
}

.work-block {
  margin-top: clamp(56px, 7vw, 90px);
}
.work-block:first-of-type {
  margin-top: 0;
}

.block-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.block-head .no {
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: 0.24em;
  color: var(--gold-deep);
}
.block-head h3 {
  font-weight: 700;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.block-head h3 .en {
  font-family: var(--latin);
  font-weight: 300;
  font-size: 0.62em;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  margin-left: 14px;
  text-transform: uppercase;
  white-space: nowrap;
}
.block-head .rule {
  flex: 1;
  height: 1px;
  background: var(--line);
  min-width: 40px;
}

.vid-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .vid-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vid-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.vid-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.vid-card .big {
  font-family: var(--latin);
  font-weight: 300;
  font-size: 46px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.vid-card .big i {
  font-style: normal;
  font-size: 0.5em;
  color: var(--au-deep);
  margin-left: 4px;
}
.vid-card h5 {
  margin-top: 16px;
  font-weight: 700;
  font-size: 15px;
}
.vid-card p {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.vid-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.vid-tools {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.vid-tools .vt-label {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.vid-tools .vt-label em {
  font-family: var(--latin);
  font-style: normal;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.vid-tools .vid-tags {
  margin-top: 0;
}

.tag {
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  background: var(--paper);
}

.lp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .lp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease);
  display: flex;
  flex-direction: column;
}
.lp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.lp-card:hover .lp-thumb .img {
  transform: scale(1.06);
}
.lp-card:hover .lp-more .arr {
  transform: translateX(6px);
}

.lp-thumb {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.lp-thumb .live {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(20, 18, 15, 0.55);
  backdrop-filter: blur(6px);
  font-family: var(--latin);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f3ede2;
}
.lp-thumb .live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7fce9b;
  box-shadow: 0 0 0 0 rgba(127, 206, 155, 0.6);
  animation: livepulse 2.4s infinite;
}
.lp-thumb .ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.lp-thumb .ph .n {
  font-family: var(--latin);
  font-weight: 300;
  font-size: 46px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
}
.lp-thumb .ph .t {
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.lp-thumb .img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease);
}

@keyframes livepulse {
  0% {
    box-shadow: 0 0 0 0 rgba(127, 206, 155, 0.55);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(127, 206, 155, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(127, 206, 155, 0);
  }
}
.lp-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.lp-body .cat {
  font-family: var(--latin);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.lp-body h4 {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.02em;
}
.lp-body p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.lp-more {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.lp-more .arr {
  transition: transform 0.4s var(--ease);
}

.lp-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 2px;
}
.lp-tech span {
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  background: var(--paper);
}
.lp-tech span.ja {
  font-family: inherit;
  font-size: 11.5px;
  letter-spacing: 0.06em;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
}
@media screen and (min-width: 900px) {
  .photo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.photo-cell {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-3);
  aspect-ratio: 1/1;
}
.photo-cell.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.photo-cell.wide {
  grid-column: span 2;
  aspect-ratio: auto;
}
.photo-cell .img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.photo-cell:hover .img {
  transform: scale(1.07);
}
.photo-cell .ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-cell .ph span {
  font-family: var(--latin);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.photo-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(20, 18, 15, 0.28));
  opacity: 0;
  transition: opacity 0.5s;
}
.photo-cell:hover::after {
  opacity: 1;
}

.more-row {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

#about {
  background: var(--bg-2);
  padding-top: clamp(34px, 4vw, 56px);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}
@media screen and (min-width: 900px) {
  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(40px, 6vw, 80px);
  }
}

.about-photo {
  position: relative;
  max-width: 380px;
  margin-inline: auto;
  width: 100%;
}
.about-photo .frame {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.about-photo .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo .ring {
  position: absolute;
  inset: -18px;
  border: 1px dashed var(--au);
  border-radius: 50%;
  animation: vennspin 60s linear infinite;
}
.about-photo .badge {
  position: absolute;
  bottom: 6%;
  right: -2%;
  background: var(--ink);
  color: var(--bg);
  width: 104px;
  height: 104px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-photo .badge b {
  font-family: var(--latin);
  font-weight: 300;
  font-size: 28px;
  line-height: 1;
}
.about-photo .badge span {
  font-size: 9px;
  letter-spacing: 0.16em;
  margin-top: 4px;
  color: var(--au-soft);
}

.about-copy h3 {
  font-weight: 500;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.about-copy h3 em {
  font-style: normal;
  color: var(--au-deep);
}
.about-copy .role {
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--au-deep);
  margin-bottom: 22px;
}
.about-copy p {
  margin-top: 22px;
  font-size: 15px;
  color: var(--ink-soft);
  max-width: 48ch;
}

.about-facts {
  display: flex;
  gap: 24px;
  margin-top: 34px;
  flex-wrap: wrap;
}
@media screen and (min-width: 560px) {
  .about-facts {
    gap: 38px;
  }
}
.about-facts div span {
  font-family: var(--latin);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 6px;
}
.about-facts div b {
  font-weight: 500;
  font-size: 15px;
}

#contact {
  background: var(--ink);
  color: var(--bg);
}
#contact .eyebrow {
  color: var(--gold-soft);
}
#contact .eyebrow::before {
  background: var(--gold-soft);
}
#contact .sec-title {
  color: var(--bg);
}
#contact .sec-sub {
  color: rgba(245, 242, 236, 0.65);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
}
@media screen and (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.contact-aside p {
  color: rgba(245, 242, 236, 0.7);
  font-size: 15px;
  max-width: 34ch;
}
.contact-aside .ci {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-aside .ci div span {
  font-family: var(--latin);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--au-soft);
  display: block;
  margin-bottom: 5px;
}
.contact-aside .ci div b {
  font-weight: 400;
  font-size: 16px;
  font-family: var(--latin);
  letter-spacing: 0.04em;
}

.form .field {
  margin-bottom: 26px;
}
.form label {
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.form label .req {
  color: var(--au-soft);
  font-size: 9px;
  border: 1px solid rgba(221, 199, 154, 0.4);
  border-radius: 3px;
  padding: 2px 6px;
  letter-spacing: 0.1em;
}
.form label .multi-hint {
  font-family: var(--jp);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(245, 242, 236, 0.4);
}
.form input,
.form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 242, 236, 0.22);
  color: var(--bg);
  font-family: var(--jp);
  font-size: 16px;
  padding: 12px 2px;
  transition: border-color 0.4s var(--ease);
}
.form input::placeholder,
.form textarea::placeholder {
  color: rgba(245, 242, 236, 0.3);
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold-soft);
}
.form textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.7;
}
.form .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.form .chip {
  position: relative;
}
.form .chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.form .chip label {
  margin: 0;
  cursor: pointer;
  padding: 11px 22px;
  border: 1px solid rgba(245, 242, 236, 0.24);
  border-radius: 999px;
  font-family: var(--jp);
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(245, 242, 236, 0.8);
  transition: all 0.35s var(--ease);
}
.form .chip input:checked + label {
  background: var(--au-soft);
  border-color: var(--au-soft);
  color: var(--ink);
}
.form .err {
  color: #e08a7a;
  font-size: 12px;
  margin-top: 9px;
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.3s, height 0.3s;
  letter-spacing: 0.04em;
}
.form .submit-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.form .hint {
  font-size: 12px;
  color: rgba(245, 242, 236, 0.45);
}

.field.invalid .err {
  height: 18px;
  opacity: 1;
}
.field.invalid input,
.field.invalid textarea {
  border-bottom-color: #e08a7a;
}
.field.invalid .chips {
  outline: none;
}

.btn.send {
  border-color: var(--au-soft);
  color: var(--ink);
  background: var(--au-soft);
}
.btn.send:hover {
  background: #fff;
  border-color: #fff;
}
.btn.send:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  background: transparent;
  color: rgba(245, 242, 236, 0.5);
  border-color: rgba(245, 242, 236, 0.3);
}
.btn.send:disabled:hover {
  background: transparent;
  color: rgba(245, 242, 236, 0.5);
}

.form-done {
  display: none;
  text-align: center;
  padding: 40px 0;
}
.form-done.show {
  display: block;
  animation: fadeup 0.7s var(--ease) both;
}
.form-done .ic {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--gold-soft);
}
.form-done h4 {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.04em;
}
.form-done p {
  color: rgba(245, 242, 236, 0.6);
  margin-top: 12px;
  font-size: 14px;
}

@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.u-pc-only {
  display: none;
}
@media screen and (min-width: 900px) {
  .u-pc-only {
    display: block;
  }
}

.u-sp-only {
  display: block;
}
@media screen and (min-width: 900px) {
  .u-sp-only {
    display: none;
  }
}

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