/* Striking Boltz — Design System */
:root {
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --mid: #2a2a2a;
  --off-white: #f5f5f5;
  --white: #ffffff;
  --gold: #e8b84a;
  --gold-hover: #d4a63a;
  --muted: #b3b3b3;
  --text-dark: #2a2a2a;
  --max: 1160px;
  --pad-x: clamp(1.25rem, 4vw, 4rem);
  --section-y: clamp(4rem, 10vw, 7.5rem);
  --radius: 7px;
  --font-display: "Oswald", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--off-white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.intro-active {
  overflow: hidden;
}

body.intro-morphing {
  overflow: hidden;
}

/* Hide header logo until intro morphs into it */
body.intro-active .site-header .logo-mark,
body.intro-morphing .site-header .logo-mark {
  opacity: 0;
}

body.intro-morphing .site-header .logo-mark {
  transition: opacity 0.15s ease;
}

/* Home intro splash — black screen, then morph into header logo */
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  background: transparent;
  opacity: 1;
}

.site-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #000;
  opacity: 1;
  transition: opacity 0.28s ease;
}

/* Reveal the site after the logo reaches the header */
.site-intro.is-revealing::before,
.site-intro.is-fading::before {
  opacity: 0;
}

.site-intro.is-fading {
  pointer-events: none;
}

.site-intro.is-gone,
html.intro-skip .site-intro {
  display: none;
}

.site-intro-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  background-color: transparent;
  opacity: 1;
  transition: opacity 0.35s ease;
}

/* Swap video → clean logo; keep black cover until morph ends */
.site-intro.is-swapping .site-intro-video {
  opacity: 0;
  pointer-events: none;
}

.site-intro-flyer {
  position: fixed;
  z-index: 10001;
  object-fit: contain;
  pointer-events: none;
  opacity: 0;
  background: transparent;
  will-change: top, left, width, height, opacity;
}

.site-intro-skip {
  position: absolute;
  z-index: 2;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.75);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s, opacity 0.25s;
}

.site-intro.is-swapping .site-intro-skip,
.site-intro.is-revealing .site-intro-skip {
  opacity: 0;
  pointer-events: none;
}

.site-intro-skip:hover {
  color: var(--white);
  border-color: var(--gold);
  background: rgba(232, 184, 74, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .site-intro::before,
  .site-intro-video {
    transition: none;
  }
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 2 * var(--pad-x), var(--max));
  margin-inline: auto;
}

/* Header — fixed so it stays while scrolling */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: clamp(0.75rem, 2vw, 1.5rem) var(--pad-x);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  min-height: 5.75rem;
  padding-left: 0;
}

/* Offset page content under fixed header */
body {
  padding-top: 6.35rem;
}

@media (max-width: 700px) {
  body {
    padding-top: 4.85rem;
  }
}

@media (max-width: 520px) {
  body {
    padding-top: 4.25rem;
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  z-index: 90;
  width: 2.85rem;
  height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(232, 184, 74, 0.55);
  border-radius: var(--radius);
  background: rgba(10, 10, 10, 0.88);
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.back-to-top svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

body.intro-active .back-to-top,
body.intro-morphing .back-to-top {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 0;
  justify-self: start;
  flex-shrink: 0;
}

.logo-mark {
  width: auto;
  height: 6rem;
  max-width: min(420px, 62vw);
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.site-footer .logo-mark {
  height: 3rem;
  max-width: 220px;
}

.logo-mark-hero {
  width: auto;
  height: clamp(5.5rem, 14vw, 9rem);
  max-width: min(420px, 85vw);
  display: block;
  object-fit: contain;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease both;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  justify-self: center;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--off-white);
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav a:hover {
  color: var(--white);
}

.nav a.active {
  border-bottom-color: var(--gold);
}

.header-cta {
  justify-self: end;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
  animation: boltFlicker 1.6s steps(2, end) infinite;
}

.header-cta::before,
.header-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.header-cta::before {
  inset: -40% -60%;
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.55) 0%, transparent 42%),
    radial-gradient(circle at 70% 60%, rgba(232, 184, 74, 0.5) 0%, transparent 45%);
  opacity: 0;
  animation: boltBurst 1.6s ease-in-out infinite;
}

.header-cta::after {
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 45%,
    rgba(255, 255, 255, 0.95) 50%,
    transparent 55%,
    transparent 100%
  );
  transform: translateX(-140%) skewX(-18deg);
  animation: boltSlash 1.6s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

@keyframes boltFlicker {
  0%,
  72%,
  100% {
    box-shadow: 0 0 0 transparent;
    filter: brightness(1);
  }
  74% {
    box-shadow:
      0 0 8px rgba(255, 255, 255, 0.7),
      0 0 18px rgba(232, 184, 74, 0.85);
    filter: brightness(1.35);
  }
  78% {
    box-shadow: 0 0 2px rgba(232, 184, 74, 0.25);
    filter: brightness(1.02);
  }
  82% {
    box-shadow:
      0 0 12px rgba(255, 255, 255, 0.85),
      0 0 28px rgba(232, 184, 74, 0.95);
    filter: brightness(1.45);
  }
  88% {
    box-shadow: 0 0 6px rgba(232, 184, 74, 0.4);
    filter: brightness(1.1);
  }
}

@keyframes boltBurst {
  0%,
  72%,
  100% {
    opacity: 0;
    transform: scale(0.85);
  }
  74%,
  82% {
    opacity: 1;
    transform: scale(1.1);
  }
  78%,
  88% {
    opacity: 0.15;
    transform: scale(1);
  }
}

@keyframes boltSlash {
  0%,
  70% {
    transform: translateX(-140%) skewX(-18deg);
    opacity: 0;
  }
  74% {
    opacity: 1;
  }
  82% {
    transform: translateX(140%) skewX(-18deg);
    opacity: 0.9;
  }
  86%,
  100% {
    transform: translateX(140%) skewX(-18deg);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header-cta,
  .header-cta::before,
  .header-cta::after {
    animation: none;
  }

  .header-cta {
    box-shadow: none;
    filter: none;
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 1.65rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.link-arrow {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
  transition: letter-spacing 0.2s;
}

.link-arrow:hover {
  letter-spacing: 0.03em;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 4.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.35) 0%,
      rgba(10, 10, 10, 0.5) 50%,
      rgba(10, 10, 10, 0.75) 100%
    ),
    url("../assets/hero-gaming.jpg") center / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: min(100% - 2 * var(--pad-x), var(--max));
}

.hero-content {
  max-width: 44rem;
  padding-block: 5rem;
  text-align: center;
  animation: fadeUp 0.8s ease both;
}

.hero-title-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-title-row .heading-bolt {
  height: clamp(3.5rem, 8vw, 5.5rem);
}

.hero-title-row .heading-line {
  height: clamp(2.5rem, 6vw, 4rem);
  margin-top: 0;
  align-self: center;
}

.hero-title-row .hero-title {
  margin-bottom: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.15rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-support {
  color: rgba(245, 245, 245, 0.92);
  font-size: clamp(1.2rem, 2.6vw, 1.55rem);
  line-height: 1.55;
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 1.75rem;
}

.hero-actions .link-arrow {
  color: var(--white);
}

.hero-actions .link-arrow:hover {
  color: var(--gold);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Vision */
.vision {
  position: relative;
  background: #1c1c1c;
  overflow: hidden;
  text-align: center;
}

.vision-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 45%, transparent 18%, rgba(255, 255, 255, 0.04) 18.5%, transparent 19%),
    radial-gradient(circle at 50% 45%, transparent 34%, rgba(255, 255, 255, 0.035) 34.5%, transparent 35%),
    radial-gradient(circle at 50% 45%, transparent 50%, rgba(255, 255, 255, 0.03) 50.5%, transparent 51%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, auto, auto, 48px 48px, 48px 48px;
  background-position: center;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, black 20%, transparent 75%);
  pointer-events: none;
}

.vision-inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
}

.vision-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.vision-icon {
  width: auto;
  /* slightly taller than heading to offset transparent padding in the GIF */
  height: clamp(3.6rem, 8.5vw, 5.75rem);
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: screen;
}

.vision-heading .heading-line {
  height: clamp(2.5rem, 6vw, 3.75rem);
  margin-top: 0;
  align-self: center;
}

.vision-label {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin: 0;
}

.vision-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.35rem;
  line-height: 1.2;
}

.vision-copy {
  color: rgba(245, 245, 245, 0.88);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 40rem;
  margin: 0 auto 3rem;
}

.vision-circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.vision-circle {
  aspect-ratio: 1;
  width: min(100%, clamp(200px, 28vw, 260px));
  margin-inline: auto;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 10, 10, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 1.85rem);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.vision-circle:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.vision-circle-label {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.vision-circle p {
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  line-height: 1.45;
  color: var(--muted);
}

@media (max-width: 900px) {
  .vision-circles {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .vision-circle {
    width: min(100%, 280px);
  }

  .vision-circle-label {
    font-size: clamp(1.25rem, 5vw, 1.6rem);
  }

  .vision-circle p {
    font-size: clamp(1rem, 3.5vw, 1.15rem);
  }
}

/* Sections */
.section {
  padding-block: var(--section-y);
}

.section-dark {
  background: var(--dark);
}

.section-black {
  background: var(--black);
}

.section-light {
  background: var(--off-white);
  color: var(--text-dark);
}

.section-light .muted {
  color: #5c5c5c;
}

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.gold-rule,
.heading-line {
  width: 3px;
  height: 2.5rem;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.35rem;
}

.heading-bolt {
  width: auto;
  height: clamp(3.2rem, 7vw, 5rem);
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: screen;
}

.section-light .heading-bolt,
.page-hero .heading-bolt,
.contact-split .heading-bolt {
  mix-blend-mode: normal;
}

.heading-with-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.heading-with-mark--top {
  align-items: flex-start;
}

.heading-with-mark .heading-line {
  margin-top: 0.2em;
  height: 0.9em;
  min-height: 2rem;
  align-self: center;
}

.page-hero-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.page-hero-heading .heading-bolt {
  height: clamp(3rem, 7vw, 4.75rem);
}

.page-hero-heading .heading-line {
  height: clamp(2.25rem, 5vw, 3.5rem);
  margin-top: 0;
  align-self: center;
}

.page-hero-heading h1 {
  margin-bottom: 0;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.section-light .section-title {
  color: var(--black);
}

.section-intro {
  margin-top: 0.65rem;
  color: var(--muted);
  max-width: 36rem;
}

.section-light .section-intro {
  color: #5c5c5c;
}

.muted {
  color: var(--muted);
}

/* Work strips */
.work-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-block: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.work-strip:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.work-media {
  aspect-ratio: 16 / 10;
  background:
    linear-gradient(145deg, #2c2820 0%, #1a1a1a 50%, #0f0f0f 100%);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.work-media::after {
  content: "KEY ART";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.25);
}

.work-status {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.work-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.work-desc {
  color: #5c5c5c;
  max-width: 28rem;
}

/* Ethos */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 3rem;
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
  color: var(--white);
}

.pillar-text {
  color: var(--muted);
  font-size: 0.98rem;
}

/* People teaser */
.people-teaser {
  position: relative;
  min-height: 22rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.people-visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 20%, rgba(10, 10, 10, 0.9) 100%),
    linear-gradient(120deg, #2a2620, #1a1a1a 40%, #121212);
}

.people-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(232, 184, 74, 0.12), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05), transparent 35%);
}

.people-content {
  position: relative;
  z-index: 1;
  padding-block: 3rem;
}

.people-content p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  color: var(--white);
}

/* Closing CTA */
.closing-cta {
  text-align: center;
  padding-block: var(--section-y);
}

.closing-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
  color: var(--white);
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding-block: clamp(4rem, 12vw, 6.5rem) 3rem;
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
  animation: fadeUp 0.7s ease both;
}

.page-hero p {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.1rem;
  animation: fadeUp 0.7s ease 0.1s both;
}

.page-hero-link {
  margin-top: 1.25rem;
}

/* Our Odyssey */
.odyssey {
  background: #1a1a1a;
  padding-block: clamp(3.5rem, 9vw, 6rem);
}

.odyssey-inner {
  display: grid;
  grid-template-columns: minmax(12rem, 0.9fr) 1.1fr;
  gap: 2rem 4rem;
  align-items: center;
}

.odyssey-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.odyssey-heading .heading-line {
  height: clamp(2.25rem, 5vw, 3.25rem);
  margin-top: 0;
  align-self: center;
}

.odyssey-heading .heading-bolt {
  height: clamp(3.2rem, 7vw, 5rem);
}

.odyssey-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  margin: 0;
}

.odyssey-copy {
  color: rgba(245, 245, 245, 0.92);
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.55;
  margin: 0;
  max-width: 36rem;
}

@media (max-width: 1000px) {
  .founders-grid--trio {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .odyssey-inner {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
}

/* About story */
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: #888;
  margin-bottom: 0.75rem;
}

.story-grid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.story-grid p + p {
  margin-top: 1rem;
}

.story-visual {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(160deg, #3a3428 0%, #1a1a1a 60%, #0a0a0a 100%);
  border-radius: var(--radius);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.timeline-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.timeline-item span {
  color: var(--text-dark);
  font-weight: 500;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
}

.team-card {
  text-align: left;
}

.team-photo {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #2c2820, #151515);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.team-role {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Careers */
.role-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.role-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.role-row:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.role-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--black);
}

.role-meta {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.25rem;
}

.empty-roles {
  padding: 2rem 0;
  color: #5c5c5c;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Forms */
.form {
  display: grid;
  gap: 1.15rem;
  max-width: 36rem;
}

.form.form-wide {
  max-width: 40rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  color: var(--muted);
}

.section-light .form label {
  color: #666;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.section-light .form input,
.section-light .form select,
.section-light .form textarea {
  color: var(--black);
  background: var(--white);
  border-color: #d0d0d0;
}

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

.form textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.4;
  text-align: center;
}

.form-status.is-success {
  color: #2f9d5c;
}

.form-status.is-error {
  color: #d64545;
}

.section-dark .form-status.is-success {
  color: #7ddea3;
}

.section-dark .form-status.is-error {
  color: #ff8a8a;
}

.contact-form .form-status.is-success {
  color: #1f7a45;
}

.contact-form .form-status.is-error {
  color: #c0392b;
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-aside h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
  color: var(--black);
}

.contact-aside p {
  color: #5c5c5c;
  margin-bottom: 1.5rem;
}

.contact-aside a {
  color: var(--black);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
}

/* Contact split page */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 4.5rem);
  background: var(--white);
}

.contact-split-visual {
  position: relative;
  overflow: hidden;
  min-height: 28rem;
  background: var(--black);
}

.contact-split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: contactImageIn 1.1s ease both;
}

.contact-split-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  background: var(--white);
}

.contact-split-inner {
  width: 100%;
  max-width: 26rem;
  text-align: center;
  animation: fadeUp 0.75s ease 0.12s both;
}

.contact-eyebrow {
  font-size: 0.95rem;
  color: #9a9a9a;
  margin-bottom: 0.35rem;
}

.contact-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 1.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
}

.contact-heading .heading-bolt {
  height: 0.95em;
  width: auto;
  flex-shrink: 0;
  /* Optical balance: GIF padding pulls the mark left of the glyph */
  margin-right: -0.12em;
  margin-left: -0.15em;
}

.contact-heading span {
  display: inline-block;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  text-align: left;
}

.contact-field {
  position: relative;
  display: block;
}

.contact-field-icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.15rem;
  height: 1.15rem;
  color: #b0b0b0;
  pointer-events: none;
}

.contact-field--message .contact-field-icon {
  top: 1.15rem;
  transform: none;
}

.contact-field-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--black);
  background: var(--white);
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  padding: 0.95rem 1rem 0.95rem 2.75rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-field textarea {
  min-height: 7.5rem;
  resize: vertical;
  line-height: 1.5;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #a8a8a8;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 184, 74, 0.18);
}

.contact-submit {
  width: 100%;
  margin-top: 0.35rem;
  padding-block: 0.95rem;
  border-radius: 10px;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

@keyframes contactImageIn {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Footer */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 3.5rem 2rem;
}

.site-footer--full {
  padding-block: clamp(3rem, 7vw, 4.5rem) 1.75rem;
}

.site-footer--full > .container {
  width: min(100% - 2 * var(--pad-x), var(--max));
  margin-inline: auto;
}

.site-footer--full .reach-inner {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.site-footer--full .footer-brand-block {
  margin-bottom: 2.25rem;
}

.footer-brand-block {
  display: flex;
  justify-content: center;
  margin-bottom: 2.25rem;
}

.footer-brand-logo {
  display: block;
  width: auto;
  height: clamp(5.5rem, 14vw, 9rem);
  max-width: min(520px, 90vw);
  object-fit: contain;
  object-position: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
}

.footer-legal-links a {
  color: rgba(245, 245, 245, 0.85);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--gold);
}

.footer-copy {
  color: rgba(245, 245, 245, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  margin-bottom: 0.65rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: #666;
}

/* Alchemy — Vision type style, photos on the right */
.studio-focus {
  background: #141414;
}

.studio-focus-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem 3.5rem;
  align-items: center;
}

.studio-focus-lead {
  margin-bottom: 1.75rem;
  max-width: 32rem;
}

.studio-focus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin: 0;
  padding: 0;
}

.studio-focus-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.studio-focus-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  line-height: 1.5;
  padding-top: 0.1rem;
}

.studio-focus-list p {
  margin: 0;
  color: rgba(245, 245, 245, 0.82);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 28rem;
}

.studio-focus-visual {
  position: relative;
  overflow: hidden;
  min-height: clamp(18rem, 38vw, 28rem);
  background: var(--black);
}

.studio-focus-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  animation: contactImageIn 1s ease both;
}

.alchemy {
  background: #1c1c1c;
}

.alchemy-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem 3.5rem;
  align-items: center;
}

.alchemy-copy {
  min-width: 0;
  text-align: left;
}

.alchemy-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.alchemy-icon {
  width: auto;
  height: clamp(3.2rem, 7vw, 5rem);
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: screen;
}

.alchemy-heading .heading-line {
  height: clamp(2.25rem, 5vw, 3.25rem);
  margin-top: 0;
  align-self: center;
}

.alchemy-label {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin: 0;
}

.alchemy-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.1rem;
  line-height: 1.25;
}

.alchemy-body {
  color: rgba(245, 245, 245, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  max-width: 34rem;
  margin: 0;
}

.alchemy-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.alchemy-photos img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
}

/* Services — same layout language as Alchemy */
.services {
  background: #141414;
}

.services-list {
  margin: 1.75rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  max-width: 34rem;
}

.services-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.services-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding-top: 0.15rem;
}

.services-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.services-list p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
  margin: 0;
}

.services-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
}

.services-actions .link-arrow {
  color: var(--white);
}

.services-actions .link-arrow:hover {
  color: var(--gold);
}

/* Reach us */
.reach {
  background: var(--black);
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}

.reach-brand {
  margin-bottom: 2rem;
}

.reach-logo {
  display: block;
  width: auto;
  height: clamp(3.5rem, 8vw, 5rem);
  max-width: min(320px, 70vw);
  object-fit: contain;
  object-position: left center;
}

.reach-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 2.5rem 3rem;
  width: 100%;
}

.reach-contact {
  justify-self: start;
  text-align: left;
}

.reach-title {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--white);
  margin: 0 0 1rem;
  text-align: left;
}

.reach-link {
  display: inline-block;
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.15rem);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s;
}

.reach-link:hover {
  color: var(--gold);
}

.reach-address {
  margin-top: 0.85rem;
  color: rgba(245, 245, 245, 0.85);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.5;
  text-align: left;
}

.reach-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-self: end;
  gap: 0.85rem;
  text-align: right;
}

.reach-social .reach-link {
  font-size: clamp(1rem, 2vw, 1.15rem);
}

@media (max-width: 600px) {
  .reach-inner {
    grid-template-columns: 1fr;
  }

  .reach-social {
    align-items: flex-start;
    justify-self: start;
    text-align: left;
  }
}

/* Theme slider */
.theme-slider {
  background: var(--black);
}

.slider {
  position: relative;
  overflow: hidden;
  min-height: clamp(16rem, 42vw, 28rem);
}

.slider-track {
  position: relative;
  width: 100%;
  height: clamp(16rem, 42vw, 28rem);
}

.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.slider-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.45);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.slider-btn:hover {
  background: rgba(10, 10, 10, 0.75);
  border-color: var(--gold);
}

.slider-prev {
  left: 1.25rem;
}

.slider-next {
  right: 1.25rem;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 2;
}

.slider-dots button {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--gold);
}

/* Founders */
.founders {
  position: relative;
  background: #000;
  padding-block: clamp(4.5rem, 10vw, 7rem);
  overflow: hidden;
}

.founders > .container {
  position: relative;
  z-index: 1;
}

.founders-header {
  align-items: center;
  gap: 1rem;
}

.founders-bolt {
  width: auto;
  height: clamp(4.5rem, 10vw, 6.5rem);
  object-fit: contain;
  mix-blend-mode: screen;
  flex-shrink: 0;
}

.founders .section-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.founders .section-intro {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(245, 245, 245, 0.8);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.founders-grid--trio {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
  align-items: stretch;
}

.founder-tile {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: #111;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  isolation: isolate;
}

.founder-tile:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.founder-tile .founder-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(1) contrast(1.08);
  transform: scale(1.02);
  transition: transform 0.45s ease, filter 0.35s ease;
}

.founder-tile:hover .founder-photo,
.founder-tile:focus-visible .founder-photo {
  filter: grayscale(0.2) contrast(1.05);
  transform: scale(1.06);
}

.founder-tile-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.2) 45%,
    rgba(0, 0, 0, 0.88) 100%
  );
  z-index: 1;
}

.founder-tile-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.5rem 1.1rem 1.35rem;
  text-align: center;
}

.founder-tile .founder-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.founder-tile .founder-role {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.7vw, 1.1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
  padding-left: 0;
}

.founder-tile .founder-role::before {
  display: none;
}

/* Founder modal */
.founder-modal[hidden] {
  display: none;
}

.founder-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.founder-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.founder-modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: #0a0a0a;
  border: 1px solid rgba(232, 184, 74, 0.35);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}

.founder-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.founder-modal-close:hover {
  color: var(--gold);
}

.founder-modal-media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.founder-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 420px;
}

.founder-modal-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.25) 100%);
}

.founder-modal-body {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-modal-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.founder-modal-body #founder-modal-role {
  color: var(--gold);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.founder-modal-body #founder-modal-bio {
  color: rgba(245, 245, 245, 0.9);
  font-size: clamp(1.02rem, 1.9vw, 1.15rem);
  line-height: 1.65;
  margin: 0;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 800px) {
  .founder-modal-panel {
    grid-template-columns: 1fr;
  }

  .founder-modal-media img {
    min-height: 280px;
    max-height: 360px;
  }
}

/* Pillars of Our Craft */
.craft-pillars {
  background: #141414;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
}

.craft-card {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.35rem;
}

.craft-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.craft-heading {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.85rem;
  line-height: 1.2;
}

.craft-text {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .craft-grid {
    grid-template-columns: 1fr;
  }
}

/* Careers legend CTA */
.legend-cta {
  background: #1a1a1a;
  text-align: center;
  padding-block: clamp(4.5rem, 12vw, 7.5rem);
}

.legend-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 2.75rem);
}

.legend-heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.legend-heading .heading-bolt {
  height: clamp(3.5rem, 8vw, 5.5rem);
}

.legend-heading .heading-line {
  height: clamp(2.25rem, 5vw, 3.5rem);
  margin-top: 0;
  align-self: center;
}

.legend-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  line-height: 1.05;
}

.legend-btn {
  border-radius: 999px;
  padding: 1rem 2.25rem;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--black);
    padding: 1rem var(--pad-x) 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav a.active {
    border-bottom-color: rgba(255, 255, 255, 0.06);
    color: var(--gold);
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .work-strip,
  .story-grid,
  .contact-layout,
  .alchemy-grid,
  .studio-focus-grid,
  .founders-grid,
  .founders-grid--trio {
    grid-template-columns: 1fr;
  }

  .studio-focus-visual {
    min-height: 16rem;
    max-height: 22rem;
  }

  .contact-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-split-visual {
    min-height: 22rem;
    max-height: 40vh;
  }

  .pillars,
  .timeline {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .logo-mark {
    height: 4.25rem;
    max-width: min(280px, 55vw);
  }

  .hero {
    min-height: min(100dvh, 720px);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn,
  .hero-actions .link-arrow {
    width: 100%;
    text-align: center;
  }

  .page-hero-heading,
  .legend-heading,
  .odyssey-heading,
  .alchemy-heading,
  .vision-heading {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .alchemy-photos {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .reach-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .founder-tile-copy {
    padding: 1rem;
  }

  .section {
    padding-block: clamp(3rem, 10vw, 5rem);
  }
}

@media (max-width: 520px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

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

  .btn {
    width: 100%;
  }

  .hero-actions .link-arrow {
    width: 100%;
  }

  .slider-btn {
    width: 2.25rem;
    height: 2.25rem;
  }

  .logo-mark {
    height: 3.5rem;
    max-width: min(240px, 58vw);
  }

  .alchemy-label,
  .vision-label,
  .odyssey-title,
  .legend-title {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
    letter-spacing: 0.04em;
  }

  .alchemy-photos {
    grid-template-columns: 1fr;
  }

  .alchemy-photos img {
    aspect-ratio: 16 / 10;
  }

  .studio-focus-visual {
    min-height: 14rem;
    max-height: 18rem;
  }

  .contact-split-visual {
    min-height: 16rem;
    max-height: 32vh;
  }

  .contact-split-panel {
    padding: 2rem 1.25rem 2.5rem;
  }

  .founder-modal-panel {
    max-height: 92dvh;
  }

  .site-intro-skip {
    bottom: max(1rem, env(safe-area-inset-bottom));
    right: max(1rem, env(safe-area-inset-right));
  }
}
