/* ==========================================================================
   yutori — shared stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
  --bg: #ffffff;
  --bg-elev: #f7f5f1;
  --bg-elev-2: #efebe3;
  --text: #1c1a17;
  --text-dim: #706a62;
  --text-faint: #a39c91;
  --accent: #2e6b52;
  --accent-ink: #1b4332;
  --accent-soft: rgba(46, 107, 82, 0.08);
  --gold: #b08b3f;
  --gold-ink: #8a6a2e;
  --border: rgba(28, 26, 23, 0.10);
  --border-soft: rgba(28, 26, 23, 0.06);
  --shadow: 0 20px 60px rgba(28, 26, 23, 0.08);

  --font-en: 'Jost', sans-serif;
  --font-jp: 'Noto Sans JP', sans-serif;

  --container: 1160px;
  --header-h: 84px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-jp);
  font-weight: 300;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

/* ---- Splash / intro loader ---- */

.splash {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  opacity: 1;
  visibility: visible;
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.splash__video {
  width: clamp(160px, 30vw, 320px);
  height: auto;
  display: block;
  opacity: 1;
  transition: opacity 1s ease;
}

.splash__video.is-fading {
  opacity: 0;
}

img { display: block; max-width: 100%; }

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

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section scaffolding ---- */

.section {
  padding: 120px 0;
  border-bottom: 1px solid var(--border-soft);
}

.section--tight { padding: 90px 0; }

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 64px;
}

.eyebrow {
  font-family: var(--font-en);
  font-size: 15px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.section-title {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0.02em;
}

.section-lead {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 520px;
}

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  color: var(--text);
  background: transparent;
  transition: background 0.35s ease, color 0.35s ease, letter-spacing 0.35s ease;
}

.btn:hover {
  background: var(--accent-ink);
  border-color: var(--accent-ink);
  color: #ffffff;
  letter-spacing: 0.18em;
}

.btn--solid {
  background: var(--accent-ink);
  border-color: var(--accent-ink);
  color: #ffffff;
}

.btn--solid:hover {
  background: transparent;
  color: var(--text);
}

.btn--full { width: 100%; justify-content: center; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, border-color 0.4s ease, height 0.4s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-color: var(--border);
  box-shadow: 0 1px 0 var(--border-soft);
  height: 72px;
}

.site-header__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 44px;
}

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

.nav__link {
  position: relative;
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--text);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 210;
}

.nav-toggle span {
  width: 26px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: #ffffff;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: repeating-linear-gradient(0deg, rgba(28,26,23,0.012) 0px, transparent 1px, transparent 2px);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  padding: 0 24px;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__content.pre-reveal {
  opacity: 0;
  transform: translateY(24px);
}

.hero__eyebrow {
  font-family: var(--font-en);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--accent-ink);
}

.hero__title {
  display: block;
}

.hero__logo-img {
  width: clamp(220px, 32vw, 460px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero__sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 480px;
  letter-spacing: 0.04em;
}

.hero__actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   Placeholder media blocks (stand-in for real photos/video)
   ========================================================================== */

.ph {
  position: relative;
  width: 100%;
  aspect-ratio: var(--ph-ratio, 4/5);
  background:
    linear-gradient(135deg, rgba(180,140,86,0.08), transparent 60%),
    linear-gradient(200deg, #f4f1ec, #eae5db 70%);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(28,26,23,0.035) 49%, rgba(28,26,23,0.035) 51%, transparent 52%);
  background-size: 22px 22px;
  opacity: 0.5;
}

.ph__label {
  position: relative;
  font-family: var(--font-en);
  letter-spacing: 0.2em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  padding: 0 16px;
}

.ph__icon {
  position: relative;
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  opacity: 0.55;
}

.ph--16-9 { --ph-ratio: 16/9; }
.ph--1-1 { --ph-ratio: 1/1; }
.ph--3-4 { --ph-ratio: 3/4; }
.ph--21-9 { --ph-ratio: 21/9; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: 70px 0 30px;
  text-align: center;
}

.site-footer .logo {
  justify-content: center;
  display: inline-flex;
  margin-bottom: 18px;
}

.site-footer .logo-img {
  height: 40px;
}

.footer__tagline {
  color: var(--text-dim);
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 30px;
}

.footer__nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.footer__nav a {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

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

.footer__social {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 40px;
}

.footer__social a {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  border: 1px solid var(--border);
  padding: 8px 18px;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.footer__social a:hover {
  border-color: var(--accent-ink);
  color: var(--accent-ink);
}

.footer__copy {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */

.page-hero {
  padding: calc(var(--header-h) + 90px) 0 80px;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
  background: linear-gradient(180deg, var(--accent-soft), transparent 70%);
}

.page-hero__eyebrow {
  font-family: var(--font-en);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--accent-ink);
  margin-bottom: 16px;
}

.page-hero__title {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 64px);
  margin-bottom: 18px;
}

.page-hero__lead {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
}

.breadcrumb {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-top: 26px;
}

.breadcrumb a { color: var(--text-faint); }
.breadcrumb a:hover { color: var(--accent-ink); }

/* ==========================================================================
   Grid layouts
   ========================================================================== */

.grid {
  display: grid;
  gap: 28px;
}

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

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.work-card {
  position: relative;
  display: block;
  overflow: hidden;
}

.work-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}

.work-card:hover .work-photo img {
  transform: scale(1.035);
}

.work-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
}

.work-card__title {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.03em;
}

.work-card__tag {
  font-family: var(--font-jp);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.work-card .ph {
  transition: transform 0.6s ease;
}

.work-card:hover .ph {
  transform: scale(1.035);
}

/* ---- Lightweight click-to-load video embed (YouTube facade) ---- */

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  cursor: pointer;
}

.video-embed__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.video-embed:hover .video-embed__thumb {
  transform: scale(1.035);
}

.video-embed__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-ink);
  transition: transform 0.3s ease, background 0.3s ease;
}

.video-embed__play svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.video-embed:hover .video-embed__play {
  transform: scale(1.08);
  background: #ffffff;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---- Filter tabs (portfolio) ---- */

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.filter-tab {
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 30px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-dim);
  transition: all 0.3s ease;
}

.filter-tab:hover {
  color: var(--text);
  border-color: var(--text-dim);
}

.filter-tab.is-active {
  background: var(--accent-ink);
  border-color: var(--accent-ink);
  color: #ffffff;
}

.work-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

/* ==========================================================================
   Profile page
   ========================================================================== */

.profile-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 70px;
  align-items: start;
}

.profile-layout__portrait {
  position: sticky;
  top: 120px;
}

.profile-name {
  font-family: var(--font-en);
  font-size: 34px;
  margin-bottom: 6px;
}

.profile-role {
  color: var(--accent-ink);
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  font-size: 15px;
  margin-bottom: 26px;
}

.profile-block {
  margin-bottom: 46px;
}

.profile-block h3 {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.profile-block p {
  color: var(--text-dim);
  font-size: 15px;
  max-width: 640px;
}

.timeline {
  border-left: 1px solid var(--border);
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.timeline li {
  position: relative;
}

.timeline li::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline__year {
  font-family: var(--font-en);
  color: var(--accent-ink);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.timeline__text {
  color: var(--text-dim);
  font-size: 15px;
  margin-top: 4px;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-list li {
  border: 1px solid var(--border);
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
}

.equip-groups {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 34px;
}

.equip-group__label {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-soft);
}

.equip-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.equip-list li {
  font-size: 14px;
  color: var(--text-dim);
}

/* ==========================================================================
   Pricing page
   ========================================================================== */

.plans-group {
  margin-bottom: 90px;
}

.plans-group__title {
  font-family: var(--font-en);
  font-size: 26px;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 8px;
}

.plans-group__lead {
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
  margin-bottom: 50px;
}

.plan-card {
  border: 1px solid var(--border);
  padding: 46px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.plan-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.plan-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-soft), transparent 40%);
}

.plan-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-ink);
  color: #ffffff;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
}

.plan-card__name {
  font-family: var(--font-en);
  font-size: 22px;
  text-align: center;
  letter-spacing: 0.04em;
}

.plan-card__desc {
  text-align: center;
  color: var(--text-dim);
  font-size: 13px;
}

.plan-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--text-dim);
  flex: 1;
}

.plan-card__list li {
  display: flex;
  gap: 10px;
}

.plan-card__list li::before {
  content: '—';
  color: var(--accent-ink);
}

.pricing-note {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-faint);
  font-size: 13px;
  line-height: 2;
}

/* ==========================================================================
   Work detail page
   ========================================================================== */

.work-detail__main {
  margin-bottom: 50px;
}

.work-detail__main img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
}

.work-detail__main .video-embed {
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 1px solid var(--border);
}

.work-detail__info {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 34px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 60px;
}

.work-detail__info-item {
  min-width: 160px;
  max-width: 420px;
}

.work-detail__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.work-detail__gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  border: 1px solid var(--border);
  background: #ffffff;
}

.work-detail__empty {
  color: var(--text-faint);
  font-size: 13px;
}

.work-detail__back {
  margin-top: 50px;
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}

.contact-info__item {
  margin-bottom: 34px;
}

.contact-info__label {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 8px;
}

.contact-info__value {
  font-size: 15px;
  color: var(--text-dim);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.form-row--split {
  flex-direction: row;
  gap: 26px;
}

.form-row--split .form-row { flex: 1; margin-bottom: 0; }

.form-label {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.form-label .req {
  color: var(--accent-ink);
  margin-left: 4px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 15px 18px;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 300;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-textarea {
  resize: vertical;
  min-height: 160px;
}

.form-note {
  color: var(--text-faint);
  font-size: 12.5px;
  margin-top: 20px;
  line-height: 1.9;
}

.form-note strong { color: var(--text-dim); }

/* Honeypot field: kept in the accessibility tree structure but invisible and
   unreachable so real visitors never see or tab into it, only bots that
   blindly fill every field. */
.form-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-status {
  margin-top: 20px;
  padding: 14px 18px;
  font-size: 13.5px;
  border: 1px solid var(--border);
}

.form-status--success {
  color: var(--accent-ink);
  border-color: var(--accent);
  background: var(--accent-soft);
}

.form-status--error {
  color: #a13b3b;
  border-color: rgba(161, 59, 59, 0.35);
  background: rgba(161, 59, 59, 0.06);
}

/* ==========================================================================
   Misc
   ========================================================================== */

.divider-cta {
  text-align: center;
  padding: 110px 0;
}

.divider-cta__title {
  font-family: var(--font-en);
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 20px;
}

.divider-cta__lead {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 40px;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 22px 0;
}

.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}

.marquee__track span {
  font-family: var(--font-en);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-right: 60px;
}

.marquee__track span em {
  color: var(--gold);
  font-style: normal;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(calc(-100% / 3), 0, 0); }
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-split__text .eyebrow { margin-bottom: 14px; display: block; }

.about-split__title {
  font-family: var(--font-en);
  font-size: clamp(26px, 3.4vw, 38px);
  margin-bottom: 22px;
  line-height: 1.3;
}

.about-split__body {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 30px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 980px) {
  .profile-layout { grid-template-columns: 1fr; }
  .profile-layout__portrait { position: static; max-width: 320px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 60px; }
  .about-split { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --header-h: 68px; }

  .nav { position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px); height: 100vh;
    background: var(--bg-elev); flex-direction: column; align-items: flex-start;
    justify-content: center; padding: 60px 40px; transform: translateX(100%);
    transition: transform 0.4s ease; border-left: 1px solid var(--border); }

  .nav.is-open { transform: translateX(0); }

  .nav__list { flex-direction: column; gap: 26px; }

  .nav-toggle { display: flex; }

  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .section { padding: 80px 0; }

  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }

  .form-row--split { flex-direction: column; gap: 26px; }

  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}
