:root {
  --forest: #1b3022;
  --forest-soft: #2d4737;
  --gold: #c5a059;
  --gold-soft: #dcc08d;
  --cream: #f9f9f7;
  --cream-deep: #f1eee7;
  --charcoal: #2e2e2e;
  --muted: #6d675e;
  --line: rgba(27, 48, 34, 0.12);
  --line-strong: rgba(27, 48, 34, 0.2);
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(20, 26, 21, 0.08);
  --shadow-soft: 0 18px 38px rgba(20, 26, 21, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top right, rgba(197, 160, 89, 0.12), transparent 22%),
    radial-gradient(circle at left center, rgba(27, 48, 34, 0.05), transparent 26%),
    linear-gradient(180deg, #fcfbf7 0%, #f8f5ee 100%);
}

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

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.luxury-main {
  position: relative;
  overflow: hidden;
}

.news-ribbon {
  position: relative;
  z-index: 4;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(90deg, #14251b 0%, #203629 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.news-ribbon-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 44px;
}

.news-ribbon-label {
  flex: 0 0 auto;
  padding: 0.85rem 1rem;
  background: rgba(197, 160, 89, 0.18);
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-ribbon-track {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
}

.news-ribbon-items {
  display: inline-flex;
  gap: 2rem;
  padding-left: 1rem;
  animation: ticker 40s linear infinite;
}

.news-ribbon-items span {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}

.news-ribbon-items span::after {
  content: "";
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  margin-left: 2rem;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.65);
  vertical-align: middle;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0.9rem 0;
  background: rgba(249, 249, 247, 0.55);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(27, 48, 34, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 14px 34px rgba(20, 26, 21, 0.06);
}

.brand-lockup {
  display: flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: min(260px, 44vw);
  height: auto;
}

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

.nav-links a {
  position: relative;
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-links a:not(.cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:not(.cta):hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(27, 48, 34, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.72rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--forest);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn {
  border: 0;
  cursor: pointer;
}

.btn:hover,
.cta:hover {
  transform: translateY(-1px);
}

.btn-primary,
.cta {
  background: linear-gradient(135deg, var(--gold), #b98d42);
  color: #1f1a10;
  box-shadow: 0 16px 34px rgba(197, 160, 89, 0.24);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: transparent;
  color: var(--white);
}

.section,
.hero-section {
  padding: 5.5rem 0;
}

.section-surface {
  background: linear-gradient(180deg, rgba(245, 241, 232, 0.9), rgba(250, 248, 243, 0.96));
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: currentColor;
}

.section-heading h2,
.hero-copy h1,
.founder-copy h2,
.contact-story h2,
.map-copy h2 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--forest);
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
}

.section-heading p,
.hero-copy p,
.founder-copy p,
.contact-story p,
.card p,
.map-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.narrow-heading {
  max-width: 49rem;
}

.hero-section {
  position: relative;
  padding-top: 4.3rem;
  background:
    linear-gradient(135deg, rgba(18, 30, 22, 0.96), rgba(34, 51, 41, 0.88)),
    radial-gradient(circle at 78% 18%, rgba(197, 160, 89, 0.18), transparent 22%);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.92);
  padding: 1rem 0;
}

.hero-copy .section-kicker {
  color: var(--gold-soft);
}

.hero-copy h1 {
  max-width: 8.5ch;
  font-size: clamp(3.4rem, 8vw, 5.8rem);
  color: var(--white);
  line-height: 0.96;
}

.hero-lead {
  max-width: 41rem;
  margin: 0 0 1rem;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-support {
  max-width: 40rem;
  margin: 0 0 1.8rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-trust-points span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.hero-visual-card {
  min-width: 0;
}

.hero-visual-stage {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 245, 238, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: 0 28px 60px rgba(8, 12, 9, 0.25);
}

.hero-team-scene {
  display: grid;
  gap: 1rem;
}

.team-portrait {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.95), transparent 38%),
    linear-gradient(180deg, #efe6d7 0%, #d9d0c2 38%, #b5b09f 100%);
}

.hero-growth-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--forest);
}

.portrait-figure {
  position: absolute;
  bottom: 0;
  width: 37%;
  border-radius: 44% 44% 10% 10%;
  background: linear-gradient(180deg, #233427 0%, #152219 100%);
  box-shadow: inset 0 16px 28px rgba(255, 255, 255, 0.08);
}

.figure-left {
  left: 16%;
  height: 72%;
}

.figure-right {
  right: 14%;
  width: 34%;
  height: 68%;
  background: linear-gradient(180deg, #405546 0%, #213227 100%);
}

.portrait-figure::before {
  content: "";
  position: absolute;
  top: -4.7rem;
  left: 50%;
  width: 6.4rem;
  height: 6.8rem;
  border-radius: 48% 48% 42% 42%;
  background: linear-gradient(180deg, #c48d67 0%, #a96f4b 100%);
  transform: translateX(-50%);
}

.portrait-tablet {
  position: absolute;
  right: 19%;
  bottom: 18%;
  width: 40%;
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(27, 48, 34, 0.12);
  box-shadow: 0 18px 34px rgba(20, 26, 21, 0.14);
}

.tablet-label {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tablet-video {
  display: block;
  width: 100%;
  aspect-ratio: 720 / 512;
  border-radius: 0.85rem;
  object-fit: cover;
  background: var(--cream-deep);
}

.scene-note {
  padding: 1.2rem 1.3rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(27, 48, 34, 0.08);
}

.scene-note-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scene-note strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.scene-note p {
  margin: 0;
}

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

.hero-stat-strip div {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 1.1rem;
  background: linear-gradient(180deg, #fbfaf6, #f0ece2);
  border: 1px solid rgba(27, 48, 34, 0.08);
}

.hero-stat-strip span {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-stat-strip strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.trust-band {
  padding: 1.2rem 0;
  background: linear-gradient(180deg, rgba(244, 239, 230, 0.92), rgba(249, 247, 242, 0.9));
  border-top: 1px solid rgba(27, 48, 34, 0.08);
  border-bottom: 1px solid rgba(27, 48, 34, 0.08);
}

.trust-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-band-copy {
  color: var(--muted);
}

.trust-logos {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.trust-logos span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 48, 34, 0.12);
  color: var(--forest);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.services-section {
  position: relative;
}

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

.goal-card {
  display: grid;
  gap: 0.85rem;
  min-height: 100%;
  padding: 2rem 1.6rem;
  border-radius: 1.55rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(245, 240, 231, 0.96));
  border: 1px solid rgba(27, 48, 34, 0.1);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.goal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 160, 89, 0.38);
  box-shadow: var(--shadow);
}

.goal-card-step {
  color: rgba(27, 48, 34, 0.26);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1;
}

.goal-card h3,
.impact-card h3,
.roadmap-step h3,
.calculator-card-head h3,
.returns-card-head h3,
.contact-story h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--forest);
}

.goal-card h3 {
  font-size: 1.55rem;
}

.goal-card-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(27, 48, 34, 0.06);
  color: var(--forest-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.impact-section {
  background: linear-gradient(180deg, rgba(27, 48, 34, 0.98), rgba(30, 42, 34, 0.96));
}

.impact-section .section-kicker,
.impact-section h2,
.impact-section p,
.impact-card h3,
.impact-card strong {
  color: var(--white);
}

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

.impact-card {
  padding: 1.8rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.impact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.18);
  color: var(--gold-soft);
  font-size: 1.2rem;
  font-weight: 700;
}

.impact-card strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.impact-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.founder-section {
  background: linear-gradient(180deg, #f9f6ef 0%, #fdfcf8 100%);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 2rem;
  align-items: center;
}

.founder-portrait-card {
  padding: 1.3rem;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, #fffaf0, #f0eadf);
  border: 1px solid rgba(27, 48, 34, 0.08);
  box-shadow: var(--shadow);
}

.founder-portrait-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 1.4rem;
  object-fit: cover;
  object-position: center;
}

.founder-copy h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.founder-message {
  margin: 0 0 1rem;
}

.founder-signoff {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(27, 48, 34, 0.12);
}

.founder-signoff strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.founder-signoff span {
  color: var(--muted);
}

.roadmap-section {
  background:
    radial-gradient(circle at bottom left, rgba(197, 160, 89, 0.12), transparent 20%),
    linear-gradient(180deg, #fcfbf8 0%, #f4f0e8 100%);
}

.roadmap-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.roadmap-track::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(27, 48, 34, 0.08), rgba(197, 160, 89, 0.5), rgba(27, 48, 34, 0.08));
}

.roadmap-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  padding: 2rem 1.3rem 1.5rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(27, 48, 34, 0.1);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.roadmap-step:hover,
.roadmap-step.active {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.roadmap-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #b98d42);
  color: #1f1a10;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.two-panel-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 1.8rem;
  align-items: start;
}

.philosophy-panel {
  padding: 1rem 0;
}

.philosophy-panel h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

.philosophy-note {
  color: var(--forest);
  font-weight: 600;
}

.philosophy-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.philosophy-pill-row span {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(27, 48, 34, 0.08);
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 600;
}

.returns-surface,
.calculator-card,
.contact-form-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 242, 233, 0.96));
  border: 1px solid rgba(27, 48, 34, 0.08);
  box-shadow: var(--shadow);
}

.returns-card,
.calculator-card {
  border-radius: 1.7rem;
}

.returns-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.returns-card-head h3,
.calculator-card-head h3 {
  font-size: 1.55rem;
}

.returns-chart-shell {
  position: relative;
}

.returns-line-chart {
  position: relative;
}

.returns-svg {
  display: block;
  width: 100%;
  height: auto;
}

.returns-grid-line {
  stroke: #d4d8d1;
  stroke-width: 1;
  stroke-dasharray: 5 5;
}

.returns-axis {
  stroke: #8e988f;
  stroke-width: 1.2;
}

.returns-axis-label,
.returns-month-label,
.returns-y-label {
  fill: #677166;
  font-size: 13px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.returns-line {
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.returns-point {
  stroke: #ffffff;
  stroke-width: 2;
}

.returns-point-hit {
  fill: transparent;
  cursor: pointer;
}

.returns-tooltip {
  position: absolute;
  min-width: 190px;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(27, 48, 34, 0.08);
  box-shadow: 0 18px 42px rgba(20, 26, 21, 0.14);
  pointer-events: none;
  z-index: 2;
}

.returns-tooltip strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--forest);
}

.returns-tooltip div {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.35rem;
  color: var(--muted);
}

.returns-tooltip span:last-child {
  font-weight: 700;
}

.returns-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-weight: 700;
}

.legend-item::before {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
}

.legend-item.debt::before {
  background: #2fa59c;
}

.legend-item.equity::before {
  background: #426cd9;
}

.legend-item.hybrid::before {
  background: #8c62d9;
}

.legend-item.portfolio::before {
  background: #d49a33;
}

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

.calculator-card {
  padding: 0;
  overflow: hidden;
}

.calculator-card-head {
  padding: 1.5rem 1.5rem 1.2rem;
  border-bottom: 1px solid rgba(27, 48, 34, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(246, 242, 233, 0.28));
}

.calculator-card-head p {
  margin: 0;
}

.calculator-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1.5rem 1.5rem 0;
}

.calculator-tab {
  border: 1px solid rgba(27, 48, 34, 0.08);
  border-radius: 0.95rem;
  background: rgba(27, 48, 34, 0.05);
  color: var(--muted);
  padding: 0.95rem 1rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calculator-tab.is-active {
  background: var(--white);
  color: var(--forest);
  border-color: rgba(197, 160, 89, 0.35);
  box-shadow: 0 12px 24px rgba(20, 26, 21, 0.08);
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 1.4rem;
  padding: 1.5rem;
}

.calculator-panel {
  display: none;
  gap: 1.15rem;
}

.calculator-panel.is-active {
  display: grid;
}

.calculator-field {
  display: grid;
  gap: 0.65rem;
  color: var(--forest);
  font-weight: 700;
}

.calculator-field span {
  font-size: 0.97rem;
}

.calculator-field input[type="number"] {
  width: 100%;
  border: 1px solid rgba(27, 48, 34, 0.14);
  border-radius: 0.95rem;
  padding: 0.95rem 1rem;
  font: inherit;
  background: rgba(255, 255, 255, 0.94);
}

.calculator-field input[type="range"] {
  width: 100%;
  margin: 0;
  accent-color: var(--gold);
}

.calculator-action {
  width: 100%;
  background: linear-gradient(135deg, var(--forest), var(--forest-soft));
  color: var(--white);
  box-shadow: 0 16px 30px rgba(27, 48, 34, 0.18);
}

.calculator-summary {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, #f4efe5 0%, #faf8f2 100%);
  border: 1px solid rgba(27, 48, 34, 0.06);
}

.calculator-summary h3 {
  margin: 0 0 0.25rem;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  color: var(--forest);
}

.calculator-summary-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.2rem 1.1rem;
  border-radius: 1rem;
  background: var(--white);
  border: 1px solid rgba(27, 48, 34, 0.08);
  box-shadow: var(--shadow-soft);
}

.calculator-summary-card.featured {
  background: linear-gradient(135deg, var(--forest), #274637);
  color: var(--white);
  border-color: transparent;
}

.calculator-summary-label {
  color: var(--muted);
  font-size: 0.92rem;
}

.calculator-summary-card strong {
  color: var(--forest);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  line-height: 1.05;
}

.calculator-summary-card.featured .calculator-summary-label,
.calculator-summary-card.featured strong {
  color: var(--white);
}

.summary-accent {
  color: #1c9b4d !important;
}

.contact-section {
  background: linear-gradient(180deg, #faf8f3 0%, #f4efe5 100%);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.contact-story h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.contact-details div {
  display: grid;
  gap: 0.3rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(27, 48, 34, 0.12);
}

.contact-details span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details strong {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 600;
}

.contact-form-card {
  padding: 1.6rem;
  border-radius: 1.6rem;
}

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

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--forest);
  font-size: 0.95rem;
  font-weight: 600;
}

.full-width {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(27, 48, 34, 0.14);
  border-radius: 0.95rem;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.94);
}

.form-status {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  font-weight: 600;
}

.form-status.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

.form-status.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.hidden {
  display: none;
}

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

.map-card {
  display: grid;
  gap: 1.4rem;
  padding: 1.7rem;
  border-radius: 1.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 239, 229, 0.96));
  border: 1px solid rgba(27, 48, 34, 0.08);
  box-shadow: var(--shadow);
}

.map-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.map-copy h2 {
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.map-link {
  background: linear-gradient(135deg, var(--forest), var(--forest-soft));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(27, 48, 34, 0.18);
}

.map-embed-wrap {
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid rgba(27, 48, 34, 0.08);
}

.map-embed {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

.whatsapp-float {
  position: fixed;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--forest), #284839);
  color: var(--white);
  box-shadow: 0 22px 46px rgba(20, 26, 21, 0.22);
  font-weight: 700;
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
}

.site-footer {
  background: #16271d;
  color: rgba(255, 255, 255, 0.78);
  padding: 1.8rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.footer-disclosure {
  max-width: 46rem;
}

@media (max-width: 1024px) {
  .hero-shell,
  .founder-grid,
  .two-panel-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .goal-card-grid,
  .impact-grid,
  .roadmap-track {
    grid-template-columns: 1fr;
  }

  .roadmap-track::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .contact-form,
  .calculator-layout,
  .calculator-tabs {
    grid-template-columns: 1fr;
  }

  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-inner {
    position: relative;
    align-items: stretch;
  }

  .menu-toggle {
    display: inline-flex;
    align-self: flex-end;
    margin-top: -3.45rem;
  }

  .nav-links {
    display: none;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(27, 48, 34, 0.12);
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 0.3rem 0;
  }

  .nav-links a:not(.cta)::after {
    display: none;
  }

  .hero-actions,
  .hero-trust-points,
  .trust-band-inner,
  .map-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    width: min(220px, 64vw);
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .whatsapp-float {
    right: 1rem;
    left: 1rem;
    justify-content: center;
  }
}

.cms-shell {
  min-height: 100vh;
  padding: 3rem 0 5rem;
  background: linear-gradient(180deg, #eef2ff, #f8faff);
}

.cms-container {
  display: grid;
  gap: 1.5rem;
}

.cms-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

.cms-header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.cms-header h1 {
  margin: 0.25rem 0 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cms-kicker {
  margin: 0;
  color: #1b3bc0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cms-header p,
.cms-section-header p {
  color: #64748b;
}

.cms-link {
  background: #ffffff;
  color: #1b3bc0;
  border: 1px solid #e2e8f0;
}

.cms-logout-form {
  margin: 0;
}

.cms-form {
  display: grid;
  gap: 1.25rem;
}

.cms-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 18px 45px rgba(13, 27, 75, 0.05);
}

.cms-section-header h2 {
  margin: 0 0 1rem;
}

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

.cms-field {
  display: grid;
  gap: 0.5rem;
}

.cms-field.full-width {
  grid-column: 1 / -1;
}

.cms-field label {
  font-size: 0.92rem;
  font-weight: 700;
}

.cms-field input,
.cms-field textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
  font: inherit;
  background: #ffffff;
}

.cms-alert {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  font-weight: 700;
}

.cms-alert.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

.cms-alert.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.cms-sticky-actions {
  position: sticky;
  bottom: 1rem;
  display: flex;
  justify-content: flex-end;
}

.cms-empty-state {
  padding: 1.1rem 1.2rem;
  border-radius: 1rem;
  background: #f8faff;
  color: #64748b;
  border: 1px dashed #e2e8f0;
}

.inquiry-list {
  display: grid;
  gap: 1rem;
}

.inquiry-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
}

.inquiry-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.inquiry-meta h3 {
  margin: 0 0 0.2rem;
}

.inquiry-meta p,
.inquiry-meta span {
  margin: 0;
  color: #64748b;
}

.inquiry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.inquiry-tags span {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #eef2ff;
  color: #1b3bc0;
  font-size: 0.82rem;
  font-weight: 700;
}

.inquiry-message {
  margin: 0;
  color: #1e293b;
  line-height: 1.7;
  white-space: pre-wrap;
}

.cms-login-wrap {
  min-height: calc(100vh - 6rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cms-login-card {
  width: min(100%, 32rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 18px 45px rgba(13, 27, 75, 0.08);
}

.cms-login-card h1 {
  margin: 0.25rem 0 0.75rem;
  font-family: Georgia, "Times New Roman", serif;
}

.cms-login-copy {
  margin-bottom: 1.5rem;
  color: #64748b;
}

.cms-login-button {
  width: 100%;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .cms-grid {
    grid-template-columns: 1fr;
  }

  .cms-header {
    flex-direction: column;
  }

  .cms-header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .inquiry-meta {
    flex-direction: column;
  }
}

.research-main {
  background: #f7fafc;
  color: var(--ink);
}

.research-hero {
  padding: 5rem 0 3rem;
  background:
    linear-gradient(135deg, rgba(14, 63, 53, 0.94), rgba(18, 48, 84, 0.9)),
    url("/images/neoprobity-logo.jpeg") center/cover;
  color: #ffffff;
}

.research-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  gap: 2rem;
  align-items: end;
}

.research-hero h1 {
  margin: 0.3rem 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
}

.research-hero p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.research-search {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.research-search label {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.research-search div {
  display: flex;
  gap: 0.75rem;
}

.research-search input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 0.65rem;
  padding: 0.9rem 1rem;
  font: inherit;
}

.research-section {
  padding-top: 3rem;
}

.research-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.34fr);
  gap: 1.5rem;
  align-items: start;
}

.research-primary {
  display: grid;
  gap: 1.3rem;
}

.research-heading {
  margin-top: 0.5rem;
}

.research-heading h2 {
  margin-bottom: 0;
}

.report-list {
  display: grid;
  gap: 1rem;
}

.report-card {
  display: block;
  padding: 1.25rem;
  border: 1px solid #dbe6ee;
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.report-card-main {
  display: grid;
  gap: 0.65rem;
}

.report-meta,
.report-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 700;
}

.report-meta span:first-child {
  color: #0e7c68;
}

.report-card h3 {
  margin: 0;
  font-size: 1.25rem;
}

.report-title-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.report-title-row h3 {
  min-width: 0;
}

.report-description {
  color: #475569;
  line-height: 1.7;
}

.report-description p,
.report-description ul,
.report-description ol {
  margin: 0.2rem 0;
}

.report-download {
  white-space: nowrap;
}

.archive-panel {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid #dbe6ee;
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.archive-panel h2 {
  margin: 0;
  font-size: 1.25rem;
}

.archive-panel p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.archive-list {
  display: grid;
  gap: 0.7rem;
}

.archive-group {
  border: 1px solid #e2e8f0;
  border-radius: 0.65rem;
  overflow: hidden;
}

.archive-group summary {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 0.9rem;
  cursor: pointer;
  font-weight: 800;
}

.archive-group summary strong {
  color: #0e7c68;
}

.archive-items {
  display: grid;
  gap: 0.1rem;
  padding: 0 0.8rem 0.8rem;
}

.archive-items a {
  display: grid;
  gap: 0.15rem;
  padding: 0.65rem;
  border-radius: 0.5rem;
  color: var(--ink);
  text-decoration: none;
}

.archive-items a:hover {
  background: #f1f5f9;
}

.archive-items small {
  color: #64748b;
}

.reports-manage-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.reports-table-wrap {
  overflow-x: auto;
}

.reports-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 58rem;
}

.reports-table th,
.reports-table td {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: top;
}

.reports-table th {
  color: #475569;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reports-table td strong,
.reports-table td span {
  display: block;
}

.reports-table td span {
  margin-top: 0.2rem;
  color: #64748b;
  font-size: 0.88rem;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.report-actions form {
  margin: 0;
}

.danger-link {
  background: #fff1f2;
  color: #be123c;
  border: 1px solid #fecdd3;
}

.research-edit-form .field-validation {
  color: #be123c;
  font-size: 0.85rem;
  font-weight: 700;
}

.current-file {
  color: #64748b;
  font-size: 0.9rem;
}

.rich-editor {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 0.8rem;
  background: #ffffff;
}

.rich-editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.65rem;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.rich-editor-toolbar button {
  min-width: 2.4rem;
  min-height: 2.2rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  background: #ffffff;
  color: #1e293b;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.rich-editor-toolbar button:hover {
  border-color: #0e7c68;
  color: #0e7c68;
}

.rich-editor-surface {
  min-height: 13rem;
  padding: 1rem;
  line-height: 1.7;
  outline: none;
}

.rich-editor-input {
  display: none;
}

@media (max-width: 900px) {
  .research-hero-inner,
  .research-layout {
    grid-template-columns: 1fr;
  }

  .report-title-row {
    flex-direction: column;
    align-items: stretch;
  }

  .research-search div,
  .reports-manage-header,
  .report-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .archive-panel {
    position: static;
  }

  .report-download {
    width: 100%;
    text-align: center;
  }
}
