/* ---------- TOKENS ---------- */
:root {
  --paper: #F2EBDD;
  --paper-warm: #ECE3D2;
  --ink: #1C1814;
  --ink-soft: #3A332C;
  --rule: #C9BFA9;
  --oxblood: #8A2A1F;
  --oxblood-deep: #6B1E15;
  --futura: 'Futura', 'Futura PT', 'Jost', 'Helvetica Neue', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--futura);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11 0 0 0 0 0.09 0 0 0 0 0.08 0 0 0 0.18 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.35;
  mix-blend-mode: multiply;
}
a { color: inherit; text-decoration: none; }

.label-sm {
  font-family: var(--futura);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(242, 235, 221, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease;
}
nav.scrolled { border-bottom-color: var(--rule); }
.wordmark {
  font-family: var(--futura);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1;
}
.wordmark .tag {
  display: block;
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.34em;
  margin-top: 5px;
  color: var(--ink-soft);
}
.nav-links { display: flex; gap: 34px; justify-self: center; }
.nav-links a {
  font-family: var(--futura);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--oxblood); }
.nav-right { justify-self: end; display: flex; align-items: center; gap: 20px; }
.nav-phone {
  font-family: var(--futura);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.nav-cta {
  font-family: var(--futura);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 9px 18px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  transition: all 0.25s ease;
}
.nav-cta:hover { background: var(--oxblood); border-color: var(--oxblood); }

/* ---------- HAMBURGER + MOBILE MENU ---------- */
.nav-burger {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  padding: 9px 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: 4px;
  z-index: 101;
  position: relative;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-burger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-active span:nth-child(2) { opacity: 0; }
.nav-burger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 80px 32px 40px;
  width: 100%;
  max-width: 480px;
  text-align: center;
}
.mobile-menu-inner > a {
  font-family: var(--futura);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.01em;
  padding: 6px 0;
}
.mobile-menu-inner > a:hover { color: var(--oxblood); }
.mobile-menu-inner .mobile-menu-phone {
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-top: 12px;
  border-top: 1px solid var(--rule);
  padding-top: 22px;
}
.mobile-menu-inner .mobile-menu-cta {
  background: var(--oxblood);
  color: var(--paper);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 24px;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-links, .nav-phone { display: none; }
  nav { grid-template-columns: 1fr auto; padding: 14px 18px; }
  .wordmark { font-size: 12px; }
  .wordmark .tag { display: none; }
  .nav-cta { padding: 11px 14px; font-size: 10px; letter-spacing: 0.16em; }
}

/* ---------- PAGE LAYOUT ---------- */
.page-header {
  padding: 180px 48px 60px;
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 2;
}
.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb {
  font-family: var(--futura);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--oxblood); }
.breadcrumb .sep { color: var(--rule); margin: 0 12px; }
.breadcrumb .current { color: var(--oxblood); }
.page-h1 {
  font-family: var(--futura);
  font-weight: 200;
  font-size: clamp(56px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}
.page-h1 em {
  font-style: normal;
  font-weight: 500;
  color: var(--oxblood);
}
.page-subhead {
  font-family: var(--futura);
  font-size: 18px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  max-width: 56ch;
}

/* ---------- BODY SECTION ---------- */
.body-section {
  padding: 80px 48px;
  position: relative;
  z-index: 2;
}
.body-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.body-prose p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 22px;
  max-width: 50ch;
}
.body-prose p:first-of-type::first-letter {
  font-family: var(--futura);
  font-weight: 500;
  color: var(--ink);
}
.services-block .label-sm {
  color: var(--oxblood);
  margin-bottom: 22px;
  display: block;
}
.services-block h2 {
  font-family: var(--futura);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.services-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.services-list li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding: 11px 0;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.services-list li:last-child { border-bottom: 1px solid var(--rule); }
.services-list li::before {
  content: '✦';
  color: var(--oxblood);
  font-size: 8px;
  flex-shrink: 0;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 100px 48px;
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 2;
}
.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.cta-headline {
  font-family: var(--futura);
  font-weight: 200;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.cta-headline em {
  font-style: normal;
  font-weight: 500;
  color: var(--oxblood);
}
.cta-sub {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.btn-primary {
  display: inline-block;
  background: var(--oxblood);
  color: var(--paper);
  font-family: var(--futura);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 32px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn-primary:hover {
  background: var(--oxblood-deep);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-block;
  font-family: var(--futura);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-left: 18px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 4px;
}
.btn-secondary:hover { color: var(--oxblood); border-bottom-color: var(--oxblood); }

/* ---------- OTHER BRANDS ---------- */
.also-section {
  padding: 80px 48px;
  position: relative;
  z-index: 2;
}
.also-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.also-section .label-sm {
  color: var(--oxblood);
  margin-bottom: 28px;
  display: block;
}
.also-section h2 {
  font-family: var(--futura);
  font-weight: 200;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.03em;
  margin-bottom: 36px;
  max-width: 36ch;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
}
.brand-grid a {
  display: block;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--futura);
  font-size: 18px;
  font-weight: 400;
  transition: color 0.2s ease, padding 0.2s ease;
}
.brand-grid a:hover {
  color: var(--oxblood);
  padding-left: 12px;
}
.brand-grid a .cat {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-left: 12px;
}

/* ---------- INDEX HUB SPECIFIC ---------- */
.hub-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  margin-top: 56px;
}
.hub-category h3 {
  font-family: var(--futura);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 24px;
}
.hub-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--rule);
}
.hub-category li { border-bottom: 1px solid var(--rule); }
.hub-category li a {
  display: block;
  padding: 18px 0;
  font-family: var(--futura);
  font-size: 17px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.hub-category li a:hover { color: var(--oxblood); padding-left: 10px; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 32px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.footer-copy { color: var(--paper); }
.footer-links {
  display: flex;
  gap: 20px;
  justify-self: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a { color: var(--paper); }
.footer-links a:hover { color: var(--oxblood); }
.footer-credit { justify-self: end; color: var(--paper); }

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--oxblood);
  color: var(--paper);
  font-family: var(--futura);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 22px;
  z-index: 90;
  box-shadow: 0 4px 18px rgba(28, 24, 20, 0.32);
  display: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.sticky-cta:hover {
  background: var(--oxblood-deep);
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .sticky-cta { display: inline-block; }
  .page-header { padding: 130px 18px 48px; }
  .body-section { padding: 56px 18px; }
  .body-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-section { padding: 60px 18px; }
  .also-section { padding: 56px 18px; }
  footer { grid-template-columns: 1fr; gap: 16px; text-align: center; padding: 28px 18px; }
  .footer-links { justify-self: center; }
  .footer-credit { justify-self: center; }
  .btn-secondary { display: block; margin: 18px 0 0; }
}

/* ---------- FLAGSHIP / FAQ PAGE ---------- */
.flagship-hero {
  padding: 180px 48px 80px;
  position: relative;
  z-index: 2;
  background: var(--paper);
}
.flagship-inner { max-width: 1200px; margin: 0 auto; }
.flagship-h1 {
  font-family: var(--futura);
  font-weight: 200;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
  max-width: 16ch;
}
.flagship-h1 em { font-style: normal; font-weight: 500; color: var(--oxblood); }
.flagship-lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 36px;
}
.flagship-meta {
  display: flex;
  gap: 36px;
  font-family: var(--futura);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.flagship-meta strong { color: var(--ink); font-weight: 500; }

.what-we-fix,
.who-we-serve,
.areas-served,
.pricing-block,
.faq-block {
  padding: 80px 48px;
  position: relative;
  z-index: 2;
  border-bottom: 1px solid var(--rule);
}
.what-we-fix .body-inner,
.who-we-serve .body-inner,
.areas-served .body-inner,
.pricing-block .body-inner,
.faq-block .body-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-head-flag {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: baseline;
  margin-bottom: 48px;
}
.section-num {
  font-family: var(--futura);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--oxblood);
}
.section-title-flag {
  font-family: var(--futura);
  font-weight: 200;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
.section-title-flag em { font-style: normal; font-weight: 500; color: var(--oxblood); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
}
.cat-card {
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--rule);
}
.cat-card h3 {
  font-family: var(--futura);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 14px;
}
.cat-card ul { list-style: none; padding: 0; margin: 0; }
.cat-card li { padding: 6px 0; font-size: 16px; }
.cat-card li a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.cat-card li a:hover { color: var(--oxblood); border-bottom-color: var(--oxblood); }

.who-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.who-list li {
  padding: 24px 0;
  border-top: 2px solid var(--ink);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.4;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
}
.area-grid a {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--futura);
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.area-grid a:hover { color: var(--oxblood); padding-left: 12px; }
.area-grid a .area-name { font-size: 18px; font-weight: 400; }
.area-grid a .area-note { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-top: 4px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid var(--rule);
}
.price-row {
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--rule);
}
.price-row .price-label {
  font-family: var(--futura);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 8px;
}
.price-row .price-amount {
  font-family: var(--futura);
  font-weight: 200;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.price-row .price-note { font-size: 14px; color: var(--ink-soft); }

.faq-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--rule); }
.faq-list details {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--futura);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  transition: color 0.2s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 200;
  color: var(--oxblood);
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { content: '×'; }
.faq-list summary:hover { color: var(--oxblood); }
.faq-list .faq-answer {
  margin-top: 16px;
  padding-right: 36px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- JOURNAL ---------- */
.journal-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--rule);
}
.journal-list article { padding: 32px 0; border-bottom: 1px solid var(--rule); }
.journal-list .post-meta {
  font-family: var(--futura);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 12px;
}
.journal-list h2 {
  font-family: var(--futura);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.journal-list h2 a:hover { color: var(--oxblood); }
.journal-list .post-excerpt {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}

.post-article { padding: 180px 48px 80px; position: relative; z-index: 2; }
.post-article-inner { max-width: 760px; margin: 0 auto; }
.post-article h1 {
  font-family: var(--futura);
  font-weight: 200;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 18px;
}
.post-article h1 em { font-style: normal; font-weight: 500; color: var(--oxblood); }
.post-article .post-meta {
  font-family: var(--futura);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 28px;
}
.post-article h2 {
  font-family: var(--futura);
  font-weight: 500;
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 14px;
}
.post-article p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.post-article ul {
  margin-bottom: 24px;
  padding-left: 0;
  list-style: none;
}
.post-article ul li {
  padding: 8px 0 8px 18px;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.post-article ul li::before {
  content: '✦';
  color: var(--oxblood);
  font-size: 8px;
  position: absolute;
  left: 0;
  top: 14px;
}
.post-article .post-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin: 32px 0;
  overflow: hidden;
}
.post-article .post-img img { width: 100%; height: 100%; object-fit: cover; }
.post-article .post-cta {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

@media (max-width: 900px) {
  .flagship-hero { padding: 130px 18px 56px; }
  .what-we-fix, .who-we-serve, .areas-served, .pricing-block, .faq-block { padding: 56px 18px; }
  .section-head-flag { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .flagship-meta { gap: 18px; font-size: 10px; }
  .post-article { padding: 130px 18px 56px; }
}
