:root {
  --ink: #0d2c2f;
  --ink-soft: #17373a;
  --paper: #f5efe4;
  --paper-2: #fbf8f1;
  --line: rgba(13, 44, 47, 0.12);
  --line-strong: rgba(13, 44, 47, 0.18);
  --teal: #6b8e88;
  --teal-deep: #3f6761;
  --gold: #bf9a63;
  --text: #233638;
  --muted: #667878;
  --white: #ffffff;
  --shadow-lg: 0 26px 70px rgba(13, 44, 47, 0.12);
  --shadow-md: 0 18px 48px rgba(13, 44, 47, 0.09);
  --shadow-sm: 0 10px 24px rgba(13, 44, 47, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(191,154,99,.11), transparent 26%),
    linear-gradient(180deg, #fcfaf6 0%, #f9f5ee 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.page-shell { min-height: 100vh; }
.wrap { width: min(1180px, calc(100vw - 48px)); margin: 0 auto; }
.section-space { padding: 92px 0; }
.compact-space { padding-top: 86px; padding-bottom: 86px; }

.top-ribbon {
  background: linear-gradient(90deg, var(--ink) 0%, #153c40 100%);
  color: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ribbon-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 11px;
  letter-spacing: .9px;
  text-transform: uppercase;
}
.ribbon-label {
  color: #fff;
  font-weight: 800;
  letter-spacing: 1.8px;
}
.ribbon-copy { color: rgba(255,255,255,.74); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(251, 248, 241, 0.88);
  border-bottom: 1px solid rgba(13,44,47,.08);
}
.nav-row {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand { flex: 0 0 auto; }
.brand-lockup { width: 265px; height: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  color: #4f6362;
}
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .22s ease;
}
.site-nav a:hover::after { width: 100%; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2px;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.button.primary:hover { background: #174246; }
.button.secondary {
  background: rgba(255,255,255,.7);
  color: var(--ink);
}
.button.secondary:hover { background: var(--paper); }
.button-nav { min-height: 44px; padding: 0 18px; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: stretch;
}
.hero-copy,
.hero-panel { align-self: stretch; }
.hero-copy {
  background: linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.56));
  border: 1px solid rgba(13,44,47,.08);
  box-shadow: var(--shadow-md);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(191,154,99,.12), transparent 38%),
    radial-gradient(circle at 85% 18%, rgba(107,142,136,.12), transparent 22%);
  pointer-events: none;
}
.hero-copy > * { position: relative; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 800;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(191,154,99,.14);
}
.hero h1 {
  margin: 18px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -1.8px;
  color: var(--ink);
}
.hero h1 em {
  color: var(--teal-deep);
  font-style: normal;
}
.hero-lede {
  margin: 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}
.hero-proof div {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.hero-proof strong {
  display: block;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 6px;
}
.hero-proof span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}

.hero-panel {
  background: linear-gradient(180deg, #123438 0%, #0d2c2f 100%);
  color: var(--white);
  border: 1px solid rgba(13,44,47,.12);
  box-shadow: var(--shadow-lg);
  padding: 30px 30px 28px;
  position: relative;
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(120deg, rgba(191,154,99,.18), transparent 34%);
  pointer-events: none;
}
.hero-panel > * { position: relative; }
.hero-panel-head,
.panel-title-row,
.panel-foot-grid { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.micro {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  font-weight: 800;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 11px;
  color: rgba(255,255,255,.82);
}
.status-pill b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #82b09c;
}
.panel-title-row {
  padding: 22px 0 24px;
  align-items: flex-end;
}
.panel-title-row h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1.15;
  font-weight: 400;
}
.panel-title-row p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.confidence-box {
  flex: 0 0 118px;
  border-left: 1px solid rgba(255,255,255,.14);
  padding-left: 16px;
}
.confidence-box span {
  display: block;
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
}
.confidence-box strong {
  display: block;
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}
.signal-list { display: grid; gap: 14px; }
.signal-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  padding: 18px 18px 16px;
}
.signal-card.focus {
  background: linear-gradient(90deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
}
.signal-chip {
  display: inline-flex;
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  font-weight: 800;
}
.signal-card h3 {
  margin: 12px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
}
.signal-card p {
  margin: 0;
  color: rgba(255,255,255,.73);
  font-size: 13px;
  line-height: 1.65;
}
.signal-card.compact h3 {
  margin: 10px 0 0;
  font-size: 19px;
}
.panel-foot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.panel-foot-grid span {
  text-align: center;
  font-size: 9px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}

.statement-band {
  background: var(--ink);
  color: var(--white);
  margin-top: 8px;
}
.statement-inner {
  text-align: center;
  padding: 72px 0;
}
.statement-inner p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 800;
}
.statement-inner h2 {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 400;
}

.section-heading { max-width: 770px; }
.section-heading.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  gap: 60px;
  align-items: end;
}
.kicker {
  display: inline-block;
  color: var(--teal-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.section-heading h2 {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.7px;
  color: var(--ink);
}
.section-heading p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 46px;
}
.approach-card {
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(13,44,47,.09);
  box-shadow: var(--shadow-sm);
  padding: 26px 22px 24px;
  position: relative;
}
.approach-card::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  width: 38px;
  height: 2px;
  background: rgba(191,154,99,.8);
}
.step {
  display: inline-block;
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: 15px;
}
.approach-card h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 18px;
}
.approach-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.section-surface {
  background: linear-gradient(180deg, rgba(245,239,228,.74), rgba(251,248,241,.9));
  border-top: 1px solid rgba(13,44,47,.05);
  border-bottom: 1px solid rgba(13,44,47,.05);
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.coverage-card {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(13,44,47,.09);
  box-shadow: var(--shadow-sm);
  padding: 24px 20px 22px;
  min-height: 236px;
}
.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(107,142,136,.12);
  color: var(--ink);
  border: 1px solid rgba(13,44,47,.08);
}
.icon-wrap svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.coverage-card h3 {
  margin: 24px 0 12px;
  font-size: 18px;
  color: var(--ink);
}
.coverage-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.68;
  color: var(--muted);
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(260px, 330px) 1fr;
  gap: 28px;
  margin-top: 44px;
  align-items: start;
}
.experience-copy {
  display: grid;
  gap: 16px;
}
.experience-point {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(13,44,47,.08);
  box-shadow: var(--shadow-sm);
  padding: 20px;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
}
.experience-point span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  color: var(--gold);
}
.experience-point h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--ink);
}
.experience-point p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.briefing-card {
  background: var(--white);
  border: 1px solid rgba(13,44,47,.12);
  box-shadow: var(--shadow-lg);
  padding: 34px;
}
.briefing-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}
.briefing-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.briefing-brand img { width: 44px; height: 44px; }
.briefing-brand strong {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--ink);
}
.briefing-brand span {
  display: block;
  margin-top: 4px;
  font-size: 8px;
  letter-spacing: 1.35px;
  color: var(--teal-deep);
  font-weight: 800;
}
.briefing-meta {
  text-align: right;
  font-size: 8px;
  letter-spacing: 1.4px;
  color: #778786;
}
.briefing-meta b {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  color: var(--ink);
}
.briefing-title-row {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 26px;
  padding: 32px 0 26px;
}
.briefing-title-row h3 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.16;
  font-weight: 400;
  color: var(--ink);
}
.confidence-box.slim {
  border-left: 1px solid var(--line-strong);
  color: var(--ink);
}
.confidence-box.slim span { color: #798785; }
.management-strip {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  align-items: start;
  background: var(--ink);
  color: var(--white);
  padding: 24px 28px;
}
.management-strip span {
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  padding-top: 5px;
}
.management-strip p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.95);
}
.briefing-detail-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 30px;
  margin-top: 30px;
}
.detail-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--teal-deep);
  font-size: 9px;
  letter-spacing: 1.3px;
}
.detail-label span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  color: var(--gold);
}
.detail-label em {
  margin-left: auto;
  font-style: normal;
  padding: 6px 8px;
  border: 1px solid rgba(107,142,136,.35);
}
.briefing-main h4 {
  margin: 16px 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
  color: var(--ink);
}
.detail-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.detail-sections > div {
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.detail-sections span,
.watch-card > span {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 1.35px;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.detail-sections p {
  margin: 8px 0 0;
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--muted);
}
.watch-card {
  background: var(--paper-2);
  border: 1px solid rgba(13,44,47,.08);
  padding: 22px;
}
.watch-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}
.watch-card li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--text);
}
.watch-card li::before {
  content: "→";
  color: var(--gold);
  margin-right: 8px;
}
.watch-foot {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  line-height: 1.55;
  color: #7a8786;
}

.output-surface { margin-top: 8px; }
.output-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.output-card {
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(13,44,47,.08);
  box-shadow: var(--shadow-sm);
  padding: 24px 22px;
}
.output-card span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  color: var(--gold);
}
.output-card h3 {
  margin: 22px 0 10px;
  font-size: 18px;
  color: var(--ink);
}
.output-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

.closing-section {
  text-align: center;
  max-width: 840px;
}
.closing-mark {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
}
.closing-section h2 {
  margin: 16px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--ink);
}
.closing-section p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
}
.footer-grid {
  min-height: 110px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
}
.footer-brand strong {
  display: block;
  font-size: 11px;
  letter-spacing: 1.8px;
}
.footer-brand span,
.footer-note,
.footer-copy {
  font-size: 10px;
  color: rgba(255,255,255,.68);
}
.footer-note { text-align: center; }
.footer-copy { text-align: right; }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .08s; }

@media (max-width: 1080px) {
  .hero,
  .section-heading.split-heading,
  .experience-grid,
  .briefing-detail-grid { grid-template-columns: 1fr; }
  .hero-proof,
  .approach-grid,
  .coverage-grid,
  .output-grid { grid-template-columns: repeat(2, 1fr); }
  .briefing-detail-grid { gap: 22px; }
  .watch-card { order: 2; }
}

@media (max-width: 780px) {
  .wrap { width: min(1180px, calc(100vw - 32px)); }
  .ribbon-inner { justify-content: center; text-align: center; padding: 8px 0; flex-wrap: wrap; }
  .nav-row { min-height: 76px; }
  .brand-lockup { width: 210px; }
  .site-nav,
  .button-nav,
  .ribbon-copy { display: none; }
  .section-space { padding: 74px 0; }
  .hero-copy, .hero-panel, .briefing-card { padding: 24px 20px; }
  .hero h1 { font-size: 44px; }
  .hero-proof,
  .approach-grid,
  .coverage-grid,
  .output-grid,
  .detail-sections { grid-template-columns: 1fr; }
  .panel-title-row,
  .briefing-title-row,
  .management-strip,
  .footer-grid { grid-template-columns: 1fr; }
  .panel-title-row,
  .briefing-title-row { display: grid; }
  .confidence-box,
  .confidence-box.slim { border-left: 0; border-top: 1px solid rgba(255,255,255,.14); padding-left: 0; padding-top: 14px; }
  .confidence-box.slim { border-top-color: var(--line); }
  .management-strip { gap: 10px; }
  .briefing-meta,
  .footer-note { display: none; }
  .briefing-title-row h3 { font-size: 28px; }
  .briefing-main h4 { font-size: 24px; }
  .footer-grid { min-height: auto; padding: 22px 0; }
  .footer-copy { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .site-nav a::after { transition: none; }
}
