/* ============================================
   INNI VISION — Stylesheet
   ============================================ */

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

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

body {
  font-family: 'Times New Roman', Times, 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

/* Prevent scroll while loader is active */
body.is-loading {
  overflow: hidden;
}


/* ============================================
   LOADER  (Iceberg-inspired)
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Logo inside loader */
.loader__logo {
  opacity: 0;
  transform: translateY(8px);
  animation: loaderLogoIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.loader__logo-img {
  width: 200px;
  height: 200px;
}

@keyframes loaderLogoIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Progress bar */
.loader__progress {
  position: absolute;
  bottom: 40%;
  width: 160px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  animation: loaderProgressIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.loader__progress-bar {
  width: 0%;
  height: 100%;
  background-color: #000;
  transition: width 0.3s ease-out;
}

@keyframes loaderProgressIn {
  to {
    opacity: 1;
  }
}


/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 120px;
  background: #000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.6s ease, transform 0.6s ease, padding 0.3s ease;
}

.header--home {
  background: transparent;
  justify-content: flex-end;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header.is-scrolled {
  padding: 20px 120px;
}

.header.is-scrolled .header__logo-img {
  width: 54px;
  height: 54px;
}

.header.is-scrolled .header__menu-toggle {
  transform: scale(0.75);
}

.header__logo {
  pointer-events: auto;
}

.header__logo-img {
  width: 108px;
  height: 108px;
  transition: width 0.3s ease, height 0.3s ease;
}

/* Standalone menu toggle (outside header, e.g. index.html) */
body > .header__menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
}

/* Hamburger */
.header__menu-toggle {
  position: relative;
  top: auto;
  right: auto;
  width: 26px;
  height: 16px;
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  z-index: 950;
  transition: transform 0.3s ease;
}

.header__menu-bar {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header__menu-bar:nth-child(1) {
  top: 4px;
}

.header__menu-bar:nth-child(2) {
  bottom: 4px;
}

/* Hamburger → X */
.header__menu-toggle.is-active .header__menu-bar:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header__menu-toggle.is-active .header__menu-bar:nth-child(2) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}


/* ============================================
   NAV OVERLAY — Fullscreen Menu
   ============================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 890;
  background-color: #000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Close button */
.nav-overlay__close {
  position: absolute;
  top: 32px;
  right: 48px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 200;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s, color 0.3s ease;
}
.nav-overlay.is-open .nav-overlay__close {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay__close:hover {
  color: rgba(255,255,255,0.5);
}

/* Top bar: phone number + line */
.nav-overlay__top {
  display: flex;
  align-items: center;
  padding: 70px 48px 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}
.nav-overlay.is-open .nav-overlay__top {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay__phone {
  font-size: 0.7rem;
  letter-spacing: 4px;
  color: #fff;
  white-space: nowrap;
  font-family: 'Times New Roman', Times, serif;
}
.nav-overlay__top-line {
  flex: 1;
  height: 1px;
  background-color: rgba(255,255,255,0.25);
  margin-left: 24px;
}

/* Body: left + right columns */
.nav-overlay__body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 48px;
  gap: 0;
  min-height: 0;
}

/* Left column — scrolling text + logo */
.nav-overlay__left {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}

.nav-overlay__scroll-track {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-overlay__scroll-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.nav-overlay__scroll-text {
  font-size: 1.1rem;
  color: #fff;
  text-align: justify;
  text-align-last: justify;
  font-family: 'Times New Roman', Times, serif;
}

.nav-overlay__scroll-text-jp {
  font-size: 1.1rem;
  color: #fff;
  text-align: justify;
  text-align-last: justify;
  font-family: 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', serif;
}

.nav-overlay__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.nav-overlay__logo-img {
  width: 55%;
  height: auto;
  opacity: 1;
}

/* Right column — navigation links */
.nav-overlay__right {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 60px;
}

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

.nav-overlay__item {
  overflow: hidden;
}

.nav-overlay__link {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 10px 0;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.3s ease;
}

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

/* Staggered entrance */
.nav-overlay__item:nth-child(1) .nav-overlay__link { transition-delay: 0.08s; }
.nav-overlay__item:nth-child(2) .nav-overlay__link { transition-delay: 0.13s; }
.nav-overlay__item:nth-child(3) .nav-overlay__link { transition-delay: 0.18s; }
.nav-overlay__item:nth-child(4) .nav-overlay__link { transition-delay: 0.23s; }
.nav-overlay__item:nth-child(5) .nav-overlay__link { transition-delay: 0.28s; }
.nav-overlay__item:nth-child(6) .nav-overlay__link { transition-delay: 0.33s; }
.nav-overlay__item:nth-child(7) .nav-overlay__link { transition-delay: 0.38s; }
.nav-overlay__item:nth-child(8) .nav-overlay__link { transition-delay: 0.43s; }

.nav-overlay__link:hover {
  color: rgba(255, 255, 255, 0.4);
}

.nav-overlay__numeral {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 1;
  min-width: 36px;
  font-family: 'Times New Roman', Times, serif;
}

.nav-overlay__label {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 5px;
  font-family: 'Times New Roman', Times, serif;
}

.nav-overlay__label-jp {
  font-size: 0.7rem;
  letter-spacing: 2px;
  opacity: 0.5;
  margin-left: 4px;
  font-family: 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', serif;
  font-weight: 300;
}

/* Bottom bar: line + tagline */
.nav-overlay__bottom {
  display: flex;
  align-items: center;
  padding: 0 48px 70px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
}
.nav-overlay.is-open .nav-overlay__bottom {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay__bottom-line {
  flex: 1;
  height: 1px;
  background-color: rgba(255,255,255,0.25);
  margin-right: 24px;
}
.nav-overlay__tagline {
  font-size: 0.65rem;
  letter-spacing: 6px;
  color: #fff;
  white-space: nowrap;
  font-family: 'Times New Roman', Times, serif;
}


/* ============================================
   HERO — FULLSCREEN VIDEO
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero__video-wrap {
  position: absolute;
  inset: 0;
}

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

/* Dark overlay for readability */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
}

/* Hero content (logo + top bar over video) */
.hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Top bar: PAST / PRESENT / FUTURE */
.hero__top-bar {
  position: absolute;
  top: 68px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.hero__top-svg {
  height: 6px;
  width: auto;
  flex: 1;
  object-fit: contain;
  opacity: 1.0;
}

.hero__top-svg:first-child {
  object-position: left;
}

.hero__top-svg:last-child {
  object-position: right;
}

/* Side SVGs: visualize-dot (left) / number (right) */
.hero__side-svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: auto;
  opacity: 1.0;
}

.hero__side-svg--left {
  left: 20px;
}

.hero__side-svg--right {
  right: 20px;
}

/* Bottom bar: kiokue / sozo2 / kashika */
.hero__bottom-bar {
  position: absolute;
  bottom: 68px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.hero__bottom-svg {
  height: 7px;
  width: auto;
  flex: 1;
  object-fit: contain;
  opacity: 1.0;
}

.hero__bottom-svg:first-child {
  object-position: left;
}

.hero__bottom-svg:last-child {
  object-position: right;
}

/* Center logo */
.hero__logo-img {
  width: 200px;
  height: 200px;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}

.header.is-visible ~ .hero .hero__scroll-indicator,
body:not(.is-loading) .hero__scroll-indicator {
  opacity: 1;
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleY(0.6);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* Scroll down arrow */
.hero__scroll-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: arrowBounce 2s ease-in-out infinite;
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}

body:not(.is-loading) .hero__scroll-arrow {
  opacity: 1;
}

.hero__scroll-arrow-img {
  width: 16px;
  height: auto;
  display: block;
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 1;
  }
}


/* ============================================
   WORK SINGLE PAGE
   ============================================ */
.work-single {
  min-height: 100vh;
  padding: 288px 120px 80px;
}

/* --- Title Section --- */
.work-single__header {
  margin-bottom: 250px;
}

.work-single__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  overflow: hidden;
}

.work-single__title {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1.1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.work-single__category {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  padding-bottom: 8px;
}

.work-single__artist-label {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-top: 75px;
  margin-bottom: 12px;
}

.work-single__artist-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.work-single__artist-name {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.work-single__date {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1.5px;
}

/* --- Shared HR --- */
.work-single__hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 1);
  margin: 28px 0 28px;
}

/* --- Main Video --- */
.work-single__video {
  margin-bottom: 32px;
}

.work-single__video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1.618 / 1;
  background: #111;
  overflow: hidden;
}

.work-single__video-placeholder {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
}

.work-single__video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-single__video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.work-single__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.work-single__play-btn:hover {
  opacity: 0.7;
}

.work-single__play-icon {
  width: 100%;
  height: 100%;
}

/* --- Photo Gallery --- */
.work-single__gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 80px;
}

.work-single__gallery-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.work-single__gallery-row--full {
  display: block;
}

.work-single__gallery-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1.618 / 1;
  overflow: hidden;
}

.work-single__gallery-placeholder {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
}

.work-single__gallery-img-src {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Bottom Meta --- */
.work-single__bottom {
  margin-bottom: 40px;
}

.work-single__bottom-meta {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 0;
}

.work-single__bottom-meta span {
  flex: 1;
  min-width: 0;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.work-single__bottom-meta span:nth-child(2) {
  text-align: center;
}

.work-single__bottom-meta span:last-child {
  text-align: right;
}


/* ============================================
   VISION PAGE
   ============================================ */
.vision-page {
  min-height: 100vh;
  padding: 288px 120px 80px;
  overflow-x: hidden;
}

/* --- Vision Header --- */
.vision-header {
  margin-bottom: 80px;
}

/* Title row: VSN (left) + tagline (right) */
.vision-header__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  overflow: hidden;
}

.vision-header__title {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1.1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.vision-header__tagline {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 3px;
  opacity: 1;
  flex-shrink: 0;
  padding-bottom: 8px;
  margin-left: 40px;
}

/* Separator line */
.vision-header__line {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 1);
  margin: 28px 0 28px;
}

/* Description row: text (left) + kanji (right) */
.vision-header__desc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.vision-header__desc-left {
  max-width: 760px;
  min-width: 0;
}

.vision-header__desc {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.8;
  opacity: 1;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.vision-header__desc--en {
  margin-bottom: 16px;
}

.vision-header__desc--ja {
  margin-bottom: 0;
}

.vision-header__profile-img {
  margin-top: 100px;
  width: 100%;
  overflow: hidden;
}

.vision-header__profile-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  position: relative;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 1px;
}

.vision-header__profile-label--left {
  text-align: left;
  white-space: nowrap;
}

.vision-header__profile-label--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.vision-header__profile-label--right {
  margin-left: auto;
  white-space: nowrap;
}

.vision-header__profile-label--flipped {
  margin-top: 16px;
  margin-bottom: 200px;
  transform: rotate(180deg);
}

.vision-header__profile-img img {
  width: 100%;
  height: auto;
  display: block;
}

.vision-header__kanji {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 8px;
  font-size: 1rem;
  letter-spacing: 4px;
  line-height: 1.5;
  justify-items: center;
  flex-shrink: 0;
  padding-top: 8px;
}

/* --- Vision Clients --- */
.vision-clients {
  margin-bottom: 80px;
}

.vision-clients__row {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.vision-clients__title {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1.1;
}

.vision-clients__lists {
  display: flex;
  gap: 150px;
  flex-wrap: wrap;
}

.vision-clients__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.vision-clients__list li {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 2.2;
  white-space: nowrap;
}


/* --- Home Works Grid --- */
.home-works {
  padding: 200px 120px 80px;
}

.home-works .works-header {
  margin-bottom: 30px;
}

.home-works .works-header__title.home-works__title {
  font-size: clamp(1.35rem, 3.15vw, 2.475rem);
}

.home-works__more {
  display: flex;
  justify-content: center;
  padding-top: 200px;
}

.home-works__more-btn {
  display: inline-block;
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px 48px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.home-works__more-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 24px 40px;
  text-align: center;
}

.footer__copy {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  opacity: 1;
}


/* ============================================
   VISUAL WORKS PAGE
   ============================================ */
.works-page {
  min-height: 100vh;
  padding: 288px 120px 80px;
}

/* --- Works Header --- */
.works-header {
  margin-bottom: 56px;
}

.works-header__logo {
  margin-bottom: 40px;
}

.works-header__logo-img {
  width: 108px;
  height: 108px;
}

/* Title row: VISUAL WORKS (left) + tagline (right) */
.works-header__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  overflow: hidden;
}

.works-header__title {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1.1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.works-header__tagline {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 3px;
  opacity: 1;
  flex-shrink: 0;
  padding-bottom: 8px;
  margin-left: 40px;
}

/* Separator line between title and description */
.works-header__line {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 1);
  margin: 28px 0 28px;
}

/* Description row: text (left) + kanji (right) */
.works-header__desc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.works-header__desc-left {
  max-width: 760px;
  min-width: 0;
}

.works-header__desc {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.8;
  opacity: 1;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.works-header__desc--en {
  margin-bottom: 16px;
}

.works-header__desc--ja {
  margin-bottom: 0;
}

.works-header__kanji {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 8px;
  font-size: 1rem;
  letter-spacing: 4px;
  line-height: 1.5;
  justify-items: center;
  flex-shrink: 0;
  padding-top: 8px;
}

/* --- Category Filter --- */
.works-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 150px;
  margin-bottom: 40px;
  padding-bottom: 0;
}

.works-filter__btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.975rem;
  font-weight: 400;
  letter-spacing: 0px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.works-filter__btn:hover {
  color: rgba(255, 255, 255, 0.7);
}

.works-filter__btn.is-active {
  color: #fff;
}

/* Separator line below filter */
.works-filter__line {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 0 40px;
}

/* --- Works Grid --- */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 70px;
}

/* --- Work Card --- */
.work-card {
  border-top: 1px solid #fff;
  padding-top: 30px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.work-card.is-hidden {
  display: none;
}

.work-card__link {
  display: block;
}

.work-card__thumb {
  position: relative;
  width: 100%;
  padding-top: 66.67%; /* 3:2 aspect ratio */
  overflow: hidden;
  margin-bottom: 20px;
}

.work-card__thumb img,
.work-card__thumb-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card__thumb-placeholder {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.work-card__thumb img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card__link:hover .work-card__thumb img {
  transform: scale(1.03);
}

.work-card__info {
  padding: 2px 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}

.work-card__info-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 4px 16px;
}

.work-card__title {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1px;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.work-card__artist {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 1px;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.work-card__info-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 4px 17.6px;
}

.work-card__meta-left,
.work-card__meta-right {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.work-card__meta-left span,
.work-card__meta-right span {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 1.5px;
  opacity: 1;
  text-transform: uppercase;
}

.work-card__meta-right {
  text-align: right;
}


/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  min-height: 100vh;
  padding: 288px 120px 80px;
  overflow-x: hidden;
}

/* --- Contact Header --- */
.contact-header {
  margin-bottom: 80px;
}

/* Title row: CONTACT (left) + tagline (right) */
.contact-header__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  overflow: hidden;
}

.contact-header__title {
  font-family: 'Times New Roman', Times, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: 3px;
  line-height: 1.1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-header__tagline {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 3px;
  opacity: 1;
  flex-shrink: 0;
  padding-bottom: 8px;
  margin-left: 40px;
}

/* Separator line */
.contact-header__line {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 1);
  margin: 28px 0 28px;
}

/* Description row: text (left) + kanji (right) */
.contact-header__desc-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-header__desc-left {
  max-width: 760px;
  min-width: 0;
}

.contact-header__desc {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.8;
  opacity: 1;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-header__desc--en {
  margin-bottom: 16px;
}

.contact-header__desc--ja {
  margin-bottom: 0;
}

.contact-header__kanji {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 8px;
  font-size: 1rem;
  letter-spacing: 4px;
  line-height: 1.5;
  justify-items: center;
  flex-shrink: 0;
  padding-top: 8px;
}

/* --- Contact Form --- */
.contact-form-section {
  max-width: 640px;
}

.contact-form__row {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}

.contact-form__field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form__field--full {
  margin-bottom: 32px;
}

.contact-form__label {
  font-family: 'Times New Roman', Times, serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-family: 'Times New Roman', Times, 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: rgba(255, 255, 255, 0.8);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form__submit {
  display: block;
  width: 100%;
  max-width: 640px;
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 3px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px 48px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.contact-form__submit:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}


/* ============================================
   RESPONSIVE
   ============================================ */

/* --- Large tablet / Small desktop (1024px) --- */
@media (max-width: 1024px) {
  .header {
    padding: 30px 60px;
  }

  .header.is-scrolled {
    padding: 16px 60px;
  }

  .header__logo-img {
    width: 90px;
    height: 90px;
  }

  .header.is-scrolled .header__logo-img {
    width: 48px;
    height: 48px;
  }

  .header__menu-toggle {
    width: 23px;
    height: 15px;
  }

  body > .header__menu-toggle {
    top: 15px;
    right: 16px;
  }

  /* Home works */
  .home-works {
    padding: 160px 60px 60px;
  }
  .home-works__more {
    padding-top: 160px;
  }

  /* Works page */
  .works-page {
    padding: 230px 60px 60px;
  }

  .works-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
  }

  .works-filter {
    margin-top: 100px;
  }

  .works-header__desc {
    white-space: normal;
  }

  /* Work single page */
  .work-single {
    padding: 230px 60px 60px;
  }

  .work-single__header {
    margin-bottom: 150px;
  }

  .work-single__artist-label {
    margin-top: 50px;
  }

  .work-single__gallery {
    gap: 16px;
    margin-bottom: 60px;
  }

  .work-single__gallery-row--2col {
    gap: 16px;
  }

  /* Vision page */
  .vision-page {
    padding: 230px 60px 60px;
  }

  .vision-header__desc {
    white-space: normal;
  }

  .vision-header__profile-img {
    margin-top: 80px;
  }

  .vision-header__profile-label--flipped {
    margin-bottom: 160px;
  }

  .vision-clients__lists {
    gap: 80px;
  }

  /* Contact page */
  .contact-page {
    padding: 230px 60px 60px;
  }

  .contact-header__desc {
    white-space: normal;
  }
}

/* --- Tablet (768px) --- */
@media (max-width: 768px) {
  .header {
    padding: 20px 24px;
  }

  .header.is-scrolled {
    padding: 14px 24px;
  }

  .header__logo-img {
    width: 72px;
    height: 72px;
  }

  .header.is-scrolled .header__logo-img {
    width: 42px;
    height: 42px;
  }

  .header__menu-toggle {
    width: 21px;
    height: 13px;
  }

  body > .header__menu-toggle {
    top: 12px;
    right: 16px;
  }

  /* Nav overlay responsive */
  .nav-overlay__top {
    padding: 24px 24px 0;
  }
  .nav-overlay__body {
    flex-direction: column;
    padding: 0 24px;
    gap: 20px;
  }
  .nav-overlay__left {
    flex: 0 0 auto;
    height: auto;
    display: none;
  }
  .nav-overlay__right {
    padding-left: 0;
    width: 100%;
  }
  .nav-overlay__close {
    top: 20px;
    right: 24px;
    font-size: 1.5rem;
  }
  .nav-overlay__label {
    font-size: 1.3rem;
    letter-spacing: 3px;
  }
  .nav-overlay__numeral {
    font-size: 0.6rem;
    min-width: 30px;
  }
  .nav-overlay__label-jp {
    font-size: 0.6rem;
  }
  .nav-overlay__bottom {
    padding: 0 24px 24px;
  }
  .nav-overlay__tagline {
    font-size: 0.5rem;
    letter-spacing: 3px;
  }

  .footer {
    padding: 20px 24px;
  }

  .footer__copy {
    font-size: 0.6rem;
  }

  /* Home works */
  .home-works {
    padding: 120px 24px 60px;
  }
  .home-works__more {
    padding-top: 120px;
  }
  .home-works__more-btn {
    font-size: 13px;
    padding: 14px 40px;
  }

  /* Works page */
  .works-page {
    padding: 172px 24px 60px;
  }

  .works-header {
    margin-bottom: 40px;
  }

  .works-header__title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .works-header__tagline {
    margin-left: 0;
    margin-top: 16px;
    padding-bottom: 0;
  }

  .works-header__line {
    margin: 20px 0 36px;
  }

  .works-header__desc-row {
    flex-direction: column;
  }

  .works-header__desc {
    white-space: normal;
    font-size: 14px;
    line-height: 1.9;
  }

  .works-header__kanji {
    justify-items: start;
    margin-left: 0;
    margin-top: 24px;
  }

  .works-filter {
    gap: 20px;
    margin-top: 80px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }

  .works-filter__btn {
    font-size: 0.875rem;
  }

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

  .work-card {
    padding-top: 30px;
  }

  .work-card__thumb {
    margin-bottom: 16px;
  }

  .work-card__title,
  .work-card__artist {
    font-size: 1.05rem;
  }

  .work-card__info {
    padding-bottom: 30px;
  }

  .work-card__info-top {
    margin-bottom: 14px;
  }

  /* Work single page */
  .work-single {
    padding: 172px 24px 60px;
  }

  .work-single__header {
    margin-bottom: 100px;
  }

  .work-single__title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-single__category {
    font-size: 13px;
    margin-top: 12px;
    padding-bottom: 0;
  }

  .work-single__hr {
    margin: 20px 0 36px;
  }

  .work-single__artist-label {
    font-size: 16px;
    margin-top: 40px;
    margin-bottom: 8px;
  }

  .work-single__artist-name {
    font-size: 14px;
  }

  .work-single__date {
    font-size: 14px;
  }

  .work-single__video {
    margin-bottom: 24px;
  }

  .work-single__gallery {
    gap: 16px;
    margin-bottom: 48px;
  }

  .work-single__gallery-row--2col {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .work-single__bottom-meta span {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  /* Vision page */
  .vision-page {
    padding: 172px 24px 60px;
  }

  .vision-header {
    margin-bottom: 60px;
  }

  .vision-header__title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .vision-header__tagline {
    margin-left: 0;
    margin-top: 16px;
    padding-bottom: 0;
  }

  .vision-header__line {
    margin: 20px 0 36px;
  }

  .vision-header__desc-row {
    flex-direction: column;
  }

  .vision-header__desc {
    white-space: normal;
    font-size: 14px;
    line-height: 1.9;
  }

  .vision-header__kanji {
    justify-items: start;
    margin-left: 0;
    margin-top: 24px;
  }

  .vision-header__profile-img {
    margin-top: 60px;
  }

  .vision-header__profile-label {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .vision-header__profile-label--flipped {
    margin-top: 12px;
    margin-bottom: 80px;
  }

  .vision-clients__lists {
    gap: 60px;
  }

  .vision-clients__list li {
    font-size: 14px;
  }

  /* Contact page */
  .contact-page {
    padding: 172px 24px 60px;
  }

  .contact-header {
    margin-bottom: 60px;
  }

  .contact-header__title-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-header__tagline {
    margin-left: 0;
    margin-top: 16px;
    padding-bottom: 0;
  }

  .contact-header__line {
    margin: 20px 0 36px;
  }

  .contact-header__desc-row {
    flex-direction: column;
  }

  .contact-header__desc {
    white-space: normal;
    font-size: 14px;
    line-height: 1.9;
  }

  .contact-header__kanji {
    justify-items: start;
    margin-left: 0;
    margin-top: 24px;
  }

  .contact-form__row {
    flex-direction: column;
    gap: 24px;
  }

  .hero__top-bar {
    top: 48px;
    left: 16px;
    right: 16px;
    gap: 16px;
  }

  .hero__top-svg {
    height: 4px;
  }

  .hero__bottom-bar {
    bottom: 48px;
    left: 16px;
    right: 16px;
    gap: 16px;
  }

  .hero__bottom-svg {
    height: 5px;
  }

  .hero__scroll-arrow {
    bottom: 14px;
  }

  .hero__scroll-arrow-img {
    width: 14px;
  }

  .hero__side-svg {
    width: 5px;
  }

  .hero__side-svg--left {
    left: 16px;
  }

  .hero__side-svg--right {
    right: 16px;
  }
}

/* --- Mobile (480px) --- */
@media (max-width: 480px) {
  .header {
    padding: 16px 16px;
  }

  .header.is-scrolled {
    padding: 12px 16px;
  }

  .header__logo-img {
    width: 56px;
    height: 56px;
  }

  .header.is-scrolled .header__logo-img {
    width: 36px;
    height: 36px;
  }

  .header__menu-toggle {
    width: 18px;
    height: 11px;
  }

  body > .header__menu-toggle {
    top: 8px;
    right: 12px;
  }

  .nav-overlay__top {
    padding: 16px 16px 0;
  }
  .nav-overlay__body {
    padding: 0 16px;
  }
  .nav-overlay__close {
    top: 14px;
    right: 16px;
    font-size: 1.25rem;
  }
  .nav-overlay__link {
    gap: 10px;
    padding: 7px 0;
  }
  .nav-overlay__label {
    font-size: 1rem;
    letter-spacing: 2px;
  }
  .nav-overlay__numeral {
    font-size: 0.55rem;
    min-width: 26px;
  }
  .nav-overlay__label-jp {
    font-size: 0.55rem;
  }
  .nav-overlay__bottom {
    padding: 0 16px 16px;
  }
  .nav-overlay__tagline {
    font-size: 0.4rem;
    letter-spacing: 2px;
  }
  .nav-overlay__phone {
    font-size: 0.55rem;
    letter-spacing: 2px;
  }

  .loader__logo-svg {
    width: 180px;
  }

  .loader__progress {
    width: 120px;
  }

  /* Home works */
  .home-works {
    padding: 80px 16px 40px;
  }
  .home-works__more {
    padding-top: 80px;
  }
  .home-works__more-btn {
    font-size: 12px;
    letter-spacing: 2px;
    padding: 12px 32px;
  }

  /* Works page */
  .works-page {
    padding: 128px 16px 40px;
  }

  .works-header__title {
    font-size: 2.2rem;
  }

  .works-header__tagline {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .works-header__line {
    margin: 16px 0 28px;
  }

  .works-header__desc {
    font-size: 13px;
    line-height: 2;
  }

  .works-filter {
    gap: 16px;
    margin-top: 56px;
    margin-bottom: 24px;
  }

  .works-filter__btn {
    font-size: 0.8rem;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .work-card__info-top {
    flex-direction: column;
    gap: 2px;
  }

  .work-card__title,
  .work-card__artist {
    font-size: 1rem;
  }

  .work-card__meta-left span,
  .work-card__meta-right span {
    font-size: 0.65rem;
  }

  /* Work single page */
  .work-single {
    padding: 128px 16px 40px;
  }

  .work-single__header {
    margin-bottom: 60px;
  }

  .work-single__title {
    font-size: 2.2rem;
  }

  .work-single__category {
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 8px;
  }

  .work-single__hr {
    margin: 16px 0 28px;
  }

  .work-single__artist-label {
    font-size: 14px;
    margin-top: 28px;
    margin-bottom: 6px;
  }

  .work-single__artist-name {
    font-size: 13px;
  }

  .work-single__date {
    font-size: 13px;
  }

  .work-single__video {
    margin-bottom: 20px;
  }

  .work-single__play-btn {
    width: 48px;
    height: 48px;
  }

  .work-single__gallery {
    gap: 12px;
    margin-bottom: 36px;
  }

  .work-single__gallery-row--2col {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .work-single__bottom {
    margin-bottom: 24px;
  }

  .work-single__bottom-meta span {
    font-size: 0.65rem;
    letter-spacing: 1px;
  }

  /* Vision page */
  .vision-page {
    padding: 128px 16px 40px;
  }

  .vision-header {
    margin-bottom: 48px;
  }

  .vision-header__title {
    font-size: 2.2rem;
  }

  .vision-header__tagline {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .vision-header__line {
    margin: 16px 0 28px;
  }

  .vision-header__desc {
    font-size: 13px;
    line-height: 2;
  }

  .vision-header__profile-img {
    margin-top: 40px;
  }

  .vision-header__profile-label {
    font-size: 10px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }

  .vision-header__profile-label--flipped {
    margin-top: 10px;
    margin-bottom: 60px;
  }

  .vision-clients__row {
    flex-direction: column;
    gap: 24px;
  }

  .vision-clients__title {
    font-size: 1.8rem;
  }

  .vision-clients__lists {
    flex-direction: column;
    gap: 24px;
  }

  .vision-clients__list {
    width: auto;
  }

  .vision-clients__list li {
    font-size: 13px;
    line-height: 2;
  }

  /* Contact page */
  .contact-page {
    padding: 128px 16px 40px;
  }

  .contact-header {
    margin-bottom: 48px;
  }

  .contact-header__title {
    font-size: 2.2rem;
  }

  .contact-header__tagline {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .contact-header__line {
    margin: 16px 0 28px;
  }

  .contact-header__desc {
    font-size: 13px;
    line-height: 2;
  }

  .contact-form__row {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form__row {
    margin-bottom: 24px;
  }

  .contact-form__field--full {
    margin-bottom: 24px;
  }

  .contact-form__label {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .contact-form__input,
  .contact-form__textarea {
    font-size: 14px;
    padding: 12px 14px;
  }

  .contact-form__submit {
    font-size: 12px;
    letter-spacing: 2px;
    padding: 14px 32px;
  }

  .hero__top-bar {
    top: 36px;
    left: 12px;
    right: 12px;
    gap: 12px;
  }

  .hero__top-svg {
    height: 3px;
  }

  .hero__bottom-bar {
    bottom: 36px;
    left: 12px;
    right: 12px;
    gap: 12px;
  }

  .hero__bottom-svg {
    height: 3.5px;
  }

  .hero__scroll-arrow {
    bottom: 10px;
  }

  .hero__scroll-arrow-img {
    width: 12px;
  }

  .hero__side-svg {
    width: 3.5px;
  }

  .hero__side-svg--left {
    left: 12px;
  }

  .hero__side-svg--right {
    right: 12px;
  }
}


/* ============================================
   CONTACT FORM 7 — Custom Styling
   ============================================ */
.wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.wpcf7 .contact-form__row {
  display: flex;
  gap: 40px;
}

.wpcf7 .contact-form__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wpcf7 .contact-form__field--full {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wpcf7 .contact-form__label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: 'Times New Roman', Times, 'Hiragino Mincho ProN', serif;
  font-size: 15px;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
  border-bottom-color: rgba(255,255,255,0.5);
}

.wpcf7 textarea {
  resize: vertical;
  min-height: 150px;
}

.wpcf7 input[type="submit"] {
  align-self: flex-start;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-family: 'Times New Roman', Times, serif;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 18px 48px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.5);
}

.wpcf7-response-output {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  border: none !important;
  padding: 0 !important;
}

.wpcf7-not-valid-tip {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .wpcf7 .contact-form__row {
    flex-direction: column;
    gap: 30px;
  }
}


/* ============================================
   WORKS GRID — Loading Indicator
   ============================================ */
.works-grid__loading {
  text-align: center;
  padding: 40px 0;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
