/* ═══════════════════════════════════════════════════════
   ARTAKIA — Design Tokens + Osmo Scaling System
   https://osmo.supply/
═══════════════════════════════════════════════════════ */

/* ── Osmo Scaling — Desktop (design: 1440px, base: 16px) */
:root {
  --size-unit: 16;
  --size-container-ideal: 1500;
  --size-container-min: 992px;
  --size-container-max: 1920px;
  --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
  --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));

  /* Palette */
  --ground:   #060606;
  --text:     #f2f0ed;
  --dim:      #d2d3d5;
  --muted:    rgba(210, 211, 213, 0.5);
  --accent:   #c4d4de;
  --ghost:    #242424;
  --card:     #101110;
  --stats-bg: #070707;
  --border:   rgba(250, 245, 245, 0.2);
  --f-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --f-serif:  Georgia, 'Times New Roman', serif;

  --nav-h: 4.5em; /* 72px at design scale */
}

/* ── Osmo Scaling — Tablet */
@media screen and (max-width: 991px) {
  :root { --size-container-ideal: 834; --size-container-min: 768px; --size-container-max: 991px; }
}

/* ── Osmo Scaling — Mobile Landscape */
@media screen and (max-width: 767px) {
  :root { --size-container-ideal: 550; --size-container-min: 480px; --size-container-max: 767px; }
}

/* ── Osmo Scaling — Mobile Portrait */
@media screen and (max-width: 479px) {
  :root { --size-container-ideal: 420; --size-container-min: 320px; --size-container-max: 479px; }
}

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

html, body {
  background: var(--ground);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: var(--size-font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scrollbar-width: none;
}
::-webkit-scrollbar { display: none; }

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.125em 2.25em;
  background: rgba(6, 6, 6, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-logo {
  font-weight: 900; font-size: 0.875em; font-style: italic;
  letter-spacing: -0.69px; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  display: flex; align-items: center;
}
.nav-logo__img {
  height: 23px; width: auto; display: block;
}
.nav-links {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; gap: 2.5em; list-style: none;
}
.nav-links a {
  font-size: 0.875em; font-weight: 500; letter-spacing: -0.5px;
  color: rgba(210, 211, 213, 0.7); text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  --button-020-color:                  #f2f0ed;
  --button-020-color-background:       transparent;
  --button-020-hover-color:            #060606;
  --button-020-hover-color-background: var(--accent);
  --button-020-color-focus:            var(--accent);
  --button-020-padding:                0.9375em 1.5625em;
  --button-020-border:                 1px solid #1d1d1d;
  --button-020-border-radius:          1em;
  --button-020-ease-hover:             cubic-bezier(0.32, 0.72, 0, 1);
  font-size: 1.125em; font-weight: 600; letter-spacing: -0.72px;
}
.btn-magnetic { position: relative; }

/* ── Button 020 ─────────────────────────────────────────── */
.button-020 {
  -webkit-user-select: none; user-select: none;
  background-color: transparent;
  outline-style: none; padding: 0; line-height: 1;
  text-decoration: none; display: inline-grid; position: relative;
  -webkit-tap-highlight-color: transparent;
}
.button-020::after {
  content: ''; display: block; position: absolute;
  inset: var(--button-020-focus-inset, -0.125em);
  border-radius: var(--button-020-border-radius);
  transition: box-shadow 0.3s var(--button-020-ease-focus, cubic-bezier(0.32, 0.72, 0, 1));
  pointer-events: none; z-index: 1;
}
.button-020:is(:focus-visible)::after {
  box-shadow: 0 0 0 0.125em var(--button-020-color-focus);
}
.button-020__inner {
  pointer-events: none;
  border-radius: var(--button-020-border-radius);
  display: grid; overflow: clip;
}
.button-020__default {
  width: 100%; height: 100%;
  color: var(--button-020-color);
  grid-area: 1 / 1; display: grid;
}
.button-020__default-bg {
  background-color: var(--button-020-color-background);
  border-radius: var(--button-020-border-radius);
  border: var(--button-020-border);
  grid-area: 1 / 1; width: 100%; height: 100%; padding: 0;
}
.button-020__default-text {
  width: 100%; height: 100%;
  padding: var(--button-020-padding);
  grid-area: 1 / 1;
  transition: translate 0.45s var(--button-020-ease-hover), scale 0.45s var(--button-020-ease-hover);
}
.button-020__hover {
  width: 100%; height: 100%;
  color: var(--button-020-hover-color);
  grid-area: 1 / 1; display: grid;
  translate: 0 calc(100% + 1px) 0;
  transition: translate 0.45s var(--button-020-ease-hover);
}
.button-020__hover-bg {
  background-color: var(--button-020-hover-color-background);
  grid-area: 1 / 1; width: 100%; height: 100%; padding: 0;
}
.button-020__hover-text {
  width: 100%; height: 100%;
  padding: var(--button-020-padding);
  grid-area: 1 / 1;
  translate: 0 25% 0;
  transition: translate 0.45s var(--button-020-ease-hover);
}
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .button-020:is(:hover, :focus-visible) .button-020__default-text,
  [data-hover]:is(:hover, :focus-visible) .button-020 .button-020__default-text {
    translate: 0 -25% 0; scale: 0.85;
    transition: translate 0.95s var(--button-020-ease-hover), scale 0.95s var(--button-020-ease-hover);
  }
  .button-020:is(:hover, :focus-visible) .button-020__hover,
  [data-hover]:is(:hover, :focus-visible) .button-020 .button-020__hover {
    translate: 0 0 0; transition-delay: 0.05s;
  }
  .button-020:is(:hover, :focus-visible) .button-020__hover-text,
  [data-hover]:is(:hover, :focus-visible) .button-020 .button-020__hover-text {
    translate: 0 0 0; transition-delay: 0.065s;
  }
}

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
.hero {
  height: 46.25em;
  padding: 2.25em;
  padding-top: calc(2.25em + var(--nav-h));
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
}
.hero-top { display: flex; flex-direction: column; gap: 1.5625em; }

.location-pill {
  display: inline-flex; align-items: center; gap: 0.5em;
  border: 1px solid rgba(196, 212, 222, 0.10); border-radius: 100em;
  padding: 0.5em 1em; align-self: flex-start;
  background: radial-gradient(50% 50% at 50% 50%, rgba(6, 6, 6, 0.00) 0%, rgba(196, 212, 222, 0.06) 100%);
}
.loc-dot   { width: 0.3125em; height: 0.3125em; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.loc-city  { font-size: 0.625em; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text); }
.loc-sep   { width: 1px; height: 0.875em; background: rgba(255, 255, 255, 0.09); }
.loc-world { font-size: 0.625em; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; color: #525252; }

/* Hero heading — 165px at 1440px */
.hero-hl { font-size: 10.3125em; letter-spacing: -0.06em; line-height: 0.8; word-spacing: -0.03em; }
.hero-hl-italic {
  display: block; font-family: var(--f-serif);
  font-style: italic; font-weight: 500;
  color: var(--ghost);
  overflow: hidden;
  padding-bottom: 0.2545em; /* 42px relative to 165px inherited font-size */
  position: relative; z-index: 0;
}
[data-typewriter] { display: inline-block; }
.tw-char { display: inline-block; }
.hero-hl-bold {
  display: block; font-weight: 900; font-style: normal;
  color: var(--accent);
  margin-top: -0.2545em; /* -42px relative to 165px */
  position: relative; z-index: 1;
}

.hero-bottom { display: flex; align-items: flex-end; justify-content: space-between; }
.hero-desc {
  font-size: 1.375em; font-weight: 500; letter-spacing: -1.3px; line-height: 1.2;
  color: #6c6d6e; max-width: 447px;
}
.hero-desc em { font-style: normal; color: var(--text); }

.hero-cta {
  display: inline-flex; align-items: center; gap: 1em;
  background: rgba(255, 255, 255, 0.1); border-radius: 1em;
  padding: 0.5em 0.5em 0.5em 1.5em; text-decoration: none;
}
.hero-cta-label { font-size: 1.125em; font-weight: 600; letter-spacing: -0.72px; color: #fff; }
.hero-cta-bars {
  display: flex; align-items: center; gap: 3px;
  background: rgba(255, 255, 255, 0.88); border-radius: 0.5em;
  padding: 0 0.5em; height: 2.375em; width: 3.25em; justify-content: center;
  transition: background 0.4s ease;
}
.hero-cta:hover .hero-cta-bars { background: var(--accent); }
.bar {
  width: 2px; height: 0.8125em; flex-shrink: 0;
  background: var(--ground); border-radius: 2px;
  transform-origin: center;
  animation: eq-wave ease-in-out infinite alternate;
}
.bar:nth-child(1) { animation-duration: 0.80s; animation-delay: 0.00s; }
.bar:nth-child(2) { animation-duration: 1.10s; animation-delay: 0.12s; }
.bar:nth-child(3) { animation-duration: 0.70s; animation-delay: 0.25s; }
.bar:nth-child(4) { animation-duration: 1.00s; animation-delay: 0.08s; }
.bar:nth-child(5) { animation-duration: 0.85s; animation-delay: 0.20s; }
@keyframes eq-wave {
  from { transform: scaleY(0.28); }
  to   { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) { .bar { animation: none; } }

/* ═══════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════ */
.marquee { padding: 3.125em 0; overflow: hidden; }
.marquee-track {
  display: flex; gap: 0.5em; width: max-content;
  animation: scroll 22s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-card {
  width: 18.75em; height: 7.375em;
  background: var(--card); border-radius: 0.875em; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.logo-card img {
  max-height: 2.1875em; max-width: 8.75em;
  object-fit: contain; display: block;
}
.logo-card img[src*="sony"] {
  height: 3.2em; max-height: 3.2em; width: auto; max-width: 12em;
}

/* ═══════════════════════════════════════════════════════
   Section label (shared)
═══════════════════════════════════════════════════════ */
.label { display: flex; align-items: center; gap: 0.5625em; flex-shrink: 0; }
.label-line { width: 1.75em; height: 1px; background: var(--dim); opacity: .6; }
.label-text { font-size: 1em; font-weight: 500; letter-spacing: -0.64px; color: var(--dim); }

/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
.about { padding: 6.375em 2.25em; overflow: hidden; }
.about-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: 2.5em; }
.about-left { width: 32.6875em; flex-shrink: 0; display: flex; flex-direction: column; gap: 3.75em; }
.about-h {
  font-size: 6.125em; font-weight: 600;
  letter-spacing: -0.051em; line-height: 0.8; color: var(--dim);
}
.about-right { width: 42.75em; flex-shrink: 0; display: flex; flex-direction: column; gap: 4.5em; }
.about-lead {
  font-family: var(--f-serif); font-size: 1.875em; font-weight: 600;
  letter-spacing: -1.2px; line-height: 1.2; color: var(--dim);
}
.about-lead em { font-style: normal; color: var(--accent); }
.about-cols { display: flex; gap: 2.25em; }
.about-col {
  flex: 1; font-size: 1.375em; font-weight: 500;
  letter-spacing: -1.2px; line-height: 1.2; color: var(--muted);
}
.about-col em { font-style: normal; color: var(--text); }

/* ═══════════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════════ */
.stats { display: flex; padding: 0 2.25em 6.375em; }
.stat {
  flex: 1;
  border-right: 1px solid var(--border);
  padding: 1.75em 2.5em; height: 10em;
  display: flex; align-items: center;
}
.stat:last-child { border-right: none; }
.stat-row { display: flex; align-items: flex-start; line-height: 1; }
.stat-body { display: flex; flex-direction: column; }
.stat-value-row { display: flex; align-items: flex-end; line-height: 1; }
.stat-pfx   { font-size: 5em; font-weight: 400; letter-spacing: -4px; color: var(--text); line-height: 1; }
.stat-pfx-a { color: var(--accent); }
.stat-num   { font-size: 5em; font-weight: 600; letter-spacing: -4px; color: var(--text); }
/* stat-unit em context: 1.875em = 30px — padding/margin relative to that */
.stat-unit  { font-size: 1.875em; font-weight: 800; letter-spacing: -1.5px; color: var(--accent); padding-bottom: 0.3em; margin-left: 0.2em; }
.stat-lbl   { font-size: 1em; font-weight: 500; letter-spacing: -0.64px; color: var(--dim); opacity: .6; margin-top: 0.875em; }

/* ═══════════════════════════════════════════════════════
   M.A RECORDS
═══════════════════════════════════════════════════════ */
.ma { padding: 6.375em 2.25em; }
.ma-inner { display: flex; justify-content: space-between; align-items: flex-start; }
.ma-left { flex-shrink: 0; width: 21.1875em; padding-top: 0.25em; }
.ma-right { width: 42.75em; flex-shrink: 0; display: flex; flex-direction: column; gap: 4.5em; }
.ma-h {
  font-size: 6.125em; font-weight: 600;
  letter-spacing: -0.051em; line-height: 0.8; color: var(--dim); white-space: nowrap;
}
.ma-h span { color: var(--accent); }
.ma-body { display: flex; flex-direction: column; gap: 2.25em; align-items: flex-end; }
.ma-cols { display: flex; gap: 2.25em; width: 100%; }
.ma-col {
  flex: 1; font-size: 1.375em; font-weight: 500;
  letter-spacing: -1.2px; line-height: 1.2; color: #6c6d6e;
}
.ma-col em { font-style: normal; color: #6c6d6e; }

.orchard-logo { display: flex; align-items: center; }
.orchard-logo img { height: 2.125em; display: block; }

/* ═══════════════════════════════════════════════════════
   BACKGROUND
═══════════════════════════════════════════════════════ */
.bg-section { padding: 6.375em 2.25em; overflow: hidden; }
.bg-inner { display: flex; flex-direction: column; gap: 4.5em; }
.bg-top { display: flex; flex-direction: column; gap: 2.25em; }
.bg-h {
  font-size: 6.125em; font-weight: 600;
  letter-spacing: -0.051em; line-height: 0.8; color: var(--dim); max-width: 728px;
}
.bg-body  { padding-left: 21.25em; display: flex; flex-direction: column; gap: 4.5em; }
.bg-tagline {
  font-family: var(--f-serif); font-size: 1.875em; font-weight: 400;
  letter-spacing: -1.2px; line-height: 1.2; color: var(--accent);
}
.bg-texts { padding-left: 21.4375em; display: flex; flex-direction: column; gap: 2.25em; }
.bg-p { font-size: 1.375em; font-weight: 500; letter-spacing: -1.2px; line-height: 1.2; color: var(--muted); }
.bg-p em { font-style: normal; color: #6c6d6e; }

/* ═══════════════════════════════════════════════════════
   SELECTED WORK
═══════════════════════════════════════════════════════ */
.work { padding: 7.5em 0 0; display: flex; flex-direction: column; gap: 2.5em; }
.work > .label { padding-left: 2.25em; }
.video-box {
  background: var(--ground);
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
/* Tall video — portrait crop on mobile, same as desktop on larger screens */
@media screen and (max-width: 767px) {
  .video-box--tall { aspect-ratio: 4/5; }
  .video-box--tall iframe {
    position: absolute;
    inset: auto;
    top: 50%; left: 50%;
    right: auto; bottom: auto;
    width: 222.22%; /* 16:9 scaled to fill 4:5 height: (5/4)*(16/9)*100 */
    height: 100%;
    border: 0;
    transform: translate(-50%, -50%);
  }
}

/* Poster fallback — shown when autoplay is blocked (e.g. iOS Low Power Mode) */
.video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
/* .video-box img has specificity (0,1,1)=11; .video-box .video-fallback = 20 wins */
.video-box .video-fallback              { display: none; }
.video-box.autoplay-blocked .video-fallback { display: block; }
.video-box.autoplay-blocked iframe          { display: none; }

/* Tap-to-play overlay — shown by JS when autoplay is blocked */
.video-tap {
  display: none;
  position: absolute; inset: 0;
  align-items: center; justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 2;
}
.video-tap.active  { display: flex; }
.video-tap.hidden  { opacity: 0; pointer-events: none; }
.video-tap__btn {
  width: 4em; height: 4em;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
}
.video-tap__btn svg { width: 1.5em; height: 1.5em; margin-left: 0.15em; }

.video-box img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-box .video-placeholder-label {
  font-size: 8.6875em; font-weight: 500; letter-spacing: -5.6px;
  color: #000; line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
.services { padding: 7.5em 0; display: flex; flex-direction: column; gap: 3.75em; }
.services > .label { padding-left: 2.25em; }
.svc-list  { border-top: 1px solid var(--border); }
.svc-row   { display: flex; align-items: flex-start; padding: 2.5em 2.25em; gap: 2.5em; border-bottom: 1px solid var(--border); }
.svc-num {
  width: 18.5em; flex-shrink: 0;
  font-size: 1em; font-weight: 500; letter-spacing: -0.64px;
  color: var(--dim); opacity: .24;
}
.svc-content { display: flex; gap: 5px; flex: 1; min-width: 0; align-items: flex-start; }
.svc-name {
  width: 342px; flex-shrink: 0;
  font-size: 1.75em; font-weight: 600; letter-spacing: -0.88px; line-height: 1;
  color: var(--accent);
}
.svc-detail { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 0.8125em; }
.tags  { display: flex; gap: 2px; flex-wrap: wrap; }
.tag {
  border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 0.4375em; padding: 7px 12px;
  font-size: 0.625em; font-weight: 500; letter-spacing: 0.3px; text-transform: uppercase;
  color: var(--dim); opacity: .5;
}
.svc-desc { font-size: 1em; font-weight: 500; letter-spacing: -0.64px; line-height: 1.4; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   PHILOSOPHY QUOTE
═══════════════════════════════════════════════════════ */
.phil-quote {
  padding: 7.5em 11.8125em;
  display: flex; flex-direction: column; align-items: center; gap: 0.75em;
}
.phil-quote-line {
  font-size: 6.125em; font-weight: 600;
  letter-spacing: -0.06em; line-height: 1;
  text-align: center;
}
.phil-quote-muted { color: var(--text); }
.phil-quote-bright { color: var(--accent); }

/* ═══════════════════════════════════════════════════════
   PHILOSOPHY GRID
═══════════════════════════════════════════════════════ */
.philosophy { padding: 7.5em 2.25em; display: flex; flex-direction: column; gap: 5em; }
.phil-grid   { display: flex; }
.phil-center {
  flex: 1; padding: 2.5em;
  display: flex; align-items: center; justify-content: center;
}
.phil-center-text {
  font-size: 1em; font-weight: 500; letter-spacing: -1.2px; line-height: 1.2;
  color: var(--muted); text-align: center; max-width: 256px;
}
.phil-center-text em { font-style: normal; color: var(--text); }
.phil-right { flex: 0 0 42.75em; display: grid; grid-template-columns: 1fr 1fr; }
.phil-item { padding: 2.5em 2.5em 2.5em 0; display: flex; gap: 2.5em; }
.phil-n {
  font-size: 1em; font-weight: 500; letter-spacing: -0.64px;
  color: var(--dim); opacity: .24; flex-shrink: 0; min-width: 3em;
}
.phil-body  { display: flex; flex-direction: column; gap: 0.8125em; }
.phil-title { font-size: 1.75em; font-weight: 600; letter-spacing: -0.88px; line-height: 1; color: var(--accent); }
.phil-desc  { font-size: 1em; font-weight: 500; letter-spacing: -0.64px; line-height: 1.4; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer { overflow: hidden; }
.footer-top { padding: 8.75em 2.25em 1.875em; }
.footer-links { display: flex; justify-content: space-between; width: 100%; align-items: flex-start; }
.footer-nav-cols { display: flex; }
.footer-nc { width: 14.0625em; display: flex; flex-direction: column; gap: 1em; }
.footer-nc-lbl { font-size: 0.875em; font-weight: 500; letter-spacing: -0.56px; color: #fff; opacity: .6; }
.footer-nc-links { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-nc-links a {
  font-size: 1.375em; font-weight: 500; letter-spacing: -0.88px;
  color: #fff; text-decoration: none; transition: color .2s;
  display: flex; align-items: center; gap: 8px;
}
.footer-nc-links a img { width: 10px; height: 10px; }
.footer-nc-links a:hover { color: var(--accent); }

/* Footer CTA — 3-state copy button */
.footer-cta { width: 42.75em; flex-shrink: 0; }
.footer-eyebrow {
  font-size: 0.6875em; font-weight: 500; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25); letter-spacing: 0.5px; margin-bottom: 10px;
}
.footer-cta-btn {
  background: none; border: none; cursor: pointer;
  padding: 0; text-align: left; width: 100%; display: block;
}
.footer-cta-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding-bottom: 1.75em;
  border-bottom: 4px solid var(--accent);
}
.footer-cta-text-wrap {
  font-size: 3.25em;
  overflow: hidden; height: 1.1em;
  display: flex; flex-direction: column;
}
.footer-cta-slide {
  display: block; font-size: 1em; font-weight: 700;
  letter-spacing: -3.12px; line-height: 1.1;
  color: var(--accent); white-space: nowrap;
  transition: transform .45s cubic-bezier(.65, 0, 0, 1);
}
.footer-cta-btn:hover .footer-cta-slide { transform: translateY(-100%); }
[data-copy-button="copied"] .footer-cta-slide { transform: translateY(-200%) !important; }

.footer-cta-arrow { display: flex; align-items: flex-end; padding-bottom: 0.5em; flex-shrink: 0; }
.footer-cta-arrow img {
  width: 1.75em; height: 1.75em;
  transition: width 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}
.footer-cta-btn:hover .footer-cta-arrow img { width: 3.5em; }

/* Footer wordmark marquee */
.footer-wordmark-wrap { overflow-x: clip; padding-bottom: 1.25em; }
.footer-wordmark-track {
  display: flex; align-items: center; gap: 2em;
  width: max-content;
  animation: wm-scroll 30s linear infinite;
}
.footer-wordmark-text {
  font-size: 18.6875em; font-weight: 900; font-style: italic;
  letter-spacing: -0.049em; line-height: 1.2;
  text-transform: uppercase; color: #0e0e0e;
  white-space: nowrap; user-select: none;
}
.footer-wordmark-text--records { padding-right: 0.15em; }
.footer-wordmark-star {
  width: 3.25em; height: 3.25em; flex-shrink: 0;
  animation: star-spin 8s linear infinite;
}
@keyframes wm-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes star-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.footer-bottom {
  padding: 1.75em 2.25em;
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer-bottom-inner { display: flex; width: 100%; justify-content: space-between; align-items: center; }
.copyright { font-size: 0.875em; font-weight: 500; letter-spacing: -0.56px; color: #fff; opacity: .6; }
.designed-by {
  font-size: 0.9375em; font-weight: 500; letter-spacing: -0.6px;
  color: rgba(255, 255, 255, 0.25); text-decoration: none; white-space: nowrap;
  transition: color 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}
.designed-by:hover { color: rgba(255, 255, 255, 0.75); cursor: none; }
.designed-by:hover .od-logo { color: var(--accent); }
.od-logo {
  height: 0.89em; width: auto;
  fill: currentColor; display: inline-block;
  vertical-align: middle; position: relative; top: -0.07em;
  transition: transform 0.6s cubic-bezier(0.34, 1.4, 0.64, 1), color 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}
.designed-by:hover .od-logo { transform: scale(1.4); }

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .footer-wordmark-track { animation: none; }
  .footer-wordmark-star { animation: none; }
}

/* ═══════════════════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════════════════ */

/* Hide fade-in elements before GSAP animates them */
[data-fade-in] { opacity: 0; }

.cursor {
  position: fixed; inset: 0 auto auto 0;
  z-index: 999; pointer-events: none;
  opacity: 0; visibility: hidden;
  width: 10px; height: 10px;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100em;
  transition:
    width  .375s cubic-bezier(.625, .05, 0, 1),
    height .375s cubic-bezier(.625, .05, 0, 1),
    background-color .375s cubic-bezier(.625, .05, 0, 1);
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor,
body:has([data-cursor]:hover) .cursor {
  width: 44px; height: 44px;
  background: rgba(196, 212, 222, 0.15);
}
@media (hover: none) and (pointer: coarse) { .cursor { display: none; } }

/* ═══════════════════════════════════════════════════════
   TYPEWRITER CURSOR
═══════════════════════════════════════════════════════ */
.typewriter-cursor {
  display: inline-block; margin-left: 2px;
  color: var(--accent);
  animation: cur-blink 0.65s step-end infinite;
}
@keyframes cur-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ═══════════════════════════════════════════════════════
   LOADER — kept in px (JS reads H from DOM offsetHeight)
═══════════════════════════════════════════════════════ */
.loading-container {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ground); overflow: hidden;
}
.loading-screen {
  display: none; width: 100%; height: 100%; position: relative;
}
.loading__progress {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 16px; background: rgba(196, 212, 222, 0.03);
}
.loading__progress-inner {
  position: absolute; bottom: 0; left: 0; right: 0; height: 100%;
  background: var(--accent); transform-origin: bottom;
  transform: scaleY(0); will-change: transform;
}
.loading__numbers {
  position: absolute; bottom: 70px; left: 76px;
  display: flex; align-items: flex-end; gap: 0;
}
.loading__number-group {
  overflow: hidden; height: 180px; padding-top: 15px;
}
.loading__number-wrap {
  display: flex; flex-direction: column; will-change: transform;
}
.loading__number {
  display: block; height: 165px;
  font-size: 165px; font-weight: 600; font-style: normal;
  letter-spacing: -15px; line-height: 1;
  color: var(--text); padding: 0 9px;
}
.loading__percentage-wrap { padding-bottom: 96px; margin-left: 6px; }
.loading__percentage {
  font-size: 55px; font-weight: 600;
  letter-spacing: -13px; line-height: 1;
  color: var(--text); opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════
   PROGRESS NAV
═══════════════════════════════════════════════════════ */
.progress-nav {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center;
  background: radial-gradient(50% 50% at 50% 50%, rgba(6, 6, 6, 0.00) 0%, rgba(196, 212, 222, 0.07) 100%);
  border: 1px solid rgba(196, 212, 222, 0.07);
  border-radius: 1.25em; padding: 4px; gap: 0;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}
.progress-nav__indicator {
  position: absolute; top: 4px; left: 4px;
  height: calc(100% - 8px);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 0.875em; pointer-events: none; width: 3.75em;
  opacity: 0;
}
.progress-nav__btn {
  position: relative; z-index: 1;
  padding: 8px 14px;
  font-size: 0.8125em; font-weight: 500; letter-spacing: -0.4px;
  color: rgba(210, 211, 213, 0.5);
  background: none; border: none; cursor: pointer;
  border-radius: 0.875em; transition: color .2s; white-space: nowrap;
}
.progress-nav__btn.active { color: var(--text); }
.progress-nav__btn:hover  { color: var(--text); }

/* ═══════════════════════════════════════════════════════
   UNDERLINE LINK
═══════════════════════════════════════════════════════ */
[data-underline-link] { position: relative; text-decoration: none; }
[data-underline-link]::after {
  content: ''; position: absolute; bottom: -1px; left: 0;
  height: 1px; width: 100%; background: currentColor;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
}
[data-underline-link]:hover::after { transform: scaleX(1); }
[data-underline-link="alt"]::after { transform: scaleX(1); transform-origin: right center; }
[data-underline-link="alt"]:hover::after { transform: scaleX(0); transform-origin: left center; }

/* ═══════════════════════════════════════════════════════
   SPLIT TEXT REVEAL
═══════════════════════════════════════════════════════ */
[data-split="heading"] { visibility: hidden; }
.split-word { display: inline-block; overflow: visible; }
.char { display: inline-block; }

/* ═══════════════════════════════════════════════════════
   DIRECTIONAL HOVER
═══════════════════════════════════════════════════════ */
.svc-row   { position: relative; overflow: hidden; }
[data-directional-hover-tile] {
  position: absolute; inset: 0;
  background: var(--accent); pointer-events: none; z-index: 0;
}
.svc-row > *:not([data-directional-hover-tile]) { position: relative; z-index: 1; }
.svc-num, .svc-name, .svc-desc { transition: color 0.25s ease; }
.tag { transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease; }
.svc-row.is-svc-active .svc-num { color: #060606; opacity: 1; }
.svc-row.is-svc-active .svc-name { color: #060606; }
.svc-row.is-svc-active .svc-desc { color: #060606; }
.svc-row.is-svc-active .tag { color: #060606; border-color: rgba(6, 6, 6, 0.4); opacity: 1; }

/* ═══════════════════════════════════════════════════════
   FOOTER PARALLAX
═══════════════════════════════════════════════════════ */
[data-footer-parallax] { position: relative; overflow: hidden; }
[data-footer-parallax-inner] { will-change: transform; }
[data-footer-parallax-dark] {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to bottom, var(--ground) 0%, transparent 40%);
  pointer-events: none; opacity: 0;
}

/* ═══════════════════════════════════════════════════════
   MOBILE NAV HAMBURGER
═══════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.5em;
  height: 2.5em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-hamburger__bar {
  width: 22px;
  height: 1.5px;
  background: var(--text);
  display: block;
  border-radius: 2px;
}

/* Mobile nav panel — full-screen overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 99;
  background: #060606;
  background-color: #060606;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.38s cubic-bezier(.65, 0, 0, 1), visibility 0.38s;
}
.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: calc(var(--nav-h) + 1.5em) 1em 2.25em;
}

/* Nav links — fixed padding, sit at top */
.mobile-nav__links {
  display: flex;
  flex-direction: column;
}
.mobile-nav__link {
  display: flex;
  align-items: center;
  padding: 0.75em 0;
  font-size: 1.75em;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--dim);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav__link:last-child { border-bottom: none; }
.mobile-nav__link:hover, .mobile-nav__link:active { color: var(--text); }

/* Bottom section — Social + CTA — pushed to bottom */
.mobile-nav__bottom {
  margin-top: auto;
  display: flex;
  gap: 2em;
  padding-top: 1.5em;
  border-top: 1px solid var(--border);
}
.mobile-nav__bottom-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}
.mobile-nav__bottom-lbl {
  font-size: 0.55em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.25);
}
.mobile-nav__bottom-link {
  font-size: 1.25em;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.2;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.mobile-nav__bottom-link img { width: 0.75em; height: 0.75em; flex-shrink: 0; }
.mobile-nav__bottom-link:hover { color: var(--accent); }

.mobile-nav__email-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
}
.mobile-nav__email-wrap {
  display: block;
  overflow: hidden;
  height: 1.2em;
}
.mobile-nav__email-slide {
  display: flex;
  flex-direction: column;
  transition: transform 0.32s cubic-bezier(.65, 0, 0, 1);
}
.mobile-nav__email-slide span { display: block; line-height: 1.2; }
[data-copy-button="copied"] .mobile-nav__email-slide { transform: translateY(-50%); }

/* ═══════════════════════════════════════════════════════
   PROGRESSIVE BLUR (disabled)
═══════════════════════════════════════════════════════ */
.progressive-blur { display: none; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 991px)
═══════════════════════════════════════════════════════ */
@media screen and (max-width: 991px) {

  /* Nav — hide pill, show burger + CTA grouped right */
  .nav-links     { display: none; }
  .progress-nav  { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav    { display: flex; flex-direction: column; }
  .btn-magnetic  { margin-left: auto; }
  .nav-hamburger { margin-left: 0.75em; }

  /* Mobile nav open state */
  body[data-nav-open] .mobile-nav { opacity: 1; visibility: visible; }

  /* Hero */
  .hero    { height: auto; min-height: 100svh; padding-bottom: 2.25em; }
  .hero-hl { font-size: 8em; }

  /* Stats — 2×2 */
  .stats { flex-wrap: wrap; }
  .stat  { flex: 0 0 50%; height: auto; padding: 2em 2.25em; border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd)               { border-right: 1px solid var(--border); }
  .stat:nth-last-child(1),
  .stat:nth-last-child(2)            { border-bottom: none; }

  /* About */
  .about-inner { flex-direction: column; gap: 3em; }
  .about-left, .about-right { width: 100%; }

  /* M.A Records */
  .ma-inner { flex-direction: column; gap: 3em; }
  .ma-left, .ma-right { width: 100%; }

  /* Background */
  .bg-body  { padding-left: 0; }
  .bg-texts { padding-left: 0; }

  /* Services */
  .svc-num     { display: none; }
  .svc-content { flex-direction: column; gap: 1em; }
  .svc-name    { width: 100%; }

  /* Philosophy quote */
  .phil-quote { padding-left: 2.25em; padding-right: 2.25em; }

  /* Philosophy grid */
  .phil-grid   { flex-direction: column; }
  .phil-center { padding: 0 0 3em; justify-content: flex-start; }
  .phil-center-text { text-align: left; max-width: 100%; }
  .phil-right  { flex: none; width: 100%; }

  /* Footer */
  .footer-links { flex-direction: column; gap: 3em; }
  .footer-cta   { width: 100%; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Mobile Landscape (≤ 767px)
═══════════════════════════════════════════════════════ */
@media screen and (max-width: 767px) {

  /* Footer CTA — show email immediately (no hover on mobile) */
  .footer-cta-slide { transform: translateY(-100%); }

  /* Hero */
  .hero-hl      { font-size: 4em; }
  .hero-hl-bold { white-space: nowrap; }
  .hero-bottom  { flex-direction: column; align-items: flex-start; gap: 2em; }

  /* Logo cards — narrower so 2-3 fit in view */
  .logo-card     { width: 10em; height: 4em; }
  .logo-card img { max-height: 1.5em; max-width: 7em; }
  .logo-card img[src*="sony"] { height: 2.2em; max-height: 2.2em; }

  /* Stats — single column */
  .stats { flex-direction: column; }
  .stat  { flex: none; width: 100%; border-right: none; border-bottom: 1px solid var(--border); padding: 1.75em 2.25em; height: auto; }
  .stat:nth-child(odd)    { border-right: none; }
  .stat:nth-last-child(2) { border-bottom: 1px solid var(--border); }
  .stat:last-child        { border-bottom: none; }

  /* About + MA — stack inner columns */
  .about-cols { flex-direction: column; }
  .ma-cols    { flex-direction: column; }

  /* Philosophy center — left align */
  .phil-center      { justify-content: flex-start; padding-bottom: 2em; }
  .phil-center-text { text-align: left; max-width: 100%; }

  /* Philosophy quote */
  .phil-quote-line { font-size: 4em; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — Mobile Portrait (≤ 479px)
═══════════════════════════════════════════════════════ */
@media screen and (max-width: 479px) {

  /* Nav — CTA visible at portrait mobile */

  /* Hero — remove 100svh so partners marquee is visible in viewport */
  .hero { min-height: 0; justify-content: flex-start; gap: 2.5em; padding-left: 1em; padding-right: 1em; padding-bottom: 1em; }
  .hero-hl { font-size: 3.8em; }
  .hero-bottom { margin-top: 7em; }
  .hero-desc { font-size: 1.1em; }
  .marquee { padding: 1.5em 0; }

  /* Display headings */
  .about-h, .bg-h { font-size: 3.25em; }
  .ma-h { font-size: 3.25em; white-space: normal; }
  .about-lead { font-size: 1.25em; font-weight: 400; color: var(--accent); }

  /* Section padding — reduce horizontal to 1em */
  .about     { padding: 4em 1em; }
  .ma        { padding: 4em 1em; }
  .bg-section { padding: 4em 1em; }
  .bg-tagline { font-size: 1.25em; }
  .work      { padding: 4em 0 0; }
  .work > .label { padding-left: 1.5em; }
  .services  { padding: 4em 0; }
  .services > .label { padding-left: 1em; }
  .phil-quote { padding: 4em 1em; }
  .philosophy { padding: 4em 1em; }
  .stats     { padding: 0 1em 4em; }

  /* About inner columns — stack */
  .about-cols { flex-direction: column; }

  /* M.A Records inner columns — stack */
  .ma-cols { flex-direction: column; }

  /* Stats — vertical, left-aligned */
  .stats { flex-direction: column; }
  .stat              { flex: none; width: 100%; padding: 1.5em 0; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd)    { border-right: none; }
  .stat:nth-last-child(2) { border-bottom: 1px solid var(--border); }
  .stat:last-child        { border-bottom: none; }

  /* Services */
  .svc-row { padding: 1.5em 1em; }

  /* Loader — scale down on mobile (JS reads offsetHeight from DOM) */
  .loading__numbers       { left: 28px; bottom: 50px; }
  .loading__number-group  { height: 96px; padding-top: 8px; }
  .loading__number        { height: 88px; font-size: 88px; letter-spacing: -8px; padding: 0 5px; }
  .loading__percentage-wrap { padding-bottom: 52px; }
  .loading__percentage    { font-size: 30px; letter-spacing: -7px; }

  /* Video box */

  /* Philosophy quote */
  .phil-quote-line { font-size: 2.25em; }

  /* Philosophy grid — 1 column */
  .phil-right { grid-template-columns: 1fr; }
  .phil-item  { padding-right: 0; }

  /* Footer */
  .footer-nav-cols { flex-direction: row; gap: 4.5em; }
  .footer-nc  { flex: 1; width: auto; }
  .footer-top { padding: 5em 1em 3em; }
  .footer-cta-text-wrap { overflow: visible; clip-path: inset(0 -999em); }
  .footer-bottom { padding-left: 1em; padding-right: 1em; }

  /* Footer wordmark — slightly lighter than desktop dark-on-dark */
  .footer-wordmark-text { font-size: 6em; color: rgba(242, 240, 237, 0.14); }
  .footer-wordmark-star { width: 1.5em; height: 1.5em; }

  /* Logo cards — slightly brighter on small screens */
  .logo-card { background: rgba(196, 212, 222, 0.08); }

  /* Footer bottom — copyright left, website-by right */
  .footer-bottom-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1em;
  }
  .copyright     { text-align: left; }
  .copyright-sub { display: block; }
  .designed-by   { white-space: nowrap; }
}

@media screen and (min-width: 390px) and (max-width: 479px) {
  .nav-cta { font-size: 0.9em; }
}

@media screen and (max-width: 389px) {
  .nav-cta { display: none; }
}

/* ═══════════════════════════════════════════════════════
   SCRAMBLE TEXT CURSOR
═══════════════════════════════════════════════════════ */

.sc-cursor {
  z-index: 25;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
}

.cursor-scramble {
  gap: 0.4em;
  opacity: 0;
  color: var(--text);
  align-items: center;
  display: flex;
  white-space: nowrap;
  position: relative;
  will-change: transform, opacity;
}

.cursor-scramble__text {
  letter-spacing: 0.03em;
  font-size: 0.5em;
  font-weight: 500;
  text-transform: uppercase;
}

.cursor-scramble__chevron {
  color: var(--accent);
  width: .25em;
}

@media (hover: hover) and (pointer: fine) {
  [data-sc] .cursor-scramble {
    transition: opacity 0.2s ease 0.1s;
    transform: translateX(calc(-100% - 2em)) translateY(-110%) scale(1) rotate(0.001deg);
  }

  [data-sc="active"] .cursor-scramble {
    transition: opacity 0.2s ease 0s;
    opacity: 1;
    transform: translateX(calc(-100% - 2em)) translateY(-110%) scale(1) rotate(0.001deg);
  }
}

@media (hover: none) and (pointer: coarse) {
  .sc-cursor { display: none; }
}
