/* ===========================================================
   YOKO³ — Mobile fixes (loaded after styles.css)
   - Letter cards: stack 1-up on mobile
   - Studio Vision quote: subtle pulse on dark background
   - Mobile nav: burger menu, hide kickers + giant mark
   - Compact map cards
   =========================================================== */

/* --- Letter cards stack to single column on mobile --- */
@media (max-width: 900px) {
  .studio-merged .letters,
  .letters {
    grid-template-columns: 1fr !important;
  }
  .studio-merged .letter,
  .letter {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(234, 230, 221, 0.18) !important;
  }
  .studio-merged .letter:last-child,
  .letter:last-child {
    border-bottom: 0 !important;
  }
}

/* --- Studio Vision quote — deliberate breathing pulse --- */
.studio-merged .studio__vision__quote {
  color: var(--paper);
  animation: visionPulse 6s ease-in-out infinite;
}
.studio-merged .studio__vision__quote em:not(.pulse-em) {
  color: var(--rust-2);
  animation: visionEmHold 6s ease-in-out infinite;
}
@keyframes visionPulse {
  0%, 100% { opacity: 0.32; }
  50%      { opacity: 0.78; }
}
@keyframes visionEmHold {
  0%, 100% { opacity: 1; }
  50%      { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .studio-merged .studio__vision__quote {
    animation: none;
    opacity: 0.6;
  }
  .studio-merged .studio__vision__quote em {
    animation: none;
  }
}


/* ====================================================
   MOBILE — ≤768px
   ==================================================== */
@media (max-width: 768px) {

  /* NAV — hide desktop menu/cta/socials, show burger */
  .nav__menu,
  .nav__cta,
  .nav__socials {
    display: none !important;
  }

  .nav__hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--ink);
    cursor: pointer;
    margin-left: auto;
    margin-right: 10px;
  }
  .nav__hamburger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav__hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav__hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav__hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .nav__lang {
    font-size: 10px;
    padding: 4px 6px;
  }
  .nav {
    padding: 10px 16px !important;
    top: 28px !important;
  }

  /* MOBILE MENU OVERLAY */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--paper);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    font-family: var(--mono);
    font-size: 18px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .mobile-menu__inner a {
    color: var(--ink);
    padding: 8px 16px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .mobile-menu__inner a:hover,
  .mobile-menu__inner a:active {
    border-bottom-color: var(--rust);
    color: var(--rust);
  }
  .mobile-menu__cta {
    margin-top: 14px;
    background: var(--ink);
    color: var(--paper) !important;
    padding: 12px 24px !important;
    border: 0 !important;
  }

  /* TOPBAR — compact */
  .topbar {
    font-size: 10px;
    padding: 6px 12px;
    gap: 8px;
    flex-wrap: wrap;
  }
  .topbar__left__extra,
  .topbar__mid {
    display: none;
  }
  .topbar__right span {
    display: none;
  }

  /* HERO — pull up tight, hide redundant blocks */
  .hero {
    padding-top: 36px !important;
    padding-bottom: 24px !important;
  }
  .hero__stamp,
  .hero__kicker,
  .hero__kicker__1,
  .hero__kicker__2,
  .hero__kicker__3,
  .hero__kicker__4,
  .hero__mark,
  .hero__acronym {
    display: none !important;
  }

  /* MAP CARDS — compact (YOKO Production / Mini / AI / Authentic) */
  .map__grid {
    gap: 8px !important;
  }
  .map__card {
    padding: 14px 16px !important;
    min-height: 0 !important;
  }
  .map__card__num {
    font-size: 10px !important;
    margin-bottom: 4px !important;
  }
  .map__card__name {
    font-size: 17px !important;
    margin-bottom: 2px !important;
  }
  .map__card__role {
    font-size: 10px !important;
    margin-bottom: 6px !important;
  }
  .map__card__line {
    font-size: 13px !important;
    line-height: 1.35 !important;
    margin-bottom: 4px !important;
  }
  .map__card__cta {
    display: none !important;
  }

  /* Tighten work → method gap */
  .block.work {
    padding-bottom: 32px !important;
  }
  .block.method {
    padding-top: 36px !important;
  }

  /* Footer studio info — not needed, remove if present */
  .footer-studio-info {
    display: none !important;
  }
}
/* Mobile hero band — show inline image between headline and support */
.hero__split__band-mobile {
  display: none;
}

@media (max-width: 768px) {
  /* Show the inline mobile band */
  .hero__split__band-mobile {
    display: block;
    margin: 24px -16px;       /* bleed edge-to-edge */
  }
  .hero__split__band-mobile img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Hide the original full-width hero band section on mobile (duplicate) */
  .hero-band {
    display: none !important;
  }

  /* Kill leftover gap below hero, before map section */
  .hero {
    padding-bottom: 0 !important;
  }
  .hero__split {
    gap: 0 !important;
  }
  .hero__support {
    margin-top: 16px !important;
  }
}
/* ====================================================
   HOMEPAGE COPY ADDITIONS — differentiator, social
   proof logo strip, intake "what happens next" line.
   ==================================================== */

/* 1) Hero differentiator — sits above support paragraphs */
.hero__differentiator {
  font-family: var(--display);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 46ch;
  margin: 0 0 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.12);
}
.hero__differentiator strong {
  font-weight: 800;
}

/* 2) Social proof — logo strip */
.proof {
  border-top: 1px solid rgba(10, 10, 10, 0.10);
  padding: 40px var(--px);
}
.proof__inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.proof__lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
}
.proof__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px 36px;
}
.proof__logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(15px, 1.8vw, 20px);
  letter-spacing: -0.01em;
  color: var(--ink);
  opacity: 0.55;
  transition: opacity 0.25s;
}
.proof__logo:hover {
  opacity: 1;
}

/* 3) Intake — "what happens next" line above form */
.intake__next {
  font-family: var(--display);
  font-size: clamp(15px, 1.5vw, 18px);
  font-style: italic;
  line-height: 1.5;
  color: var(--rust);
  max-width: 52ch;
  margin: 4px 0 28px;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .proof {
    padding: 32px 16px;
  }
  .proof__logos {
    gap: 10px 20px;
  }
  .hero__differentiator {
    font-size: 16px;
  }
}
/* Team photos — keep heads visible on mobile */
@media (max-width: 768px) {
  .team__photo img,
  .team__img-base,
  .team__img-hover {
    object-position: center 20%;
  }
}