:root {
  --gold: #f4b71c;
  --gold-soft: #ffd86b;
  --ink: #081014;
  --ink-2: #101b21;
  --ink-3: #17262d;
  --paper: #f5f1e8;
  --paper-2: #fffaf0;
  --muted: #9ea7a4;
  --line: rgba(245, 241, 232, 0.18);
  --teal: #2f7b78;
  --teal-soft: #4ea39f;
  --red: #c85b50;
  --red-soft: #e07b70;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 136px;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

video {
  background: #05090b;
}

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

button {
  border: 0;
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(244, 183, 28, 0.8);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 400;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 6px;
  font-weight: 900;
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 350;
  width: 100%;
  height: 3px;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--teal), var(--red));
}

.site-header {
  position: fixed;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 300;
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 12px 12px 18px;
  color: var(--paper);
  background: rgba(8, 16, 20, 0.42);
  border: 1px solid rgba(245, 241, 232, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(8, 16, 20, 0.84);
  border-color: rgba(245, 241, 232, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 170px;
  min-height: 42px;
}

.brand img {
  width: 158px;
  height: auto;
}

.quick-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  color: rgba(245, 241, 232, 0.78);
  background: rgba(245, 241, 232, 0.06);
  border: 1px solid rgba(245, 241, 232, 0.1);
  border-radius: 999px;
}

.quick-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 120ms var(--ease-out);
}

.quick-nav a:hover {
  color: var(--ink);
  background: var(--gold);
}

.quick-nav a.is-active {
  color: var(--ink);
  background: var(--gold);
}

.quick-nav a:active,
.menu-button:active,
.button:active,
.program-card:active,
.menu-close:active {
  transform: scale(0.97);
}

.menu-button,
.menu-close {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 140ms var(--ease-out),
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.menu-button:hover,
.menu-close:hover {
  background: var(--gold-soft);
  box-shadow: 0 16px 36px rgba(244, 183, 28, 0.24);
}

.menu-button i {
  width: 18px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: grid;
  place-items: center;
  padding: 18px;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  background: rgba(5, 9, 11, 0.78);
  transition:
    opacity 220ms var(--ease-out),
    visibility 220ms var(--ease-out);
}

body.menu-open .site-menu {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.menu-panel {
  width: min(1340px, 100%);
  height: min(760px, calc(100vh - 36px));
  padding: clamp(20px, 3vw, 42px);
  overflow-y: auto;
  overscroll-behavior: contain;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(244, 183, 28, 0.08), transparent 34%),
    linear-gradient(225deg, rgba(47, 123, 120, 0.12), transparent 36%),
    #0b1418;
  border: 1px solid rgba(245, 241, 232, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(18px) scale(0.985);
  transition: transform 260ms var(--ease-out);
}

body.menu-open .menu-panel {
  transform: translateY(0) scale(1);
}

.menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(22px, 4vw, 46px);
}

.menu-top img {
  width: 170px;
}

.menu-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.menu-links {
  display: grid;
  gap: 4px;
}

.overlay-link {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: baseline;
  gap: 20px;
  padding: clamp(10px, 1.35vw, 18px) 0;
  color: rgba(245, 241, 232, 0.62);
  border-bottom: 1px solid rgba(245, 241, 232, 0.14);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  font-weight: 700;
  line-height: 0.88;
  transition:
    color 160ms ease,
    transform 180ms var(--ease-out);
}

.overlay-link:hover,
.overlay-link:focus-visible,
.overlay-link.is-active {
  color: var(--paper);
  transform: translateX(8px);
}

.overlay-link span {
  color: var(--gold);
  font-family: Inter, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.menu-preview {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(245, 241, 232, 0.16);
  isolation: isolate;
}

.menu-preview video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 26%, rgba(5, 9, 11, 0.82));
}

.menu-preview div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.menu-preview span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.menu-preview p {
  max-width: 420px;
  margin: 0;
  color: rgba(245, 241, 232, 0.82);
}

.menu-course-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 16px 0 22px 74px;
  border-bottom: 1px solid rgba(245, 241, 232, 0.14);
}

.menu-course-links > span {
  grid-column: 1 / -1;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-course-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(245, 241, 232, 0.72);
  background: rgba(245, 241, 232, 0.055);
  border: 1px solid rgba(245, 241, 232, 0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    transform 140ms var(--ease-out);
}

.menu-course-links a:hover,
.menu-course-links a:focus-visible,
.menu-course-links a.is-active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 132px 18px 18px;
  background: #05090b;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 9, 11, 0.88) 0%, rgba(5, 9, 11, 0.42) 48%, rgba(5, 9, 11, 0.7) 100%),
    linear-gradient(180deg, rgba(5, 9, 11, 0.12), rgba(5, 9, 11, 0.9));
}

.hero-content {
  width: min(1120px, calc(100vw - 36px));
  margin: 0 auto 34px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  background: currentColor;
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.display,
.section-heading h2,
.contact-content h2,
.impact-copy h2,
.method-head h2 {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(4.4rem, 11vw, 10.6rem);
  line-height: 0.84;
}

.hero-content p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(245, 241, 232, 0.8);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 140ms var(--ease-out),
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.button-primary {
  color: var(--ink);
  background: var(--gold);
}

.button-primary:hover {
  background: var(--gold-soft);
}

.button-ghost {
  color: var(--paper);
  border: 1px solid rgba(245, 241, 232, 0.28);
  background: rgba(245, 241, 232, 0.06);
}

.button-ghost:hover {
  border-color: rgba(244, 183, 28, 0.66);
  background: rgba(244, 183, 28, 0.12);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--ink-3);
}

.hero-index {
  width: min(1120px, calc(100vw - 36px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  background: rgba(245, 241, 232, 0.16);
  border: 1px solid rgba(245, 241, 232, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.hero-index div {
  min-height: 116px;
  padding: 18px;
  background: rgba(8, 16, 20, 0.74);
}

.hero-index strong {
  display: block;
  color: var(--gold);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.9;
}

.hero-index span {
  display: block;
  max-width: 170px;
  margin-top: 12px;
  color: rgba(245, 241, 232, 0.72);
  font-size: 0.92rem;
}

.section {
  padding: clamp(76px, 11vw, 150px) clamp(18px, 4vw, 56px);
}

.studio-section {
  background: var(--paper);
  color: var(--ink);
}

.studio-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.62fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: end;
}

.display {
  margin-bottom: 0;
  font-size: clamp(3rem, 7vw, 8rem);
  line-height: 0.9;
}

.studio-copy {
  color: rgba(8, 16, 20, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.studio-copy p:last-child {
  margin-bottom: 0;
}

.capabilities-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  background: #0b1418;
}

.capability-media {
  position: sticky;
  top: 104px;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, 0.14);
  border-radius: 8px;
}

.capability-media video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.capability-content {
  padding-top: 4px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.section-heading h2,
.method-head h2,
.impact-copy h2,
.contact-content h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5.6vw, 6.2rem);
  line-height: 0.92;
}

.capability-list {
  display: grid;
  border-top: 1px solid rgba(245, 241, 232, 0.16);
}

.capability-item {
  display: grid;
  grid-template-columns: 64px minmax(160px, 0.48fr) minmax(0, 1fr);
  gap: 22px;
  padding: clamp(24px, 4vw, 42px) 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.16);
}

.capability-item span,
.method-step span,
.program-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-item h3,
.method-step h3,
.program-card h3 {
  margin-bottom: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2.4rem);
  line-height: 1;
}

.capability-item p {
  margin-bottom: 0;
  color: rgba(245, 241, 232, 0.68);
}

.programs-section {
  background: var(--paper);
  color: var(--ink);
}

.programs-head {
  width: min(1280px, 100%);
  margin: 0 auto clamp(34px, 6vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}

.programs-head .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.programs-head p {
  margin-bottom: 0;
  color: rgba(8, 16, 20, 0.68);
  font-size: 1.05rem;
}

.program-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.program-card {
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(20px, 3vw, 34px);
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
  isolation: isolate;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 220ms ease;
}

.program-card:hover,
.program-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(8, 16, 20, 0.24);
}

.program-card video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.program-card:hover video,
.program-card:focus-visible video {
  transform: scale(1.045);
}

.program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(8, 16, 20, 0.04), rgba(8, 16, 20, 0.92)),
    linear-gradient(90deg, rgba(8, 16, 20, 0.64), transparent 58%);
}

.program-card h3 {
  max-width: 620px;
  margin: 12px 0 14px;
  font-size: clamp(2rem, 4.1vw, 4.7rem);
}

.program-card p {
  max-width: 520px;
  color: rgba(245, 241, 232, 0.74);
}

.program-card b {
  width: max-content;
  margin-top: 10px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.86rem;
}

.program-nav {
  position: sticky;
  top: 112px;
  z-index: 20;
  width: min(1280px, 100%);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: clamp(28px, 5vw, 58px) auto 0;
  padding: 10px;
  background: rgba(8, 16, 20, 0.88);
  border: 1px solid rgba(245, 241, 232, 0.14);
  border-radius: 999px;
  backdrop-filter: blur(16px);
}

.program-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  color: rgba(245, 241, 232, 0.72);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 140ms var(--ease-out);
}

.program-nav a:hover,
.program-nav a.is-active {
  color: var(--ink);
  background: var(--gold);
}

.program-nav a:active {
  transform: scale(0.97);
}

.course-detail {
  padding: clamp(82px, 11vw, 150px) clamp(18px, 4vw, 56px);
}

.course-detail-dark {
  color: var(--paper);
  background: #0b1418;
}

.course-detail-paper {
  color: var(--ink);
  background: var(--paper);
}

.course-hero {
  width: min(1280px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.86fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  margin: 0 auto clamp(34px, 7vw, 92px);
}

.course-copy h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.7rem, 6vw, 7.2rem);
  font-weight: 700;
  line-height: 0.9;
}

.course-copy p:not(.eyebrow) {
  max-width: 680px;
  color: currentColor;
  opacity: 0.72;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.course-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.course-video {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 241, 232, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.course-detail-paper .course-video {
  border-color: rgba(8, 16, 20, 0.14);
  box-shadow: 0 24px 70px rgba(8, 16, 20, 0.16);
}

.course-video video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.course-deck,
.course-modules,
.learning-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.course-card-lite,
.course-module,
.learning-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 8px;
}

.course-detail-dark .course-card-lite,
.course-detail-dark .course-module,
.course-detail-dark .learning-card {
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.07), rgba(245, 241, 232, 0.025)),
    var(--ink-2);
  border: 1px solid rgba(245, 241, 232, 0.14);
}

.course-detail-paper .course-card-lite,
.course-detail-paper .course-module,
.course-detail-paper .learning-card {
  background: rgba(8, 16, 20, 0.045);
  border: 1px solid rgba(8, 16, 20, 0.12);
}

.course-card-lite span,
.course-module span,
.learning-card span,
.course-timeline-row span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.course-card-lite h3,
.course-module h3,
.course-timeline-row h3 {
  margin: 18px 0 12px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.45rem, 2.1vw, 2.25rem);
  line-height: 1;
}

.course-card-lite p,
.course-module p,
.learning-card p,
.course-timeline-row p {
  margin-bottom: 0;
  color: currentColor;
  opacity: 0.68;
}

.course-timeline {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  border-top: 1px solid rgba(245, 241, 232, 0.16);
}

.course-timeline-row {
  display: grid;
  grid-template-columns: 70px minmax(200px, 0.55fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
  padding: clamp(24px, 4vw, 44px) 0;
  border-bottom: 1px solid rgba(245, 241, 232, 0.16);
}

.course-timeline-row h3 {
  margin: 0;
}

.learning-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.learning-card {
  min-height: 220px;
}

.learning-card span {
  max-width: 240px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1;
  text-transform: none;
}

.method-section {
  background: #0b1418;
}

.method-head {
  width: min(1100px, 100%);
  margin: 0 auto clamp(34px, 6vw, 70px);
}

.method-track {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(245, 241, 232, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.method-step {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(245, 241, 232, 0.065), rgba(245, 241, 232, 0.025)),
    var(--ink-2);
  border-right: 1px solid rgba(245, 241, 232, 0.16);
}

.method-step:last-child {
  border-right: 0;
}

.method-step p {
  margin-bottom: 0;
  color: rgba(245, 241, 232, 0.68);
}

.impact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  background: var(--paper);
  color: var(--ink);
}

.impact-copy p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(8, 16, 20, 0.68);
  font-size: 1.08rem;
}

.impact-grid {
  display: grid;
  gap: 12px;
}

.impact-stat {
  min-height: 160px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
}

.impact-stat strong {
  color: var(--gold);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  line-height: 0.86;
}

.impact-stat span {
  max-width: 320px;
  color: rgba(245, 241, 232, 0.72);
}

.contact-section {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #05090b;
}

.contact-section video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 9, 11, 0.88), rgba(5, 9, 11, 0.42)),
    linear-gradient(180deg, rgba(5, 9, 11, 0.1), rgba(5, 9, 11, 0.88));
}

.contact-content {
  width: min(1040px, 100%);
  padding-bottom: clamp(28px, 5vw, 74px);
}

.contact-content p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(245, 241, 232, 0.76);
  font-size: 1.1rem;
}

.contact-lines {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-lines a {
  padding: 10px 12px;
  color: rgba(245, 241, 232, 0.76);
  border: 1px solid rgba(245, 241, 232, 0.18);
  border-radius: 999px;
  font-size: 0.88rem;
}

.contact-lines a:hover {
  color: var(--gold);
  border-color: rgba(244, 183, 28, 0.5);
}

.site-footer {
  min-height: 180px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 56px);
  color: rgba(245, 241, 232, 0.68);
  background: #05090b;
  border-top: 1px solid rgba(245, 241, 232, 0.14);
}

.footer-brand img {
  width: 160px;
}

.footer-links {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.site-footer p {
  margin-bottom: 0;
  font-size: 0.86rem;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms var(--ease-out),
    transform 600ms var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1080px) {
  .quick-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-grid,
  .studio-grid,
  .capabilities-section,
	  .programs-head,
	  .course-hero,
	  .impact-section {
	    grid-template-columns: 1fr;
	  }

  .menu-preview {
    min-height: 320px;
  }

  .capability-media {
    position: relative;
    top: auto;
  }

	  .method-track {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

	  .course-deck,
	  .course-modules,
	  .learning-grid {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

  .method-step:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 58px;
    padding: 8px 8px 8px 12px;
  }

  .brand {
    width: 136px;
  }

  .brand img,
  .footer-brand img,
  .menu-top img {
    width: 132px;
  }

  .menu-button,
  .menu-close {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.88rem;
  }

  .site-menu {
    padding: 10px;
  }

  .menu-panel {
    min-height: calc(100vh - 20px);
    overflow-y: auto;
  }

  .menu-grid {
    gap: 24px;
  }

	  .overlay-link {
	    grid-template-columns: 38px 1fr;
	    gap: 12px;
	    font-size: clamp(2.2rem, 14vw, 4.4rem);
	  }

	  .menu-course-links {
	    grid-template-columns: 1fr;
	    padding-left: 50px;
	  }

  .menu-preview {
    min-height: 240px;
  }

  .hero {
    padding: 108px 10px 10px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 5.2rem);
    line-height: 0.9;
  }

  .hero-content {
    width: calc(100vw - 20px);
    margin-bottom: 22px;
  }

  .hero-index {
    width: calc(100vw - 20px);
    grid-template-columns: 1fr;
  }

  .hero-index div {
    min-height: auto;
    padding: 16px;
  }

  .hero-index strong {
    font-size: 2.4rem;
  }

	  .section {
	    padding: 72px 18px;
	  }

	  .course-detail {
	    padding: 72px 18px;
	  }

  .display,
  .section-heading h2,
  .method-head h2,
  .impact-copy h2,
  .contact-content h2 {
    font-size: clamp(2.5rem, 12vw, 4.5rem);
  }

  .capability-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

	  .program-grid,
	  .method-track,
	  .course-deck,
	  .course-modules,
	  .learning-grid {
	    grid-template-columns: 1fr;
	  }

	  .program-nav {
	    position: relative;
	    top: auto;
	    border-radius: 8px;
	  }

	  .program-nav a {
	    flex: 1 1 calc(50% - 8px);
	    justify-content: center;
	  }

	  .course-copy h2 {
	    font-size: clamp(2.35rem, 11vw, 4.4rem);
	  }

	  .course-card-lite,
	  .course-module,
	  .learning-card {
	    min-height: 210px;
	  }

	  .course-timeline-row {
	    grid-template-columns: 1fr;
	    gap: 10px;
	  }

  .program-card {
    min-height: 460px;
  }

  .method-step {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 241, 232, 0.16);
  }

  .method-step:last-child {
    border-bottom: 0;
  }

  .contact-section {
    min-height: 82svh;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-self: start;
  }
}

/* =========================================================
   V2 — Refinamiento editorial
   Tipografía Fraunces + Instrument Sans + JetBrains Mono
   Acentos teal/red, grano, animaciones escalonadas
   ========================================================= */

/* Display tipográfico — Fraunces con opsz alta para títulos grandes */
h1,
.display,
.section-heading h2,
.contact-content h2,
.impact-copy h2,
.method-head h2,
.course-copy h2,
.capability-item h3,
.method-step h3,
.program-card h3,
.course-card-lite h3,
.course-module h3,
.course-timeline-row h3,
.learning-card span,
.hero-index strong,
.impact-stat strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.025em;
}

/* H1 con italic dramático en la palabra clave */
h1 {
  font-weight: 500;
  letter-spacing: -0.045em;
}

h1 em,
.display em {
  font-style: italic;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--gold);
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Display medianos: peso intermedio para que respiren */
.display,
.section-heading h2,
.contact-content h2,
.impact-copy h2,
.method-head h2,
.course-copy h2 {
  font-weight: 500;
  letter-spacing: -0.035em;
}

/* Subtítulos h3 — algo más cerrados */
.capability-item h3,
.method-step h3,
.program-card h3,
.course-card-lite h3,
.course-module h3,
.course-timeline-row h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Eyebrows + códigos → Mono para contraste editorial */
.eyebrow,
.section-kicker,
.capability-item > span,
.method-step > span,
.program-card > span,
.course-card-lite > span,
.course-module > span,
.course-timeline-row > span,
.menu-preview span,
.menu-course-links > span,
.overlay-link > span,
.hero-index span,
.impact-stat span,
.quick-nav a,
.program-nav a,
.menu-course-links a,
.button,
.contact-lines a,
.footer-links a,
.site-footer p {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.eyebrow,
.section-kicker {
  font-weight: 700;
  letter-spacing: 0.12em;
}

/* Body — sin cambios pero refuerzo legibilidad */
.studio-copy,
.capability-item p,
.program-card p,
.course-copy p:not(.eyebrow),
.course-card-lite p,
.course-module p,
.course-timeline-row p,
.learning-card p,
.method-step p,
.impact-copy p:not(.eyebrow),
.contact-content p:not(.eyebrow),
.hero-content p:not(.eyebrow) {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* Hero — H1 más editorial, índice asimétrico */
.hero-content p:not(.eyebrow) {
  font-size: clamp(1.05rem, 1.65vw, 1.4rem);
  line-height: 1.45;
  max-width: 640px;
}

.hero-index {
  background: rgba(245, 241, 232, 0.08);
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 12px;
}

.hero-index div {
  position: relative;
  background: rgba(8, 16, 20, 0.62);
  backdrop-filter: blur(10px);
}

.hero-index div:nth-child(1) strong {
  color: var(--gold);
}

.hero-index div:nth-child(2) strong {
  color: var(--teal-soft);
}

.hero-index div:nth-child(3) strong {
  color: var(--red-soft);
}

.hero-index strong {
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  letter-spacing: -0.05em;
}

/* Acentos cromáticos por sección */
.studio-section .eyebrow,
.studio-section .section-kicker {
  color: var(--teal);
}

.studio-section .section-kicker::before {
  background: var(--teal);
}

.capabilities-section .capability-item:nth-child(4) > span {
  color: var(--red-soft);
}

.impact-stat:nth-child(1) strong {
  color: var(--gold);
}

.impact-stat:nth-child(2) strong {
  color: var(--teal-soft);
}

.impact-stat:nth-child(3) strong {
  color: var(--red-soft);
}

/* Hero — capa de grano */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Grano sutil en secciones oscuras */
.capabilities-section,
.method-section,
.course-detail-dark {
  position: relative;
}

.capabilities-section::before,
.method-section::before,
.course-detail-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.28 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  z-index: 0;
}

.capabilities-section > *,
.method-section > *,
.course-detail-dark > * {
  position: relative;
  z-index: 1;
}

/* Línea decorativa dorada en program-cards */
.program-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  z-index: 2;
  transition: width 420ms var(--ease-out);
}

.program-card:hover::before,
.program-card:focus-visible::before {
  width: 100%;
}

/* Course-card-lite — número grande estilo editorial */
.course-card-lite > span,
.course-module > span,
.course-timeline-row > span {
  font-size: 0.74rem;
  font-weight: 700;
}

.course-card-lite {
  position: relative;
  overflow: hidden;
}

.course-card-lite::after {
  content: attr(data-num);
  position: absolute;
  right: 12px;
  bottom: -12px;
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-weight: 600;
  font-size: 7rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.06;
  pointer-events: none;
}

/* Stagger en reveals (delay por orden de aparición) */
.js .reveal {
  transition-delay: 0ms;
}

.capability-list .reveal:nth-child(1) { transition-delay: 60ms; }
.capability-list .reveal:nth-child(2) { transition-delay: 140ms; }
.capability-list .reveal:nth-child(3) { transition-delay: 220ms; }
.capability-list .reveal:nth-child(4) { transition-delay: 300ms; }

.program-grid .reveal:nth-child(1) { transition-delay: 60ms; }
.program-grid .reveal:nth-child(2) { transition-delay: 160ms; }
.program-grid .reveal:nth-child(3) { transition-delay: 260ms; }
.program-grid .reveal:nth-child(4) { transition-delay: 360ms; }

.course-deck .reveal:nth-child(1),
.course-modules .reveal:nth-child(1),
.learning-grid .reveal:nth-child(1) { transition-delay: 40ms; }
.course-deck .reveal:nth-child(2),
.course-modules .reveal:nth-child(2),
.learning-grid .reveal:nth-child(2) { transition-delay: 120ms; }
.course-deck .reveal:nth-child(3),
.course-modules .reveal:nth-child(3),
.learning-grid .reveal:nth-child(3) { transition-delay: 200ms; }
.course-deck .reveal:nth-child(4),
.course-modules .reveal:nth-child(4),
.learning-grid .reveal:nth-child(4) { transition-delay: 280ms; }
.learning-grid .reveal:nth-child(5) { transition-delay: 360ms; }
.learning-grid .reveal:nth-child(6) { transition-delay: 440ms; }

.method-track .reveal:nth-child(1) { transition-delay: 60ms; }
.method-track .reveal:nth-child(2) { transition-delay: 180ms; }
.method-track .reveal:nth-child(3) { transition-delay: 300ms; }
.method-track .reveal:nth-child(4) { transition-delay: 420ms; }

.course-timeline-row { transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.course-timeline .reveal { transform: translateX(-32px); }
.course-timeline .reveal.is-visible { transform: translateX(0); }
.course-timeline .reveal:nth-child(1) { transition-delay: 40ms; }
.course-timeline .reveal:nth-child(2) { transition-delay: 140ms; }
.course-timeline .reveal:nth-child(3) { transition-delay: 240ms; }
.course-timeline .reveal:nth-child(4) { transition-delay: 340ms; }
.course-timeline .reveal:nth-child(5) { transition-delay: 440ms; }

/* Botones — más editorial */
.button {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
  border-radius: 4px;
}

.button-primary {
  position: relative;
  overflow: hidden;
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 600ms var(--ease-out);
}

.button-primary:hover::after {
  transform: translateX(100%);
}

/* Quick-nav refinada */
.quick-nav a {
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

/* Overlay menu — números en mono dorados grandes */
.overlay-link > span {
  font-size: 0.7rem;
  font-weight: 700;
  align-self: start;
  padding-top: 0.7em;
}

/* Capability hover sutil */
.capability-item {
  transition: background-color 240ms ease;
}

.capability-item:hover {
  background: rgba(244, 183, 28, 0.04);
}

/* Scroll-progress más visible cuando se scrollea */
.scroll-progress {
  height: 2px;
  opacity: 0.85;
}

/* Footer — separación y peso visual */
.site-footer p {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  opacity: 0.6;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Studio section — fondo papel con textura sutil */
.studio-section {
  position: relative;
  background:
    radial-gradient(circle at 85% 15%, rgba(47, 123, 120, 0.06), transparent 45%),
    radial-gradient(circle at 10% 85%, rgba(244, 183, 28, 0.05), transparent 50%),
    var(--paper);
}

/* Programs section — mismo tratamiento warm */
.programs-section {
  position: relative;
  background:
    radial-gradient(circle at 10% 5%, rgba(244, 183, 28, 0.07), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(200, 91, 80, 0.04), transparent 45%),
    var(--paper);
}

/* Impact — el más rico cromáticamente */
.impact-section {
  background:
    radial-gradient(circle at 70% 0%, rgba(47, 123, 120, 0.08), transparent 50%),
    var(--paper);
}

/* Mejorar contraste en course-detail-paper */
.course-detail-paper {
  background:
    radial-gradient(circle at 0% 100%, rgba(47, 123, 120, 0.05), transparent 40%),
    var(--paper);
}

/* Mobile — H1 con line-height un poco más generoso */
@media (max-width: 760px) {
  h1 {
    line-height: 0.95;
    letter-spacing: -0.035em;
  }

  .hero-index {
    grid-template-columns: 1fr;
  }
}

/* === V2.1 — Dropdown nav "Programas ▾" === */
.quick-nav-dropdown {
  position: relative;
  display: inline-flex;
}

.dropdown-trigger {
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0.5em 0.75em;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-family: var(--font-body);
}

.dropdown-trigger:hover,
.dropdown-trigger[aria-expanded="true"] {
  background: rgba(245, 241, 232, 0.08);
  color: var(--gold);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 360px;
  background: var(--ink);
  border: 1px solid rgba(245, 241, 232, 0.12);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 100;
  animation: dropdown-fade-in 0.18s ease-out;
}

.dropdown-panel[hidden] {
  display: none;
}

@keyframes dropdown-fade-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-panel a {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--paper);
  transition: background-color 0.18s ease;
}

.dropdown-panel a:hover,
.dropdown-panel a:focus-visible {
  background: rgba(212, 175, 55, 0.08);
  outline: none;
}

.dropdown-panel .dropdown-overview {
  border-bottom: 1px solid rgba(245, 241, 232, 0.08);
  padding-bottom: 14px;
  margin-bottom: 4px;
}

.dropdown-panel .dropdown-overview .dropdown-label {
  font-style: italic;
  color: rgba(245, 241, 232, 0.85);
}

.dropdown-panel .dropdown-overview .dropdown-meta {
  color: rgba(245, 241, 232, 0.45);
}

.dropdown-num {
  grid-row: 1 / span 2;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold);
  align-self: center;
  letter-spacing: 0.08em;
}

.dropdown-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

.dropdown-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 232, 0.55);
}

/* === Lang switch ES|EN === */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-left: 0.5em;
  padding-left: 0.75em;
  border-left: 1px solid rgba(245, 241, 232, 0.18);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.lang-switch button {
  background: transparent;
  border: none;
  color: rgba(245, 241, 232, 0.55);
  cursor: pointer;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  transition: color 0.2s ease;
}

.lang-switch button.active,
.lang-switch button:hover,
.lang-switch button:focus-visible {
  color: var(--gold);
  outline: none;
}

.lang-switch span {
  color: rgba(245, 241, 232, 0.25);
}

/* === V2.1 — Contacto 3 vías (Fase 3) === */
.contact-section {
  position: relative;
  isolation: isolate;
}

.contact-section > video.lazy-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.18;
  pointer-events: none;
}

.contact-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}

.contact-head .eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 18px;
}

.contact-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.contact-intro {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(245, 241, 232, 0.78);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
  .contact-card--form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .contact-card--form {
    grid-column: auto;
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: rgba(8, 16, 20, 0.65);
  border: 1px solid rgba(245, 241, 232, 0.14);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 24px 48px -20px rgba(0, 0, 0, 0.5);
}

.contact-card-head {
  margin-bottom: 20px;
}

.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(244, 183, 28, 0.14);
  color: var(--gold);
  border-radius: 12px;
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.contact-card--whatsapp .contact-card-icon {
  background: rgba(37, 211, 102, 0.16);
  color: #25d366;
}

.contact-card-head h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--paper);
}

.contact-card-head p {
  font-size: 0.9rem;
  color: rgba(245, 241, 232, 0.7);
  margin: 0;
  line-height: 1.5;
}

.contact-card-detail {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--paper);
  letter-spacing: 0.02em;
  margin: 0 0 16px;
}

.contact-card .button {
  align-self: flex-start;
}

/* Form */
.contact-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.contact-form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form label > span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 241, 232, 0.6);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(245, 241, 232, 0.04);
  border: 1px solid rgba(245, 241, 232, 0.18);
  border-radius: 10px;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(244, 183, 28, 0.6);
  outline-offset: 2px;
  border-color: var(--gold);
  background: rgba(245, 241, 232, 0.06);
}

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

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

.contact-form .button {
  margin-top: 6px;
  width: 100%;
  text-align: center;
  align-self: stretch;
}

.contact-form .button[data-loading="true"] {
  opacity: 0.6;
  cursor: progress;
  pointer-events: none;
}

.contact-form-status {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  margin: 8px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
}

.contact-form-status[data-state="success"] {
  background: rgba(47, 123, 120, 0.18);
  border: 1px solid var(--teal);
  color: var(--teal-soft);
}

.contact-form-status[data-state="error"] {
  background: rgba(200, 91, 80, 0.16);
  border: 1px solid var(--red);
  color: var(--red-soft);
}

