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

:root {
  --navy:       #12192b;
  --navy-mid:   #1c2740;
  --navy-light: #243050;
  --amber:      #c4801a;
  --amber-light:#e09a38;
  --cream:      #f2ead8;
  --cream-dim:  #d8cebc;
  --white:      #ffffff;
  --text-body:  #c8c0b0;
  --text-muted: #7a7265;
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(18,25,43,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,128,26,0.15);
}
.nav-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-link {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--cream);
}
.nav-link--active {
  color: var(--amber);
}
.nav-cta {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
  border: 1px solid rgba(196,128,26,0.4);
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-cta:hover {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(196,128,26,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 80%, rgba(28,39,64,0.9) 0%, transparent 50%);
}
/* Subtle hop/grain pattern */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(196,128,26,0.015) 40px,
    rgba(196,128,26,0.015) 41px
  );
}
.hero-inner {
  position: relative;
  max-width: 820px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber-light);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-body);
  max-width: 540px;
  margin-bottom: 0;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-credential {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.hero-credential-line {
  width: 32px;
  height: 1px;
  background: var(--amber);
}
.hero-credential-text {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.hero-credential-text strong {
  color: var(--cream-dim);
  font-weight: 500;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-amber {
  background: var(--amber);
  color: var(--navy);
}
.btn-amber:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(242,234,216,0.25);
}
.btn-ghost:hover {
  border-color: rgba(242,234,216,0.6);
  background: rgba(242,234,216,0.05);
}

/* ── SECTIONS ── */
section { padding: 6rem 2rem; }
.container { max-width: 1080px; margin: 0 auto; }
.section-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.section-title em {
  font-style: italic;
  color: var(--amber-light);
}
.section-rule {
  width: 48px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 2rem;
}

/* ── PROBLEM ── */
.problem {
  background: var(--navy-mid);
  border-top: 1px solid rgba(196,128,26,0.12);
  border-bottom: 1px solid rgba(196,128,26,0.12);
}
.problem-grid {
  display: block;
}
.problem-intro {
  max-width: 640px;
  margin-bottom: 3rem;
}
.problem-intro p {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.problem-intro p:last-child { margin-bottom: 0; }
.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(196,128,26,0.12);
  border: 1px solid rgba(196,128,26,0.12);
}
.problem-card {
  background: var(--navy);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.problem-card:hover { background: var(--navy-light); }
.problem-card-label {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.35rem;
}
.problem-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── WHO ── */
.who-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}
.who-photo-wrap {
  position: relative;
}
.who-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
}
.who-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px dashed rgba(196,128,26,0.3);
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.who-photo-placeholder svg {
  opacity: 0.3;
}
.who-photo-frame {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  border: 1px solid rgba(196,128,26,0.25);
  pointer-events: none;
}
.who-text p {
  color: var(--text-body);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.who-text p:last-of-type { margin-bottom: 0; }
.who-credentials {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.who-credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--cream-dim);
}
.who-credential-item::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--amber);
  flex-shrink: 0;
}

/* ── WHAT ── */
.what { background: var(--navy-mid); }
.what-intro {
  max-width: 600px;
  margin-bottom: 3.5rem;
}
.what-intro p {
  color: var(--text-body);
  font-size: 1.05rem;
}
.tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(196,128,26,0.12);
  border: 1px solid rgba(196,128,26,0.12);
}
.tier {
  background: var(--navy);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.2s;
}
.tier:hover { background: var(--navy-light); }
.tier--featured {
  background: var(--navy-light);
}
.tier-name {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.tier-price {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.tier-price-period {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.tier-features li {
  font-size: 0.92rem;
  color: var(--text-body);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.tier-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.7rem;
}
.tier-features li.tier-highlight {
  color: var(--amber-light);
  font-style: italic;
}
.tier-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(196,128,26,0.1);
}


/* ── OPS ── */
.ops { background: var(--navy); }
.ops-product {
  max-width: 720px;
}
.ops-product > p {
  color: var(--text-body);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.ops-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.ops-category-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.ops-category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ops-category-list li {
  font-size: 0.92rem;
  color: var(--text-body);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.5;
}
.ops-category-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.7rem;
}
.ops-pricing {
  border-left: 2px solid var(--amber);
  padding-left: 2rem;
  margin-top: 2.5rem;
}
.ops-pricing-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.ops-pricing > p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.ops-pricing-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ops-pricing-details li {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.5;
}
.ops-pricing-details li strong {
  color: var(--cream);
}
/* ── TABS ── */
.tabs {
  position: relative;
}
.tab-nav {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(196,128,26,0.2);
}
.tab-btn {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 1rem 2rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}
.tab-btn:hover {
  color: var(--cream);
}
.tab-btn--active {
  color: var(--amber);
}
.tab-btn--hint {
  animation: tabHint 1.8s 0.5s ease-in-out 3;
}
@keyframes tabHint {
  0%, 100% { color: var(--cream); }
  40% { color: var(--amber-light); }
  70% { color: var(--amber-light); }
}
.tab-btn--active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
}
.tab-panel {
  display: none;
  animation: tabFade 0.35s ease;
}
.tab-panel--active {
  display: block;
}
@keyframes tabFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.ops-timeline {
  margin-top: 3.5rem;
}
.ops-timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.25rem;
}
.ops-timeline-step {
  border-top: 2px solid rgba(196,128,26,0.25);
  padding-top: 1rem;
}
.ops-timeline-period {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.ops-timeline-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ── TIMELINE ── */
.timeline-intro {
  max-width: 540px;
  margin-bottom: 3.5rem;
}
.timeline-intro p {
  color: var(--text-body);
  font-size: 1.05rem;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(196,128,26,0.1);
  border: 1px solid rgba(196,128,26,0.1);
}
.timeline-phase {
  background: var(--navy);
  padding: 2rem 1.75rem;
  position: relative;
}
.timeline-phase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--navy-light);
  transition: background 0.3s;
}
.timeline-phase:hover::before {
  background: var(--amber);
}
.timeline-period {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
}
.timeline-phase-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.timeline-tagline {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--amber-light);
}

/* ── FAQ ── */
.faq { background: var(--navy); }
.faq-intro {
  max-width: 600px;
  margin-bottom: 3rem;
}
.faq-intro p {
  color: var(--text-body);
  font-size: 1.05rem;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
}
.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(196,128,26,0.1);
}
.faq-item:first-child {
  border-top: 1px solid rgba(196,128,26,0.1);
}
.faq-question {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.faq-answer {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 680px;
}

/* ── TERMS ── */
.terms { background: var(--navy-mid); }
.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.terms-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.terms-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(196,128,26,0.1);
  font-size: 0.95rem;
  color: var(--text-body);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}
.terms-list li:first-child { border-top: 1px solid rgba(196,128,26,0.1); }
.terms-list li::before {
  content: '\2713';
  color: var(--amber);
  font-size: 0.78rem;
  margin-top: 0.15rem;
}
.terms-cta {
  padding: 2.5rem;
  background: var(--navy);
  border: 1px solid rgba(196,128,26,0.2);
}
.terms-cta-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.terms-cta-sub {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.terms-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.terms-steps li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--text-body);
}
.terms-steps li span:first-child {
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--amber);
  min-width: 1.2rem;
  margin-top: 0.05rem;
}

/* ── FOOTER ── */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(196,128,26,0.12);
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
}
.footer-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}
.footer-right {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: right;
}
.footer-right a {
  color: var(--amber);
  text-decoration: none;
}
.footer-right a:hover { text-decoration: underline; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── BLOG INDEX ── */
.blog-header {
  padding-top: 8rem;
  padding-bottom: 2rem;
}
.blog-list {
  max-width: 820px;
}
.blog-post-row {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(196,128,26,0.15);
  display: block;
  text-decoration: none;
  transition: background 0.2s;
}
.blog-post-row:first-child {
  border-top: 1px solid rgba(196,128,26,0.15);
}
.blog-post-row:hover {
  background: rgba(196,128,26,0.03);
}
.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.blog-post-category {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(196,128,26,0.1);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.blog-post-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.blog-post-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.35rem;
  transition: color 0.2s;
}
.blog-post-row:hover .blog-post-title {
  color: var(--white);
}
.blog-post-excerpt {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── BLOG POST ── */
.post-header {
  padding-top: 7rem;
  padding-bottom: 0;
}
.post-back {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
  margin-bottom: 2.5rem;
}
.post-back:hover {
  color: var(--cream);
}
.post-meta {
  margin-bottom: 1rem;
}
.post-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}
.post-byline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.post-rule {
  width: 40px;
  height: 2px;
  background: var(--amber);
}
.post-body {
  padding-top: 3rem;
  padding-bottom: 4rem;
}
.post-body .container {
  max-width: 720px;
}
.post-body p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.post-body h2 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.post-body h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.post-placeholder {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-style: italic;
  padding: 2rem;
  border: 1px dashed rgba(196,128,26,0.2);
  text-align: center;
  margin-top: 2rem;
}
.post-nav {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(196,128,26,0.15);
  padding: 2rem 0 0;
}
.post-nav a {
  text-decoration: none;
  transition: color 0.2s;
}
.post-nav-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.post-nav-title {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream-dim);
}
.post-nav a:hover .post-nav-title {
  color: var(--cream);
}
.post-nav-next {
  text-align: right;
}

/* ── CONTACT ── */
.contact-section {
  padding-top: 8rem;
}
.contact-form {
  max-width: 540px;
}
.contact-intro {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.5rem;
}
.form-input,
.form-textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--cream);
  background: var(--navy-mid);
  border: 1px solid rgba(196,128,26,0.2);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* ── MICRO FORM ── */
.micro-form {
  max-width: 540px;
  margin-bottom: 0;
}
.micro-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.micro-form .form-group {
  margin-bottom: 0;
}
.contact-divider {
  max-width: 540px;
  height: 1px;
  background: rgba(196,128,26,0.15);
  margin: 4rem 0;
}
@media (max-width: 600px) {
  .micro-form-fields {
    grid-template-columns: 1fr;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .problem-cards,
  .who-grid,
  .terms-grid { grid-template-columns: 1fr; }
  .who-grid,
  .terms-grid { gap: 3rem; }
  .tiers { grid-template-columns: 1fr; }
  .ops-categories { grid-template-columns: 1fr; }
  .ops-timeline-steps { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .who-photo-wrap { max-width: 320px; }
}
@media (max-width: 600px) {
  section { padding: 4rem 1.25rem; }
  .timeline { grid-template-columns: 1fr; }
  .ops-timeline-steps { grid-template-columns: 1fr; }
  .hero { padding: 7rem 1.25rem 4rem; }
  .nav { padding: 1rem 1.25rem; }
  .post-nav { flex-direction: column; gap: 1.5rem; }
  .post-nav-next { text-align: left; }
}
