:root {
  color-scheme: light;
  --ink: #171816;
  --ink-soft: #3d433e;
  --muted: #68726b;
  --paper: #f5f1e8;
  --paper-2: #ebe4d7;
  --panel: #fffaf1;
  --line: rgba(23, 24, 22, 0.15);
  --deep: #0f1512;
  --green: #2f6b50;
  --green-bright: #45c280;
  --amber: #d78336;
  --blue: #365d78;
  --white: #fffdf7;
  --shadow: 0 24px 70px rgba(29, 33, 29, 0.16);
  --max: 1180px;
  --radius: 8px;
  --header: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 80;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--green-bright);
  color: #06120c;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header);
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(245, 241, 232, 0.88);
  box-shadow: 0 14px 44px rgba(29, 33, 29, 0.12);
  backdrop-filter: blur(18px);
}

.site-header:not(.is-scrolled) {
  border-color: rgba(255, 253, 247, 0.14);
  background: rgba(15, 21, 18, 0.78);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(100% - 32px, var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--green);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.site-header:not(.is-scrolled) .brand {
  color: var(--white);
}

.site-header:not(.is-scrolled) .brand-copy strong {
  color: var(--white);
}

.site-header:not(.is-scrolled) .brand-mark {
  border-color: rgba(255, 253, 247, 0.2);
  background: rgba(255, 253, 247, 0.08);
  color: var(--white);
}

.menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.menu a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.menu a:hover,
.menu a:focus-visible,
.menu a.is-active {
  background: rgba(47, 107, 80, 0.1);
  color: var(--green);
  outline: none;
}

.site-header.is-scrolled .menu a.is-active {
  background: var(--green);
  color: var(--white);
}

.site-header:not(.is-scrolled) .menu a {
  color: rgba(255, 253, 247, 0.82);
}

.site-header:not(.is-scrolled) .menu a:hover,
.site-header:not(.is-scrolled) .menu a:focus-visible {
  background: rgba(255, 253, 247, 0.1);
  color: var(--white);
}

.site-header:not(.is-scrolled) .menu a.is-active {
  background: var(--green-bright);
  color: #06120c;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: currentColor;
}

.site-header:not(.is-scrolled) .menu-toggle {
  border-color: rgba(255, 253, 247, 0.2);
  background: rgba(255, 253, 247, 0.08);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 820px;
  padding: calc(var(--header) + 42px) max(24px, calc((100vw - var(--max)) / 2)) 0;
  overflow: hidden;
  background: var(--deep);
  color: var(--white);
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(54vw, 720px);
  overflow: hidden;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--deep) 0%, rgba(15, 21, 18, 0.72) 25%, rgba(15, 21, 18, 0.1) 64%),
    linear-gradient(0deg, var(--deep) 0%, rgba(15, 21, 18, 0) 36%);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 20%;
  filter: saturate(0.95) contrast(1.02);
}

.hero-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 253, 247, 0.045) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(255, 253, 247, 0.035) 0 1px, transparent 1px 64px);
  mask-image: linear-gradient(90deg, black, transparent 86%);
}

.signal-flow {
  position: absolute;
  inset: var(--header) 0 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.72;
  mask-image: linear-gradient(90deg, transparent 0%, black 13%, black 76%, transparent 94%);
}

.signal-flow span {
  position: absolute;
  left: 6%;
  width: clamp(180px, 28vw, 430px);
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(69, 194, 128, 0.08) 20%, rgba(69, 194, 128, 0.46) 62%, transparent);
  transform: translateX(-42%);
  animation: signal-to-photo 8.5s linear infinite;
}

.signal-flow span::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 22%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green-bright);
  box-shadow: 0 0 18px rgba(69, 194, 128, 0.52);
}

.signal-flow span:nth-child(1) {
  top: 27%;
  animation-delay: -1.6s;
}

.signal-flow span:nth-child(2) {
  top: 39%;
  width: clamp(150px, 24vw, 360px);
  opacity: 0.62;
  animation-delay: -4.8s;
}

.signal-flow span:nth-child(3) {
  top: 51%;
  width: clamp(220px, 32vw, 480px);
  opacity: 0.78;
  animation-delay: -6.4s;
}

.signal-flow span:nth-child(4) {
  top: 63%;
  width: clamp(140px, 22vw, 340px);
  opacity: 0.5;
  animation-delay: -2.8s;
}

.signal-flow span:nth-child(5) {
  top: 74%;
  width: clamp(190px, 26vw, 390px);
  opacity: 0.58;
  animation-delay: -7.4s;
}

@keyframes signal-to-photo {
  0% {
    transform: translateX(-44%);
    opacity: 0;
  }

  12% {
    opacity: 0.65;
  }

  78% {
    opacity: 0.65;
  }

  100% {
    transform: translateX(84vw);
    opacity: 0;
  }
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  min-height: 620px;
  display: flex;
  align-items: flex-end;
}

.hero-copy {
  width: min(680px, 54%);
  padding-bottom: 92px;
}

.eyebrow,
.detail-kicker {
  margin: 0;
  color: var(--green-bright);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 10px 0 10px;
  color: var(--white);
  font-size: 4.55rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-role {
  max-width: 680px;
  margin: 0;
  color: #e5e9e3;
  font-size: 1.26rem;
  font-weight: 850;
}

.hero-lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: #c9d2cc;
  font-size: 1.08rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 950;
  text-decoration: none;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  border-color: transparent;
  background: var(--green-bright);
  color: #06120c;
}

.button.ghost {
  border-color: rgba(255, 253, 247, 0.18);
  background: rgba(255, 253, 247, 0.08);
  color: var(--white);
}

.contact .button.ghost {
  border-color: var(--line);
  background: var(--panel);
  color: var(--ink);
}

.hero-metrics {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-bottom: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: rgba(255, 253, 247, 0.92);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-metrics article {
  min-height: 138px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.hero-metrics article:last-child {
  border-right: 0;
}

.hero-metrics span {
  display: block;
  color: var(--green);
  font-size: 2.15rem;
  font-weight: 950;
  line-height: 1;
}

.hero-metrics p {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-weight: 750;
}

.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 22px;
}

.section h2,
.contact h2 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 2.55rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.principle-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 38px rgba(29, 33, 29, 0.08);
}

.principle-card span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.principle-card h3 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.principle-card p {
  color: var(--muted);
}

.training-section {
  padding-top: 86px;
}

.training-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: 16px;
  align-items: stretch;
}

.training-copy-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.training-content,
.book-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 107, 80, 0.09), transparent 46%),
    var(--panel);
  box-shadow: 0 14px 38px rgba(29, 33, 29, 0.08);
}

.book-copy {
  justify-content: flex-start;
  background: var(--panel);
}

.training-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.training-content p {
  margin: 14px 0 0;
  color: var(--muted);
}

.book-artifact {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100%;
  place-items: stretch;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 38px rgba(29, 33, 29, 0.08);
}

.book-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 28px;
  background: var(--panel);
}

.book-visual::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: 32px;
  left: 18%;
  height: 22px;
  background: rgba(29, 33, 29, 0.28);
  filter: blur(15px);
  transform: skewX(-14deg);
}

.book-visual img {
  position: relative;
  z-index: 2;
  width: min(86%, 340px);
  max-height: 360px;
  object-fit: contain;
  transform: translateY(0);
  filter: drop-shadow(0 22px 30px rgba(29, 33, 29, 0.28));
}

.book-copy {
  position: relative;
  z-index: 2;
}

.book-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.book-copy p {
  color: var(--muted);
}

.book-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.book-copy .button.primary {
  background: var(--deep);
  color: var(--white);
}

.text-link {
  color: var(--green);
  font-weight: 950;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.education-section {
  width: 100%;
  max-width: none;
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(135deg, rgba(215, 131, 54, 0.07), transparent 36%),
    var(--paper);
}

.education-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.education-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 107, 80, 0.08), transparent 48%),
    var(--panel);
  box-shadow: 0 14px 38px rgba(29, 33, 29, 0.08);
}

.education-card span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.education-card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.18;
  letter-spacing: 0;
}

.education-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.hobby-section {
  width: 100%;
  margin: 0;
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(15, 21, 18, 0.96), rgba(15, 21, 18, 0.84)),
    repeating-linear-gradient(90deg, rgba(255, 253, 247, 0.045) 0 1px, transparent 1px 56px),
    repeating-linear-gradient(0deg, rgba(255, 253, 247, 0.035) 0 1px, transparent 1px 56px),
    var(--deep);
  color: var(--white);
}

.hobby-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: stretch;
}

.hobby-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 540px;
}

.hobby-copy h2 {
  margin: 8px 0 0;
  color: var(--white);
  font-size: 2.55rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.hobby-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: #c9d2cc;
  font-size: 1.04rem;
}

.hobby-copy .button {
  align-self: flex-start;
  margin-top: 30px;
}

.panorama-embed {
  position: relative;
  display: block;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(69, 194, 128, 0.14), transparent 42%),
    #17201c;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  color: var(--white);
  text-decoration: none;
}

.panorama-embed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 21, 18, 0.78), transparent 44%);
  pointer-events: none;
}

.panorama-stage {
  position: absolute;
  inset: 0;
  background-image: url("assets/hobby-panorama.jpg");
  background-position: 50% 50%;
  background-size: cover;
}

.panorama-stage .pnlm-container {
  background: #17201c;
  font-family: inherit;
}

.panorama-stage .pnlm-render-container {
  filter: saturate(0.95) contrast(1.02);
}

.panorama-stage .pnlm-load-box,
.panorama-stage .pnlm-info-box {
  display: none !important;
}

.panorama-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: grid;
  gap: 6px;
  pointer-events: none;
}

.panorama-caption span {
  color: var(--green-bright);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panorama-caption strong {
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.15;
}

.panorama-caption a {
  justify-self: start;
  margin-top: 8px;
  color: var(--white);
  font-weight: 950;
  text-decoration: none;
  pointer-events: auto;
}

.panorama-caption a:hover,
.panorama-caption a:focus-visible {
  color: var(--green-bright);
  outline: none;
}

.career-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 96px max(24px, calc((100vw - var(--max)) / 2));
  border-block: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(47, 107, 80, 0.045), transparent 42%),
    var(--paper-2);
}

.career-board {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.company-rail {
  position: sticky;
  top: calc(var(--header) + 18px);
  display: grid;
  gap: 10px;
}

.company-tab {
  width: 100%;
  min-height: 92px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 10px 28px rgba(29, 33, 29, 0.06);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.company-tab:hover,
.company-tab:focus-visible,
.company-tab.is-active {
  border-color: rgba(47, 107, 80, 0.48);
  background: color-mix(in srgb, var(--green) 10%, var(--panel));
  outline: none;
  transform: translateX(3px);
}

.company-tab span,
.company-tab small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-tab strong {
  display: block;
  margin: 6px 0 4px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.2;
}

.company-detail {
  min-height: 620px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 107, 80, 0.08), transparent 38%),
    var(--panel);
  box-shadow: 0 16px 44px rgba(29, 33, 29, 0.1);
}

.company-detail-head {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.company-detail h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.company-location {
  display: inline-block;
  margin-top: 8px;
  color: var(--amber);
  font-weight: 900;
}

.company-summary {
  max-width: 780px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.role-stack {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.role-stack::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 8px;
  width: 2px;
  background: color-mix(in srgb, var(--green) 40%, var(--line));
}

.role-card {
  position: relative;
  padding: 20px 20px 20px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
}

.role-card::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 4px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--panel);
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(47, 107, 80, 0.12);
}

.role-card time {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.role-card h4 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.2;
}

.role-card ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.role-card li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
}

.role-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--amber);
}

.contact {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 92px 0 104px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.72fr);
  align-items: start;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.contact h2 {
  max-width: 760px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.04rem;
}

.contact .button.primary {
  background: var(--deep);
  color: var(--white);
}

.contact-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(47, 107, 80, 0.08), transparent 44%),
    var(--panel);
  box-shadow: 0 14px 38px rgba(29, 33, 29, 0.08);
}

.panel-kicker {
  margin: 0;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversation-list {
  display: grid;
  gap: 14px;
}

.conversation-list article {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.conversation-list span {
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.conversation-list h3 {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.25;
}

.conversation-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.footer {
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer a {
  color: var(--ink-soft);
  font-weight: 800;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

@media (max-width: 1040px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header) + 32px);
  }

  .hero-photo {
    inset: calc(var(--header) + 32px) 24px auto auto;
    width: clamp(250px, 34vw, 330px);
    height: clamp(300px, 42vw, 390px);
    border: 1px solid rgba(255, 253, 247, 0.18);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 1;
  }

  .hero-photo::after {
    background:
      linear-gradient(0deg, rgba(15, 21, 18, 0.3), rgba(15, 21, 18, 0) 42%);
  }

  .hero-layout {
    min-height: auto;
    padding-right: clamp(280px, 38vw, 360px);
  }

  .contact,
  .career-board,
  .hobby-inner {
    grid-template-columns: 1fr;
  }

  .training-feature {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .book-artifact {
    min-height: 360px;
  }

  .book-visual {
    min-height: 360px;
  }

  .book-visual img {
    width: min(84%, 280px);
    max-height: 310px;
    transform: translateY(0);
  }

  .company-rail {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panorama-embed {
    min-height: 420px;
  }

  .company-tab:hover,
  .company-tab:focus-visible,
  .company-tab.is-active {
    transform: translateY(-2px);
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .hero-copy {
    padding-bottom: 36px;
  }

  .hero-metrics,
  .leadership-grid,
  .education-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-metrics article:nth-child(2) {
    border-right: 0;
  }

  .hero-metrics article {
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics article:nth-child(3),
  .hero-metrics article:nth-child(4) {
    border-bottom: 0;
  }

}

@media (max-width: 860px) {
  .brand-copy {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    position: fixed;
    top: var(--header);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 13px 12px;
  }

  .site-header:not(.is-scrolled) .menu.is-open a {
    color: var(--ink-soft);
  }

  .site-header:not(.is-scrolled) .menu.is-open a:hover,
  .site-header:not(.is-scrolled) .menu.is-open a:focus-visible {
    background: rgba(47, 107, 80, 0.1);
    color: var(--green);
  }

  .site-header:not(.is-scrolled) .menu.is-open a.is-active {
    background: var(--green);
    color: var(--white);
  }

  .hero {
    padding-top: calc(var(--header) + 190px);
  }

  .hero-photo {
    position: absolute;
    inset: var(--header) 0 auto;
    z-index: 0;
    width: 100%;
    height: 360px;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .hero-photo::after {
    background:
      linear-gradient(90deg, var(--deep) 0%, rgba(15, 21, 18, 0.72) 38%, rgba(15, 21, 18, 0.12) 100%),
      linear-gradient(0deg, var(--deep) 0%, rgba(15, 21, 18, 0.78) 24%, rgba(15, 21, 18, 0) 72%);
  }

  .hero-photo img {
    object-position: 58% 18%;
  }

  .hero-layout {
    padding-right: 0;
  }

}

@media (max-width: 760px) {
  :root {
    --header: 68px;
  }

  .nav {
    width: min(100% - 24px, var(--max));
  }

  .hero {
    padding: calc(var(--header) + 190px) 16px 0;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-role {
    font-size: 1.05rem;
  }

  .hero-copy {
    padding-bottom: 24px;
  }

  .hero-metrics,
  .leadership-grid,
  .education-grid,
  .company-rail {
    grid-template-columns: 1fr;
  }

  .book-artifact {
    min-height: 300px;
  }

  .book-visual {
    min-height: 300px;
    place-items: center;
  }

  .book-visual img {
    width: min(76vw, 260px);
    max-height: 270px;
    transform: translateY(0);
  }

  .book-copy {
    padding: 16px;
  }

  .company-detail {
    min-height: auto;
    padding: 20px;
  }

  .company-detail h3 {
    font-size: 1.62rem;
  }

  .hero-metrics article,
  .hero-metrics article:nth-child(2),
  .hero-metrics article:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics article:last-child {
    border-bottom: 0;
  }

  .section,
  .contact,
  .footer {
    width: min(100% - 24px, var(--max));
  }

  .section,
  .contact {
    padding: 72px 0;
  }

  .career-section {
    width: 100%;
    padding: 72px 12px;
  }

  .education-section {
    padding: 72px 12px;
  }

  .section h2,
  .contact h2,
  .hobby-copy h2 {
    font-size: 2rem;
  }

  .hobby-section {
    padding: 72px 12px;
  }

  .panorama-embed {
    min-height: 320px;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .signal-flow span {
    animation: none;
    opacity: 0.28;
    transform: translateX(18vw);
  }
}
