/* =========================================================
   Daniel Jorge — Unified Site Styles
   Legalor-inspired editorial design system
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Palette */
  --bg: #fcf7ef;
  --bg-alt: #f4ede1;
  --bg-sand: #efe4d0;
  --surface: #ffffff;
  --surface-dark: #313027;
  --surface-dark-2: #3b3a2f;
  --surface-deepest: #1b1a15;
  --text: #1f1e18;
  --text-soft: #5f5a50;
  --text-light: rgba(255, 255, 255, 0.86);
  --text-mute: rgba(255, 255, 255, 0.56);
  --gold: #b88a2f;
  --gold-soft: #d5b16a;
  --gold-deep: #8d6a22;
  --line: #e5dbca;
  --line-dark: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 50px rgba(31, 30, 24, 0.10);
  --shadow-sm: 0 8px 24px rgba(31, 30, 24, 0.06);
  --radius: 20px;
  --radius-sm: 14px;
  --radius-xl: 28px;
  --max: 1200px;
  --max-narrow: 820px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
p, li, input, textarea, summary, label, button, small, select {
  font-family: Arial, Helvetica, sans-serif;
}
h1, h2, h3, h4, h5 { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; }

/* Ensure spacing between last content section and footer */
main > :last-child {
  margin-bottom: 0;
}
main > .section:last-child:not(.cta-band),
main > .section-alt:last-child,
main > .legal-page:last-child {
  padding-bottom: 6rem;
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}
.narrow { max-width: var(--max-narrow); margin: 0 auto; }
.center { text-align: center; }

.skip-link { position: absolute; left: -9999px; }
.skip-link:focus {
  left: 1rem; top: 1rem;
  background: #fff; padding: 0.8rem 1rem; z-index: 99;
}

/* ---------- Top Bar ---------- */
.topbar {
  background: #202018;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  flex-wrap: wrap;
}
.topbar strong { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--gold-soft); }

/* ---------- Site Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(252, 247, 239, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(31, 30, 24, 0.06);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 1rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-mark {
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.logo-sub {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 0.25rem;
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.4rem;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.25s;
}
.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}
.site-nav a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.25s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold);
}
.site-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--gold);
}

/* Dropdown (simple hover) */
.has-drop { position: relative; }
.drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.1rem;
  margin-top: 0.5rem;
  z-index: 40;
}
.drop a {
  padding: 0.6rem 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
}
.drop a:hover {
  background: var(--bg-alt);
  color: var(--gold);
}
.has-drop:hover > .drop,
.has-drop:focus-within > .drop {
  display: flex;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.3rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition: 0.25s ease;
  cursor: pointer;
  font-size: 0.95rem;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--surface-dark); color: #fff; }
.btn-primary:hover { background: #26251f; border-color: var(--gold); }
.btn-secondary { border-color: #b9af9d; background: transparent; color: var(--text); }
.btn-secondary:hover { background: #efe4d0; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-deep); }
.btn-light { background: #fff; color: var(--text); }
.btn-light:hover { background: var(--bg-alt); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.08); border-color: #fff; }
.btn-sm { padding: 0.72rem 1rem; font-size: 0.88rem; }
.btn-arrow svg { width: 14px; height: 14px; }

/* ---------- Hero ---------- */
.hero {
  padding: 0;
  background: linear-gradient(180deg, #fff6ea 0%, var(--bg) 100%);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 0;
  align-items: stretch;
  min-height: calc(100vh - 140px);
  max-height: 820px;
}
.hero-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #dfc69a 0%, #9b7a3e 35%, #353327 100%);
  min-height: 620px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.38), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2));
}
.portrait-frame {
  position: absolute;
  inset: 8% 7% 0 10%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: none;
  border-top-left-radius: 240px;
  border-top-right-radius: 240px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.12));
}
.portrait-frame::before {
  content: "DJ";
  position: absolute;
  inset: auto 0 12% 0;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.16);
}
.portrait-copy {
  position: absolute;
  left: 10%;
  bottom: 6%;
  max-width: 68%;
  color: #fff;
  z-index: 2;
}
.portrait-copy p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}
.portrait-copy h2 {
  font-size: 1.85rem;
  line-height: 1.05;
  margin: 0.65rem 0 0;
  font-weight: 600;
}
.hero-copy {
  padding: 5rem 0 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.hero-copy h1 {
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0.25rem 0 1.2rem;
  font-weight: 700;
}
.lead {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  color: var(--text-soft);
  max-width: 620px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.5rem;
  margin-top: 2.4rem;
  max-width: 540px;
}
.stat {
  border-left: 2px solid var(--gold);
  padding-left: 0.9rem;
}
.stat strong {
  display: block;
  font-size: 1.85rem;
  line-height: 1;
  font-family: Georgia, serif;
  font-weight: 700;
}
.stat span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 0.35rem;
}

/* ---------- Service Strip (overlapping) ---------- */
.service-strip {
  margin-top: -70px;
  position: relative;
  z-index: 3;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  box-shadow: var(--shadow);
  border-radius: 12px;
  overflow: hidden;
}
.service-card-dark {
  background: var(--surface-dark);
  color: #fff;
  padding: 2.2rem 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}
.service-card-dark:nth-child(2) { background: var(--surface-dark-2); }
.service-card-dark:last-child { border-right: none; }
.service-card-dark:hover { background: #46453a; }
.service-card-dark .icon {
  font-size: 1.5rem;
  color: var(--gold-soft);
  margin-bottom: 0.6rem;
}
.service-card-dark h3 {
  font-size: 1.4rem;
  margin: 0 0 0.65rem;
  font-weight: 700;
}
.service-card-dark p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
  line-height: 1.65;
}
.service-card-dark .more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.service-card-dark .more:hover { color: #fff; }

/* ---------- Generic Sections ---------- */
.section { padding: 5.2rem 0; }
.section-alt { background: var(--bg-alt); }
.section-sand { background: var(--bg-sand); }
.section-dark { background: #25241d; color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p, .section-dark li { color: rgba(255, 255, 255, 0.8); }
.section-heading { margin-bottom: 2.6rem; max-width: 780px; }
.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  margin: 0.25rem 0 0.8rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.section-heading p {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-soft);
  font-size: 1.02rem;
  margin: 0;
}
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Split Layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split.img-right { grid-template-columns: 1fr 1fr; }
.image-panel {
  background: linear-gradient(160deg, #d7c7aa, #7f6841 55%, #342f25);
  min-height: 520px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-panel::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
}
.image-panel .overlay-mark {
  position: absolute;
  inset: auto 0 30% 0;
  text-align: center;
  font-family: Georgia, serif;
  font-size: 9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.14);
  letter-spacing: 0.12em;
  pointer-events: none;
}
.quote-overlay {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  background: rgba(31, 30, 24, 0.82);
  padding: 1.4rem 1.6rem;
  border-radius: 18px;
  color: #fff;
}
.quote-overlay p { margin: 0; font-size: 0.98rem; line-height: 1.7; }
.quote-overlay small {
  display: block;
  margin-top: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ---------- Quote Panel (editorial callout) ---------- */
.quote-panel {
  background: var(--surface-dark);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.quote-panel::before {
  content: "\201C";
  position: absolute;
  top: -0.2rem;
  left: 1.5rem;
  font-family: Georgia, serif;
  font-size: 14rem;
  font-weight: 700;
  color: rgba(184, 138, 47, 0.10);
  line-height: 1;
  pointer-events: none;
}
.quote-panel blockquote {
  margin: 0;
  position: relative;
  z-index: 1;
}
.quote-panel blockquote p {
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: #fff;
  margin: 0;
}
.quote-panel cite {
  display: block;
  margin-top: 1.6rem;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.quote-panel .rule {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.quote-panel .kicker {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 1.4rem; }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.card h3, .card h4 { margin-top: 0; }
.card p { color: var(--text-soft); }
.card-gold-top { border-top: 3px solid var(--gold); }
.card-gold-accent::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1rem;
}
.section-dark .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  color: #fff;
}
.section-dark .card p { color: rgba(255, 255, 255, 0.7); }

/* Program card (coaching) */
.program-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.program-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.program-card .tag {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.program-card h3 {
  font-size: 1.45rem;
  margin: 0 0 0.65rem;
}
.program-card p { color: var(--text-soft); margin: 0; }
.program-card ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.4rem;
  display: grid;
  gap: 0.55rem;
}
.program-card li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.92rem;
  color: var(--text);
}
.program-card li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 0.2rem;
}
.program-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Process / Steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.process-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.6rem;
}
.step strong {
  display: block;
  font-size: 1.8rem;
  font-family: Georgia, serif;
  color: var(--gold);
  margin-bottom: 0.55rem;
  font-weight: 700;
}
.step h4 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}
.step span, .step p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0;
}
.section-dark .step {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}
.section-dark .step p, .section-dark .step span {
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Results / Dark Band ---------- */
.results-band {
  background: linear-gradient(180deg, #29271f, #1d1c17);
  color: #fff;
}
.results-band h2, .results-band h3, .results-band h4 { color: #fff; }
.results-band .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.results-band .card p { color: rgba(255, 255, 255, 0.72); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.9rem; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  transition: box-shadow 0.25s;
}
.faq-list details[open] { box-shadow: var(--shadow-sm); }
.faq-list summary {
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  color: var(--text);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform 0.25s;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list p {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.9rem;
}
.contact-form label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: -0.35rem;
  display: block;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #d8ccb7;
  border-radius: 14px;
  padding: 0.95rem 1rem;
  font: inherit;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  transition: border-color 0.25s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form button { margin-top: 0.4rem; justify-self: start; }
.contact-list { padding-left: 0; list-style: none; }
.contact-list li {
  margin: 0.85rem 0;
  color: var(--text-soft);
  padding-left: 1.5rem;
  position: relative;
}
.contact-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 0.5rem;
}
.contact-list strong {
  display: block;
  color: var(--text);
  font-family: Georgia, serif;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.hp-field { position: absolute; left: -9999px; }

/* ---------- Page Hero ---------- */
.page-hero {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
  background: var(--surface-dark);
  color: #fff;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/daniel-profile.png') center top / cover no-repeat;
  opacity: 0.12;
  filter: grayscale(100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,30,24,0.6) 0%, rgba(31,30,24,0.92) 60%, var(--surface-dark) 100%);
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero .breadcrumb {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.2rem;
  letter-spacing: 0.06em;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero .breadcrumb a:hover { color: var(--gold-soft); }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero h1 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.page-hero .lead {
  max-width: 720px;
  margin-top: 0.5rem;
  color: rgba(255,255,255,0.78);
}
.page-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 860px;
}
.page-hero-stats .stat { border: none; padding-left: 0; }
.page-hero-stats .stat strong { color: var(--gold-soft); }
.page-hero-stats .stat span { color: rgba(255,255,255,0.6); }

/* Creative page hero — split with portrait or accent panel */
.page-hero-split {
  padding: 0;
  background: linear-gradient(180deg, #fff6ea 0%, var(--bg) 100%);
  overflow: hidden;
}
/* Grid breaks out of container for full-bleed accent */
.page-hero-split > .container {
  max-width: none;
  width: 100%;
  padding: 0;
}
.page-hero-split .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 520px;
  max-height: none;
}
.page-hero-split .hero-copy {
  padding: 4.5rem 3rem 4.5rem calc((100vw - var(--max)) / 2 + 1rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
}
.page-hero-split .hero-copy .breadcrumb {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}
.page-hero-split .hero-copy .breadcrumb a { color: var(--text-soft); }
.page-hero-split .hero-copy .breadcrumb a:hover { color: var(--gold); }
.page-hero-split .hero-copy h1 {
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0.2rem 0 1rem;
}
/* Base accent panel */
.page-hero-split .hero-accent {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
/* --- Portrait variant --- */
.page-hero-split .hero-accent.accent-portrait {
  background: linear-gradient(145deg, #dfc69a 0%, #9b7a3e 35%, #353327 100%);
}
.page-hero-split .hero-accent.accent-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.page-hero-split .hero-accent.accent-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(53,51,39,0.1) 0%, rgba(53,51,39,0) 30%, rgba(53,51,39,0.65) 100%);
  z-index: 1;
}
.page-hero-split .hero-accent .accent-text {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  z-index: 2;
  color: #fff;
}
.page-hero-split .hero-accent .accent-text strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.45rem;
  color: #fff;
}
.page-hero-split .hero-accent .accent-text span {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
/* --- Dark accent variant --- */
.page-hero-split .hero-accent.accent-dark {
  background: var(--surface-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5rem;
}
.page-hero-split .hero-accent.accent-dark .accent-mark {
  font-family: Georgia, serif;
  font-size: clamp(6rem, 12vw, 11rem);
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.06em;
}
.page-hero-split .hero-accent.accent-dark blockquote {
  margin: 0;
  position: relative;
  z-index: 1;
  font-family: Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  font-style: italic;
  color: #fff;
  line-height: 1.55;
}
.page-hero-split .hero-accent.accent-dark cite {
  display: block;
  margin-top: 1.4rem;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
/* --- Gold accent variant --- */
.page-hero-split .hero-accent.accent-gold {
  background: linear-gradient(160deg, #d7c7aa, #7f6841 55%, #342f25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.page-hero-split .hero-accent.accent-gold .accent-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-hero-split .hero-accent.accent-gold::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 24px;
}
/* Responsive */
@media (max-width: 1024px) {
  .page-hero-split .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-split .hero-copy { padding: 3.5rem 1rem; }
  .page-hero-split .hero-accent { min-height: 360px; }
}
@media (max-width: 760px) {
  .page-hero-split .hero-accent .accent-text { left: 1.5rem; right: 1.5rem; bottom: 1.5rem; }
  .page-hero-split .hero-accent .accent-text strong { font-size: 1.2rem; }
  .page-hero-split .hero-copy { padding: 3rem 1rem; }
  .page-hero-split .hero-copy h1 { font-size: clamp(2rem, 8vw, 3rem); }
}

/* ---------- CTA Band ---------- */
.cta-band {
  background: linear-gradient(180deg, #25241d, #1e1d18);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(184, 138, 47, 0.12), transparent 45%);
  pointer-events: none;
}
.cta-band-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  flex-wrap: wrap;
}
.cta-band-wrap > div:first-child { max-width: 680px; }
.cta-band h2 { color: #fff; margin: 0.4rem 0 0.7rem; }
.cta-band p { color: rgba(255, 255, 255, 0.78); margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: #171611;
  color: rgba(255, 255, 255, 0.86);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: 0.55rem 0; }
.footer-grid p,
.footer-grid a {
  font-family: Arial, Helvetica, sans-serif;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s;
}
.footer-grid a:hover { color: var(--gold-soft); }
.footer-grid h3, .footer-grid h4 { color: #fff; margin-top: 0; }
.footer-grid h3 { font-size: 1.4rem; letter-spacing: 0.06em; }
.footer-grid h4 {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.8rem;
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.56);
}

/* ---------- Value Strip ---------- */
.value-strip {
  background: var(--surface-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.5rem 0;
}
.value-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  flex-wrap: wrap;
}
.value-strip-inner span { color: rgba(255, 255, 255, 0.86); }
.value-strip-inner .dot { color: var(--gold); }

/* ---------- Book / LEGADO ---------- */
.book-panel {
  background: var(--surface-dark);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  color: #fff;
  text-align: center;
}
.book-panel .stewardship-mark {
  font-family: Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 1;
}
.book-panel .stewardship-sub {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.35rem;
}
.vol-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.vol-cell {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.85rem 0.6rem;
  border-top: 2px solid var(--gold);
  text-align: left;
}
.vol-cell.coming {
  border-top-color: rgba(255, 255, 255, 0.14);
  opacity: 0.55;
}
.vol-cell .label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.vol-cell.coming .label { color: rgba(255, 255, 255, 0.5); }
.vol-cell .name {
  font-family: Georgia, serif;
  font-size: 0.92rem;
  margin-top: 0.25rem;
  color: #fff;
  font-weight: 500;
}

.book-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.book-item .bar {
  width: 5px;
  min-height: 90px;
  background: var(--gold);
  border-radius: 3px;
  flex-shrink: 0;
  align-self: stretch;
}
.book-item.coming .bar { background: rgba(0, 0, 0, 0.1); }
.book-item .body { flex: 1; }
.book-item .vol-label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.book-item.coming .vol-label { color: var(--text-soft); }
.book-item h3 {
  font-size: 1.3rem;
  margin: 0.3rem 0 0.25rem;
}
.book-item .subtitle {
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 0.65rem;
}
.book-item .desc {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text-soft);
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.7;
}
.book-item .action {
  flex-shrink: 0;
  align-self: flex-start;
}
.book-item .coming-label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-soft);
}

/* ---------- Formation Pillars ---------- */
.pillar-arch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
}
.pillar-cell {
  background: var(--surface-deepest);
  padding: 1.6rem 1.3rem;
}
.pillar-cell-num {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.pillar-cell h4 {
  font-size: 1.2rem;
  margin: 0.55rem 0 0.45rem;
  color: #fff;
  font-family: Georgia, serif;
}
.pillar-cell p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
  line-height: 1.6;
}
.formation-sig {
  background: var(--surface-deepest);
  padding: 5.5rem 0;
  color: #fff;
}
.formation-sig-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}
.formation-sig h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.75rem;
  font-style: italic;
}
.formation-sig .rule {
  width: 44px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.75rem;
}
.formation-sig .sub {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.95;
  margin-bottom: 2.4rem;
}

/* ---------- Principles list ---------- */
.principles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
}
.principles .p-cell {
  padding: 1.5rem 1.2rem;
  border-right: 1px solid var(--line);
}
.principles .p-cell:last-child { border-right: none; }
.principles .p-num {
  font-family: Georgia, serif;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.principles h4 {
  font-size: 0.98rem;
  margin: 0 0 0.3rem;
  font-family: Georgia, serif;
}
.principles p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  color: var(--text-soft);
  margin: 0;
  line-height: 1.6;
}

/* ---------- Insights / Articles ---------- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.article-card .meta {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}
.article-card h3 {
  font-size: 1.35rem;
  margin: 0 0 0.8rem;
  line-height: 1.25;
}
.article-card p {
  color: var(--text-soft);
  margin: 0 0 1.2rem;
  flex: 1;
}
.article-card .read-more {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.2rem;
  align-self: flex-start;
}
.article-card .read-more:hover { color: var(--gold); }

.essay {
  max-width: 720px;
  margin: 0 auto;
}
.essay h2 {
  font-size: 1.6rem;
  margin: 2.2rem 0 0.8rem;
  letter-spacing: -0.02em;
}
.essay p {
  font-family: Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text);
  margin: 0 0 1.1rem;
}
.essay blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.35rem 0 0.35rem 1.3rem;
  margin: 1.8rem 0;
  font-style: italic;
  color: var(--text-soft);
}
.essay ul {
  padding-left: 1.3rem;
  margin: 0 0 1.1rem;
}
.essay li {
  font-family: Georgia, serif;
  margin-bottom: 0.6rem;
  line-height: 1.8;
}

/* ---------- Ecosystem ---------- */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.eco-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  position: relative;
}
.eco-card .eco-num {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  font-family: Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--line);
  line-height: 1;
}
.eco-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.55rem;
  padding-right: 3rem;
}
.eco-card .role {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.eco-card p {
  color: var(--text-soft);
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ---------- Case / Portfolio ---------- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}
.case-card h3 { margin: 0 0 0.6rem; font-size: 1.2rem; }
.case-card > p {
  color: var(--text-soft);
  font-size: 0.93rem;
  margin: 0 0 1rem;
}
.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.case-chip {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  color: var(--text-soft);
  font-weight: 600;
}

/* ---------- Tags (insight cats etc) ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.tag-pill {
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  color: var(--text-soft);
  font-weight: 600;
  border: 1px solid var(--line);
}

/* ---------- Legal pages ---------- */
.legal-page { padding: 4rem 0; }
.legal-page h2 {
  font-size: 1.45rem;
  margin: 2rem 0 0.7rem;
}
.legal-page p,
.legal-page li {
  color: var(--text-soft);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.85;
}

/* ---------- Utility ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.mt-0 { margin-top: 0 !important; }
.flex { display: flex; }
.gap-1 { gap: 1rem; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.inline-block { display: inline-block; }
.text-center { text-align: center; }
.text-soft { color: var(--text-soft); }
.hidden { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid,
  .split,
  .contact-grid,
  .footer-grid,
  .card-grid.two,
  .card-grid.three,
  .card-grid.four,
  .process-grid,
  .process-grid.three,
  .cta-band-wrap,
  .service-grid,
  .eco-grid,
  .case-grid,
  .article-grid,
  .formation-sig-inner,
  .principles {
    grid-template-columns: 1fr;
  }
  .hero-copy { padding: 4rem 0 4rem; }
  .hero-visual { min-height: 460px; }
  .service-strip { margin-top: 0; }
  .service-card-dark {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .service-card-dark:last-child { border-bottom: none; }
  .principles .p-cell {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .principles .p-cell:last-child { border-bottom: none; }
  .page-hero-stats { grid-template-columns: repeat(2, 1fr); }
  .pillar-arch { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { gap: 2.4rem; }
}
@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .site-nav {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 1rem;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: block; }
  .site-header { position: relative; }
  .header-wrap { flex-wrap: wrap; padding: 0.2rem 0; min-height: 74px; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }
  .site-nav li { width: 100%; }
  .site-nav a { padding: 0.75rem 0; }
  .drop { position: static; box-shadow: none; border: none; padding-left: 1rem; margin: 0; }
  .topbar .container { flex-direction: column; padding: 0.55rem 0; }
  .hero-copy h1 { font-size: clamp(2.2rem, 10vw, 3.4rem); }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { grid-template-columns: 1fr; }
  .section { padding: 4rem 0; }
  .portrait-copy { max-width: 86%; }
  .pillar-arch { grid-template-columns: 1fr; }
  .book-item { flex-wrap: wrap; }
  .book-item .bar { width: 100%; min-height: 5px; }
  .vol-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
