/* ========================================================================
   THE PR PLUG — Brand System
   Locked tokens. No deviation.
   ======================================================================== */

:root {
  /* Colors */
  --emerald: #0E3B30;
  --emerald-2: #0a2e25;
  --gold: #C9A84C;
  --gold-2: #b9963c;
  --sand: #D4C5B9;
  --cream: #F5F1EA;
  --black: #0A0A0A;
  --muted: rgba(10,10,10,0.65);
  --muted-light: rgba(245,241,234,0.75);

  /* Fonts */
  --ff-display: "Playfair Display", Georgia, serif;
  --ff-italic: "Cormorant Garamond", Georgia, serif;
  --ff-label: "Josefin Sans", "Helvetica Neue", sans-serif;
  --ff-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Spacing */
  --container: 1200px;
  --section-y: 96px;
  --section-y-mobile: 56px;
}

/* ========================================================================
   Base
   ======================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--black);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ========================================================================
   Typography
   ======================================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 .4em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 18px;
}
.eyebrow-dark { color: var(--emerald); }

.italic-quote {
  font-family: var(--ff-italic);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.35;
  color: var(--cream);
}
.italic-quote-dark { color: var(--emerald); }

.lede {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
}
.on-dark .lede { color: var(--muted-light); }

/* ========================================================================
   Layout
   ======================================================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: var(--section-y) 0; }
.section-tight { padding: 72px 0; }
.section-emerald { background: var(--emerald); color: var(--cream); }
.section-emerald .eyebrow { color: var(--gold); }
.section-sand    { background: var(--sand); color: var(--black); }
.section-cream   { background: var(--cream); color: var(--black); }
.section-black   { background: var(--black); color: var(--cream); }
.on-dark { color: var(--cream); }

@media (max-width: 767px) {
  .section { padding: var(--section-y-mobile) 0; }
  .section-tight { padding: 48px 0; }
  body { font-size: 16px; }
}

/* ========================================================================
   Buttons
   ======================================================================== */
.btn {
  display: inline-block;
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
  text-align: center;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-2); border-color: var(--gold-2); }

.btn-secondary {
  background: transparent;
  color: var(--emerald);
  border: 1px solid var(--emerald);
}
.btn-secondary:hover { background: var(--emerald); color: var(--cream); }

.on-dark .btn-secondary {
  color: var(--cream);
  border-color: var(--cream);
}
.on-dark .btn-secondary:hover { background: var(--cream); color: var(--emerald); }

.btn-tertiary {
  font-family: var(--ff-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  display: inline-block;
}
.btn-tertiary:hover { color: var(--gold-2); border-color: var(--gold-2); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* ========================================================================
   Header
   ======================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--emerald);
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  text-decoration: none;
}
.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
}
.logo-word {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-primary a {
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.nav-primary a:hover, .nav-primary a.active {
  border-color: var(--gold);
  color: var(--gold);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.header-cta .btn { padding: 12px 22px; font-size: 12px; }

.mobile-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: transform .25s ease, opacity .2s ease;
}

@media (max-width: 980px) {
  .nav-primary, .header-cta .btn { display: none; }
  .mobile-toggle { display: flex; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--emerald);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 90px 28px 40px;
  gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid rgba(245,241,234,0.08);
}
.mobile-menu .btn { margin-top: 24px; align-self: flex-start; }
.mobile-close {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--cream);
  font-size: 28px;
  line-height: 1;
  font-family: var(--ff-label);
}

/* ========================================================================
   Hero (home)
   ======================================================================== */
.hero {
  background: var(--emerald);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  min-height: 86vh;
}
.hero-content {
  padding: 96px 56px 96px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.hero-content .kicker {
  font-family: var(--ff-label);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--ff-display);
  color: var(--gold);
  font-weight: 700;
  font-size: clamp(2.4rem, 5.3vw, 4.5rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin-bottom: 30px;
}
.hero h1 .quote-open, .hero h1 .quote-close { color: var(--gold); opacity: .9; }
.hero-sub {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.45;
  color: var(--cream);
  max-width: 52ch;
  margin-bottom: 34px;
}
.hero-right {
  background: var(--sand);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The gold circular portrait frame with geometric art-deco corners */
.hero-frame {
  position: relative;
  width: min(82%, 500px);
  aspect-ratio: 1 / 1;
}
.hero-frame .portrait {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: var(--sand) center top/cover no-repeat;
  background-image: url('../images/founder-portrait.jpg');
  background-position: center 22%;
  box-shadow: inset 0 0 60px rgba(14,59,48,0.15);
}
.hero-frame .ring-1 {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  pointer-events: none;
}
.hero-frame .ring-2 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  pointer-events: none;
}

/* Gold L-shaped corner brackets — outside the rings */
.hero-frame .corner {
  position: absolute;
  width: 18%;
  height: 18%;
  background: transparent;
  pointer-events: none;
}
.hero-frame .corner::before,
.hero-frame .corner::after {
  content: "";
  position: absolute;
  background: var(--gold);
}

/* TL: horizontal top + vertical left */
.hero-frame .tl { top: -2%; left: -2%; }
.hero-frame .tl::before { top: 0; left: 0; width: 100%; height: 1.5px; }
.hero-frame .tl::after  { top: 0; left: 0; width: 1.5px; height: 100%; }

/* TR: horizontal top + vertical right */
.hero-frame .tr { top: -2%; right: -2%; }
.hero-frame .tr::before { top: 0; right: 0; width: 100%; height: 1.5px; }
.hero-frame .tr::after  { top: 0; right: 0; width: 1.5px; height: 100%; }

/* BL: horizontal bottom + vertical left */
.hero-frame .bl { bottom: -2%; left: -2%; }
.hero-frame .bl::before { bottom: 0; left: 0; width: 100%; height: 1.5px; }
.hero-frame .bl::after  { bottom: 0; left: 0; width: 1.5px; height: 100%; }

/* BR: horizontal bottom + vertical right */
.hero-frame .br { bottom: -2%; right: -2%; }
.hero-frame .br::before { bottom: 0; right: 0; width: 100%; height: 1.5px; }
.hero-frame .br::after  { bottom: 0; right: 0; width: 1.5px; height: 100%; }

/* Inner diagonal detail lines on corners */
.hero-frame .corner-inner {
  position: absolute;
  width: 70%;
  height: 70%;
  pointer-events: none;
}
.hero-frame .corner-inner::before,
.hero-frame .corner-inner::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.hero-frame .tl .corner-inner { top: 26%; left: 26%; }
.hero-frame .tl .corner-inner::before { top: 0; left: 0; width: 60%; height: 1px; }
.hero-frame .tl .corner-inner::after  { top: 0; left: 0; width: 1px; height: 60%; }

.hero-frame .tr .corner-inner { top: 26%; right: 26%; }
.hero-frame .tr .corner-inner::before { top: 0; right: 0; width: 60%; height: 1px; }
.hero-frame .tr .corner-inner::after  { top: 0; right: 0; width: 1px; height: 60%; }

.hero-frame .bl .corner-inner { bottom: 26%; left: 26%; }
.hero-frame .bl .corner-inner::before { bottom: 0; left: 0; width: 60%; height: 1px; }
.hero-frame .bl .corner-inner::after  { bottom: 0; left: 0; width: 1px; height: 60%; }

.hero-frame .br .corner-inner { bottom: 26%; right: 26%; }
.hero-frame .br .corner-inner::before { bottom: 0; right: 0; width: 60%; height: 1px; }
.hero-frame .br .corner-inner::after  { bottom: 0; right: 0; width: 1px; height: 60%; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 64px 28px 40px; max-width: none; }
  .hero-right { padding: 40px 28px 72px; }
  .hero-frame { width: min(78%, 360px); }
}

/* ========================================================================
   Page Hero (non-home)
   ======================================================================== */
.page-hero {
  background: var(--emerald);
  color: var(--cream);
  padding: 112px 0 96px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  pointer-events: none;
}
.page-hero::before {
  content: "";
  position: absolute;
  right: 4%;
  bottom: -30%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.18);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--ff-display);
  color: var(--gold);
  max-width: 16ch;
}
.page-hero .lede {
  color: rgba(245,241,234,0.85);
  max-width: 64ch;
}

/* ========================================================================
   Signature Callout: "Patterns Don't Lie"
   ======================================================================== */
.patterns-callout {
  background: var(--black);
  color: var(--cream);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.patterns-callout .eyebrow { color: var(--gold); }
.patterns-callout h2 {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
  color: var(--gold);
  margin-bottom: 28px;
}
.patterns-callout p {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  color: var(--cream);
  max-width: 56ch;
  margin: 0 auto;
}
.patterns-callout .rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 36px;
}

/* ========================================================================
   Framework — I²OS
   ======================================================================== */
.framework-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(201,168,76,0.35);
  border-bottom: 1px solid rgba(201,168,76,0.35);
}
.framework-cell {
  padding: 44px 28px;
  border-right: 1px solid rgba(201,168,76,0.25);
}
.framework-cell:last-child { border-right: 0; }
.framework-cell .num {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.framework-cell h3 {
  color: var(--cream);
  font-size: 1.6rem;
  margin-bottom: 14px;
}
.framework-cell p {
  color: rgba(245,241,234,0.75);
  font-size: 15px;
  margin: 0;
}
@media (max-width: 900px) {
  .framework-grid { grid-template-columns: repeat(2,1fr); }
  .framework-cell:nth-child(2) { border-right: 0; }
  .framework-cell { border-bottom: 1px solid rgba(201,168,76,0.25); }
  .framework-cell:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 560px) {
  .framework-grid { grid-template-columns: 1fr; }
  .framework-cell { border-right: 0; border-bottom: 1px solid rgba(201,168,76,0.25); }
  .framework-cell:last-child { border-bottom: 0; }
}

/* ========================================================================
   Service Grid
   ======================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 900px) { .service-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--cream);
  border: 1px solid rgba(10,10,10,0.08);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -20px rgba(14,59,48,0.2);
}
.service-card .tag {
  font-family: var(--ff-label);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.service-card h3 {
  font-size: 1.45rem;
  color: var(--emerald);
  margin: 0 0 2px;
}
.service-card .price {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--black);
  font-weight: 700;
}
.service-card .duration {
  font-family: var(--ff-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 4px 0 6px;
}
.on-dark .service-card .duration { color: var(--gold); }
.service-card .who {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  margin: 2px 0 6px;
}
.service-card p { font-size: 15.5px; color: var(--muted); margin: 0; }
.service-card .btn-tertiary { margin-top: auto; color: var(--emerald); border-color: var(--emerald); }

.on-dark .service-card { background: rgba(245,241,234,0.06); border-color: rgba(201,168,76,0.18); color: var(--cream); }
.on-dark .service-card h3 { color: var(--cream); }
.on-dark .service-card .price { color: var(--gold); }
.on-dark .service-card p, .on-dark .service-card .who { color: rgba(245,241,234,0.75); }
.on-dark .service-card .btn-tertiary { color: var(--gold); border-color: var(--gold); }

/* ========================================================================
   Founder Card (homepage)
   ======================================================================== */
.founder-card {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
  align-items: center;
}
.founder-card .portrait-block {
  aspect-ratio: 3/4;
  background: var(--sand) center/cover no-repeat;
  background-image: url('../images/founder-about.jpg');
  background-position: center 25%;
  position: relative;
}
.founder-card .portrait-block::after {
  content: "";
  position: absolute;
  top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.founder-card h2 { color: var(--emerald); }
@media (max-width: 800px) {
  .founder-card { grid-template-columns: 1fr; gap: 40px; }
}

/* ========================================================================
   Proof / metrics
   ======================================================================== */
.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.proof-row .cell { border-top: 1px solid rgba(245,241,234,0.22); padding-top: 20px; }
.proof-row .cell .k {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.proof-row .cell p { color: rgba(245,241,234,0.82); font-size: 15px; margin: 0; }
@media (max-width: 700px) { .proof-row { grid-template-columns: 1fr; gap: 24px; } }

/* ========================================================================
   Final CTA strip
   ======================================================================== */
.cta-strip {
  background: var(--sand);
  text-align: center;
  padding: 120px 24px;
}
.cta-strip h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--emerald);
  max-width: 22ch;
  margin: 0 auto 18px;
}
.cta-strip p {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--black);
  max-width: 52ch;
  margin: 0 auto 32px;
}

/* ========================================================================
   Footer
   ======================================================================== */
.site-footer {
  background: var(--emerald);
  color: var(--cream);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-grid h4 {
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-grid p, .footer-grid a { color: rgba(245,241,234,0.82); font-size: 15px; }
.footer-grid a:hover { color: var(--gold); }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-tagline {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 18px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(201,168,76,0.4);
}
.footer-social a:hover { background: var(--gold); color: var(--emerald); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.newsletter-form { display: flex; gap: 0; margin-top: 14px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(245,241,234,0.5); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 12px 18px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.newsletter-form button:hover { background: var(--gold-2); }
.newsletter-msg { font-size: 13px; color: var(--gold); margin-top: 10px; min-height: 18px; font-family: var(--ff-italic); font-style: italic; }

.footer-base {
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 22px 0;
  font-size: 13px;
  color: rgba(245,241,234,0.6);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-base { flex-direction: column; align-items: flex-start; }
}

/* ========================================================================
   About page
   ======================================================================== */
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.origin-grid .portrait-stack {
  position: sticky;
  top: 100px;
}
.origin-grid .portrait-stack .img {
  aspect-ratio: 3/4;
  background: var(--sand) center/cover no-repeat;
  background-image: url('../images/founder-about.jpg');
  background-position: center 25%;
  position: relative;
}
.origin-grid .portrait-stack .img::after {
  content: "";
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.origin-grid .story h2 { color: var(--emerald); margin-top: 0; }
.origin-grid .story p { font-size: 17px; }
.origin-grid .story .pullquote {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.35;
  color: var(--emerald);
  border-left: 3px solid var(--gold);
  padding: 10px 0 10px 26px;
  margin: 36px 0;
}
@media (max-width: 900px) {
  .origin-grid { grid-template-columns: 1fr; gap: 40px; }
  .origin-grid .portrait-stack { position: static; }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.values-grid .value {
  padding: 28px 22px;
  border-top: 2px solid var(--gold);
  background: rgba(245,241,234,0.04);
}
.values-grid .value .n {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.values-grid .value h3 { color: var(--cream); font-size: 1.15rem; margin: 0 0 8px; }
.values-grid .value p { font-size: 14px; color: rgba(245,241,234,0.78); margin: 0; }
@media (max-width: 960px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .values-grid { grid-template-columns: 1fr; } }

/* ========================================================================
   Services page — full list
   ======================================================================== */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(14,59,48,0.15);
}
.service-row {
  display: grid;
  grid-template-columns: 110px 1.3fr 1fr auto;
  gap: 36px;
  padding: 44px 0;
  border-bottom: 1px solid rgba(14,59,48,0.15);
  align-items: start;
}
.service-row .n {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.8rem;
}
.service-row h3 {
  color: var(--emerald);
  font-size: 1.7rem;
  margin: 0 0 6px;
}
.service-row .who {
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.service-row .desc p { font-size: 15.5px; color: var(--muted); margin: 0; }
.service-row .meta { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.service-row .price {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--black);
  font-weight: 700;
}
.service-row .tag {
  font-family: var(--ff-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  background: rgba(14,59,48,0.08);
  padding: 6px 10px;
}
@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; gap: 12px; padding: 36px 0; }
  .service-row .meta { flex-direction: row; flex-wrap: wrap; }
}

/* ========================================================================
   Tools page
   ======================================================================== */
.tool-block {
  background: var(--cream);
  border: 1px solid rgba(14,59,48,0.12);
  margin-bottom: 40px;
}
.tool-block .tool-head {
  padding: 36px 36px 26px;
  border-bottom: 1px solid rgba(14,59,48,0.1);
  background: var(--sand);
}
.tool-block .tool-head h2 { color: var(--emerald); margin: 0 0 8px; }
.tool-block .tool-head p { margin: 0; color: var(--muted); }
.tool-block iframe { width: 100%; border: 0; display: block; background: var(--cream); }

.linkedin-card {
  background: var(--emerald);
  color: var(--cream);
  padding: 64px 52px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}
.linkedin-card h2 { color: var(--gold); }
.linkedin-card .price-big {
  font-family: var(--ff-display);
  font-size: 3.4rem;
  color: var(--gold);
  line-height: 1;
}
.linkedin-card .price-big span {
  display: block;
  font-family: var(--ff-label);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--cream);
  margin-top: 10px;
  text-transform: uppercase;
}
.linkedin-card ul { padding-left: 22px; color: rgba(245,241,234,0.85); font-size: 15px; }
.linkedin-card ul li { margin-bottom: 6px; }
@media (max-width: 800px) {
  .linkedin-card { grid-template-columns: 1fr; padding: 44px 28px; gap: 28px; }
}

/* ========================================================================
   Insights (blog)
   ======================================================================== */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid rgba(14,59,48,0.1);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.post-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -24px rgba(14,59,48,0.3);
}
.post-card .thumb {
  aspect-ratio: 16/10;
  background: var(--emerald) center/cover no-repeat;
}
.post-card .body { padding: 28px 26px 32px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .meta { font-family: var(--ff-label); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.post-card h3 { color: var(--emerald); font-size: 1.4rem; margin: 0; line-height: 1.2; }
.post-card .excerpt { color: var(--muted); font-size: 15px; margin: 4px 0 10px; }
.post-card .read { margin-top: auto; }

/* Post detail */
.post-hero {
  background: var(--emerald);
  color: var(--cream);
  padding: 100px 0 80px;
}
.post-hero h1 {
  font-family: var(--ff-display);
  color: var(--gold);
  max-width: 20ch;
  margin-bottom: 22px;
}
.post-hero .meta { font-family: var(--ff-label); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,241,234,0.75); }

.post-feature {
  width: 100%;
  aspect-ratio: 16/7;
  background: var(--sand) center/cover no-repeat;
}

.post-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 28px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--black);
}
.post-body p { margin: 0 0 1.3em; }
.post-body h2 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--emerald);
  margin: 44px 0 18px;
}
.post-body blockquote {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--emerald);
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  margin: 36px 0;
}
.post-body a { color: var(--emerald); border-bottom: 1px solid var(--gold); }

/* ========================================================================
   Collective page
   ======================================================================== */
.hub-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hub-grid img { width: 100%; }
@media (max-width: 900px) { .hub-grid { grid-template-columns: 1fr; gap: 40px; } }

.splits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.split-card {
  background: rgba(245,241,234,0.06);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 36px 28px;
  color: var(--cream);
}
.split-card .k {
  font-family: var(--ff-display);
  color: var(--gold);
  font-size: 2.2rem;
  margin-bottom: 10px;
  line-height: 1;
}
.split-card h3 { color: var(--cream); font-size: 1.15rem; margin: 0 0 10px; }
.split-card p { color: rgba(245,241,234,0.8); font-size: 14px; margin: 0; }
@media (max-width: 800px) { .splits-row { grid-template-columns: 1fr; } }

.splits-locked {
  background: rgba(245,241,234,0.04);
  border: 1px dashed rgba(201,168,76,0.4);
  padding: 64px 28px;
  text-align: center;
}
.splits-locked .lock-icon {
  width: 40px; height: 40px;
  margin: 0 auto 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-label); font-size: 18px;
}
.splits-locked h3 { color: var(--cream); font-size: 1.5rem; margin-bottom: 14px; }
.splits-locked p { color: rgba(245,241,234,0.75); max-width: 54ch; margin: 0 auto 24px; }

.splits-unlocked { display: none; }
.splits-unlocked.revealed { display: block; animation: fadeIn .5s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ========================================================================
   Modal
   ======================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.72);
  backdrop-filter: blur(4px);
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-backdrop.open { display: flex; animation: fadeIn .25s ease; }
.modal {
  background: var(--cream);
  color: var(--black);
  padding: 44px 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  border-top: 4px solid var(--gold);
}
.modal h3 { color: var(--emerald); font-size: 1.7rem; margin-bottom: 8px; }
.modal p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 22px;
  color: var(--emerald);
  line-height: 1;
}

/* ========================================================================
   Forms (inline preview — non-production)
   ======================================================================== */
.form-grid { display: grid; gap: 14px; }
.form-grid label {
  display: block;
  font-family: var(--ff-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 6px;
}
.section-emerald .form-grid label,
.on-dark .form-grid label { color: var(--gold); }
.section-emerald .form-grid input,
.section-emerald .form-grid select,
.section-emerald .form-grid textarea,
.on-dark .form-grid input,
.on-dark .form-grid select,
.on-dark .form-grid textarea {
  background: rgba(245,241,234,0.95);
  color: var(--black);
  border-color: rgba(201,168,76,0.35);
}
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(14,59,48,0.2);
  background: #fff;
  font: inherit;
  color: var(--black);
  outline: none;
  border-radius: 0;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--gold); }
.form-grid textarea { min-height: 130px; resize: vertical; }
.form-grid .btn { margin-top: 10px; justify-self: flex-start; }
.form-success {
  display: none;
  padding: 24px;
  border: 1px solid var(--gold);
  background: rgba(201,168,76,0.08);
  margin-top: 20px;
  font-family: var(--ff-italic);
  font-style: italic;
  color: var(--emerald);
}
.form-success.show { display: block; animation: fadeIn .4s ease; }

/* ========================================================================
   Contact
   ======================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-primary {
  padding: 44px 40px;
  background: var(--emerald);
  color: var(--cream);
  border-top: 4px solid var(--gold);
}
.contact-primary h2 { color: var(--gold); margin-bottom: 12px; }
.contact-primary p { color: rgba(245,241,234,0.82); margin-bottom: 24px; }
.contact-primary .detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(201,168,76,0.3);
  font-size: 15px;
}
.contact-primary .detail a { color: var(--gold); border-bottom: 1px solid var(--gold); }
.contact-secondary h2 { color: var(--emerald); }
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }

/* ========================================================================
   Split Two-Col Panels
   ======================================================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; gap: 36px; } }

/* ========================================================================
   Helpers
   ======================================================================== */
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.nowrap { white-space: nowrap; }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.gold { color: var(--gold); }
.emerald { color: var(--emerald); }
.divider { width: 60px; height: 1px; background: var(--gold); margin: 24px 0; }
.divider-center { margin-left: auto; margin-right: auto; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ========================================================================
   Native Forms (production — Tools page + Newsletter + LinkedIn checkout)
   ======================================================================== */
.tpp-form { display: grid; gap: 22px; max-width: 760px; }
.tpp-form .field { display: grid; gap: 8px; }
.tpp-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .tpp-form .field-row { grid-template-columns: 1fr; } }
.tpp-form label,
.tpp-form .field-label {
  font-family: var(--ff-label);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald);
  font-weight: 600;
}
.tpp-form .field-hint {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: 13px;
  color: var(--muted);
  margin-top: -2px;
}
.tpp-form input[type="text"],
.tpp-form input[type="email"],
.tpp-form input[type="url"],
.tpp-form input[type="tel"],
.tpp-form select,
.tpp-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(14,59,48,0.22);
  background: #fff;
  font: inherit;
  font-size: 15px;
  color: var(--black);
  outline: none;
  border-radius: 0;
  transition: border-color .2s ease, background .2s ease;
}
.tpp-form input:focus,
.tpp-form select:focus,
.tpp-form textarea:focus {
  border-color: var(--gold);
  background: #fffdf6;
}
.tpp-form textarea { min-height: 110px; resize: vertical; line-height: 1.55; }
.tpp-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--emerald) 50%), linear-gradient(135deg, var(--emerald) 50%, transparent 50%);
  background-position: calc(100% - 18px) 18px, calc(100% - 13px) 18px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 38px;
}
.tpp-form .checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
}
@media (max-width: 640px) { .tpp-form .checkbox-grid { grid-template-columns: 1fr; } }
.tpp-form .check {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(14,59,48,0.18);
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: border-color .2s, background .2s;
}
.tpp-form .check:hover { border-color: var(--gold); }
.tpp-form .check input { margin-top: 3px; accent-color: var(--gold); }
.tpp-form .check.is-checked { border-color: var(--gold); background: rgba(201,168,76,0.06); }

.tpp-form .honey { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.tpp-form .submit-row {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-top: 8px; padding-top: 22px;
  border-top: 1px solid rgba(14,59,48,0.12);
}
.tpp-form .submit-row .btn[disabled] {
  opacity: 0.55; cursor: not-allowed; pointer-events: none;
}
.tpp-form .dwell-meter {
  font-family: var(--ff-label);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.tpp-form .dwell-meter.ready { color: var(--gold); }
.tpp-form .form-error {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: 14px;
  color: #8a2828;
  display: none;
}
.tpp-form .form-error.show { display: block; }

/* On dark/emerald sections (LinkedIn audit checkout) */
.section-emerald .tpp-form label,
.on-dark .tpp-form label,
.section-emerald .tpp-form .field-label,
.on-dark .tpp-form .field-label { color: var(--gold); }
.section-emerald .tpp-form .field-hint,
.on-dark .tpp-form .field-hint { color: rgba(245,241,234,0.7); }
.section-emerald .tpp-form input,
.section-emerald .tpp-form select,
.section-emerald .tpp-form textarea,
.on-dark .tpp-form input,
.on-dark .tpp-form select,
.on-dark .tpp-form textarea {
  background: rgba(245,241,234,0.96);
  border-color: rgba(201,168,76,0.4);
}
.section-emerald .tpp-form .check,
.on-dark .tpp-form .check {
  background: rgba(245,241,234,0.06);
  border-color: rgba(201,168,76,0.35);
  color: var(--cream);
}
.section-emerald .tpp-form .submit-row,
.on-dark .tpp-form .submit-row { border-top-color: rgba(201,168,76,0.3); }
.section-emerald .tpp-form .dwell-meter.ready,
.on-dark .tpp-form .dwell-meter.ready { color: var(--gold); }

/* Branded thank-you screen */
.tpp-thanks {
  display: none;
  padding: 48px 40px;
  background: var(--cream);
  border-top: 4px solid var(--gold);
  border-bottom: 1px solid rgba(14,59,48,0.12);
}
.tpp-thanks.show {
  display: block;
  animation: fadeIn .5s ease;
}
.tpp-thanks .eyebrow { color: var(--gold); margin-bottom: 14px; }
.tpp-thanks h3 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--emerald);
  margin: 0 0 14px;
  line-height: 1.05;
}
.tpp-thanks p {
  font-family: var(--ff-italic);
  font-style: italic;
  font-size: 18px;
  color: var(--emerald);
  max-width: 56ch;
  margin: 0 0 18px;
}
.tpp-thanks .next {
  font-family: var(--ff-body);
  font-style: normal;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
}
.tpp-thanks .redirect-meter {
  font-family: var(--ff-label);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.section-emerald .tpp-thanks,
.on-dark .tpp-thanks {
  background: rgba(245,241,234,0.06);
  border-bottom-color: rgba(201,168,76,0.3);
}
.section-emerald .tpp-thanks h3,
.on-dark .tpp-thanks h3 { color: var(--gold); }
.section-emerald .tpp-thanks p,
.on-dark .tpp-thanks p { color: var(--cream); }
.section-emerald .tpp-thanks .next,
.on-dark .tpp-thanks .next { color: rgba(245,241,234,0.75); }

/* LinkedIn audit checkout layout — one-column form inside the linkedin-card style block */
.linkedin-checkout {
  margin-top: 40px;
  padding: 40px;
  background: var(--emerald);
  color: var(--cream);
  border-top: 4px solid var(--gold);
}
.linkedin-checkout h3 {
  color: var(--gold);
  font-size: 26px;
  margin: 0 0 8px;
}
.linkedin-checkout p.lede-small {
  color: rgba(245,241,234,0.78);
  font-size: 15px;
  margin: 0 0 26px;
  max-width: 60ch;
}
@media (max-width: 700px) { .linkedin-checkout { padding: 28px 22px; } }
