/* ============================================
   DUAL — Two Sides of Beauty
   Split-Screen Duality Design System
   ============================================ */

:root {
  --light: #F5F0EB;
  --light-mid: #E8E0D8;
  --dark: #0A0A0A;
  --dark-mid: #1A1A1A;
  --gold: #C5A47E;
  --gold-muted: #A68B6B;
  --text-light: #3A3530;
  --text-dark: #D5CEC6;
  --text-muted-light: #8A8078;
  --text-muted-dark: #7A756F;

  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'DM Sans', sans-serif;
  --font-jp: 'Zen Old Mincho', serif;

  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---- Reset ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  font-family: var(--font-sans);
  background: var(--light);
  color: var(--text-light);
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader__halves {
  position: absolute;
  inset: 0;
  display: flex;
}

.loader__half {
  width: 50%;
  height: 100%;
  transition: transform 1s var(--ease-smooth);
}

.loader__half--light { background: var(--light); }
.loader__half--dark { background: var(--dark); }

.loader.is-done .loader__half--light {
  transform: translateY(-100%);
}

.loader.is-done .loader__half--dark {
  transform: translateY(100%);
}

.loader__text {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1rem + 4vw, 4rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  background: linear-gradient(90deg, var(--dark) 50%, var(--light) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  transition: opacity 0.4s;
}

.loader.is-done .loader__text {
  opacity: 0;
}

.loader.is-gone {
  display: none;
}

/* ============================================
   CURSOR
   ============================================ */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  pointer-events: none;
}

.cursor__circle {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-smooth),
              height 0.4s var(--ease-smooth),
              background 0.3s,
              border-color 0.3s;
}

.cursor.is-hover .cursor__circle {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-color: var(--gold);
  mix-blend-mode: difference;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  transition: transform 0.5s var(--ease-smooth);
}

.header.is-hidden { transform: translateY(-100%); }

.header__logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--text-light);
  mix-blend-mode: difference;
  filter: invert(1);
}

.header__nav {
  display: none;
  gap: 36px;
}

.header__nav a {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  mix-blend-mode: difference;
  filter: invert(1);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-smooth);
}

.header__nav a:hover::after { width: 100%; }

.header__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
  mix-blend-mode: difference;
}

.header__toggle span {
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: transform 0.4s var(--ease-smooth), opacity 0.3s;
}

.header__toggle.is-active span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
.header__toggle.is-active span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--dark);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.7s var(--ease-smooth);
}

.mnav.is-open { clip-path: inset(0); }

.mnav__link {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--light);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s, transform 0.4s var(--ease-smooth), color 0.3s;
}

.mnav.is-open .mnav__link {
  opacity: 1;
  transform: translateY(0);
}

.mnav.is-open .mnav__link:nth-child(1) { transition-delay: 0.12s; }
.mnav.is-open .mnav__link:nth-child(2) { transition-delay: 0.18s; }
.mnav.is-open .mnav__link:nth-child(3) { transition-delay: 0.24s; }
.mnav.is-open .mnav__link:nth-child(4) { transition-delay: 0.30s; }

.mnav__link:hover { color: var(--gold); }

/* ============================================
   HERO — ASYMMETRIC (anti-cliché override)
   ============================================ */
.hero--asym {
  display: grid;
  height: 100svh;
  position: relative;
  overflow: hidden;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.hero--asym .hero__bg-light {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--light) 0%, var(--light) 62%, transparent 62%),
    var(--dark);
  z-index: 1;
}
.hero--asym .hero__bg-dark {
  display: none;
}
.hero--asym .hero__text-block {
  position: relative;
  z-index: 3;
  align-self: end;
  padding: 0 clamp(24px, 6vw, 96px) clamp(48px, 10vh, 120px);
  max-width: 720px;
  display: grid;
  gap: 18px;
}
.hero--asym .hero__label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero--asym .hero__h {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: clamp(4rem, 14vw, 13rem);
  line-height: 0.85;
  letter-spacing: 0.04em;
  color: var(--text-light);
  display: flex;
  align-items: baseline;
  gap: 0.05em;
  flex-wrap: wrap;
}
.hero--asym .hero__h-en {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.32em;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-left: 0.6em;
}
.hero--asym .hero__tagline {
  font-family: var(--font-jp);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 2.2;
  color: var(--text-muted-light);
  max-width: 48ch;
  border-left: 1px solid var(--gold);
  padding-left: 22px;
  margin-top: 6px;
}

/* center image — overlaps the diagonal seam, asymmetric placement */
.hero--asym .hero__center-image {
  position: absolute;
  top: clamp(80px, 12vh, 140px);
  right: clamp(20px, 5vw, 80px);
  left: auto;
  transform: none;
  width: clamp(180px, 28vw, 380px);
  height: clamp(260px, 40vw, 540px);
  z-index: 4;
  overflow: hidden;
  border: 6px solid var(--dark);
  box-shadow: 0 30px 60px rgba(0,0,0,.55);
}
.hero--asym .hero__center-image .hero__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}

.hero--asym .hero__scroll {
  position: absolute;
  bottom: 32px;
  right: 32px;
  left: auto;
  transform: none;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero--asym .hero__scroll span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 720px) {
  .hero--asym .hero__bg-light {
    background: linear-gradient(180deg, var(--light) 0%, var(--light) 60%, var(--dark) 60%);
  }
  .hero--asym .hero__center-image {
    top: auto;
    right: 24px;
    bottom: 28%;
    width: 38vw;
    height: 50vw;
  }
}

/* legacy split hero — disabled but preserved for non-asym variant */
.hero {
  height: 100svh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero__side {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero__side--light { background: var(--light); }
.hero__side--dark { background: var(--dark); }

.hero__content {
  text-align: center;
  padding: 24px;
}

.hero__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__label--light { color: var(--gold-muted); }
.hero__label--dark { color: var(--gold); }

.hero__title {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.hero__char {
  display: inline-block;
  font-family: var(--font-jp);
  font-size: clamp(3.5rem, 2rem + 8vw, 9rem);
  font-weight: 400;
  line-height: 1;
  transform: translateY(120%);
  opacity: 0;
  will-change: transform, opacity;
}

.hero__title--light .hero__char { color: var(--text-light); }
.hero__title--dark .hero__char { color: var(--light); }

.hero__sub {
  font-family: var(--font-jp);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(12px);
  will-change: opacity, transform;
}

.hero__sub--light { color: var(--text-muted-light); }
.hero__sub--dark { color: var(--text-muted-dark); }

/* Center Image */
.hero__center-image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: clamp(140px, 18vw, 280px);
  height: clamp(190px, 26vw, 400px);
  z-index: 3;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
}

.hero__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  will-change: transform;
}

/* Divider */
.hero__divider {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--gold);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  z-index: 2;
  will-change: transform;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll span {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__scroll-bar {
  width: 1px;
  height: 40px;
  background: var(--gold-muted);
  position: relative;
  overflow: hidden;
}

.hero__scroll-bar::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ============================================
   CONCEPT
   ============================================ */
.concept {
  padding: clamp(80px, 10vw, 160px) 24px;
  background: var(--light);
}

.concept__split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 64px;
}

.concept__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.concept__heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1rem + 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--text-light);
  margin-bottom: 32px;
}

.concept__body {
  font-family: var(--font-jp);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2.2;
  color: var(--text-muted-light);
  margin-bottom: 20px;
}

.concept__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.concept__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.concept__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.concept__img-wrap:hover .concept__img {
  transform: scale(1.05);
}

.concept__img-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.concept__img-wrap--flow .concept__img-label { color: var(--light); }
.concept__img-wrap--structure .concept__img-label { color: var(--light); }

/* ============================================
   DUALITY STATEMENT
   ============================================ */
.duality {
  overflow: hidden;
}

.duality__row {
  display: flex;
  height: clamp(120px, 15vw, 200px);
}

.duality__item {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.duality__item--light { background: var(--light); }
.duality__item--dark { background: var(--dark); }

.duality__word {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1rem + 5vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  opacity: 0.2;
  transition: opacity 0.6s;
}

.duality__item--light .duality__word { color: var(--dark); }
.duality__item--dark .duality__word { color: var(--light); }

.duality__row.is-active .duality__word {
  opacity: 1;
}

/* ============================================
   STYLES
   ============================================ */
.styles {
  padding: clamp(80px, 10vw, 160px) 24px;
  background: var(--dark);
  color: var(--text-dark);
}

.styles__header {
  max-width: 1200px;
  margin: 0 auto 64px;
}

.styles__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.styles__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 1rem + 5vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--light);
}

.styles__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
}

.styles__card {
  display: grid;
  gap: 24px;
  padding-bottom: 48px;
  border-bottom: 1px solid #222;
}

.styles__card-img {
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.styles__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth), filter 0.8s;
}

.styles__card--dark .styles__card-img img {
  filter: grayscale(60%) contrast(1.1);
}

.styles__card:hover .styles__card-img img {
  transform: scale(1.04);
  filter: none;
}

.styles__card-num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.styles__card-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--light);
  margin-bottom: 12px;
}

.styles__card-desc {
  font-family: var(--font-jp);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2;
  color: var(--text-muted-dark);
  margin-bottom: 12px;
}

.styles__card-tag {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 12px;
  border: 1px solid var(--gold-muted);
  display: inline-block;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: clamp(80px, 10vw, 160px) 24px;
  background: var(--light);
}

.process__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 64px;
}

.process__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.process__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1rem + 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-light);
}

.process__step {
  padding: 32px 0;
  border-bottom: 1px solid var(--light-mid);
  opacity: 0.3;
  transition: opacity 0.5s var(--ease-smooth);
}

.process__step.is-active { opacity: 1; }

.process__step-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}

.process__step-num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.process__step-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.process__step-text {
  font-family: var(--font-jp);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2;
  color: var(--text-muted-light);
  max-width: 480px;
  padding-left: 52px;
}

/* ============================================
   SPACE
   ============================================ */
.space {
  background: var(--dark);
}

.space__visual {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
}

.space__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.space__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.space__detail {
  padding: clamp(32px, 5vw, 64px);
}

.space__detail--light {
  background: var(--light);
  color: var(--text-light);
}

.space__detail--dark {
  background: var(--dark);
  color: var(--text-dark);
}

.space__detail-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.space__detail--light .space__detail-title { color: var(--text-light); }
.space__detail--dark .space__detail-title { color: var(--light); }

.space__detail-text {
  font-family: var(--font-jp);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2;
}

.space__detail--light .space__detail-text { color: var(--text-muted-light); }
.space__detail--dark .space__detail-text { color: var(--text-muted-dark); }

/* ============================================
   STYLIST
   ============================================ */
.stylist {
  padding: clamp(80px, 10vw, 160px) 24px;
  background: var(--light);
}

.stylist__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 48px;
}

.stylist__photo-wrap {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 480px;
}

.stylist__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.stylist__photo-wrap:hover .stylist__photo {
  transform: scale(1.04);
}

.stylist__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.stylist__name {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 1rem + 3vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 24px;
}

.stylist__bio {
  font-family: var(--font-jp);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  color: var(--text-muted-light);
  margin-bottom: 32px;
  max-width: 460px;
}

.stylist__stats {
  display: flex;
  gap: 48px;
}

.stylist__stat-val {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-light);
  font-variant-numeric: tabular-nums;
}

.stylist__stat-label {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted-light);
}

/* ============================================
   MENU
   ============================================ */
.menu {
  display: grid;
  grid-template-columns: 1fr;
}

.menu__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.menu__col {
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 64px);
}

.menu__col--light {
  background: var(--light);
  color: var(--text-light);
}

.menu__col--dark {
  background: var(--dark);
  color: var(--text-dark);
}

.menu__col-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

.menu__col--light .menu__col-title { color: var(--text-light); }
.menu__col--dark .menu__col-title { color: var(--light); }

.menu__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid;
  transition: color 0.3s;
}

.menu__col--light .menu__item { border-color: var(--light-mid); }
.menu__col--dark .menu__item { border-color: #222; }

.menu__item:hover { color: var(--gold); }

.menu__name {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.menu__price {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* ============================================
   ACCESS
   ============================================ */
.access {
  padding: clamp(64px, 8vw, 120px) 24px;
  background: var(--light);
  border-top: 1px solid var(--light-mid);
}

.access__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

.access__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.access__text {
  font-family: var(--font-jp);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2;
  color: var(--text-muted-light);
  margin-bottom: 8px;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  text-align: center;
}

.cta__split {
  display: flex;
  height: clamp(200px, 30vw, 360px);
}

.cta__half {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta__half--light { background: var(--light); }
.cta__half--dark { background: var(--dark); }

.cta__word {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 1rem + 8vw, 9rem);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.cta__half--light .cta__word { color: var(--dark); }
.cta__half--dark .cta__word { color: var(--light); }

.cta__btn {
  position: absolute;
  bottom: clamp(24px, 4vw, 48px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-jp);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  background: var(--gold);
  padding: 16px 48px;
  border: none;
  letter-spacing: 0.1em;
  transition: background 0.3s, color 0.3s;
}

.cta__btn:hover {
  background: var(--dark);
  color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 32px 24px;
  background: var(--dark);
  border-top: 1px solid #1a1a1a;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--light);
}

.footer__copy {
  font-size: 0.5625rem;
  color: var(--text-muted-dark);
  letter-spacing: 0.05em;
}

.footer__links {
  display: flex;
  gap: 20px;
}

.footer__links a {
  font-family: var(--font-sans);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  transition: color 0.3s;
}

.footer__links a:hover { color: var(--gold); }

/* ============================================
   DESKTOP (768px+)
   ============================================ */
@media (min-width: 768px) {
  .header { padding: 28px 48px; }
  .header__nav { display: flex; }
  .header__toggle { display: none; }

  .concept__split {
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
  }

  .styles__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .styles__card:nth-child(2) {
    margin-top: 80px;
  }

  .process__container {
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
  }

  .process__left {
    position: sticky;
    top: 120px;
    align-self: start;
  }

  .space__visual { height: 70vh; }

  .stylist__container {
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
  }

  .stylist__photo-wrap { max-height: none; }

  .access__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }

  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============================================
   LARGE DESKTOP (1200px+)
   ============================================ */
@media (min-width: 1200px) {
  .styles__card {
    grid-template-columns: 1fr;
  }

  .space__visual { height: 80vh; }
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 767px) {
  body { cursor: auto; }
  .cursor { display: none; }

  .hero__side { width: 50%; }

  .hero__center-image {
    width: 35%;
  }

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

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

  .cta__split {
    height: 180px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero__char {
    transform: none !important;
    opacity: 1 !important;
  }

  .hero__center-image {
    clip-path: inset(0) !important;
  }

  .hero__divider {
    transform: translateX(-50%) scaleY(1) !important;
  }
}
