/* ============================================
   FRAME — Hair Architecture Studio
   Brutalist / Architectural Design System
   ============================================ */

:root {
  --black: #0A0A0A;
  --white: #F0EDE8;
  --accent: #FF4D00;
  --gray: #666;
  --gray-light: #999;
  --gray-dark: #333;
  --border: #222;

  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-jp: 'Zen Kaku Gothic New', sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: 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;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  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;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.loader__line {
  width: 200px;
  height: 2px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.loader__line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--accent);
  transition: width 0.1s linear;
}

.loader__text {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-display);
}

.loader__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.loader__pct {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.loader.is-done {
  pointer-events: none;
  animation: loaderOut 0.8s var(--ease-out-expo) 0.3s forwards;
}

@keyframes loaderOut {
  to {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
}

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

.cursor__dot {
  width: 12px;
  height: 12px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo),
              background 0.3s;
}

.cursor.is-hover .cursor__dot {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-color: var(--accent);
}

.cursor__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.cursor.is-hover .cursor__label {
  opacity: 1;
}

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

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

.header__logo {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--white);
}

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

.header__link {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s var(--ease-out-expo);
}

.header__link:hover::after {
  width: 100%;
}

.header__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 8px;
}

.header__menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.4s var(--ease-out-expo),
              opacity 0.3s;
}

.header__menu-btn.is-active span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.header__menu-btn.is-active span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.6s var(--ease-out-expo);
}

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

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s var(--ease-out-expo);
}

.mobile-nav.is-open .mobile-nav__link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.is-open .mobile-nav__link:nth-child(1) { transition-delay: 0.15s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(3) { transition-delay: 0.25s; }
.mobile-nav.is-open .mobile-nav__link:nth-child(4) { transition-delay: 0.3s; }

.mobile-nav__link:hover {
  color: var(--accent);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero__titles {
  position: relative;
  z-index: 2;
}

.hero__line {
  overflow: hidden;
}

.hero__line--indent {
  padding-left: 8vw;
}

.hero__word {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 2rem + 10vw, 12rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--white);
  transform: translateY(110%);
  will-change: transform;
}

.hero__accent {
  position: absolute;
  top: 50%;
  left: -5%;
  width: 110%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 3;
  will-change: transform;
}

.hero__image-reveal {
  position: absolute;
  right: 5%;
  bottom: 10%;
  width: clamp(160px, 25vw, 360px);
  height: clamp(220px, 35vw, 500px);
  overflow: hidden;
  z-index: 1;
  clip-path: inset(100% 0 0 0);
  will-change: clip-path;
}

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

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.hero__scroll-text {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.hero__scroll-line {
  width: 48px;
  height: 1px;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}

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

@keyframes scrollPulse {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.hero__tagline {
  position: absolute;
  bottom: 32px;
  right: 32px;
  font-family: var(--font-jp);
  font-size: 0.8125rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gray);
  writing-mode: vertical-rl;
  z-index: 2;
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
  padding: clamp(80px, 10vw, 160px) 24px;
  border-top: 1px solid var(--border);
}

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

.philosophy__label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 32px;
}

.philosophy__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.philosophy__word {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 1rem + 5vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  opacity: 0.15;
  transition: opacity 0.6s var(--ease-out-expo);
}

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

.philosophy__text-block {
  margin-bottom: 48px;
}

.philosophy__text {
  font-family: var(--font-jp);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 2.2;
  color: var(--gray-light);
  margin-bottom: 24px;
}

.philosophy__text:last-child {
  margin-bottom: 0;
}

.philosophy__image-hover {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--gray-dark);
}

.philosophy__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.6s var(--ease-out-expo),
              transform 0.6s var(--ease-out-expo);
}

.philosophy__image-hover:hover .philosophy__img {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 3vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
  opacity: 0.12;
  white-space: nowrap;
  flex-shrink: 0;
}

.marquee__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   WORK
   ============================================ */
.work {
  padding: clamp(80px, 10vw, 160px) 24px;
}

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

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

.work__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1rem + 6vw, 7rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.work__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.work__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-dark);
  cursor: none;
}

.work__item-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.work__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.6s var(--ease-out-expo),
              transform 0.6s var(--ease-out-expo);
}

.work__item:hover .work__item-image img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.work__item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(transparent 40%, rgba(10,10,10,0.8));
  opacity: 0;
  transition: opacity 0.4s;
}

.work__item:hover .work__item-overlay {
  opacity: 1;
}

.work__item-num {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 8px;
}

.work__item-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.work__item-tag {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: clamp(80px, 10vw, 160px) 24px;
  border-top: 1px solid var(--border);
}

.process__container {
  max-width: 900px;
  margin: 0 auto;
}

.process__steps {
  display: flex;
  flex-direction: column;
}

.process__step {
  display: flex;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0.3;
  transition: opacity 0.5s var(--ease-out-expo);
}

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

.process__step-num {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 6px;
}

.process__step-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.process__step-text {
  font-family: var(--font-jp);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
  color: var(--gray-light);
  max-width: 480px;
}

/* ============================================
   SPACE
   ============================================ */
.space {
  position: relative;
}

.space__image-wrapper {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.space__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%);
}

.space__overlay-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: difference;
}

.space__big-text {
  font-family: var(--font-display);
  font-size: clamp(4rem, 2rem + 12vw, 14rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  opacity: 0.6;
}

.space__info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
  display: grid;
  gap: 40px;
}

.space__detail-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}

.space__detail-text {
  font-family: var(--font-jp);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
  color: var(--gray-light);
}

/* ============================================
   STYLIST
   ============================================ */
.stylist {
  padding: clamp(80px, 10vw, 160px) 24px;
  border-top: 1px solid var(--border);
}

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

.stylist__image-col {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 500px;
  background: var(--gray-dark);
}

.stylist__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.8s var(--ease-out-expo);
}

.stylist__image-col:hover .stylist__photo {
  filter: grayscale(0%);
}

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

.stylist__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1rem + 4vw, 4.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.stylist__bio {
  font-family: var(--font-jp);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 2;
  color: var(--gray-light);
  margin-bottom: 40px;
  max-width: 480px;
}

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

.stylist__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stylist__stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.stylist__stat-unit {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================
   MENU
   ============================================ */
.menu {
  padding: clamp(80px, 10vw, 160px) 24px;
  border-top: 1px solid var(--border);
}

.menu__container {
  max-width: 800px;
  margin: 0 auto;
}

.menu__header {
  margin-bottom: 48px;
}

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

.menu__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 1rem + 5vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.menu__list {
  display: flex;
  flex-direction: column;
}

.menu__item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}

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

.menu__item-name {
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 0.7rem + 0.5vw, 1.125rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu__item-badge {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--accent);
  padding: 2px 8px;
  border-radius: 2px;
}

.menu__item-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  min-width: 20px;
}

.menu__item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ============================================
   INFO
   ============================================ */
.info {
  padding: clamp(80px, 10vw, 120px) 24px;
  border-top: 1px solid var(--border);
}

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

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

.info__text {
  font-family: var(--font-jp);
  font-size: 0.8125rem;
  font-weight: 300;
  line-height: 2;
  color: var(--gray-light);
  margin-bottom: 12px;
}

.info__reserve {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-top: 8px;
  transition: gap 0.3s var(--ease-out-expo);
}

.info__reserve:hover {
  gap: 14px;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: clamp(80px, 10vw, 160px) 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.cta__inner {
  max-width: 800px;
  margin: 0 auto;
}

.cta__text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.cta__big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 1rem + 8vw, 9rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.cta__big--accent {
  color: var(--accent);
}

.cta__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-jp);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--black);
  background: var(--accent);
  padding: 18px 48px;
  border: none;
  transition: background 0.3s, gap 0.3s var(--ease-out-expo);
}

.cta__button:hover {
  background: var(--white);
  gap: 16px;
}

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

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

.footer__logo {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.footer__copy {
  font-size: 0.625rem;
  color: var(--gray);
  letter-spacing: 0.05em;
}

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

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

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

/* ============================================
   DESKTOP (768px+)
   ============================================ */
@media (min-width: 768px) {
  .header {
    padding: 32px 48px;
  }

  .header__nav {
    display: flex;
  }

  .header__menu-btn {
    display: none;
  }

  .hero {
    padding: 0 64px;
  }

  .hero__tagline {
    right: 64px;
  }

  .hero__scroll {
    left: 64px;
  }

  .philosophy__split {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .philosophy__left {
    position: sticky;
    top: 120px;
  }

  .work__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .work__item--tall {
    grid-row: span 2;
    aspect-ratio: auto;
  }

  .work__item--wide {
    grid-column: span 2;
    aspect-ratio: 21 / 9;
  }

  .space__image-wrapper {
    height: 80vh;
  }

  .space__info {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    padding: 80px 48px;
  }

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

  .stylist__image-col {
    max-height: none;
  }

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

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

  .process__step {
    gap: 48px;
    padding: 56px 0;
  }
}

/* ============================================
   LARGE DESKTOP (1200px+)
   ============================================ */
@media (min-width: 1200px) {
  .hero__line--indent {
    padding-left: 12vw;
  }

  .hero__image-reveal {
    right: 10%;
    bottom: 15%;
  }

  .philosophy {
    padding: 200px 64px;
  }

  .work {
    padding: 200px 64px;
  }

  .work__header {
    margin-bottom: 80px;
  }
}

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

  .hero__word {
    transform: none !important;
  }

  .hero__accent {
    transform: scaleX(1) !important;
  }

  .hero__image-reveal {
    clip-path: inset(0) !important;
  }

  .hero__image {
    transform: none !important;
  }
}

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

  .cursor {
    display: none;
  }

  .hero__image-reveal {
    right: -5%;
    bottom: 5%;
    width: 45%;
    opacity: 0.4;
  }

  .hero__tagline {
    writing-mode: horizontal-tb;
    bottom: 40px;
    right: auto;
    left: 24px;
  }

  .philosophy__image-hover .philosophy__img {
    opacity: 1;
    transform: scale(1);
  }

  .work__item-overlay {
    opacity: 1;
  }

  .work__item-image img {
    filter: grayscale(50%);
  }
}
