/* AILERON — dark cinematic chrome */
:root {
  --bg: #0C0B09;
  --text: #F0ECE4;
  --lifted: #141210;
  --accent: #B23A3A;
  --muted: rgba(240, 236, 228, 0.55);
  --faint: rgba(240, 236, 228, 0.28);
  --max: 890px;
  --wide: 1080px;
  --header: 72px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--text); }
body {
  font-family: "Shippori Mincho", "Cormorant Garamond", serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.04em;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
ul { list-style: none; }

/* intro overlay */
#intro {
  position: fixed; inset: 0; z-index: 200;
  background: #0C0B09;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1.4s ease, visibility 1.4s ease;
}
#intro.gone { opacity: 0; visibility: hidden; pointer-events: none; }
#intro p {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  letter-spacing: 0.38em;
  font-weight: 500;
  opacity: 0;
  animation: introIn 1.6s ease forwards;
}
@keyframes introIn {
  0% { opacity: 0; transform: translateY(8px); }
  40% { opacity: 1; transform: none; }
  100% { opacity: 1; }
}

/* header */
.site-header {
  position: sticky; top: 0; z-index: 80;
  height: var(--header);
  display: flex; align-items: center; gap: 28px;
  padding: 0 36px;
  background: rgba(12, 11, 9, 0.92);
  backdrop-filter: blur(10px);
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  letter-spacing: 0.38em;
  font-weight: 500;
  white-space: nowrap;
}
.nav-desktop {
  display: flex; gap: 22px; flex: 1;
}
.nav-desktop a {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.nav-desktop a:hover { color: var(--text); }
.header-right {
  display: flex; align-items: center; gap: 16px; margin-left: auto;
}
.cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; color: #111;
  font-size: 13px;
  letter-spacing: 0.08em;
  padding: 10px 18px;
  border-radius: 2px;
  line-height: 1.3;
  transition: opacity .2s;
  white-space: nowrap;
}
.cta:hover { opacity: 0.82; }
.cta.block {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  font-size: 15px;
  display: flex;
}
.x-link {
  width: 22px; height: 22px; display: grid; place-items: center;
  opacity: 0.85;
}
.x-link:hover { opacity: 1; }
.x-link svg { width: 14px; height: 14px; fill: var(--text); }
.menu-btn {
  display: none;
  width: 40px; height: 40px;
  position: relative;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  position: absolute; left: 10px; right: 10px; height: 1px; background: var(--text);
  content: "";
}
.menu-btn span { top: 50%; }
.menu-btn span::before { top: -7px; }
.menu-btn span::after { top: 7px; }

/* mobile menu */
#mobile-menu {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(12,11,9,0.96);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 22px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}
#mobile-menu.open { opacity: 1; visibility: visible; }
#mobile-menu a.m-link {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
}
#mobile-menu .cta { margin-top: 12px; }
.menu-close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px; font-size: 28px; line-height: 1;
  color: var(--text);
}

/* sections */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: var(--wide); margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0 40px; }
.lifted { background: var(--lifted); }
h2.sec {
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 56px;
}
h2.sec::after {
  content: "";
  display: block;
  width: 40px; height: 1px;
  background: var(--text);
  margin: 16px auto 0;
}
.more {
  text-align: right;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin: -36px 0 28px;
}
.more a:hover { color: var(--text); text-decoration: underline; }

/* videos */
.videos { padding-top: 104px; }
.videos .kicker {
  font-family: "Cormorant Garamond", serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--muted);
}
.videos-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(54px, 9vw, 120px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 10px 0 42px;
}
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.video-grid .thumb, .video-grid .thumb img { width: 100%; }
.video-grid .meta { font-size: 16px; letter-spacing: 0.12em; }
.videos-earlier, .videos-rozetta, .videos-lookbook, .videos-shiki, .videos-other { margin-top: 72px; }
.videos-earlier .kicker,
.videos-rozetta .kicker,
.videos-lookbook .kicker,
.videos-shiki .kicker,
.videos-other .kicker { margin-bottom: 18px; }
.thumb-card { position: relative; }
.thumb-card .thumb { display: block; width: 100%; flex: none; }
.card-x {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: rgba(12,11,9,.55);
  border: 1px solid rgba(240,236,228,.28);
}
.card-x svg { width: 12px; height: 12px; fill: var(--text); }
.card-x:hover { background: rgba(12,11,9,.88); }

/* hero */
.hero {
  position: relative;
  max-width: var(--wide);
  margin: 12px auto 0;
  padding: 0 24px;
}
.hero-viewport {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 8.2;
  background: #000;
}
.hero-track {
  display: flex;
  height: 100%;
  transition: transform .7s cubic-bezier(.22,.61,.36,1);
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 48px 36px 28px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
}
.hero-caption .kicker {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(240,236,228,.7);
  margin-bottom: 6px;
}
.hero-caption h1 {
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.18em;
}
.chev {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(20,18,16,.55);
  border: 1px solid rgba(240,236,228,.25);
  display: grid; place-items: center;
  z-index: 2;
  transition: background .2s;
}
.chev:hover { background: rgba(20,18,16,.85); }
.chev.prev { left: 16px; }
.chev.next { right: 16px; }
.chev svg { width: 14px; height: 14px; stroke: var(--text); fill: none; stroke-width: 1.6; }
.dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 14px;
}
.dots button {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--faint);
}
.dots button.on { background: var(--text); }

/* news */
.news-list { display: grid; gap: 18px; }
.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(240,236,228,.08);
}
.news-item time {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}
.news-item a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* about */
.about-row {
  display: flex; gap: 36px; align-items: center;
  margin-bottom: 28px;
}
.portrait {
  width: 120px; height: 120px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid rgba(240,236,228,.12);
}
.about-id .kicker {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.about-id h3 {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.4;
}
.about-id .en {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 4px;
}
.bio { margin: 8px 0 20px; color: var(--text); }
.dayjob {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.social-row { display: flex; gap: 10px; margin-bottom: 28px; }
.social-sq {
  width: 42px; height: 42px;
  border: 1px solid rgba(240,236,228,.2);
  display: grid; place-items: center;
}
.social-sq svg { width: 16px; height: 16px; fill: var(--text); }

/* carousel rows */
.row-carousel { position: relative; }
.row-viewport { overflow: hidden; }
.row-track {
  display: flex; gap: 14px;
  overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 12px;
}
.row-track::-webkit-scrollbar { display: none; }
.card {
  flex: 0 0 280px;
  background: #11110f;
}
.card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card .meta { padding: 12px 4px 4px; font-size: 14px; letter-spacing: 0.08em; }
.card:hover img { opacity: 0.88; }
.thumb {
  position: relative;
  flex: 0 0 320px;
  cursor: pointer;
}
.thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.play i {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(240,236,228,.7);
  background: rgba(12,11,9,.35);
  display: grid; place-items: center;
}
.play i::after {
  content: "";
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
  margin-left: 3px;
}
.thumb .meta { padding: 10px 2px 0; font-size: 14px; }

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.work-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.work-card h3 {
  font-size: 18px; font-weight: 400;
  letter-spacing: 0.12em; margin: 12px 0 4px;
}
.work-card p { font-size: 13px; color: var(--muted); }

/* contact page */
.form {
  display: grid; gap: 18px;
  max-width: 560px; margin: 0 auto;
}
.form label { font-size: 13px; letter-spacing: 0.12em; display: grid; gap: 8px; }
.form input, .form select, .form textarea {
  background: transparent;
  border: 0; border-bottom: 1px solid rgba(240,236,228,.28);
  color: var(--text);
  font-family: inherit; font-size: 16px;
  padding: 10px 0;
  outline: none;
  border-radius: 0;
}
.form textarea { min-height: 140px; resize: vertical; border: 1px solid rgba(240,236,228,.2); padding: 12px; }
.form .check { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); }
.form .check input { margin-top: 6px; }
.form button[type=submit] {
  background: #fff; color: #111;
  padding: 14px; font-size: 15px; letter-spacing: 0.12em;
  border-radius: 2px;
}
.form button[type=submit]:hover { opacity: .85; }
.mail-note { text-align: center; margin-top: 28px; color: var(--muted); font-size: 14px; }
.mail-note a { text-decoration: underline; text-underline-offset: 3px; }

/* page hero small */
.page-head { padding: 80px 0 20px; text-align: center; }
.page-head p { color: var(--muted); margin-top: 12px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid figure { background: #11110f; }
.gallery-grid img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.gallery-grid figcaption {
  padding: 10px 8px 14px;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.work-hero img { width: 100%; max-height: 56vh; object-fit: cover; }
.work-body { max-width: 640px; margin: 40px auto 80px; padding: 0 24px; }
.work-body h1 { font-size: 32px; font-weight: 400; letter-spacing: 0.16em; margin-bottom: 12px; }
.work-body .meta { color: var(--muted); font-size: 13px; letter-spacing: 0.14em; margin-bottom: 24px; }
.work-body video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  margin: 24px auto;
  background: #000;
  aspect-ratio: 16 / 9;
}
.work-body video.is-vertical {
  width: auto;
  max-width: 100%;
  aspect-ratio: 9 / 16;
}
.work-body a.ext { text-decoration: underline; text-underline-offset: 4px; }

/* lightbox */
#lightbox {
  position: fixed; inset: 0; z-index: 160;
  background: rgba(0,0,0,.95);
  display: none; align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox video {
  width: auto; height: auto;
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  background: #000;
}
#lightbox .x {
  position: absolute; top: 18px; right: 22px;
  font-size: 32px; line-height: 1;
}

/* cta band */
.cta-band { padding: 80px 24px 40px; }

/* footer */
.site-footer {
  padding: 48px 24px 80px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
}
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 40;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(240,236,228,.3);
  background: rgba(12,11,9,.7);
  display: grid; place-items: center;
}
.to-top svg { width: 12px; height: 12px; stroke: var(--text); fill: none; stroke-width: 1.6; }

/* 404 */
.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 80px 24px; }
.notfound h1 { font-size: 28px; font-weight: 400; letter-spacing: 0.28em; margin-bottom: 16px; }

@media (max-width: 900px) {
  .nav-desktop, .header-right .cta, .header-right .x-link { display: none; }
  .menu-btn { display: block; }
  .site-header { padding: 0 16px; }
  .about-row { flex-direction: column; text-align: center; }
  .works-grid, .gallery-grid, .video-grid { grid-template-columns: 1fr 1fr; }
  .news-item { grid-template-columns: 1fr; gap: 4px; }
  .hero-caption h1 { font-size: 22px; }
  .section { padding: 88px 0 32px; }
  .card, .thumb { flex-basis: 78vw; }
}
@media (max-width: 560px) {
  .works-grid, .gallery-grid, .video-grid { grid-template-columns: 1fr; }
  .videos { padding-top: 80px; }
  .videos-title { margin-bottom: 30px; }
  .hero-viewport { aspect-ratio: 4/5; }
}
