/*
Theme Name: VASH One Page
Theme URI: https://vash.tokyo/
Author: VASH
Description: Original one-page WordPress theme for VASH Corporation.
Version: 1.1.1
Text Domain: vash-onepage
*/

:root {
  --ink: #0a0a0a;
  --navy: #000080;
  --white: #f3f1ec;
  --red: #e21422;
  --line: rgba(10, 10, 10, .2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "DM Sans", "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

.loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--red);
  color: white;
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 600;
  letter-spacing: -.07em;
  transition: transform .9s cubic-bezier(.8, 0, .2, 1);
}
.loader.is-hidden { transform: translateY(-100%); }

.header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 3vw;
  mix-blend-mode: difference;
  color: white;
  text-transform: uppercase;
}
.brand { font-size: 1.35rem; font-weight: 600; letter-spacing: -.05em; }
.nav { display: flex; gap: 32px; font-size: .75rem; letter-spacing: .08em; }
.nav a { position: relative; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s;
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px 0; }
.menu-button span { display: block; width: 25px; height: 1px; margin: 6px 0; background: white; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 13vh 3vw 4vh;
  background: var(--navy);
  color: var(--white);
}
.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .15;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
.hero-kicker {
  position: relative;
  margin: 0;
  font-size: .72rem;
  letter-spacing: .16em;
}
.hero-title {
  position: relative;
  margin: 0;
  font-size: clamp(4.3rem, 13.2vw, 13rem);
  line-height: .72;
  letter-spacing: -.085em;
  font-weight: 600;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: block; transform: translateY(105%); animation: title-in .9s cubic-bezier(.16, 1, .3, 1) forwards; }
.hero-title .line:nth-child(2) span { animation-delay: .08s; }
.hero-title .line:nth-child(3) span { animation-delay: .16s; }
.hero-title .line:nth-child(4) span { animation-delay: .24s; }
.hero-title b { color: var(--red); font-weight: inherit; }
@keyframes title-in { to { transform: translateY(0); } }
.hero-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.hero-bottom p { margin: 0; font-size: clamp(.9rem, 1.3vw, 1.2rem); line-height: 1.7; }
.scroll-link { display: flex; align-items: center; gap: 15px; font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; }
.scroll-link i { display: block; width: 55px; height: 1px; background: white; position: relative; overflow: hidden; }
.scroll-link i::after { content: ""; position: absolute; inset: 0; background: var(--red); animation: scan 2s infinite; }
@keyframes scan { from { transform: translateX(-110%); } to { transform: translateX(110%); } }

.section { padding: 11vw 3vw; }
.section-label { display: flex; gap: 20px; align-items: center; font-size: .75rem; text-transform: uppercase; letter-spacing: .12em; }
.section-label span { color: var(--red); }
.section-label p { margin: 0; }
.intro { min-height: 95vh; }
.intro-copy { max-width: 1200px; margin: 12vw 0 0 auto; }
.intro-copy .en {
  margin: 0;
  max-width: 1050px;
  font-size: clamp(2.8rem, 7vw, 7.5rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.intro-copy .ja { max-width: 620px; margin: 70px 0 0 auto; font-size: clamp(.95rem, 1.2vw, 1.12rem); line-height: 2.15; }

.dark { background: var(--navy); color: var(--white); }
.featured-business {
  margin-top: 8vw;
  padding: 5vw 0 7vw;
  border-top: 1px solid rgba(255,255,255,.3);
  border-bottom: 1px solid rgba(255,255,255,.3);
}
.studio-copy .eyebrow { color: var(--red); text-transform: uppercase; font-size: .68rem; letter-spacing: .14em; }
.studio-info {
  display: grid;
  grid-template-columns: 1.5fr .5fr;
  gap: 6vw;
  align-items: end;
  margin-top: 4vw;
}
.studio-copy h2 {
  margin: 0;
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: clamp(4.8rem, 12vw, 12rem);
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.065em;
}
.studio-info p { max-width: 430px; margin: 0; color: #c7c7d8; font-family: "Noto Sans JP", sans-serif; font-size: .9rem; line-height: 2; }
.arrow-link { display: flex; justify-content: space-between; border-bottom: 1px solid #555; padding: 18px 0; margin-top: 45px; text-transform: uppercase; font-size: .75rem; letter-spacing: .1em; }
.arrow-link span { color: var(--red); font-size: 1.1rem; transition: transform .3s; }
.arrow-link:hover span { transform: translate(4px, -4px); }
.services { margin-top: 12vw; border-top: 1px solid #333; }
.service {
  display: grid;
  grid-template-columns: 70px minmax(220px, 1fr) 1.2fr;
  align-items: center;
  border-bottom: 1px solid #333;
  padding: 32px 0;
}
.service > span { color: var(--red); font-size: .7rem; }
.service h3 { margin: 0; font-size: clamp(1.5rem, 3vw, 3.2rem); font-weight: 400; letter-spacing: -.045em; }
.service p { margin: 0; max-width: 470px; color: #999; font-family: "Noto Sans JP", sans-serif; font-size: .82rem; line-height: 1.8; }

.company { min-height: 100vh; }
.company-title { display: grid; grid-template-columns: .5fr 1.5fr; align-items: start; margin-top: 9vw; }
.company-title p { margin: 10px 0; text-transform: uppercase; font-size: .68rem; letter-spacing: .12em; }
.company-title h2 { margin: 0; font-size: clamp(4rem, 11vw, 11rem); line-height: .78; letter-spacing: -.08em; }
.profile { width: 67%; margin: 10vw 0 0 auto; }
.profile div { display: grid; grid-template-columns: 34% 66%; padding: 23px 0; border-top: 1px solid var(--line); }
.profile div:last-child { border-bottom: 1px solid var(--line); }
.profile dt { color: #777; font-size: .75rem; }
.profile dd { margin: 0; font-size: .95rem; line-height: 1.7; }

.contact { min-height: 85vh; display: flex; flex-direction: column; justify-content: center; padding: 8vw 3vw 3vw; background: var(--red); color: white; }
.contact > p { margin: 0 0 2vw; font-size: .75rem; text-transform: uppercase; letter-spacing: .15em; }
.contact-heading { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid white; padding-bottom: 20px; }
.contact-heading span { font-size: clamp(4.5rem, 14.5vw, 14rem); font-weight: 600; line-height: .9; letter-spacing: -.085em; }
.contact-heading i { font-size: clamp(2rem, 5vw, 5rem); font-style: normal; }
.contact-form { margin-top: 70px; border-top: 1px solid rgba(255,255,255,.45); }
.form-row { display: grid; grid-template-columns: 30% 70%; align-items: center; border-bottom: 1px solid rgba(255,255,255,.45); padding: 25px 0; }
.form-row label { font-size: .78rem; letter-spacing: .06em; }
.form-row label em { display: block; margin-top: 6px; opacity: .65; font-size: .58rem; font-style: normal; text-transform: uppercase; }
.form-row input,
.form-row textarea {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 0;
  padding: 10px 0;
  background: transparent;
  color: white;
  font: inherit;
  font-size: 1.05rem;
}
.form-row textarea { resize: vertical; line-height: 1.7; }
.form-row:focus-within { border-color: white; }
.form-row-message { align-items: start; }
.form-submit { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-top: 35px; }
.form-submit p { max-width: 420px; margin: 0; opacity: .72; font-family: "Noto Sans JP", sans-serif; font-size: .72rem; line-height: 1.8; }
.form-submit button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 65px;
  min-width: 280px;
  border: 1px solid white;
  border-radius: 100px;
  padding: 18px 25px;
  background: transparent;
  color: white;
  font: inherit;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s, color .3s;
}
.form-submit button i { font-size: 1.15rem; font-style: normal; }
.form-submit button:hover { background: white; color: var(--red); }
.form-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-message { margin-top: 45px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.45); }
.form-message strong { font-size: 1.1rem; letter-spacing: .05em; }
.form-message p { margin: 8px 0 0; font-family: "Noto Sans JP", sans-serif; font-size: .82rem; }
.contact-meta { display: flex; justify-content: space-between; margin-top: 60px; font-size: .72rem; letter-spacing: .1em; }
.contact-meta p { margin: 0; }
footer { display: flex; justify-content: space-between; padding: 25px 3vw; background: var(--red); color: white; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(35px); transition: opacity .9s, transform .9s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 760px) {
  .header { padding: 20px; }
  .nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background: var(--navy);
    font-size: 10vw;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s;
  }
  .nav.is-open { opacity: 1; pointer-events: auto; }
  .menu-button { display: block; }
  .hero { padding: 15vh 20px 30px; }
  .hero-title { font-size: 20.5vw; line-height: .79; }
  .hero-bottom { align-items: end; }
  .scroll-link span { display: none; }
  .section { padding: 100px 20px; }
  .intro { min-height: auto; }
  .intro-copy { margin-top: 100px; }
  .intro-copy .en { font-size: 12vw; }
  .intro-copy .ja { margin-top: 50px; }
  .featured-business { margin-top: 70px; padding: 45px 0 60px; }
  .studio-info { grid-template-columns: 1fr; gap: 45px; margin-top: 35px; }
  .studio-copy h2 { font-size: 20vw; }
  .services { margin-top: 100px; }
  .service { grid-template-columns: 35px 1fr; gap: 12px; padding: 25px 0; }
  .service p { grid-column: 2; margin-top: 10px; }
  .company-title { display: block; margin-top: 80px; }
  .company-title h2 { font-size: 19vw; margin-top: 25px; }
  .profile { width: 100%; margin-top: 90px; }
  .profile div { grid-template-columns: 32% 68%; }
  .contact { min-height: 75vh; padding: 80px 20px 25px; }
  .contact-heading span { font-size: 18vw; }
  .contact-form { margin-top: 55px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; padding: 22px 0; }
  .form-submit { display: block; }
  .form-submit button { width: 100%; margin-top: 30px; }
  .contact-meta { margin-top: 45px; }
  footer { padding: 22px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
