/* ─────────────────────────────────────────────────────────────
   OCTOFOX — Design System
   Navy + Miami Terracotta + Ivory
   ───────────────────────────────────────────────────────────── */

:root {
  /* Palette */
  --navy-900: #0A1626;
  --navy-800: #0F1E33;
  --navy-700: #16294A;
  --navy-600: #1F3963;
  --navy-500: #2D4D80;
  --navy-line: rgba(244, 239, 230, 0.10);
  --navy-line-strong: rgba(244, 239, 230, 0.22);

  --ivory: #F4EFE6;
  --ivory-soft: #EDE6D9;
  --ivory-dim: rgba(244, 239, 230, 0.72);
  --ivory-muted: rgba(244, 239, 230, 0.55);
  --ivory-faint: rgba(244, 239, 230, 0.35);

  --terra: #C2613F;
  --terra-bright: #D87248;
  --terra-deep: #9C4A2E;
  --terra-glow: rgba(194, 97, 63, 0.18);

  --sand: #C9B89A;

  /* Type */
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container: 1280px;
  --container-narrow: 920px;
  --container-prose: 680px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  background: var(--navy-900);
  color: var(--ivory);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  font-feature-settings: "ss01", "cv01", "cv11";
  overflow-x: hidden;
}

/* Subtle texture overlay on body */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(194, 97, 63, 0.06), transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(31, 57, 99, 0.4), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

main, header, footer {
  position: relative;
  z-index: 1;
}

/* ─── Typography ─────────────────────────────────────────────── */

.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.12;
  color: var(--ivory);
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); letter-spacing: -0.025em; }
h4 { font-size: 1.25rem; letter-spacing: -0.015em; font-weight: 500; }

p {
  color: var(--ivory-dim);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 65ch;
}

.lead {
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.55;
  color: var(--ivory);
  font-weight: 300;
  max-width: 38em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terra-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--terra-deep) 0%, var(--terra-bright) 100%);
  box-shadow: 0 0 12px var(--terra-glow);
}

.eyebrow::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terra-bright);
  box-shadow: 0 0 10px var(--terra-glow);
  margin-left: -0.35rem;
}

.eyebrow.no-line::before,
.eyebrow.no-line::after { display: none; }

a {
  color: var(--ivory);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--terra-bright);
}

em, .italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--terra);
}

strong { font-weight: 500; color: var(--ivory); }

/* ─── Layout ─────────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

section {
  padding: clamp(4rem, 10vw, 8rem) 0;
}

section.tight {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

/* ─── Header ────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(10, 22, 38, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.site-header.scrolled {
  padding: 0.875rem 0;
  background: rgba(10, 22, 38, 0.92);
  border-bottom-color: var(--navy-line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  color: var(--ivory);
}

.brand:hover { color: var(--ivory); opacity: 0.85; }

.brand-mark {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  /* Inverts the dark-navy mark to white/cream for the dark header */
  filter: brightness(0) invert(1);
}

.brand-name {
  font-weight: 600;
  color: var(--ivory);
  font-style: normal;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.footer-brand-col .brand-mark {
  height: 36px;
}

.footer-brand-col .brand-name {
  font-size: 1.25rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.site-nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ivory-dim);
  position: relative;
}

.site-nav a:hover { color: var(--ivory); }

.site-nav a.active { color: var(--ivory); }

.site-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--terra);
}

.nav-cta {
  padding: 0.625rem 1.25rem;
  background: transparent;
  border: 1px solid var(--navy-line-strong);
  border-radius: 999px;
  color: var(--ivory);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  border-color: var(--terra);
  color: var(--terra-bright);
  background: rgba(194, 97, 63, 0.06);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 880px) {
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(380px, 85vw);
    background: var(--navy-800);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--navy-line);
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { font-size: 1.125rem; font-family: var(--font-display); }
  .nav-toggle { display: block; }
  .nav-cta { margin-top: 1rem; }
}

/* ─── Buttons ───────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.9375rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terra);
  color: var(--ivory);
  border-color: var(--terra);
}

.btn-primary:hover {
  background: var(--terra-bright);
  border-color: var(--terra-bright);
  color: var(--ivory);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -12px rgba(194, 97, 63, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--navy-line-strong);
}

.btn-ghost:hover {
  border-color: var(--ivory);
  color: var(--ivory);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--terra);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0;
  border: none;
  background: none;
}

.btn-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.btn-link:hover {
  color: var(--terra-bright);
}

.btn-link:hover::after {
  transform: translateX(4px);
}

/* ─── Hero ──────────────────────────────────────────────────── */

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 600px;
  opacity: 0.07;
  pointer-events: none;
  color: var(--ivory);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 60rem;
}

.hero h1 {
  font-size: clamp(2.75rem, 7vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero h1 em,
.hero h1 strong,
.hero h1 b {
  color: var(--terra) !important;
  font-weight: 600;
  font-style: normal;
}

.hero-sub {
  font-size: clamp(1.125rem, 1.7vw, 1.5rem);
  line-height: 1.5;
  color: var(--ivory-dim);
  max-width: 38em;
  font-weight: 300;
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--navy-line);
  max-width: 48rem;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-meta-label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}

.hero-meta-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--ivory);
}

/* ─── Sections ──────────────────────────────────────────────── */

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 48rem;
}

.section-header .eyebrow {
  margin-bottom: 1.5rem;
}

.section-header p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--ivory-dim);
}

/* Two-arm split section */
.dual-arm {
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
}

.arm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--navy-line);
  border-radius: 4px;
  overflow: hidden;
}

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

.arm-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  background: rgba(15, 30, 51, 0.4);
  position: relative;
  transition: background 0.3s ease;
}

.arm-card:first-child {
  border-right: 1px solid var(--navy-line);
}

@media (max-width: 880px) {
  .arm-card:first-child {
    border-right: none;
    border-bottom: 1px solid var(--navy-line);
  }
}

.arm-card:hover {
  background: rgba(31, 57, 99, 0.25);
}

.arm-number {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--terra);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.arm-card h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
}

.arm-card p {
  font-size: 1rem;
  color: var(--ivory-dim);
  margin-bottom: 2rem;
}

.arm-card ul {
  list-style: none;
  margin-bottom: 2.5rem;
}

.arm-card ul li {
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--navy-line);
  font-size: 0.9375rem;
  color: var(--ivory-dim);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.arm-card ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

/* Services / Capabilities */
.capabilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--navy-line);
  border: 1px solid var(--navy-line);
}

.capability {
  padding: 2.5rem 2rem;
  background: var(--navy-900);
  transition: background 0.3s ease;
}

.capability:hover {
  background: var(--navy-800);
}

.capability-number {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--terra);
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.capability h4 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.capability p {
  font-size: 0.9375rem;
  color: var(--ivory-dim);
  line-height: 1.65;
}

/* Track record */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.case-card {
  background: rgba(15, 30, 51, 0.5);
  border: 1px solid var(--navy-line);
  border-radius: 4px;
  padding: 2.25rem;
  transition: all 0.3s ease;
}

.case-card:hover {
  border-color: var(--terra);
  transform: translateY(-2px);
}

.case-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(194, 97, 63, 0.12);
  color: var(--terra);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.case-card h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.case-meta {
  font-size: 0.8125rem;
  color: var(--ivory-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
  font-family: var(--font-display);
}

.case-card p {
  font-size: 0.9375rem;
  color: var(--ivory-dim);
  margin-bottom: 1.5rem;
}

.case-metrics {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--navy-line);
}

.case-metric {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.case-metric-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--terra);
  font-feature-settings: "tnum";
  letter-spacing: -0.02em;
}

.case-metric-label {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}

/* Approach steps */
.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4rem;
}

@media (max-width: 880px) {
  .approach-steps { grid-template-columns: 1fr; }
}

.approach-step {
  padding: 2.5rem 2rem 2.5rem 0;
  border-top: 1px solid var(--navy-line-strong);
  position: relative;
}

.approach-step:not(:last-child) {
  padding-right: 2rem;
}

@media (max-width: 880px) {
  .approach-step { padding-right: 0; }
}

.approach-num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--terra);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.approach-num::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--terra);
}

.approach-step h4 {
  font-size: 1.625rem;
  margin-bottom: 1rem;
}

.approach-step p {
  font-size: 0.9375rem;
  color: var(--ivory-dim);
}

/* Principles / Why grid */
.principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem 2.5rem;
}

.principle h4 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.principle h4 .num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--terra);
  letter-spacing: 0.1em;
  font-weight: 400;
}

.principle p {
  font-size: 0.9375rem;
  color: var(--ivory-dim);
  line-height: 1.65;
}

/* Founder block */
.founder-block {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

@media (max-width: 768px) {
  .founder-block { grid-template-columns: 1fr; }
}

.founder-photo {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--navy-700);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.02);
  display: block;
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--navy-line-strong);
  border-radius: 4px;
  pointer-events: none;
}

.founder-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.founder-title {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--terra);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.founder-bio p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.founder-credentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--navy-line);
}

.credential-label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  margin-bottom: 0.375rem;
}

.credential-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ivory);
}

/* Pull quote */
.pullquote {
  margin: clamp(3rem, 6vw, 5rem) auto;
  max-width: 56rem;
  text-align: center;
  padding: 0 2rem;
}

.pullquote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--ivory);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.5rem;
  position: relative;
}

.pullquote blockquote::before {
  content: "“";
  position: absolute;
  font-size: 4rem;
  color: var(--terra);
  top: -1.5rem;
  left: -2rem;
  opacity: 0.4;
  line-height: 1;
}

.pullquote cite {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}

/* Stats strip */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 3rem 0;
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
}

@media (max-width: 768px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 2rem 0; }
}

.stat {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid var(--navy-line);
}

.stat:last-child { border-right: none; }

@media (max-width: 768px) {
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--navy-line); padding-bottom: 2rem; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 2rem; }
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  color: var(--ivory);
  letter-spacing: -0.03em;
  font-feature-settings: "tnum";
  line-height: 1;
  margin-bottom: 0.75rem;
}

.stat-value em {
  color: var(--terra);
  font-style: italic;
}

.stat-label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-muted);
}

/* CTA block */
.cta-block {
  background:
    radial-gradient(circle at 70% 30%, rgba(194, 97, 63, 0.15), transparent 50%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--navy-line);
  border-radius: 4px;
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.cta-block h2 {
  margin-bottom: 1.5rem;
  max-width: 28em;
  margin-left: auto;
  margin-right: auto;
}

.cta-block .lead {
  margin: 0 auto 2.5rem;
}

.cta-block .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* Footer */
.site-footer {
  background: var(--navy-800);
  border-top: 1px solid var(--navy-line);
  padding: 5rem 0 2.5rem;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand-col { grid-column: span 2; }
}

.footer-brand-col p {
  font-size: 0.9375rem;
  color: var(--ivory-muted);
  margin-top: 1.5rem;
  max-width: 26em;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul a {
  font-size: 0.9375rem;
  color: var(--ivory-dim);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--navy-line);
  font-size: 0.8125rem;
  color: var(--ivory-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom a { color: var(--ivory-muted); }
.footer-bottom a:hover { color: var(--terra); }

/* ─── Page hero (interior pages) ─────────────────────────────── */

.page-hero {
  padding: 10rem 0 5rem;
  border-bottom: 1px solid var(--navy-line);
  position: relative;
  overflow: hidden;
}

.page-hero-inner {
  max-width: 56rem;
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 1.5rem 0 1.75rem;
  font-weight: 500;
}

.page-hero h1 em,
.page-hero h1 strong,
.page-hero h1 b {
  color: var(--terra) !important;
  font-weight: 400;
  font-style: italic;
}

.page-hero .lead {
  max-width: 38em;
}

.page-hero-watermark {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  width: 32%;
  max-width: 380px;
  opacity: 0.06;
  pointer-events: none;
  color: var(--ivory);
}

/* ─── Long form content (Firm page) ──────────────────────────── */

.prose {
  max-width: var(--container-prose);
  margin: 0 auto;
}

.prose h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 3rem 0 1.5rem;
  letter-spacing: -0.02em;
}

.prose h3 {
  font-size: 1.375rem;
  margin: 2.5rem 0 1rem;
}

.prose p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ivory-dim);
  margin-bottom: 1.5rem;
  max-width: none;
}

.prose p strong {
  color: var(--ivory);
}

/* ─── Contact ───────────────────────────────────────────────── */

.contact-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .contact-paths { grid-template-columns: 1fr; }
}

.contact-path {
  padding: 2.5rem;
  background: rgba(15, 30, 51, 0.4);
  border: 1px solid var(--navy-line);
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

.contact-path .eyebrow {
  margin-bottom: 1.25rem;
}

.contact-path h3 {
  font-size: 1.625rem;
  margin-bottom: 1rem;
}

.contact-path p {
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.contact-direct {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--navy-line);
  text-align: center;
}

.contact-direct-email {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--terra);
  display: inline-block;
  margin-top: 1rem;
  letter-spacing: -0.01em;
}

.contact-direct-email:hover { color: var(--terra-bright); }

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--navy-line);
}

.contact-info-label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-muted);
  margin-bottom: 0.5rem;
}

.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--ivory);
  line-height: 1.5;
}

/* ─── Scroll reveal ─────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { animation: none !important; transition: none !important; }
}

/* ─── Utilities ─────────────────────────────────────────────── */

.text-terra { color: var(--terra); }
.divider {
  height: 1px;
  background: var(--navy-line);
  margin: clamp(3rem, 6vw, 5rem) 0;
}

.bg-deep { background: var(--navy-800); }

/* ─── Contact form ──────────────────────────────────────────── */

.contact-form {
  background: var(--navy-800);
  border: 1px solid var(--navy-line);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 0.5rem;
}

.form-optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.6;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--navy-900);
  border: 1px solid var(--navy-line);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 0.875rem 1rem;
  border-radius: 2px;
  transition: border-color 0.2s ease, background 0.2s ease;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--terra);
  background: var(--navy-700, #0F1F35);
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23A89A8B' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Honeypot — visually hidden but accessible to bots */
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Turnstile widget container */
.cf-turnstile {
  margin: 1.5rem 0;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.form-disclaimer {
  font-size: 0.8125rem;
  color: var(--ivory-dim);
  opacity: 0.75;
  line-height: 1.6;
  margin: 0;
}

.form-status {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 2px;
  font-size: 0.9375rem;
  line-height: 1.5;
  min-height: 1rem;
}

.form-status.success {
  background: rgba(120, 180, 130, 0.1);
  border: 1px solid rgba(120, 180, 130, 0.3);
  color: #9BC9A4;
}

.form-status.error {
  background: rgba(200, 100, 90, 0.1);
  border: 1px solid rgba(200, 100, 90, 0.3);
  color: #D49E96;
}

/* Email displayed as text, not link */
.contact-direct {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--navy-800);
  border-left: 2px solid var(--terra);
  border-radius: 2px;
}

.contact-direct-text {
  margin: 0.75rem 0 0;
  color: var(--ivory-dim);
  line-height: 1.7;
}

.email-protected {
  color: var(--ivory);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.9375rem;
  user-select: all;
  cursor: text;
  padding: 0.125rem 0.375rem;
  background: rgba(212, 158, 150, 0.08);
  border-radius: 2px;
}

.email-protected .at {
  color: var(--terra);
  font-weight: 500;
}

button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ════════════════════════════════════════════════════════════════════
   FLORIDA LUXURY RESTAGE  (v2026-05-27)
   Palm Beach scale, not billboard scale. Applied site-wide.
   ════════════════════════════════════════════════════════════════════ */

/* ─── Home hero ─────────────────────────────────────────────── */
.hero { min-height: 88vh; padding: 8rem 0 5rem; }
.hero-inner { max-width: 56rem; }

.hero h1 {
  font-size: clamp(2rem, 4.4vw, 3.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 2.25rem;
  font-weight: 500;
  max-width: 22ch;
}
.hero h1 strong,
.hero h1 em,
.hero h1 b {
  color: #b85a36 !important;
  font-weight: 600;
  font-style: normal;
}

.hero-sub {
  font-size: clamp(1rem, 1.25vw, 1.1875rem);
  line-height: 1.65;
  max-width: 34em;
  margin-bottom: 2.75rem;
  color: rgba(245, 240, 230, 0.78);
}

.hero-watermark { right: 2%; width: 42%; opacity: 0.06; }

.hero-actions { gap: 1.25rem; margin-bottom: 4.5rem; }

.hero-meta {
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 240, 230, 0.08);
  max-width: 52rem;
}
.hero-meta-label {
  font-size: 0.625rem;
  letter-spacing: 0.24em;
  color: rgba(245, 240, 230, 0.42);
}
.hero-meta-value {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(245, 240, 230, 0.88);
}

/* ─── Interior page heros (firm, investments, approach, insights, contact) ─── */
.page-hero { padding: 9rem 0 4.5rem; border-bottom: 1px solid rgba(245, 240, 230, 0.06); }
.page-hero-inner { max-width: 52rem; }

.page-hero h1 {
  font-size: clamp(1.875rem, 4vw, 3.25rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 1.5rem 0 1.5rem;
  font-weight: 500;
}
.page-hero h1 em,
.page-hero h1 strong,
.page-hero h1 b {
  color: #b85a36 !important;
  font-weight: 500;
  font-style: italic;
}
.page-hero .lead {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  max-width: 36em;
  color: rgba(245, 240, 230, 0.78);
  font-weight: 300;
}
.page-hero {
  position: relative;
  overflow: hidden;
  /* Establish a minimum height so the watermark has vertical room to breathe */
  min-height: 22rem;
}
.page-hero-watermark {
  position: absolute;
  right: 2%;
  top: 50%;
  transform: translateY(-50%);
  /* Cap by both width AND viewport height so the silhouette never overshoots */
  width: clamp(180px, 26%, 360px);
  max-height: 18rem;
  height: auto;
  object-fit: contain;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }

/* ─── Buttons site-wide: hairline hospitality ──────────────── */
.btn {
  padding: 0.9rem 1.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  border-width: 1px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary {
  background: transparent;
  color: #e4a085;
  border-color: rgba(184, 90, 54, 0.55);
}
.btn-primary:hover {
  background: rgba(184, 90, 54, 0.08);
  border-color: #b85a36;
  color: #f0c4af;
  transform: none;
  box-shadow: none;
}
.btn-ghost {
  background: transparent;
  color: rgba(245, 240, 230, 0.82);
  border-color: rgba(245, 240, 230, 0.18);
}
.btn-ghost:hover {
  border-color: rgba(245, 240, 230, 0.45);
  color: #f5f0e6;
  background: transparent;
}

/* Header CTA pill keeps the same restrained treatment */
.nav-cta {
  padding: 0.7rem 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 240, 230, 0.22);
  border-radius: 999px;
  background: transparent;
  color: rgba(245, 240, 230, 0.9);
}
.nav-cta:hover { border-color: rgba(245, 240, 230, 0.55); color: #f5f0e6; }

/* ─── Section headers: quieter, more editorial ─────────────── */
.section-header h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  letter-spacing: -0.015em;
  line-height: 1.2;
  font-weight: 500;
}

/* ─── Prose (Firm long-form) ───────────────────────────────── */
.prose h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 3rem 0 1.25rem;
  letter-spacing: -0.015em;
  font-weight: 500;
}
.prose h3 {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.prose p { line-height: 1.75; color: rgba(245, 240, 230, 0.82); }

/* ─── Mobile: scale everything down gracefully ─────────────── */
@media (max-width: 720px) {
  .hero { min-height: auto; padding: 6.5rem 0 4rem; }
  .hero h1 { font-size: clamp(1.875rem, 7vw, 2.5rem); max-width: none; }
  .hero h1 br { display: none; }
  .hero-sub { font-size: 1rem; margin-bottom: 2rem; }
  .hero-actions { gap: 0.75rem; margin-bottom: 3rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-meta { gap: 1.75rem; }
  .hero-watermark { display: none; }

  .page-hero { padding: 6.5rem 0 3rem; }
  .page-hero h1 { font-size: clamp(1.75rem, 7vw, 2.25rem); }
  .page-hero .lead { font-size: 0.9375rem; }
  .page-hero-watermark { display: none; }
}

/* ════════════════════════════════════════════════════════════════════
   MOBILE NAV — iOS containing-block fix  (v2026-05-27 b)

   ROOT CAUSE: .site-header has backdrop-filter: blur(16px). Per CSS
   spec, any element with non-none backdrop-filter creates a new
   containing block for fixed-position descendants. So .site-nav
   (position: fixed) gets anchored to the 85px-tall header rather than
   the viewport — top:0/bottom:0 only resolves to ~128px height, and
   the panel renders short. Hero content shows through the gap below,
   which the user perceives as "transparent menu."

   FIX: Pin explicit width + 100vh/100dvh height on the panel so it
   no longer relies on top/bottom anchoring. Force opaque background
   and its own stacking context. Add a body-level scrim via JS class.
   ════════════════════════════════════════════════════════════════════ */
@media (max-width: 880px) {
  .site-nav {
    /* Explicit dimensions so containing-block height doesn't matter */
    width: min(380px, 85vw) !important;
    height: 100vh !important;
    height: 100dvh !important;       /* iOS dynamic viewport (accounts for URL bar) */
    max-height: none !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;

    /* Re-anchor to top-right of the header's containing block.
       Because .site-header is itself fixed and covers the viewport
       top edge, top:0/right:0 still lands at viewport top-right. */
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;

    /* Solid opaque navy. Never resolve through transparency. */
    background-color: #0b1d3a !important;
    background-image: none !important;

    /* Kill any inherited backdrop blur from .site-header */
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;

    /* Own stacking context, above header content */
    z-index: 200 !important;
    isolation: isolate;
    opacity: 1 !important;
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.45);

    /* Scrollable if menu overflows */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Scrim — dims the page when the menu is open. Body class added by JS. */
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(8, 16, 28, 0.55);
    z-index: 150;
    pointer-events: none;
    animation: nav-scrim-in 0.35s ease forwards;
  }
  @keyframes nav-scrim-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* Nav links: explicit ivory color, never resolve to dim */
  .site-nav a,
  .site-nav .nav-cta {
    position: relative;
    z-index: 1;
    color: #f5f0e6 !important;
  }
  .site-nav a.active { color: #e4a085 !important; }
}


/* ============================================================
   PAGE NOTES — editorial FAQ section (Phase 2)
   ============================================================ */
.page-notes {
  background: var(--navy-900);
  padding: 6rem 0 7rem;
  border-top: 1px solid var(--navy-line);
}
.page-notes .container {
  max-width: 880px;
}
.notes-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-bright);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.notes-eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--terra-bright);
}
.notes-title {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ivory);
  margin: 0 0 3.5rem;
  max-width: 32ch;
}
.notes-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ivory-dim);
}
.note-entry {
  padding: 2.25rem 0;
  border-top: 1px solid var(--navy-line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}
.note-entry:last-child {
  border-bottom: 1px solid var(--navy-line);
}
.note-prompt {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ivory);
  line-height: 1.45;
  position: relative;
  margin: 0;
}
.note-prompt::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--terra);
  border-radius: 50%;
}
.note-body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ivory-dim);
  max-width: 60ch;
  margin: 0;
}
@media (max-width: 720px) {
  .page-notes { padding: 4rem 0 5rem; }
  .note-entry {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.75rem 0;
  }
  .notes-title { font-size: 1.5rem; margin-bottom: 2.5rem; }
  .note-prompt::before { display: none; }
}


/* ============================================================
   ESSAY — long-form article reading layout (Phase 3)
   ============================================================ */
.essay {
  background: var(--navy-900);
  color: var(--ivory);
}
.essay-container {
  max-width: 720px;
  margin: 0 auto;
}
.essay-header {
  padding: 6rem 0 3.5rem;
  border-bottom: 1px solid var(--navy-line);
}
.essay-breadcrumb {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-bright);
  font-weight: 500;
  margin-bottom: 2rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.essay-breadcrumb a {
  color: var(--terra-bright);
  text-decoration: none;
  transition: opacity .2s;
}
.essay-breadcrumb a:hover { opacity: .7; }
.essay-breadcrumb span[aria-hidden] { color: var(--ivory-faint); }

.essay-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ivory);
  margin: 0 0 1.5rem;
  max-width: 22ch;
}
.essay-deck {
  font-family: var(--font-sans);
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ivory-dim);
  margin: 0 0 2.5rem;
  max-width: 38ch;
}
.essay-meta {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--ivory-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.essay-meta a {
  color: var(--ivory-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--navy-line);
  transition: border-color .2s;
}
.essay-meta a:hover { border-color: var(--terra); }
.essay-sep { color: var(--ivory-faint); }

.essay-body {
  padding: 4rem 0;
}
.essay-body p {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ivory-dim);
  margin: 0 0 1.75rem;
  max-width: 64ch;
}
.essay-body p.drop-cap::first-letter {
  font-size: 4.5rem;
  font-weight: 500;
  float: left;
  line-height: 0.9;
  padding: 0.5rem 0.75rem 0 0;
  color: var(--terra);
  font-family: var(--font-sans);
}
.essay-body h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--ivory);
  margin: 4rem 0 1.5rem;
  max-width: 32ch;
}
.essay-body h3 {
  font-family: var(--font-sans);
  font-size: 1.1875rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ivory);
  margin: 3rem 0 1rem;
}
.essay-body ul, .essay-body ol {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ivory-dim);
  margin: 0 0 1.75rem;
  padding-left: 1.5rem;
  max-width: 64ch;
}
.essay-body li {
  margin-bottom: 0.6rem;
}
.essay-body li::marker {
  color: var(--terra);
}
.essay-body strong {
  color: var(--ivory);
  font-weight: 500;
}
.essay-body em {
  color: var(--ivory-dim);
  font-style: italic;
}
.essay-body a {
  color: var(--ivory);
  text-decoration: none;
  border-bottom: 1px solid var(--terra);
  transition: color .2s;
}
.essay-body a:hover { color: var(--terra-bright); }
.essay-body blockquote {
  border-left: 2px solid var(--terra);
  padding: 0.5rem 0 0.5rem 1.75rem;
  margin: 2.5rem 0;
  max-width: 60ch;
}
.essay-body blockquote p {
  font-style: italic;
  font-size: 1.1875rem;
  color: var(--ivory);
  font-weight: 300;
  line-height: 1.65;
}
.essay-pull {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--ivory);
  margin: 3.5rem 0;
  padding: 2.5rem 0;
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  max-width: 60ch;
}

.essay-footer {
  padding: 2rem 0 6rem;
  border-top: 1px solid var(--navy-line);
}
.essay-signoff {
  padding-top: 3rem;
}
.essay-signoff-line {
  margin: 0 0 1.5rem;
}
.essay-signoff-mark {
  color: var(--terra);
  font-size: 1.5rem;
  font-weight: 500;
}
.essay-signoff-text {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ivory-muted);
  max-width: 60ch;
  margin: 0;
}
.essay-signoff-text strong {
  color: var(--ivory);
  font-weight: 500;
}
.essay-signoff-text a {
  color: var(--terra-bright);
  text-decoration: none;
  border-bottom: 1px solid var(--terra);
}

.essay-cta { padding-top: 4rem; padding-bottom: 4rem; }

@media (max-width: 720px) {
  .essay-header { padding: 4rem 0 2.5rem; }
  .essay-body { padding: 2.5rem 0; }
  .essay-footer { padding: 1.5rem 0 4rem; }
  .essay-body p.drop-cap::first-letter {
    font-size: 3.5rem;
  }
  .essay-pull { margin: 2rem 0; padding: 2rem 0; }
}

/* ============================================================
   INSIGHTS INDEX — Essays grid
   ============================================================ */
.essays-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 3rem;
}
.essay-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 2.75rem 0;
  border-top: 1px solid var(--navy-line);
  text-decoration: none;
  color: inherit;
  transition: padding .25s ease;
}
.essay-card:last-child { border-bottom: 1px solid var(--navy-line); }
.essay-card:hover { padding-left: 1rem; }
.essay-card-meta {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra-bright);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.essay-card-meta time {
  color: var(--ivory-muted);
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 0.8125rem;
  font-weight: 400;
}
.essay-card-title {
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--ivory);
  margin: 0 0 1rem;
  transition: color .25s ease;
}
.essay-card:hover .essay-card-title { color: var(--terra-bright); }
.essay-card-deck {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ivory-dim);
  margin: 0 0 1rem;
  max-width: 56ch;
}
.essay-card-read {
  font-size: 0.8125rem;
  color: var(--terra-bright);
  letter-spacing: 0.04em;
}
.essay-card-read::after {
  content: " →";
  transition: padding-left .25s ease;
  display: inline-block;
}
.essay-card:hover .essay-card-read::after {
  padding-left: 0.35rem;
}

.essays-coming {
  padding: 2.75rem 0;
  border-top: 1px solid var(--navy-line);
  border-bottom: 1px solid var(--navy-line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  opacity: 0.6;
}
.essays-coming .essay-card-meta { color: var(--ivory-muted); }
.essays-coming .essay-card-title { color: var(--ivory-muted); }

@media (max-width: 720px) {
  .essay-card,
  .essays-coming {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 0;
  }
  .essay-card:hover { padding-left: 0; }
}
