/* =====================================================
   OTAMA CAPITAL — Main Stylesheet
   Faithful port of the prototype design system.
   Edit only with care. Every value is deliberate.
   ===================================================== */

:root {
  --ink: #3A2419;
  --ink-soft: #4A3326;
  --bronze: #9C6B3C;
  --bronze-soft: #B8895C;
  --gilt: #D4A574;
  --canvas: #EFEBE3;
  --parchment: #F8F5ED;
  --stone: #6B6259;
  --stone-soft: #8B827A;
  --pine: #1F2A24;

  --serif: 'Cormorant Garamond', 'Didot', 'Bodoni 72', Georgia, serif;
  --numeral: 'Cinzel', 'Trajan Pro', Georgia, serif;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle paper texture — gives canvas warmth without an image asset */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.227 0 0 0 0 0.141 0 0 0 0 0.098 0 0 0 0.04 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ============ NAVIGATION ============ */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(239, 235, 227, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(58, 36, 25, 0.08);
  transition: padding 0.4s ease;
}
nav.site-nav.scrolled { padding: 16px 48px; }

.nav-mark { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.nav-mark svg { width: 28px; height: 28px; }
.nav-mark .wm {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.32em;
}

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 0.5px;
  background: var(--bronze);
  transition: width 0.4s ease;
}
.nav-links a:hover { color: var(--bronze); }
.nav-links a:hover::after { width: 100%; }
.nav-links li.current-menu-item a,
.nav-links a.active { color: var(--bronze); }
.nav-links li.current-menu-item a::after,
.nav-links a.active::after { width: 100%; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 0.5px;
  background: var(--ink);
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  nav.site-nav { padding: 18px 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--canvas);
    border-bottom: 0.5px solid rgba(58, 36, 25, 0.1);
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-100vh);
    transition: transform 0.4s ease;
  }
  .nav-links.open { transform: translateY(0); }
}

/* ============ SECTION FRAMEWORK ============ */
section { padding: 120px 48px; position: relative; z-index: 2; }
.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 820px; margin: 0 auto; }

.section-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 0.5px;
  background: var(--bronze);
}

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5.5vw, 64px);
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 40px;
  max-width: 820px;
}
.section-title em { font-style: italic; color: var(--bronze); }

/* ============ PAGE HEADER ============ */
.page-header {
  padding: 200px 48px 80px;
  background: var(--parchment);
  text-align: center;
  position: relative;
  z-index: 2;
}
.page-header .label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 24px;
}
.page-header h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 72px);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.page-header h1 em { font-style: italic; color: var(--bronze); }
.page-header .lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 300;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============ SHARED COMPONENTS ============ */
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 48px 0;
}
.divider-ornament .line { width: 60px; height: 0.5px; background: var(--bronze); }
.divider-ornament .dot { width: 4px; height: 4px; background: var(--bronze); border-radius: 50%; }

.cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 18px 48px;
  border: 0.5px solid var(--ink);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
  cursor: pointer;
  background: transparent;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.cta:hover { color: var(--canvas); }
.cta:hover::before { transform: translateY(0); }

.cta-light { color: var(--canvas); border-color: var(--canvas); }
.cta-light::before { background: var(--canvas); }
.cta-light:hover { color: var(--ink); }

/* ============ HERO (Front Page) ============ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  text-align: center;
  z-index: 2;
}
.hero-mark { margin-bottom: 56px; opacity: 0; animation: fadeUp 1.6s 0.2s ease forwards; }
.hero-mark svg { width: 180px; height: 180px; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 0.32em;
  color: var(--ink);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1.6s 0.5s ease forwards;
}
.hero-divider {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 24px; opacity: 0;
  animation: fadeUp 1.6s 0.8s ease forwards;
}
.hero-divider .line { width: 60px; height: 0.5px; background: var(--bronze); }
.hero-divider .dot { width: 4px; height: 4px; background: var(--bronze); border-radius: 50%; }
.hero-sub {
  font-family: var(--sans); font-size: 11px; font-weight: 300;
  letter-spacing: 0.42em; text-transform: uppercase;
  margin-bottom: 64px; opacity: 0;
  animation: fadeUp 1.6s 1.0s ease forwards;
}
.hero-tagline {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(18px, 2.5vw, 24px); color: var(--ink-soft);
  max-width: 600px; line-height: 1.5; opacity: 0;
  animation: fadeUp 1.6s 1.3s ease forwards;
}
.hero-date {
  position: absolute; bottom: 48px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--numeral);
  font-size: 10px; letter-spacing: 0.3em; color: var(--bronze);
  opacity: 0; animation: fadeUp 1.6s 1.6s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ ORIGIN SECTION ============ */
.origin { background: var(--parchment); }
.origin-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 96px; align-items: start;
}
.origin-aside { position: sticky; top: 140px; }
.origin-date {
  font-family: var(--serif); font-size: 88px; font-weight: 300;
  line-height: 0.95; color: var(--ink); margin-bottom: 16px;
}
.origin-date .month {
  display: block; font-style: italic; color: var(--bronze);
  font-size: 32px; letter-spacing: 0.08em; margin-bottom: 8px;
}
.origin-numerals {
  font-family: var(--numeral); font-size: 11px;
  letter-spacing: 0.3em; color: var(--bronze);
  margin-top: 24px; padding-top: 24px;
  border-top: 0.5px solid rgba(156, 107, 60, 0.3);
}
.origin-numerals .yr {
  display: flex; justify-content: space-between;
  margin-bottom: 8px; font-size: 10px; color: var(--stone);
}
.origin-numerals .yr span:last-child {
  color: var(--ink); letter-spacing: 0.12em;
}
.origin-prose p {
  font-family: var(--serif); font-size: 19px; font-weight: 300;
  line-height: 1.7; color: var(--ink); margin-bottom: 24px;
}
.origin-prose p:first-child::first-letter {
  font-family: var(--serif); font-size: 64px; font-weight: 400;
  float: left; line-height: 0.9; margin: 6px 12px 0 0;
  color: var(--bronze); font-style: italic;
}
.origin-prose .pull,
.origin-prose blockquote {
  font-style: italic; font-size: 22px; color: var(--bronze);
  border-left: 0.5px solid var(--bronze);
  padding-left: 24px; margin: 32px 0;
  font-family: var(--serif); font-weight: 300;
}
.origin-prose blockquote p { color: var(--bronze); margin-bottom: 0; }
@media (max-width: 900px) {
  .origin-grid { grid-template-columns: 1fr; gap: 48px; }
  .origin-aside { position: static; }
  .origin-date { font-size: 64px; }
}

/* ============ PHILOSOPHY ============ */
.philosophy { background: var(--canvas); }
.philosophy-intro { max-width: 720px; margin-bottom: 96px; }
.philosophy-intro p {
  font-family: var(--serif); font-size: 22px; font-weight: 300;
  line-height: 1.6; color: var(--ink-soft); font-style: italic;
}
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  border-top: 0.5px solid rgba(58, 36, 25, 0.15);
  padding-top: 64px;
}
.pillar-number {
  font-family: var(--numeral); font-size: 12px;
  letter-spacing: 0.3em; color: var(--bronze); margin-bottom: 24px;
}
.pillar-title {
  font-family: var(--serif); font-size: 32px; font-weight: 400;
  line-height: 1.2; color: var(--ink);
  margin-bottom: 20px; letter-spacing: 0.01em;
}
.pillar-title em { font-style: italic; color: var(--bronze); }
.pillar-body {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  line-height: 1.75; color: var(--ink-soft);
}
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; gap: 48px; } }

/* Philosophy detail (full page) */
.philosophy-detail { background: var(--canvas); padding: 80px 48px 140px; }
.pillar-detail {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 96px; padding: 80px 0;
  border-top: 0.5px solid rgba(58, 36, 25, 0.15);
}
.pillar-detail:last-child { border-bottom: 0.5px solid rgba(58, 36, 25, 0.15); }
.pillar-detail-numeral {
  font-family: var(--numeral); font-size: 14px;
  letter-spacing: 0.3em; color: var(--bronze); margin-bottom: 16px;
}
.pillar-detail-title {
  font-family: var(--serif); font-size: 56px; font-weight: 300;
  line-height: 1.05; letter-spacing: 0.02em;
}
.pillar-detail-title em { font-style: italic; color: var(--bronze); }
.pillar-detail-prose p {
  font-family: var(--serif); font-size: 18px; font-weight: 300;
  line-height: 1.75; color: var(--ink); margin-bottom: 20px;
}
.pillar-detail-prose .pull,
.pillar-detail-prose blockquote {
  font-style: italic; font-size: 20px; color: var(--bronze);
  border-left: 0.5px solid var(--bronze);
  padding-left: 24px; margin: 28px 0;
  font-family: var(--serif);
}
@media (max-width: 900px) {
  .pillar-detail { grid-template-columns: 1fr; gap: 24px; padding: 56px 0; }
  .pillar-detail-title { font-size: 36px; }
}

/* ============ STRATEGY ============ */
.strategy-preview { background: var(--ink); color: var(--canvas); }
.strategy-preview .section-label { color: var(--gilt); }
.strategy-preview .section-label::before { background: var(--gilt); }
.strategy-preview .section-title { color: var(--canvas); }
.strategy-preview .section-title em { color: var(--gilt); }
.strategy-preview-prose {
  font-family: var(--serif); font-size: 20px; font-weight: 300;
  line-height: 1.7; color: rgba(239, 235, 227, 0.85);
  font-style: italic; max-width: 720px; margin-bottom: 56px;
}

/* Strategy full page */
.strategy-detail { background: var(--canvas); padding: 80px 48px 0; }
.strategy-channel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 96px;
  padding: 80px 0;
  border-top: 0.5px solid rgba(58, 36, 25, 0.15);
  align-items: start;
}
.channel-tag {
  font-family: var(--numeral); font-size: 11px;
  letter-spacing: 0.3em; color: var(--bronze); margin-bottom: 16px;
}
.channel-title {
  font-family: var(--serif); font-size: 48px; font-weight: 300;
  line-height: 1.05; letter-spacing: 0.02em; margin-bottom: 24px;
}
.channel-title em { font-style: italic; color: var(--bronze); }
.channel-prose p {
  font-family: var(--serif); font-size: 18px; font-weight: 300;
  line-height: 1.7; color: var(--ink); margin-bottom: 18px;
}
.channel-prose a { color: var(--bronze); border-bottom: 0.5px solid var(--bronze); padding-bottom: 2px; }
@media (max-width: 900px) {
  .strategy-channel { grid-template-columns: 1fr; gap: 24px; padding: 56px 0; }
  .channel-title { font-size: 36px; }
}

.allocation-section { background: var(--ink); color: var(--canvas); padding: 120px 48px; }
.allocation-section .section-label { color: var(--gilt); }
.allocation-section .section-label::before { background: var(--gilt); }
.allocation-section .section-title { color: var(--canvas); }
.allocation-section .section-title em { color: var(--gilt); }
.allocation-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 48px;
  border-top: 0.5px solid rgba(212, 165, 116, 0.2);
}
.allocation-item {
  padding: 40px 24px;
  border-bottom: 0.5px solid rgba(212, 165, 116, 0.2);
  border-right: 0.5px solid rgba(212, 165, 116, 0.2);
}
.allocation-item:nth-child(4n) { border-right: none; }
.allocation-numeral {
  font-family: var(--numeral); font-size: 11px;
  letter-spacing: 0.3em; color: var(--gilt); margin-bottom: 16px;
}
.allocation-name {
  font-family: var(--serif); font-size: 24px; font-weight: 400;
  color: var(--canvas); margin-bottom: 12px;
}
.allocation-desc {
  font-family: var(--sans); font-size: 13px; font-weight: 300;
  line-height: 1.7; color: rgba(239, 235, 227, 0.7);
}
@media (max-width: 900px) {
  .allocation-grid { grid-template-columns: 1fr; }
  .allocation-item { border-right: none; }
}

/* ============ PORTFOLIO ============ */
.access-section { background: var(--ink); color: var(--canvas); }
.access-section .section-label { color: var(--gilt); }
.access-section .section-label::before { background: var(--gilt); }
.access-section .section-title { color: var(--canvas); }
.access-section .section-title em { color: var(--gilt); }

.access-panel {
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px;
  padding: 64px 0;
  border-top: 0.5px solid rgba(212, 165, 116, 0.25);
  border-bottom: 0.5px solid rgba(212, 165, 116, 0.25);
  align-items: start; margin-top: 32px;
}
.access-tag {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gilt); margin-bottom: 16px;
}
.access-name {
  font-family: var(--serif); font-size: clamp(48px, 6vw, 72px);
  font-weight: 300; letter-spacing: 0.02em;
  color: var(--canvas); line-height: 1; margin-bottom: 24px;
}
.access-byline {
  font-family: var(--serif); font-style: italic; font-size: 16px;
  color: var(--gilt); letter-spacing: 0.04em;
}
.access-desc {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  line-height: 1.85; color: rgba(239, 235, 227, 0.78);
}
.access-desc p { margin-bottom: 18px; }
.access-funds {
  margin-top: 32px; padding-top: 32px;
  border-top: 0.5px solid rgba(212, 165, 116, 0.2);
}
.access-funds-label {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gilt); margin-bottom: 16px;
}
.access-funds-list {
  font-family: var(--serif); font-size: 17px; font-style: italic;
  color: var(--canvas); line-height: 1.9;
}
.access-funds-list span { color: var(--gilt); margin: 0 8px; }
@media (max-width: 900px) {
  .access-panel { grid-template-columns: 1fr; gap: 32px; padding: 48px 0; }
}

/* Spotlight rotating section */
.spotlight-section { background: var(--parchment); }
.spotlight-frame {
  position: relative; margin-top: 48px;
  background: var(--canvas);
  border: 0.5px solid rgba(58, 36, 25, 0.12);
  padding: 64px;
  min-height: 480px;
  overflow: hidden;
}
.spotlight-slide {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: center;
  opacity: 0; transition: opacity 1.2s ease;
  position: absolute;
  top: 64px; left: 64px; right: 64px; bottom: 64px;
}
.spotlight-slide.active {
  opacity: 1; position: relative;
  top: auto; left: auto; right: auto; bottom: auto;
}
.spotlight-image {
  background: var(--ink);
  aspect-ratio: 4/5;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.spotlight-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.spotlight-image-mono {
  font-family: var(--serif); font-size: 96px;
  color: var(--gilt); font-style: italic; font-weight: 300;
  letter-spacing: 0.05em;
}
.spotlight-content { padding: 16px 0; }
.spotlight-cat {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 16px;
}
.spotlight-name {
  font-family: var(--serif); font-size: 56px; font-weight: 300;
  letter-spacing: 0.02em; color: var(--ink);
  margin-bottom: 16px; line-height: 1;
}
.spotlight-tag {
  font-family: var(--serif); font-style: italic; font-size: 17px;
  color: var(--bronze); margin-bottom: 32px;
}
.spotlight-prose {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  line-height: 1.8; color: var(--ink-soft); margin-bottom: 32px;
  max-width: 460px;
}
.spotlight-link {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink); border-bottom: 0.5px solid var(--bronze);
  padding-bottom: 4px; transition: color 0.3s ease;
  display: inline-block;
}
.spotlight-link:hover { color: var(--bronze); }
.spotlight-controls {
  display: flex; gap: 8px;
  margin-top: 32px; justify-content: center;
}
.spotlight-dot {
  width: 24px; height: 1px; background: rgba(58,36,25,0.25);
  cursor: pointer; transition: background 0.3s ease;
  border: none; padding: 0;
}
.spotlight-dot.active { background: var(--bronze); height: 1.5px; }
@media (max-width: 900px) {
  .spotlight-frame { padding: 32px; }
  .spotlight-slide {
    grid-template-columns: 1fr; gap: 32px;
    top: 32px; left: 32px; right: 32px; bottom: 32px;
  }
  .spotlight-name { font-size: 40px; }
  .spotlight-image-mono { font-size: 64px; }
}

/* Holdings full grid */
.holdings-section { background: var(--canvas); }
.holdings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 0.5px solid rgba(58, 36, 25, 0.15);
  margin-top: 48px;
}
.holding {
  padding: 40px 32px;
  border-bottom: 0.5px solid rgba(58, 36, 25, 0.15);
  border-right: 0.5px solid rgba(58, 36, 25, 0.15);
  transition: background 0.5s ease;
  display: block; position: relative;
}
.holding:nth-child(3n) { border-right: none; }
.holding:hover { background: var(--parchment); }
.holding-cat {
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 16px;
}
.holding-name {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: var(--ink); margin-bottom: 12px; letter-spacing: 0.02em;
  line-height: 1.1;
}
.holding-tag {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--ink-soft); margin-bottom: 24px; line-height: 1.5;
}
.holding-status {
  font-family: var(--numeral); font-size: 9px; letter-spacing: 0.3em;
  color: var(--stone); padding-top: 16px;
  border-top: 0.5px solid rgba(58, 36, 25, 0.1);
}
.holding-arrow {
  position: absolute; top: 40px; right: 32px;
  font-family: var(--serif); font-size: 24px; color: var(--bronze);
  opacity: 0; transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateX(-8px);
}
.holding:hover .holding-arrow { opacity: 1; transform: translateX(0); }
@media (max-width: 900px) {
  .holdings-grid { grid-template-columns: 1fr; }
  .holding { border-right: none; }
}

.disclosure {
  background: var(--ink); color: rgba(239, 235, 227, 0.7);
  padding: 80px 48px; text-align: center;
}
.disclosure p {
  font-family: var(--serif); font-style: italic; font-size: 16px;
  font-weight: 300; max-width: 720px; margin: 0 auto;
  line-height: 1.8;
}

/* ============ SINGLE INVESTMENT ============ */
.invest-hero {
  background: var(--ink); color: var(--canvas);
  padding: 200px 48px 100px;
}
.invest-hero-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 96px; align-items: center;
}
.invest-hero-content .label {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gilt); margin-bottom: 24px;
}
.invest-hero-content h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(56px, 8vw, 96px);
  letter-spacing: 0.02em;
  line-height: 0.95; margin-bottom: 24px;
}
.invest-hero-content .tagline {
  font-family: var(--serif); font-style: italic; font-size: 22px;
  color: var(--gilt); line-height: 1.5; margin-bottom: 40px;
}
.invest-hero-content .meta {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 48px; padding-top: 32px;
  border-top: 0.5px solid rgba(212, 165, 116, 0.25);
}
.meta-item .meta-label {
  font-family: var(--sans); font-size: 9px; font-weight: 300;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gilt); margin-bottom: 8px;
}
.meta-item .meta-value {
  font-family: var(--serif); font-size: 18px; color: var(--canvas);
}
.invest-hero-image {
  aspect-ratio: 4/5; background: var(--pine);
  border: 0.5px solid rgba(212, 165, 116, 0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 200px; font-style: italic;
  color: var(--gilt); line-height: 1; font-weight: 300;
  overflow: hidden;
}
.invest-hero-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .invest-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .invest-hero-content .meta { grid-template-columns: 1fr; gap: 24px; }
}

.thesis-section { background: var(--parchment); padding: 120px 48px; }
.thesis-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 96px; align-items: start;
}
.thesis-prose p {
  font-family: var(--serif); font-size: 19px; font-weight: 300;
  line-height: 1.7; color: var(--ink); margin-bottom: 24px;
}
.thesis-prose blockquote,
.thesis-prose .pull {
  font-style: italic; font-size: 22px; color: var(--bronze);
  border-left: 0.5px solid var(--bronze);
  padding-left: 24px; margin: 32px 0; font-family: var(--serif);
}
@media (max-width: 900px) { .thesis-grid { grid-template-columns: 1fr; gap: 32px; } }

.updates-section { background: var(--canvas); padding: 120px 48px; }
.update-entry {
  display: grid; grid-template-columns: 160px 1fr;
  gap: 48px; padding: 40px 0;
  border-top: 0.5px solid rgba(58, 36, 25, 0.15);
}
.update-entry:last-child { border-bottom: 0.5px solid rgba(58, 36, 25, 0.15); }
.update-date {
  font-family: var(--numeral); font-size: 11px;
  letter-spacing: 0.3em; color: var(--bronze);
}
.update-title {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--ink); margin-bottom: 12px; letter-spacing: 0.02em;
}
.update-body {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  line-height: 1.8; color: var(--ink-soft); max-width: 640px;
}
@media (max-width: 900px) {
  .update-entry { grid-template-columns: 1fr; gap: 12px; }
}

.back-link {
  background: var(--ink); padding: 64px 48px; text-align: center;
}
.back-link a {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gilt);
  border-bottom: 0.5px solid var(--gilt);
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.back-link a:hover { color: var(--canvas); }

/* ============ PRINCIPAL ============ */
.principal-hero { background: var(--parchment); padding: 200px 48px 120px; }
.principal-hero-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 96px; align-items: center;
}
.portrait-frame {
  aspect-ratio: 4/5;
  background: var(--ink);
  position: relative; overflow: hidden;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; }
.portrait-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic;
  color: var(--gilt); font-size: 16px; letter-spacing: 0.04em;
}
.portrait-placeholder::before {
  content: ''; position: absolute;
  top: 24px; left: 24px; right: 24px; bottom: 24px;
  border: 0.5px solid rgba(212, 165, 116, 0.3);
}
.principal-intro .label {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 24px;
}
.principal-intro h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(48px, 6vw, 80px); letter-spacing: 0.02em;
  line-height: 1.05; margin-bottom: 24px;
}
.principal-intro h1 em { font-style: italic; color: var(--bronze); }
.principal-intro .role {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--ink-soft); margin-bottom: 32px;
}
.principal-intro .lede {
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  line-height: 1.85; color: var(--ink-soft); max-width: 540px;
}
@media (max-width: 900px) {
  .principal-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .portrait-frame { max-width: 360px; margin: 0 auto; width: 100%; }
}

.chapters { background: var(--canvas); }
.chapter {
  display: grid; grid-template-columns: 200px 1fr;
  gap: 64px; padding: 64px 0;
  border-top: 0.5px solid rgba(58, 36, 25, 0.15);
}
.chapter:last-child { border-bottom: 0.5px solid rgba(58, 36, 25, 0.15); }
.chapter-period {
  font-family: var(--numeral); font-size: 11px;
  letter-spacing: 0.3em; color: var(--bronze); padding-top: 6px;
}
.chapter-title {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  line-height: 1.15; color: var(--ink);
  margin-bottom: 16px; letter-spacing: 0.02em;
}
.chapter-title em { font-style: italic; color: var(--bronze); }
.chapter-role {
  font-family: var(--serif); font-style: italic; font-size: 16px;
  color: var(--ink-soft); margin-bottom: 24px;
}
.chapter-prose {
  font-family: var(--sans); font-size: 14px; font-weight: 300;
  line-height: 1.85; color: var(--ink-soft); max-width: 640px;
}
.chapter-prose p { margin-bottom: 16px; }
@media (max-width: 900px) {
  .chapter { grid-template-columns: 1fr; gap: 16px; padding: 48px 0; }
  .chapter-title { font-size: 28px; }
}

.why-section { background: var(--ink); color: var(--canvas); padding: 140px 48px; }
.why-section .section-label { color: var(--gilt); }
.why-section .section-label::before { background: var(--gilt); }
.why-section .section-title { color: var(--canvas); }
.why-section .section-title em { color: var(--gilt); }
.why-prose {
  font-family: var(--serif); font-size: 21px; font-weight: 300;
  line-height: 1.7; color: rgba(239, 235, 227, 0.9); max-width: 720px;
}
.why-prose p { margin-bottom: 24px; }
.why-prose p:first-child::first-letter {
  font-family: var(--serif); font-size: 72px; font-weight: 400;
  float: left; line-height: 0.9; margin: 6px 12px 0 0;
  color: var(--gilt); font-style: italic;
}
.why-signature {
  margin-top: 56px; padding-top: 32px;
  border-top: 0.5px solid rgba(212, 165, 116, 0.25); max-width: 720px;
}
.why-signature .name {
  font-family: var(--serif); font-style: italic;
  font-size: 22px; color: var(--gilt);
}
.why-signature .title {
  font-family: var(--sans); font-size: 11px; font-weight: 300;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(239, 235, 227, 0.6); margin-top: 8px;
}

.affiliations { background: var(--parchment); padding: 120px 48px; }
.affiliations-grid {
  max-width: 1200px; margin: 48px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 0.5px solid rgba(58, 36, 25, 0.15);
}
.affiliation {
  padding: 32px 24px;
  border-bottom: 0.5px solid rgba(58, 36, 25, 0.15);
  border-right: 0.5px solid rgba(58, 36, 25, 0.15);
  text-align: center;
}
.affiliation:nth-child(4n) { border-right: none; }
.affiliation-name {
  font-family: var(--serif); font-size: 18px; font-weight: 400;
  color: var(--ink); margin-bottom: 8px; letter-spacing: 0.02em;
}
.affiliation-role {
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--bronze);
}
@media (max-width: 900px) {
  .affiliations-grid { grid-template-columns: repeat(2, 1fr); }
  .affiliation:nth-child(4n) { border-right: 0.5px solid rgba(58, 36, 25, 0.15); }
  .affiliation:nth-child(2n) { border-right: none; }
}

/* ============ LETTERS ============ */
.letters-list { background: var(--canvas); padding: 80px 48px 140px; }
.letter-entry {
  display: grid; grid-template-columns: 180px 1fr auto;
  gap: 48px; padding: 48px 0;
  border-top: 0.5px solid rgba(58, 36, 25, 0.15);
  align-items: center; transition: background 0.4s ease;
  text-decoration: none; color: inherit;
}
.letter-entry:last-child { border-bottom: 0.5px solid rgba(58, 36, 25, 0.15); }
.letter-entry:hover { background: var(--parchment); padding-left: 16px; padding-right: 16px; }
.letter-date {
  font-family: var(--numeral); font-size: 11px;
  letter-spacing: 0.3em; color: var(--bronze);
}
.letter-title {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: var(--ink); margin-bottom: 6px; letter-spacing: 0.02em;
  line-height: 1.2;
}
.letter-title em { font-style: italic; color: var(--bronze); }
.letter-tag {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--ink-soft);
}
.letter-arrow {
  font-family: var(--serif); font-size: 32px;
  color: var(--bronze); transition: transform 0.4s ease;
}
.letter-entry:hover .letter-arrow { transform: translateX(8px); }
.letters-empty {
  font-family: var(--serif); font-style: italic; font-size: 16px;
  color: var(--stone); text-align: center; padding: 80px 0;
}
@media (max-width: 900px) {
  .letter-entry { grid-template-columns: 1fr; gap: 12px; }
  .letter-arrow { display: none; }
}

/* Single letter page */
.letter-page { background: var(--parchment); padding: 200px 48px 140px; }
.letter-frame { max-width: 720px; margin: 0 auto; }
.letter-meta {
  display: flex; justify-content: space-between;
  align-items: center; padding-bottom: 32px;
  border-bottom: 0.5px solid rgba(58, 36, 25, 0.15);
  margin-bottom: 64px;
  font-family: var(--numeral); font-size: 10px;
  letter-spacing: 0.3em; color: var(--bronze);
}
.letter-frame h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(40px, 5vw, 56px); line-height: 1.15;
  letter-spacing: 0.02em; margin-bottom: 16px;
}
.letter-frame h1 em { font-style: italic; color: var(--bronze); }
.letter-frame .subtitle {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; color: var(--ink-soft); margin-bottom: 64px;
}
.letter-body p {
  font-family: var(--serif); font-size: 19px; font-weight: 300;
  line-height: 1.75; color: var(--ink); margin-bottom: 24px;
}
.letter-body p:first-child::first-letter {
  font-family: var(--serif); font-size: 80px; font-weight: 400;
  float: left; line-height: 0.9; margin: 8px 14px 0 0;
  color: var(--bronze); font-style: italic;
}
.letter-body blockquote,
.letter-body .pull {
  font-style: italic; font-size: 22px; color: var(--bronze);
  border-left: 0.5px solid var(--bronze);
  padding-left: 28px; margin: 40px 0; font-family: var(--serif);
}
.letter-signature {
  margin-top: 64px; padding-top: 48px;
  border-top: 0.5px solid rgba(58, 36, 25, 0.15);
}
.signature-name {
  font-family: var(--serif); font-style: italic;
  font-size: 24px; color: var(--ink); margin-bottom: 8px;
}
.signature-title {
  font-family: var(--sans); font-size: 11px; font-weight: 300;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--bronze);
}
.letter-back { text-align: center; margin-top: 80px; }
.letter-back a {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--ink); border-bottom: 0.5px solid var(--bronze);
  padding-bottom: 4px;
}

/* ============ CONTACT ============ */
.contact-main { background: var(--canvas); padding: 60px 48px 140px; }
.contact-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: start;
}
.contact-direct {
  border-right: 0.5px solid rgba(58, 36, 25, 0.15);
  padding-right: 64px;
}
.contact-block {
  margin-bottom: 48px; padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(58, 36, 25, 0.1);
}
.contact-block:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.contact-block-label {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 16px;
}
.contact-block-value {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--ink); margin-bottom: 8px; letter-spacing: 0.02em;
}
.contact-block-value a {
  color: var(--ink);
  border-bottom: 0.5px solid var(--bronze);
  padding-bottom: 2px;
}
.contact-block-value a:hover { color: var(--bronze); }
.contact-block-note {
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--ink-soft);
}

/* Form */
.register-form .form-intro {
  font-family: var(--serif); font-style: italic; font-size: 16px;
  color: var(--ink-soft); line-height: 1.6;
  margin-bottom: 40px; max-width: 480px;
}
.form-row { margin-bottom: 28px; }
.form-row label {
  display: block; font-family: var(--sans); font-size: 10px;
  font-weight: 400; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 10px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  background: transparent; border: none;
  border-bottom: 0.5px solid rgba(58, 36, 25, 0.3);
  padding: 8px 0 12px; color: var(--ink);
  transition: border-color 0.3s ease;
  outline: none; border-radius: 0;
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  border-bottom-color: var(--bronze);
}
.form-row textarea {
  resize: vertical; min-height: 80px;
  font-family: var(--serif); font-size: 16px;
  font-style: italic; line-height: 1.6;
}
.form-success {
  display: none; padding: 32px 0;
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: var(--bronze);
  border-top: 0.5px solid var(--bronze);
  border-bottom: 0.5px solid var(--bronze);
  margin-top: 24px;
}
.form-success.shown { display: block; }
.form-error {
  display: none; padding: 16px;
  font-family: var(--sans); font-size: 13px;
  color: #8B2D2D; background: rgba(139, 45, 45, 0.05);
  border: 0.5px solid rgba(139, 45, 45, 0.3);
  margin-top: 24px;
}
.form-error.shown { display: block; }
/* ─── WPForms — OTAMA theme overrides ───────────────────────
   Scoped to .register-form so overrides don't bleed elsewhere.
   No per-field CSS classes needed in the WPForms builder.
   ─────────────────────────────────────────────────────────── */

/* Strip WPForms default chrome */
.register-form .wpforms-form { margin: 0; }
.register-form .wpforms-field-container { padding: 0; }

/* Field rows — match .form-row spacing */
.register-form .wpforms-field {
  margin-bottom: 28px;
  padding: 0;
}

/* Labels — match .form-row label */
.register-form .wpforms-field-label {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 10px;
}

/* Hide the WPForms required asterisk — implied by the design */
.register-form .wpforms-required-label { display: none; }

/* Inputs, textareas, selects — match .form-row inputs */
.register-form .wpforms-field input:not([type="submit"]),
.register-form .wpforms-field textarea,
.register-form .wpforms-field select {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid rgba(58, 36, 25, 0.3);
  border-radius: 0;
  padding: 8px 0 12px;
  color: var(--ink);
  box-shadow: none;
  outline: none;
  transition: border-color 0.3s ease;
}

.register-form .wpforms-field input:focus:not([type="submit"]),
.register-form .wpforms-field textarea:focus,
.register-form .wpforms-field select:focus {
  border-bottom-color: var(--bronze);
  box-shadow: none;
  outline: none;
}

/* Textarea — match .form-row textarea */
.register-form .wpforms-field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
}

/* Submit button — match .cta */
.register-form .wpforms-submit-container { padding: 0; margin-top: 8px; }
.register-form .wpforms-submit {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 18px 48px;
  border: 0.5px solid var(--ink);
  border-radius: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease;
  cursor: pointer;
}
.register-form .wpforms-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.register-form .wpforms-submit:hover { color: var(--canvas); }
.register-form .wpforms-submit:hover::before { transform: translateY(0); }

/* Success message — match .form-success */
.register-form .wpforms-confirmation-container-full,
.register-form .wpforms-confirmation-scroll {
  padding: 32px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--bronze);
  border-top: 0.5px solid var(--bronze);
  border-bottom: 0.5px solid var(--bronze);
  margin-top: 24px;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

/* Validation errors — match .form-error */
.register-form .wpforms-error-container,
.register-form label.wpforms-error {
  font-family: var(--sans);
  font-size: 13px;
  color: #8B2D2D;
  background: rgba(139, 45, 45, 0.05);
  border: 0.5px solid rgba(139, 45, 45, 0.3);
  padding: 4px 0;
  margin-top: 6px;
  border-radius: 0;
  box-shadow: none;
}

/* ─── End WPForms overrides ────────────────────────────────── */

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 64px; }
  .contact-direct {
    border-right: none; padding-right: 0;
    padding-bottom: 64px;
    border-bottom: 0.5px solid rgba(58, 36, 25, 0.15);
  }
}

.contact-preview {
  background: var(--parchment); text-align: center; padding: 140px 48px;
}
.contact-preview-mark { margin-bottom: 48px; display: flex; justify-content: center; }
.contact-preview-mark svg { width: 56px; height: 56px; }
.contact-preview h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 5vw, 52px); line-height: 1.2;
  margin-bottom: 24px; letter-spacing: 0.02em;
}
.contact-preview h2 em { font-style: italic; color: var(--bronze); }
.contact-preview-prose {
  font-family: var(--serif); font-style: italic;
  font-size: 18px; font-weight: 300; color: var(--ink-soft);
  max-width: 540px; margin: 0 auto 48px; line-height: 1.7;
}

/* ============ FOOTER ============ */
footer.site-footer {
  background: var(--ink);
  color: rgba(239, 235, 227, 0.6);
  padding: 64px 48px 40px;
  position: relative; z-index: 2;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 0.5px solid rgba(212, 165, 116, 0.2);
}
.footer-mark { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-mark svg { width: 32px; height: 32px; }
.footer-mark .wm {
  font-family: var(--serif);
  font-size: 18px; letter-spacing: 0.32em;
  color: var(--canvas);
}
.footer-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: 14px; line-height: 1.6;
  color: rgba(239, 235, 227, 0.5);
}
.footer-col h4 {
  font-family: var(--sans); font-size: 10px; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gilt); margin-bottom: 20px;
}
.footer-col p, .footer-col a {
  font-family: var(--sans); font-size: 12px; font-weight: 300;
  line-height: 1.9; color: rgba(239, 235, 227, 0.6);
  display: block;
}
.footer-col a:hover { color: var(--gilt); }
.footer-bottom {
  max-width: 1200px; margin: 32px auto 0;
  display: flex; justify-content: space-between;
  align-items: center;
  font-family: var(--numeral); font-size: 9px;
  letter-spacing: 0.28em;
  color: rgba(212, 165, 116, 0.5);
}
.footer-legal {
  display: flex; align-items: center; gap: 10px;
}
.footer-legal a {
  font-family: var(--numeral); font-size: 9px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(212, 165, 116, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-legal a:hover { color: rgba(212, 165, 116, 0.9); }
.footer-legal-sep { color: rgba(212, 165, 116, 0.3); }
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ WP CORE COMPATIBILITY ============ */
/* WordPress alignment classes — keep editor content aligned correctly */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption-text {
  font-family: var(--serif); font-style: italic; font-size: 13px;
  color: var(--stone); margin-top: 8px; text-align: center;
}
.screen-reader-text {
  position: absolute; clip: rect(1px, 1px, 1px, 1px);
  width: 1px; height: 1px; overflow: hidden;
}
