/* Resourceful Robin Signature */
:root {
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #F5E6B8;
  --off-white: #FAF8F4;
  --grey: #6B6B6B;
  --white: #FFFFFF;

  --page: var(--off-white);
  --surface: var(--white);
  --surface-soft: #F8F2E2;
  --ink: var(--black);
  --copy: #343434;
  --muted: var(--grey);
  --line: rgba(10, 10, 10, 0.16);
  --line-soft: rgba(10, 10, 10, 0.08);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(10, 10, 10, 0.11);
  --shadow-soft: 0 12px 36px rgba(10, 10, 10, 0.08);

  --font: "Inter", Arial, sans-serif;
  --fs-h1: clamp(3.35rem, 6vw, 5.35rem);
  --fs-h2: clamp(2.05rem, 3.8vw, 3.3rem);
  --fs-h3: 1.25rem;
  --fs-body: 1rem;
  --fs-small: 0.78rem;

  --container: 1220px;
  --gutter: clamp(20px, 4vw, 56px);
  --section: clamp(84px, 10vw, 132px);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="dark"] {
  --page: #0D0D0D;
  --surface: #171717;
  --surface-soft: #211F19;
  --ink: var(--off-white);
  --copy: #E6E1D8;
  --muted: #B5B0A7;
  --line: rgba(250, 248, 244, 0.20);
  --line-soft: rgba(250, 248, 244, 0.09);
  --glass: rgba(23, 23, 23, 0.76);
  --shadow: 0 26px 76px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.28);
  color-scheme: dark;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--page);
  color: var(--copy);
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.68;
  letter-spacing: 0;
  transition: background-color 0.35s ease, color 0.35s ease;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 28px;
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 0.98;
}

h2 {
  max-width: 17ch;
  margin-bottom: 22px;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.28;
}

p {
  margin-bottom: 1.2em;
  font-size: var(--fs-body);
}

.nowrap {
  white-space: nowrap;
}

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

.page {
  position: relative;
  overflow: clip;
}

.section {
  padding-block: var(--section);
}

.section-pale {
  background: var(--surface-soft);
}

.eyebrow,
.image-caption,
.tool-label,
.detail-row > span,
.fact-strip span,
.appearance-list span,
.contact-aside > a > span,
.contact-social-wrap > span,
.service-number,
.chapter-mark small,
.work-format-index small,
.process-line span,
.footer-bottom,
.nav-links,
.button,
.text-link,
.linkedin-link,
.rr-form label,
.hero-caption {
  font-size: var(--fs-small);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lead {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: var(--fs-body);
  line-height: 1.8;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(42px, 8vw, 118px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 78px);
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100000;
  padding: 10px 16px;
  background: var(--gold-light);
  color: var(--black);
  font-size: var(--fs-small);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100001;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left center;
}

/* Header */
.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  z-index: 10000;
  width: 100%;
  padding-inline: var(--gutter);
  transition: transform 0.38s var(--ease);
}

.admin-bar .site-header {
  top: 50px;
}

.site-header.is-hidden {
  transform: translateY(-140%);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(100%, var(--container));
  min-height: 68px;
  margin-inline: auto;
  padding: 7px 9px 7px 17px;
  border: 1px solid rgba(232, 201, 106, 0.30);
  border-radius: 999px;
  background: rgba(15, 15, 15, 0.92);
  box-shadow: 0 15px 42px rgba(10, 10, 10, 0.18);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

.brand {
  display: flex;
  align-items: center;
  width: 190px;
  height: 50px;
  overflow: hidden;
}

.brand-logo {
  width: 162px;
  max-width: none;
  transform: translateY(-12px);
  transition: transform 0.35s var(--ease);
}

.brand:hover .brand-logo {
  transform: translateY(-12px) scale(1.025);
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
  color: rgba(250, 248, 244, 0.70);
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 12px 14px;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 8px;
  left: 14px;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.32s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--off-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
}

.theme-toggle,
.nav-toggle {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(250, 248, 244, 0.16);
  border-radius: 50%;
  background: rgba(250, 248, 244, 0.07);
  color: var(--off-white);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.theme-toggle:hover,
.nav-toggle:hover {
  border-color: var(--gold-light);
  background: rgba(232, 201, 106, 0.14);
  transform: translateY(-1px);
}

.theme-icon {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.theme-icon-moon,
html[data-theme="dark"] .theme-icon-sun {
  display: none;
}

html[data-theme="dark"] .theme-icon-moon {
  display: block;
}

.nav-toggle {
  display: none;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  width: 17px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* Buttons */
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: color 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, transform 0.3s var(--ease);
}

.button span,
.text-link span {
  transition: transform 0.3s var(--ease);
}

.button:hover span,
.text-link:hover span {
  transform: translateX(3px);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201, 168, 76, 0.20);
}

.button-dark {
  background: var(--black);
  color: var(--off-white);
}

html[data-theme="dark"] .button-dark {
  background: var(--gold-light);
  color: var(--black);
}

.button-gold {
  background: var(--gold-light);
  color: var(--black);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--gold);
  background: var(--surface-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: var(--fs-small);
  font-weight: 800;
  line-height: 1.2;
}

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

.text-link-light {
  border-color: rgba(250, 248, 244, 0.24);
  color: var(--off-white);
}

/* Motion */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}

[data-reveal="up"] { transform: translateY(28px); }
[data-reveal="left"] { transform: translateX(34px); }
[data-reveal="right"] { transform: translateX(-34px); }
[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.parallax-media,
.tilt {
  transform-style: preserve-3d;
  will-change: transform;
}

.parallax-media img {
  will-change: transform;
}

/* Home */
.home-hero {
  position: relative;
  min-height: max(740px, 100svh);
  padding: clamp(146px, 18vh, 190px) 0 92px;
  background: var(--page);
}

.home-hero::before {
  content: "";
  position: absolute;
  top: 132px;
  bottom: 86px;
  left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.58) 16%, rgba(201, 168, 76, 0.58) 84%, transparent);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.88fr);
  gap: clamp(64px, 8vw, 116px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(26px, 3vw, 44px);
}

.hero-copy h1 {
  max-width: 11.5ch;
}

.hero-copy .lead {
  max-width: 610px;
}

.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 510px);
}

.hero-media-stage {
  position: relative;
  padding: 18px 0 18px 38px;
}

.hero-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(201, 168, 76, 0.54);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(250, 248, 244, 0.22);
  pointer-events: none;
}

.hero-image img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center 62%;
}

.hero-index {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 38px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(250, 248, 244, 0.16);
  border-radius: 0 0 var(--radius) var(--radius);
  background: rgba(10, 10, 10, 0.84);
  color: var(--off-white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-index a {
  display: grid;
  gap: 4px;
  padding: 14px 12px;
  border-right: 1px solid rgba(250, 248, 244, 0.14);
  transition: background-color 0.25s ease;
}

.hero-index a:last-child {
  border-right: 0;
}

.hero-index a:hover,
.hero-index a:focus-visible {
  background: rgba(232, 201, 106, 0.16);
}

.hero-index strong {
  color: var(--gold-light);
  font-size: var(--fs-small);
  font-weight: 800;
  line-height: 1.2;
}

.hero-index span {
  overflow: hidden;
  color: rgba(250, 248, 244, 0.72);
  font-size: var(--fs-small);
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-caption {
  max-width: 38ch;
  margin: 14px 0 0 auto;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
}

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: max(var(--gutter), calc((100vw - var(--container)) / 2));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: var(--fs-small);
  font-weight: 700;
}

.scroll-cue span {
  color: var(--gold);
}

/* Cursor-reactive grid adapted from the supplied Kinetic Grid component. */
.kinetic-grid-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.52;
  pointer-events: none;
}

html[data-theme="dark"] .kinetic-grid-canvas {
  opacity: 0.62;
}

.home-hero .hero-layout,
.framework-hero .framework-hero-grid,
.work-page-hero .work-hero-grid,
.about-hero .about-hero-grid,
.contact-hero .contact-hero-grid {
  position: relative;
  z-index: 1;
}

/* Dark framework panels */
.framework-band,
.principle-band {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--off-white);
}

.framework-band::before,
.principle-band::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(232, 201, 106, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(232, 201, 106, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.framework-band-head {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
  padding-block: 64px 50px;
}

.framework-band-head > img,
.principle-band-grid > img {
  width: 104px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--gold-pale);
}

.framework-band h2,
.framework-band h3,
.principle-band h2 {
  color: var(--off-white);
}

.framework-band-head h2,
.framework-band-head .eyebrow {
  margin-bottom: 0;
}

.capability-links {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(250, 248, 244, 0.16);
}

.capability-links > a {
  position: relative;
  min-height: 280px;
  padding: 40px 32px 44px;
  border-right: 1px solid rgba(250, 248, 244, 0.16);
  transition: background-color 0.32s ease;
}

.capability-links > a:last-child {
  border-right: 0;
}

.capability-links > a:hover {
  background: rgba(232, 201, 106, 0.09);
}

.capability-code {
  display: block;
  margin-bottom: 38px;
  color: var(--gold-light);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1;
}

.capability-links p {
  max-width: 30ch;
  margin-bottom: 0;
  color: rgba(250, 248, 244, 0.68);
}

.capability-arrow {
  position: absolute;
  top: 43px;
  right: 30px;
  color: var(--gold-light);
  font-size: var(--fs-h3);
  transition: transform 0.3s var(--ease);
}

.capability-links a:hover .capability-arrow {
  transform: translate(3px, -3px);
}

/* Homepage gateways */
.service-gateway {
  background: var(--page);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-list > a {
  display: grid;
  grid-template-columns: 68px minmax(190px, 0.55fr) 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 126px;
  padding: 26px 10px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.34s var(--ease), background-color 0.3s ease;
}

.service-list > a:hover {
  padding-inline: 22px;
  background: var(--surface-soft);
}

.service-list h3,
.service-list p {
  margin-bottom: 0;
}

.service-list p {
  color: var(--muted);
}

.service-number {
  color: var(--gold);
  font-weight: 800;
}

.service-list > a > span:last-child {
  color: var(--gold);
  font-size: var(--fs-h3);
  transition: transform 0.3s var(--ease);
}

.service-list > a:hover > span:last-child {
  transform: translate(3px, -3px);
}

.newsletter-section {
  padding-top: 0;
}

.newsletter-panel {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  overflow: hidden;
  padding: clamp(36px, 5vw, 62px);
  border: 1px solid rgba(201, 168, 76, 0.45);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
}

.newsletter-panel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54px;
  height: 54px;
  border-top: 1px solid rgba(201, 168, 76, 0.52);
  border-left: 1px solid rgba(201, 168, 76, 0.52);
  background: var(--page);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.newsletter-mark {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  padding: 12px;
  border-radius: 50%;
  background: var(--gold-pale);
  box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.42);
}

.newsletter-panel h2 {
  max-width: 18ch;
}

.newsletter-panel p:not(.eyebrow) {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--muted);
}

/* Page heroes */
.page-hero,
.framework-hero,
.about-hero {
  position: relative;
  padding: clamp(160px, 19vh, 205px) 0 clamp(82px, 11vw, 132px);
}

.framework-hero,
.work-page-hero,
.contact-hero,
.about-hero {
  border-bottom: 1px solid var(--line-soft);
}

.framework-hero {
  min-height: 740px;
  background: var(--page);
}

.framework-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.72fr);
  gap: clamp(56px, 8vw, 110px);
  align-items: center;
}

.framework-scene-panel {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 76, 0.40);
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}

.framework-scene-panel::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(250, 248, 244, 0.10);
  pointer-events: none;
}

.framework-scene-panel .skill-scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scene-key {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(250, 248, 244, 0.15);
  border-radius: 6px;
  background: rgba(10, 10, 10, 0.70);
  color: rgba(250, 248, 244, 0.74);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.scene-key a {
  display: grid;
  gap: 5px;
  padding: 16px 13px;
  border-right: 1px solid rgba(250, 248, 244, 0.13);
  font-size: var(--fs-small);
  transition: background-color 0.25s ease;
}

.scene-key a:last-child {
  border-right: 0;
}

.scene-key a:hover,
.scene-key a:focus-visible {
  background: rgba(232, 201, 106, 0.13);
}

.scene-key strong {
  color: var(--gold-light);
}

.framework-intro {
  padding-bottom: calc(var(--section) * 0.72);
}

/* Framework chapters */
.capability-chapter {
  scroll-margin-top: 110px;
  padding-block: var(--section);
  border-top: 1px solid var(--line-soft);
  background: var(--page);
}

.chapter-pale {
  background: var(--surface-soft);
}

.capability-chapter-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(54px, 10vw, 150px);
  align-items: start;
}

.chapter-mark {
  position: sticky;
  top: 145px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.chapter-mark span {
  color: var(--gold);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 0.82;
}

.chapter-mark small {
  color: var(--muted);
  font-weight: 700;
}

.chapter-copy > p:not(.eyebrow) {
  max-width: 60ch;
  color: var(--muted);
}

.tool-panel {
  max-width: 660px;
  margin-top: 40px;
  padding: 28px 30px;
  border: 1px solid rgba(201, 168, 76, 0.42);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.tool-panel h3,
.tool-panel p {
  margin-bottom: 8px;
}

.tool-label {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.principle-band {
  padding-block: clamp(74px, 9vw, 112px);
}

.principle-band-grid {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.principle-band-grid h2,
.principle-band-grid .eyebrow {
  margin-bottom: 0;
}

/* Work */
.work-page-hero,
.contact-hero {
  background: var(--surface-soft);
}

.work-hero-grid,
.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.58fr);
  gap: clamp(54px, 9vw, 124px);
  align-items: end;
}

.work-format-index {
  display: grid;
  padding: 16px 26px;
  border: 1px solid rgba(232, 201, 106, 0.24);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--off-white);
  box-shadow: var(--shadow-soft);
}

.work-format-index span {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(250, 248, 244, 0.15);
  font-weight: 700;
}

.work-format-index span:last-child {
  border-bottom: 0;
}

.work-format-index small {
  color: var(--gold-light);
  font-weight: 800;
}

.engagement-section {
  scroll-margin-top: 100px;
}

.engagement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  gap: clamp(52px, 8vw, 104px);
  align-items: center;
}

.engagement-grid-reverse .engagement-media { order: 2; }
.engagement-grid-reverse .engagement-copy { order: 1; }

.engagement-media,
.about-portrait,
.stage-image {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.engagement-media img,
.about-portrait img,
.stage-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
}

.engagement-copy > p:not(.eyebrow),
.stage-copy > p:not(.eyebrow),
.story-body p {
  color: var(--muted);
}

.detail-row {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.detail-row > span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-row p {
  margin-bottom: 0;
}

.engagement-copy .button {
  margin-top: 24px;
}

.image-caption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(250, 248, 244, 0.12);
  border-radius: 5px;
  background: rgba(10, 10, 10, 0.78);
  color: var(--off-white);
  font-weight: 700;
  line-height: 1.3;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.process-section {
  background: var(--surface);
}

.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.process-line > div {
  position: relative;
  min-height: 220px;
  padding: 30px 22px 26px 0;
  border-right: 1px solid var(--line);
}

.process-line > div:not(:first-child) { padding-left: 22px; }
.process-line > div:last-child { border-right: 0; }

.process-line span {
  display: block;
  margin-bottom: 40px;
  color: var(--gold);
  font-weight: 800;
}

.process-line p {
  margin-bottom: 0;
  color: var(--muted);
}

.compact-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.compact-cta-inner h2,
.compact-cta-inner .eyebrow {
  margin-bottom: 0;
}

/* About */
.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.12fr);
  gap: clamp(56px, 9vw, 124px);
  align-items: center;
}

.about-portrait {
  min-height: 660px;
}

.about-portrait img {
  object-position: center;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  color: var(--ink);
  font-weight: 800;
}

.linkedin-icon {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #0A66C2;
  color: var(--white);
  font-size: var(--fs-small);
  font-weight: 800;
  transition: transform 0.3s var(--ease);
}

.linkedin-link:hover .linkedin-icon {
  transform: translateY(-2px) rotate(-5deg);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.92fr);
  gap: clamp(60px, 12vw, 170px);
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 82px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact-strip > div {
  min-height: 145px;
  padding: 28px 26px 26px 0;
  border-right: 1px solid var(--line);
}

.fact-strip > div:not(:first-child) { padding-left: 26px; }
.fact-strip > div:last-child { border-right: 0; }

.fact-strip span,
.appearance-list span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fact-strip p {
  margin-bottom: 0;
}

.stage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(56px, 9vw, 124px);
  align-items: center;
}

.appearance-list {
  margin: 32px 0;
  border-top: 1px solid var(--line);
}

.appearance-list > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.appearance-list span,
.appearance-list p {
  margin-bottom: 0;
}

.stage-image {
  min-height: 680px;
}

.stage-image img {
  object-position: center 28%;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(54px, 9vw, 122px);
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 136px;
  overflow: hidden;
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid rgba(232, 201, 106, 0.22);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--off-white);
  box-shadow: var(--shadow);
}

.contact-aside h2 {
  color: var(--off-white);
}

.contact-aside > a {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  padding: 21px 0;
  border-top: 1px solid rgba(250, 248, 244, 0.17);
}

.contact-aside > a > span {
  grid-column: 1 / -1;
  color: var(--gold-light);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-aside strong {
  overflow-wrap: anywhere;
  font-weight: 600;
}

.contact-aside i {
  color: var(--gold-light);
  font-style: normal;
}

.contact-social-wrap {
  padding-top: 26px;
  border-top: 1px solid rgba(250, 248, 244, 0.17);
}

.contact-social-wrap > span {
  color: var(--gold-light);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form-panel {
  padding-top: 6px;
}

.form-heading {
  margin-bottom: 38px;
}

.rr-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-row { margin: 0; }
.form-row:nth-child(4),
.form-row:nth-child(5),
.rr-form .button-submit,
.rr-form .form-feedback { grid-column: 1 / -1; }

.rr-form label {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.rr-form input,
.rr-form select,
.rr-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  outline: 0;
  background: var(--surface);
  color: var(--ink);
  font-size: var(--fs-body);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.rr-form input,
.rr-form select {
  height: 55px;
  padding: 0 15px;
}

.rr-form textarea {
  min-height: 166px;
  padding: 14px 15px;
  resize: vertical;
}

.rr-form input::placeholder,
.rr-form textarea::placeholder {
  color: var(--muted);
  opacity: 0.72;
}

.rr-form input:focus,
.rr-form select:focus,
.rr-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
}

.select-wrap { position: relative; }
.select-wrap::after {
  content: "\2193";
  position: absolute;
  top: 50%;
  right: 16px;
  color: var(--gold);
  transform: translateY(-50%);
  pointer-events: none;
}

.rr-form select {
  appearance: none;
  padding-right: 44px;
}

.button-submit {
  justify-self: start;
  min-width: 180px;
  background: var(--black);
  color: var(--off-white);
}

html[data-theme="dark"] .button-submit {
  background: var(--gold-light);
  color: var(--black);
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.form-feedback {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted);
}

.form-feedback.is-success { color: #45A36A; }
.form-feedback.is-error { color: #D45B5B; }

.schedule-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.schedule-grid h2,
.schedule-grid p { margin-bottom: 0; }
.schedule-grid p:not(.eyebrow) {
  max-width: 60ch;
  color: var(--muted);
}

/* Social */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.social-links a:hover {
  border-color: var(--gold);
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
}

.social-links svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.contact-social a,
.footer-social a {
  border-color: rgba(250, 248, 244, 0.22);
  color: var(--off-white);
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 94px 0 27px;
  background: var(--black);
  color: rgba(250, 248, 244, 0.70);
}

.footer-top,
.footer-contact-row,
.footer-bottom {
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(60px, 12vw, 172px);
  align-items: start;
  padding-bottom: 72px;
}

.footer-brand-logo {
  width: 228px;
  margin-bottom: 26px;
}

.footer-intro p {
  max-width: 360px;
  margin-bottom: 0;
}

.footer-action h2 {
  max-width: 15ch;
  color: var(--off-white);
}

.footer-action .button { margin-top: 14px; }

.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(250, 248, 244, 0.15);
  border-bottom: 1px solid rgba(250, 248, 244, 0.15);
}

.footer-contact-row > a {
  color: var(--off-white);
  font-weight: 600;
  transition: color 0.25s ease;
}

.footer-contact-row > a:hover { color: var(--gold-light); }
.footer-contact-row .social-links { margin: 0 0 0 auto; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding-top: 24px;
  color: rgba(250, 248, 244, 0.46);
}

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

/* Generic */
.generic-content-section,
.error-section {
  min-height: 72vh;
  padding-top: 180px;
}

.generic-content { max-width: 860px; }
.entry-content { color: var(--muted); }
.error-content {
  display: grid;
  justify-items: center;
  text-align: center;
}
.error-content h1 { max-width: 14ch; }

@media (max-width: 1080px) {
  .nav-links a { padding-inline: 10px; }
  .nav-links a::after { right: 10px; left: 10px; }
  .brand { width: 166px; }
  .brand-logo { width: 148px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr); gap: 50px; }
  .framework-band-head { grid-template-columns: 96px 1fr; }
  .framework-band-head .text-link { grid-column: 2; justify-self: start; }
  .newsletter-panel { grid-template-columns: 80px 1fr; }
  .newsletter-mark { width: 78px; height: 78px; }
  .newsletter-panel .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 900px) {
  .site-header { top: 14px; }
  .admin-bar .site-header { top: 46px; }
  .nav-toggle { display: inline-grid; }
  .brand { width: 176px; }
  .brand-logo { width: 154px; }
  .nav-links {
    position: fixed;
    top: 94px;
    right: var(--gutter);
    left: var(--gutter);
    z-index: 10020;
    display: grid;
    justify-content: stretch;
    align-items: stretch;
    gap: 0;
    max-height: calc(100svh - 112px);
    overflow-y: auto;
    padding: 12px;
    border: 1px solid rgba(232, 201, 106, 0.32);
    border-radius: var(--radius);
    background: var(--black);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.3s var(--ease);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .nav-open .nav-links { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-links a { padding: 18px 20px; border-bottom: 1px solid rgba(250, 248, 244, 0.12); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .nav-links a.active { border-radius: 5px; background: var(--gold-light); color: var(--black); }
  .hero-layout,
  .framework-hero-grid,
  .about-hero-grid,
  .work-hero-grid,
  .contact-hero-grid,
  .engagement-grid,
  .story-layout,
  .stage-layout,
  .contact-layout { grid-template-columns: 1fr; }
  .hero-copy { padding-left: 30px; }
  .hero-visual { justify-self: stretch; width: min(82%, 520px); margin-inline: auto; }
  .framework-scene-panel { min-height: 430px; }
  .engagement-grid-reverse .engagement-media,
  .engagement-grid-reverse .engagement-copy { order: initial; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .capability-chapter-grid { grid-template-columns: 160px minmax(0, 1fr); gap: 50px; }
  .chapter-mark { position: static; }
  .principle-band-grid { grid-template-columns: 90px 1fr; }
  .principle-band-grid > img { width: 88px; }
  .principle-band-grid .button { grid-column: 2; justify-self: start; }
  .work-format-index { max-width: 540px; }
  .contact-aside { position: static; }
  .stage-image { min-height: 580px; }
}

@media (max-width: 700px) {
  :root {
    --gutter: 18px;
    --section: 76px;
    --fs-h1: 2.68rem;
    --fs-h2: 2rem;
    --fs-h3: 1.18rem;
    --fs-body: 0.98rem;
    --fs-small: 0.75rem;
  }
  html { scroll-padding-top: 92px; }
  body { line-height: 1.64; }
  .site-header { padding-inline: 12px; }
  .nav-shell { min-height: 64px; padding: 5px 7px 5px 13px; }
  .brand { width: 172px; height: 50px; }
  .brand-logo { width: 154px; transform: translateY(-11px); }
  .brand:hover .brand-logo { transform: translateY(-11px); }
  .theme-toggle,
  .nav-toggle { width: 42px; height: 42px; }
  .nav-tools { margin-left: 4px; }
  .nav-links { top: 88px; right: 12px; left: 12px; }
  h1 { line-height: 1.01; }
  h2 { line-height: 1.08; }
  .home-hero {
    min-height: 0;
    padding: 122px 0 74px;
  }
  .home-hero::before {
    top: 114px;
    bottom: 58px;
    left: 18px;
  }
  .hero-layout { gap: 52px; }
  .hero-copy { padding-left: 18px; }
  .hero-copy h1 { max-width: 10.4ch; }
  .hero-copy .lead { line-height: 1.72; }
  .button-row { align-items: flex-start; gap: 10px 16px; }
  .button { min-height: 50px; padding: 13px 19px; }
  .hero-visual { width: 100%; }
  .hero-media-stage { padding: 0 0 34px 20px; }
  .hero-image { aspect-ratio: 4 / 4.6; }
  .hero-index { right: 0; bottom: 34px; left: 20px; }
  .hero-index a { padding: 12px 9px; }
  .hero-index span { font-size: var(--fs-small); }
  .hero-caption { padding-left: 20px; }
  .scroll-cue { display: none; }
  .kinetic-grid-canvas { opacity: 0.32; }
  .framework-band-head {
    grid-template-columns: 76px 1fr;
    gap: 22px;
    padding-block: 52px 40px;
  }
  .framework-band-head > img { width: 74px; padding: 8px; }
  .framework-band-head .text-link { grid-column: 1 / -1; }
  .capability-links { grid-template-columns: 1fr; }
  .capability-links > a {
    min-height: 0;
    padding: 30px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(250, 248, 244, 0.16);
  }
  .capability-links > a:last-child { border-bottom: 0; }
  .capability-code { margin-bottom: 18px; }
  .capability-arrow { top: 32px; right: 22px; }
  .service-list > a {
    grid-template-columns: 44px 1fr auto;
    gap: 10px 15px;
    min-height: 0;
    padding: 25px 4px;
  }
  .service-list > a:hover { padding-inline: 10px; }
  .service-list p { grid-column: 2 / -1; }
  .newsletter-panel {
    grid-template-columns: 64px 1fr;
    gap: 20px;
    padding: 30px 24px 36px;
  }
  .newsletter-mark { width: 62px; height: 62px; padding: 8px; }
  .newsletter-panel .button { grid-column: 1 / -1; justify-self: stretch; }
  .newsletter-panel::after { width: 36px; height: 36px; }
  .page-hero,
  .framework-hero,
  .about-hero { padding: 128px 0 78px; }
  .framework-hero { min-height: 0; }
  .framework-scene-panel { min-height: 360px; }
  .scene-key {
    right: 18px;
    bottom: 18px;
    left: 18px;
    grid-template-columns: 1fr;
  }
  .scene-key a {
    grid-template-columns: 32px 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(250, 248, 244, 0.13);
  }
  .scene-key a:last-child { border-bottom: 0; }
  .capability-chapter-grid { grid-template-columns: 1fr; gap: 38px; }
  .chapter-mark span { font-size: var(--fs-h1); }
  .tool-panel { padding: 24px 22px; }
  .principle-band-grid { grid-template-columns: 68px 1fr; gap: 22px; }
  .principle-band-grid > img { width: 66px; padding: 8px; }
  .principle-band-grid .button { grid-column: 1 / -1; justify-self: stretch; }
  .engagement-media,
  .about-portrait,
  .stage-image { min-height: 440px; }
  .detail-row { grid-template-columns: 76px 1fr; }
  .process-line { grid-template-columns: 1fr 1fr; }
  .process-line > div { min-height: 190px; border-bottom: 1px solid var(--line); }
  .process-line > div:nth-child(2) { border-right: 0; }
  .process-line > div:nth-child(3) { padding-left: 0; }
  .process-line > div:nth-child(3),
  .process-line > div:nth-child(4) { border-bottom: 0; }
  .process-line span { margin-bottom: 28px; }
  .compact-cta-inner,
  .schedule-grid { grid-template-columns: 1fr; gap: 28px; }
  .compact-cta-inner .button,
  .schedule-grid .button { justify-self: stretch; }
  .about-portrait { order: 2; }
  .fact-strip { grid-template-columns: 1fr; margin-top: 58px; }
  .fact-strip > div,
  .fact-strip > div:not(:first-child) {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .fact-strip > div:last-child { border-bottom: 0; }
  .appearance-list > div { grid-template-columns: 72px 1fr; gap: 16px; }
  .rr-form { grid-template-columns: 1fr; }
  .rr-form .form-row,
  .rr-form .button-submit,
  .rr-form .form-feedback { grid-column: 1; }
  .button-submit { justify-self: stretch; }
  .footer-top { grid-template-columns: 1fr; gap: 54px; padding-bottom: 56px; }
  .footer-brand-logo { width: 210px; }
  .footer-contact-row { align-items: flex-start; flex-direction: column; }
  .footer-contact-row .social-links { margin: 6px 0 0; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

@media (max-width: 390px) {
  .brand { width: 154px; }
  .brand-logo { width: 140px; }
  .hero-caption { padding-left: 20px; }
  .button-row .button { width: 100%; }
  .button-row .text-link { margin-left: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .parallax-media,
  .parallax-media img,
  .tilt { transform: none !important; }
}
