:root {
  --paper: #f7f1e8;
  --paper-2: #fffdfa;
  --site-backdrop: #f7f1e8;
  --card: #ffffff;
  --card-solid: #ffffff;
  --ink: #1f1915;
  --ink-2: #302723;
  --muted: #6f655e;
  --muted-2: #9d9288;
  --terra: #c24a2c;
  --terra-2: #9f351a;
  --terra-soft: rgba(194, 74, 44, 0.12);
  --line: rgba(55, 35, 23, 0.12);
  --line-strong: rgba(55, 35, 23, 0.2);
  --sand: #e8ddd0;
  --ink-card: #221c18;
  --ink-card-2: #2f2622;
  --on-dark: #f7efe7;
  --on-dark-soft: rgba(247, 239, 231, 0.72);
  --on-terra: #fff8f2;
  --radius-lg: 1.7rem;
  --radius-md: 1.15rem;
  --radius-sm: 0.85rem;
  --shadow-sm: 0 8px 24px rgba(26, 17, 12, 0.06);
  --shadow-md: 0 18px 40px rgba(26, 17, 12, 0.1);
  --shadow-lg: 0 28px 60px rgba(26, 17, 12, 0.14);
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--site-backdrop);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.drawer-open {
  overflow: hidden;
}

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

svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
}

section[id] {
  scroll-margin-top: 7rem;
}

:focus-visible {
  outline: 3px solid rgba(194, 74, 44, 0.4);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.scroll-progress,
.floating-cta,
.back-top {
  position: fixed;
}

.scroll-progress {
  inset: 0 0 auto;
  z-index: 400;
  height: 4px;
  background: rgba(31, 25, 21, 0.1);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--terra);
}

.floating-cta,
.back-top {
  z-index: 220;
  border: 0;
  text-decoration: none;
  box-shadow: var(--shadow-md);
}

.floating-cta {
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  color: var(--on-terra);
  background: var(--terra);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-cta:hover {
  box-shadow: var(--shadow-md);
}

.back-top {
  right: 1.6rem;
  bottom: 5.7rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(29, 21, 21, 0.92);
  color: var(--terra);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

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

.wrap {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin: 0 auto;
  padding: 1.25rem 0 4rem;
}

.sec {
  margin-bottom: 4rem;
}

.card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}


.elevate:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(194, 74, 44, 0.22);
}

.card-ink {
  color: var(--on-dark);
  background: rgba(31, 25, 21, 0.98);
  border-color: rgba(255, 255, 255, 0.08);
}

.card-terra {
  color: var(--on-terra);
  background: rgba(170, 52, 24, 0.98);
  border-color: rgba(255, 255, 255, 0.12);
}

.card-dots::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: none;
  opacity: 0;
  pointer-events: none;
}

.card-dots > * {
  position: relative;
  z-index: 1;
}

.tilt-card {
  transform: none;
  transform-style: flat;
  will-change: auto;
}

.site-header {
  position: relative;
  z-index: 160;
  margin-bottom: 2rem;
}

.nav {
  position: sticky;
  top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.3rem;
  background: #ffffff;
  border-bottom: 2px solid rgba(194, 74, 44, 0.38);
}

.nav-logo,
.footer-brand {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.nav-logo {
  font-size: 1.45rem;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo em,
.footer-brand em {
  color: var(--terra);
  font-style: italic;
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: var(--terra-soft);
  color: var(--terra);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a,
.nav-drawer a,
.footer-links a,
.copy-btn {
  text-decoration: none;
}

.nav-links a {
  position: relative;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--terra);
  background: rgba(194, 74, 44, 0.12);
}

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(194, 74, 44, 0.08);
  color: var(--ink);
  place-items: center;
}

.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-burger span + span {
  margin-top: 5px;
}

.nav-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  inset: 0;
  z-index: 165;
  background: rgba(18, 12, 10, 0.5);
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 170;
  width: min(320px, calc(100vw - 1rem));
  height: 100vh;
  padding: 5rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: -20px 0 40px rgba(26, 17, 12, 0.18);
  transition: right 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-drawer.is-open {
  right: 0;
}

.nav-close {
  position: absolute;
  top: 1.05rem;
  right: 1.05rem;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(194, 74, 44, 0.08);
  color: var(--terra);
  font-size: 1.4rem;
  line-height: 1;
}

.drawer-kicker,
.section-eye,
.hero-kicker,
.action-label,
.pillar-label,
.contact-kicker,
.timeline-year,
.contact-label {
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.drawer-kicker {
  margin-bottom: 0.5rem;
  color: var(--terra);
  font-size: 0.68rem;
  font-weight: 800;
}

.nav-drawer a {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-drawer a:hover,
.nav-drawer a.is-active {
  background: rgba(194, 74, 44, 0.12);
  color: var(--terra);
}

.drawer-card {
  margin-top: auto;
  padding: 1.3rem;
  display: grid;
  gap: 1rem;
}

.drawer-card p {
  font-size: 0.96rem;
  color: var(--on-dark-soft);
}

.btn,
.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, gap 0.2s ease;
}

.btn {
  min-height: 48px;
  padding: 0.82rem 1.35rem;
  text-decoration: none;
}

.btn:hover,
.copy-btn:hover {
  transform: none;
}

.btn-primary {
  color: var(--on-terra);
  background: var(--terra);
  box-shadow: 0 14px 28px rgba(194, 74, 44, 0.22);
}

.btn-primary:hover {
  gap: 0.75rem;
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(55, 35, 23, 0.12);
}

.btn-secondary:hover {
  border-color: rgba(194, 74, 44, 0.35);
  color: var(--terra);
  background: rgba(194, 74, 44, 0.08);
}

.btn-light {
  color: var(--ink-card);
  background: rgba(255, 248, 242, 0.98);
}

.btn-outline-light {
  color: var(--on-terra);
  background: transparent;
  border-color: rgba(255, 248, 242, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-textual {
  color: var(--terra);
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22rem;
}

.copy-btn {
  min-height: 40px;
  padding: 0.65rem 0.95rem;
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}

.copy-btn:hover,
.copy-btn.is-copied {
  color: var(--terra);
  border-color: rgba(194, 74, 44, 0.35);
  background: rgba(194, 74, 44, 0.08);
}

.copy-btn-light {
  color: var(--on-dark);
  border-color: rgba(255, 255, 255, 0.18);
}

.copy-btn-light:hover,
.copy-btn-light.is-copied {
  color: var(--on-dark);
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.cta-row,
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero {
  padding-top: 0.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.hero-main,
.about-body,
.contact-panel {
  padding: 2.2rem;
}

.hero-main.paper-fold-tr,
.contact-panel.paper-fold-tr {
  padding-right: 3rem;
}

.about-body.paper-fold-br {
  padding-right: 3rem;
  padding-bottom: 2.4rem;
}

.hero-main {
  overflow: hidden;
}

.hero-main::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: none;
  pointer-events: none;
}

.hero-kicker,
.section-eye,
.action-label,
.contact-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--terra);
  font-size: 0.66rem;
  font-weight: 800;
}

.hero-kicker::before,
.section-eye::before,
.contact-kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero-name,
.section-title,
.about-title,
.pillar h3,
.contact-cta h3,
.timeline-item h3,
.value-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.hero-name {
  margin-top: 1rem;
  font-size: clamp(3.25rem, 7vw, 5.7rem);
  font-weight: 900;
}

.hero-name span {
  color: var(--terra);
  font-style: italic;
}

.hero-role-line {
  margin-top: 1rem;
  max-width: 34rem;
  font-size: 1.06rem;
  color: var(--ink-2);
}

.hero-rotating {
  display: inline-block;
  min-width: 10ch;
  color: var(--terra);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.hero-rotating.is-switching {
  opacity: 0.3;
  transform: translateY(4px);
}

.hero-rule,
.section-rule {
  width: 44px;
  height: 3px;
  margin-top: 1.2rem;
  border-radius: 999px;
  background: var(--terra);
}

.hero-deck {
  margin-top: 1.35rem;
  max-width: 38rem;
  padding-left: 1rem;
  border-left: 3px solid rgba(194, 74, 44, 0.5);
  color: var(--muted);
  font-size: 1rem;
}

.hero-main .cta-row {
  margin-top: 1.7rem;
}

.hero-actions .btn-textual {
  flex-basis: 100%;
}

.hero-tags {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-tag,
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--muted);
  background: #f8f4ee;
}

.hero-side {
  display: grid;
  gap: 1.2rem;
}

.hero-visual {
  min-height: 390px;
  padding: 1.8rem;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  top: -60px;
  right: -40px;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: none;
  filter: blur(2px);
}

.hero-letter,
.portrait-letter {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.86;
  font-weight: 900;
  font-style: italic;
  user-select: none;
}

.hero-letter {
  position: absolute;
  inset: 1rem auto auto 1rem;
  font-size: clamp(9rem, 20vw, 15rem);
  color: rgba(255, 255, 255, 0.06);
}

.hero-badge,
.hero-quote-card {
  position: absolute;
  max-width: 16.5rem;
  border-radius: var(--radius-md);
}

.hero-badge {
  right: 1.3rem;
  top: 1.5rem;
  padding: 1rem 1rem 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-badge-kicker,
.hero-quote-kicker {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero-badge strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 0.45rem;
}

.hero-badge span:last-child {
  display: block;
  font-size: 0.88rem;
  color: var(--on-dark-soft);
}

.hero-quote-card {
  left: 1.3rem;
  bottom: 1.3rem;
  padding: 1rem 1rem 0.95rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-quote-card p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.35;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric {
  padding: 1.2rem 1rem;
  display: grid;
  gap: 0.45rem;
  text-align: left;
}

.metric-value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--terra);
}

.metric-label {
  color: var(--muted);
  font-size: 0.82rem;
}

.action-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.action-card {
  display: block;
  padding: 1.55rem;
  color: inherit;
  text-decoration: none;
}

.action-card h2 {
  margin-top: 0.6rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.action-card p {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.ticker {
  display: flex;
  align-items: center;
  margin-bottom: 3.5rem;
  min-height: 52px;
  border-radius: 999px;
  overflow: clip;
  background: var(--terra);
  box-shadow: 0 18px 36px rgba(194, 74, 44, 0.22);
}

.ticker-lbl {
  flex-shrink: 0;
  height: 100%;
  display: inline-flex;
  align-items: center;
  padding: 0 1.1rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.ticker-track {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  padding: 0.55rem 0;
  animation: tickerRun 30s linear infinite;
  will-change: transform;
}

.ticker:hover .ticker-inner {
  animation-play-state: paused;
}

.ti {
  padding: 0 1.2rem;
  color: var(--on-terra);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ts {
  color: rgba(255, 255, 255, 0.28);
  font-size: 0.45rem;
}

@keyframes tickerRun {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-head {
  margin-bottom: 2rem;
}

.section-eye {
  margin-bottom: 0.7rem;
}

.section-eye-light {
  color: rgba(255, 255, 255, 0.6);
}

.section-head-light .section-rule {
  background: rgba(255, 255, 255, 0.3);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

.section-title em,
.about-title em {
  color: var(--terra);
  font-style: italic;
}

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

.section-title-light em {
  color: rgba(255, 224, 210, 0.9);
}

.about-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.portrait-card {
  min-height: 500px;
  padding: 1.3rem;
  overflow: hidden;
}

.img-portrait {
  position: absolute;
  inset: 1rem 1rem 6.8rem 1rem;
  border-radius: calc(var(--radius-lg) - 0.4rem);
  overflow: hidden;
}

.img-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.portrait-frame {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(194, 74, 44, 0.24);
  border-radius: calc(var(--radius-lg) - 0.4rem);
}

.portrait-letter {
  position: absolute;
  inset: auto auto 5.6rem 1.4rem;
  font-size: clamp(11rem, 28vw, 16rem);
  color: rgba(255, 255, 255, 0.06);
}

.portrait-copy {
  position: absolute;
  inset: auto 1.4rem 1.4rem 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.portrait-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  color: var(--on-dark);
}

.portrait-role {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portrait-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: right;
}

.portrait-badge span {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 900;
}

.portrait-badge small {
  display: block;
  margin-top: 0.1rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.about-title {
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 900;
}

.about-subtitle {
  margin-top: 0.85rem;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1rem;
  font-style: italic;
}

.about-columns {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.6rem;
}

.about-columns p {
  color: var(--ink-2);
  margin-bottom: 0;
}

.about-columns p:first-child::first-letter {
  float: left;
  margin-right: 0.3rem;
  margin-top: 0.28rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  line-height: 0.7;
  color: var(--terra);
}

.about-points,
.pillar-list,
.contact-list {
  list-style: none;
}

.about-points {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.8rem;
}

.about-points li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.about-points li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terra);
}

.chips {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip:hover {
  color: var(--terra);
  border-color: rgba(194, 74, 44, 0.3);
  background: rgba(194, 74, 44, 0.08);
}

.about-actions {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(55, 35, 23, 0.08);
}

.timeline {
  padding: 2.1rem 2.2rem;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2.5rem;
  align-items: stretch;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-year {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  font-weight: 800;
}

.timeline-item h3 {
  margin-bottom: 0.45rem;
  font-size: 1.15rem;
  color: var(--on-dark);
}

.timeline-item p {
  color: var(--on-dark-soft);
  font-size: 0.92rem;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  overflow: hidden;
  min-height: 100%;
}

.pillar-index {
  position: absolute;
  top: 0.6rem;
  right: 1.1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4.9rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
}

.pillar-label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
  font-weight: 800;
}

.pillar h3 {
  margin-top: 0.8rem;
  max-width: 12ch;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--on-dark);
}

.pillar-copy {
  margin-top: 0.9rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
}

.pillar-list {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.7rem;
  width: 100%;
}

.pillar-list li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.pillar-list li::before {
  content: "";
  position: absolute;
  top: 0.66rem;
  left: 0;
  width: 7px;
  height: 1.5px;
  background: currentColor;
}

.pillar-actions {
  margin-top: 1.5rem;
  padding-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  align-items: stretch;
  border-top: 1px solid rgba(206, 126, 126, 0.12);
  width: 100%;
  margin-top: auto;
}

.pillar-actions .btn {
  width: 100%;
  min-width: 0;
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.value-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.8rem 1.5rem;
}

.value-card.paper-fold-tr {
  padding-right: 2.2rem;
}

.value-card.paper-fold-br {
  padding-right: 2.2rem;
  padding-bottom: 2.2rem;
}

.value-card.paper-fold-bl {
  padding-left: 2.1rem;
  padding-bottom: 2.2rem;
}

.value-index {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(194, 74, 44, 0.55);
}

.value-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

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

.quote {
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: stretch;
  overflow: hidden;
}

.quote-mark {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 7rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.08);
}

.quote-body {
  padding: 2rem 2.2rem;
}

.quote-body p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  line-height: 1.55;
  color: var(--on-dark);
}

.quote-body span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.3rem;
  color: var(--on-dark-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.quote-body span::before {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.2rem;
  align-items: stretch;
}

.contact-cta,
.contact-panel {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-cta {
  padding: 2rem;
}

.contact-cta h3 {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--on-terra);
}

.contact-cta > p {
  margin-top: 1rem;
  color: rgba(255, 248, 242, 0.86);
  max-width: 32rem;
}

.cta-stack {
  margin-top: 1.5rem;
}

.contact-highlights {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-highlights div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-highlights strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.contact-highlights span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.84rem;
  color: rgba(255, 248, 242, 0.72);
}

.contact-panel-head {
  margin-bottom: 1.2rem;
}

.contact-panel-head h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  line-height: 1;
}

.contact-panel-head p {
  margin-top: 0.65rem;
  color: var(--muted);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(194, 74, 44, 0.05);
  color: var(--terra);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.social-links a svg {
  width: 1.1rem;
  height: 1.1rem;
}

.social-links a:hover {
  transform: none;
  border-color: rgba(194, 74, 44, 0.32);
  background: rgba(194, 74, 44, 0.12);
}

.contact-list {
  display: grid;
  gap: 0.85rem;
}

.contact-item {
  display: block;
  padding: 1rem 0;
  border-top: 1px solid rgba(55, 35, 23, 0.08);
}

.contact-label {
  color: var(--terra);
  font-size: 0.6rem;
  font-weight: 800;
}

.contact-value {
  margin-top: 0.18rem;
  color: var(--ink);
  font-size: 0.95rem;
  word-break: break-word;
}

.contact-content {
  min-width: 0;
}

.contact-link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(194, 74, 44, 0.18);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-link:hover {
  color: var(--terra);
  border-color: var(--terra);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.partner-card {
  padding: 1.9rem;
}

.partner-kicker {
  color: var(--terra);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.partner-kicker-light {
  color: rgba(255, 255, 255, 0.6);
}

.partner-card h3 {
  margin-top: 0.8rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.partner-card p:last-of-type {
  margin-top: 0.9rem;
  max-width: 34rem;
  color: inherit;
  opacity: 0.82;
}

.partner-card .cta-row {
  margin-top: 1.4rem;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.3rem;
  padding: 1.5rem 1.8rem;
}

.footer-brand {
  font-size: 1.35rem;
}

.footer-copy {
  text-align: center;
}

.footer-copy span {
  display: block;
  font-style: italic;
  color: var(--muted);
}

.footer-copy small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted-2);
}

.footer-copy a {
  color: var(--terra);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(194, 74, 44, 0.28);
}

.footer-copy a:hover {
  border-color: var(--terra);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

body.js-ready .reveal {
  opacity: 1;
  --reveal-y: 0px;
}

body.js-ready .reveal:not(.tilt-card),
body.js-ready .reveal.tilt-card {
  transform: none;
}

body.js-ready .reveal.is-visible {
  opacity: 1;
  transition: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .contact-grid,
  .about-grid,
  .pillars,
  .partner-grid,
  .values-grid,
  .action-strip {
    grid-template-columns: 1fr;
  }

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

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

  .contact-cta,
  .contact-panel,
  .hero-main,
  .about-body,
  .timeline {
    padding: 1.8rem;
  }

}

@media (max-width: 860px) {
  .wrap {
    width: min(calc(100% - 1.4rem), var(--max-width));
    padding-top: 0.9rem;
  }

  .nav-pill,
  .nav-links {
    display: none;
  }

  .nav-burger {
    display: grid;
  }

  .hero-side {
    gap: 1rem;
  }

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

  .quote {
    grid-template-columns: 1fr;
  }

  .quote-mark {
    display: none;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .paper-fold {
    --fold-size: 72px;
    --fold-flap: calc(var(--fold-size) * 0.68);
  }

  .floating-cta {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    text-align: center;
  }

  .back-top {
    right: 1rem;
    bottom: 5.5rem;
  }

  .nav {
    padding: 0.92rem 1rem;
  }

  .nav-logo {
    font-size: 1.25rem;
  }

  .hero-main,
  .hero-visual,
  .about-body,
  .contact-cta,
  .contact-panel,
  .timeline,
  .pillar,
  .partner-card,
  .value-card,
  .action-card,
  .footer {
    padding: 1.35rem;
  }

  .hero-main.paper-fold-tr,
  .contact-panel.paper-fold-tr {
    padding-right: 1.85rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .btn-textual {
    flex-basis: auto;
  }

  .about-body.paper-fold-br {
    padding-right: 1.9rem;
    padding-bottom: 1.9rem;
  }

  .value-card.paper-fold-tr,
  .value-card.paper-fold-br {
    padding-right: 1.75rem;
  }

  .value-card.paper-fold-br,
  .value-card.paper-fold-bl {
    padding-bottom: 1.85rem;
  }

  .value-card.paper-fold-bl {
    padding-left: 1.75rem;
  }

  .hero-name {
    font-size: 2.75rem;
  }

  .hero-role-line,
  .hero-deck,
  .about-subtitle,
  .contact-panel-head p,
  .action-card p,
  .timeline-item p,
  .pillar-copy,
  .value-card p {
    font-size: 0.94rem;
  }

  .hero-badge,
  .hero-quote-card {
    position: relative;
    inset: auto;
    max-width: none;
    margin-top: 0.9rem;
  }

  .hero-visual {
    min-height: 0;
    display: grid;
    gap: 1rem;
  }

  .hero-letter {
    position: relative;
    inset: auto;
    font-size: 7.5rem;
  }

  .about-columns {
    grid-template-columns: 1fr;
  }

  .contact-highlights {
    grid-template-columns: 1fr;
  }

  .pillar-actions {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

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

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

  body.js-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
