:root {
  --ink: #11100d;
  --ink-2: #1b1915;
  --ivory: #fbf7ee;
  --paper: #fffdf7;
  --cream: #f4edde;
  --gold: #b68742;
  --gold-dark: #8d642d;
  --muted: #6f6659;
  --line: #ded4c2;
  --green: #128c4c;
  --blue: #1f5b9f;
  --shadow: 0 22px 70px rgba(22, 18, 12, 0.13);
  --shadow-soft: 0 12px 32px rgba(22, 18, 12, 0.09);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  background: var(--ivory);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(182, 135, 66, 0.12), transparent 28%),
    linear-gradient(180deg, var(--ivory), #f7efe0 56%, #11100d 100%);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(182, 135, 66, 0.78);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(222, 212, 194, 0.92);
  background: rgba(255, 253, 247, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 247, 0.97);
  box-shadow: 0 12px 34px rgba(20, 16, 10, 0.08);
}

.header-shell {
  width: min(1320px, calc(100% - 42px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 250px;
}

.brand-logo-wrap {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.brand-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: contrast(1.18);
}

.brand-copy strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand-copy small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  position: relative;
  min-width: 78px;
  min-height: 54px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 800;
  padding: 8px 9px 10px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
  transition: color 0.22s ease, transform 0.22s ease;
}

.site-nav a i {
  font-size: 15px;
  line-height: 1;
  color: var(--gold-dark);
}

.site-nav a:nth-child(2) i { color: #8b642d; }
.site-nav a:nth-child(3) i { color: #2d6c77; }
.site-nav a:nth-child(4) i { color: #8a6a12; }
.site-nav a:nth-child(5) i { color: #86631f; }
.site-nav a:nth-child(6) i { color: #6a4a22; }
.site-nav a:nth-child(7) i { color: #1f6f56; }

.site-nav a:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
}

.section {
  width: min(1220px, calc(100% - 42px));
  margin: 0 auto;
  padding: 74px 0;
  scroll-margin-top: 104px;
}

.hero {
  width: min(1320px, calc(100% - 42px));
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.72fr);
  align-items: stretch;
  padding: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy {
  padding: clamp(60px, 6vw, 92px) clamp(30px, 5vw, 74px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.eyebrow,
.section-kicker,
.section-heading span,
.dark-copy span,
.contact-copy span {
  display: block;
  max-width: 100%;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  margin-top: 17px;
  font-size: clamp(56px, 5.75rem, 92px);
  font-weight: 600;
  max-width: 760px;
  overflow-wrap: normal;
}

h1 span,
h2 span {
  color: var(--gold);
}

.hero-lead {
  max-width: 620px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary {
  color: var(--paper);
  background: var(--ink);
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.12), rgba(255, 253, 247, 0.48)),
    linear-gradient(130deg, rgba(17, 16, 13, 0.08), rgba(182, 135, 66, 0.14)),
    #eadfce;
  min-width: 0;
}

.hero-panel {
  display: grid;
  align-items: center;
  padding: clamp(28px, 4vw, 54px);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(236, 226, 209, 0.88)),
    radial-gradient(circle at 88% 12%, rgba(182, 135, 66, 0.2), transparent 34%),
    linear-gradient(150deg, #fffdf7, #e4d7c3);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(111, 82, 41, 0.18);
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  top: clamp(20px, 5vw, 72px);
  width: clamp(92px, 13vw, 180px);
  aspect-ratio: 1;
  border: 1px solid rgba(111, 82, 41, 0.16);
  transform: rotate(16deg);
  pointer-events: none;
}

.hero-panel-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  max-width: 520px;
}

.panel-kicker {
  margin: 0;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel h2 {
  max-width: 480px;
  font-size: clamp(38px, 3.55rem, 57px);
}

.hero-panel p:not(.panel-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.hero-panel-grid {
  display: grid;
  gap: 10px;
}

.hero-panel-grid article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 3px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid rgba(111, 82, 41, 0.22);
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 16px 42px rgba(17, 16, 13, 0.06);
}

.hero-panel-grid i {
  grid-row: span 2;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(145deg, var(--panel-icon-one, var(--gold-dark)), var(--panel-icon-two, var(--gold)));
  border: 1px solid rgba(255,255,255,0.36);
  box-shadow: 0 13px 26px rgba(17,16,13,0.14), inset 0 0 0 1px rgba(255,255,255,0.18);
  font-size: 20px;
}

.hero-panel-grid article:nth-child(1) { --panel-icon-one: #9b4b2d; --panel-icon-two: #4f261b; }
.hero-panel-grid article:nth-child(2) { --panel-icon-one: #2d7a87; --panel-icon-two: #143f47; }
.hero-panel-grid article:nth-child(3) { --panel-icon-one: #385c97; --panel-icon-two: #1d304d; }

.hero-panel-grid strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.hero-panel-grid span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.hero-panel-link {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hero-panel-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.column-scene {
  position: absolute;
  inset: 0;
}

.column {
  position: absolute;
  top: -8%;
  bottom: -8%;
  width: 86px;
  background:
    linear-gradient(90deg, rgba(67, 50, 30, 0.18), rgba(255, 255, 255, 0.86) 46%, rgba(80, 61, 35, 0.22)),
    linear-gradient(180deg, #e8dccb, #fffaf0 44%, #cdbb9f);
  border-left: 1px solid rgba(60, 45, 24, 0.15);
  border-right: 1px solid rgba(60, 45, 24, 0.12);
  transform: skewX(-3deg);
  box-shadow: 18px 0 60px rgba(17, 16, 13, 0.08);
}

.column-one { right: 36%; }
.column-two { right: 20%; }
.column-three { right: 5%; }

.gold-line {
  position: absolute;
  left: 9%;
  top: 12%;
  width: 1px;
  height: 74%;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.hero-card {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  padding: 22px;
  color: var(--paper);
  background: rgba(17, 16, 13, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(17, 16, 13, 0.25);
}

.hero-card span {
  display: block;
  color: #d7b46e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-card strong {
  font-family: var(--serif);
  font-size: clamp(23px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.04;
}

.image-fill {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 13, 0.16), rgba(251, 247, 238, 0.18)),
    linear-gradient(180deg, rgba(255, 253, 247, 0.08), rgba(17, 16, 13, 0.18));
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 690px;
  margin-top: 28px;
}

.hero-proof span {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fffaf0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.hero-proof strong {
  display: block;
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 8px;
}

.service-rail {
  width: min(1400px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.96);
  box-shadow: var(--shadow-soft);
}

.service-rail a {
  min-height: 128px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 22px 12px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  border-right: 1px solid var(--line);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.service-rail a:last-child {
  border-right: 0;
}

.service-rail a:hover {
  background: linear-gradient(180deg, #fffaf0, #f5ead8);
  color: var(--gold-dark);
  transform: translateY(-3px);
}

.service-rail i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(145deg, var(--icon-one, #9a6b28), var(--icon-two, #3a3021));
  border: 1px solid rgba(255,255,255,0.38);
  box-shadow: 0 12px 26px rgba(17,16,13,0.14), inset 0 0 0 1px rgba(255,255,255,0.16);
  font-size: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-rail a:nth-child(1) { --icon-one: #a9702a; --icon-two: #4d3518; }
.service-rail a:nth-child(2) { --icon-one: #2d7a87; --icon-two: #143f47; }
.service-rail a:nth-child(3) { --icon-one: #1f6f56; --icon-two: #173b31; }
.service-rail a:nth-child(4) { --icon-one: #385c97; --icon-two: #1d304d; }
.service-rail a:nth-child(5) { --icon-one: #9b4b2d; --icon-two: #4f261b; }
.service-rail a:nth-child(6) { --icon-one: #8b642d; --icon-two: #3a3021; }
.service-rail a:nth-child(7) { --icon-one: #7650a6; --icon-two: #3a2557; }

.service-rail a:hover i {
  transform: translateY(-1px) scale(1.04);
}

.service-rail span {
  display: block;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.split {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.section-content h2,
.section-heading h2,
.dark-copy h2,
.contact-copy h2 {
  margin-top: 10px;
  max-width: 760px;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 600;
}

.section-content p,
.contact-copy p,
.dark-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  margin: 22px 0 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  margin-top: 32px;
}

.image-panel {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.image-panel::after,
.network-visual::before,
.opportunity-media::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.image-panel::after {
  background:
    linear-gradient(180deg, rgba(255,253,247,0.02), rgba(17,16,13,0.16)),
    linear-gradient(90deg, rgba(182,135,66,0.16), transparent 44%);
}

.image-panel img,
.network-visual img,
.opportunity-media img,
.ecosystem-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-points {
  display: grid;
  gap: 12px;
}

.story-points article {
  position: relative;
  padding: 22px 22px 22px 70px;
  border: 1px solid var(--line);
  background: #fffaf0;
  box-shadow: 0 12px 32px rgba(17,16,13,0.05);
}

.story-points article::before {
  content: "\f0e3";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(145deg, #a9702a, #3a3021);
  font: 900 14px "Font Awesome 6 Free";
  box-shadow: 0 10px 24px rgba(17,16,13,0.12);
}

.story-points strong,
.contact-address strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.story-points span,
.contact-address span,
.founder-note {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.card-grid-section {
  display: grid;
  gap: 26px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 34px;
  align-items: end;
}

.cards {
  display: grid;
  gap: 16px;
}

.practice-cards {
  grid-template-columns: repeat(3, 1fr);
}

.audience-cards,
.founder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.founder-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-cards {
  grid-template-columns: repeat(4, 1fr);
}

.practice-expanded {
  grid-template-columns: repeat(3, 1fr);
}

.audience-cards {
  grid-template-columns: repeat(3, 1fr);
}

.premium-card,
.founder-card {
  position: relative;
  min-height: 218px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0)),
    #fffaf0;
  text-align: center;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.premium-card:hover,
.founder-card:hover {
  transform: translateY(-6px);
  border-color: rgba(182, 135, 66, 0.54);
  box-shadow: var(--shadow-soft);
}

.premium-card::after,
.founder-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(182, 135, 66, 0.18);
  transform: rotate(18deg);
}

.premium-card i {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(145deg, var(--card-icon-one, #a9702a), var(--card-icon-two, #3a3021));
  box-shadow: 0 16px 32px rgba(17,16,13,0.14), inset 0 0 0 1px rgba(255,255,255,0.18);
  font-size: 21px;
}

.premium-card h3,
.founder-card h3 {
  position: relative;
  z-index: 1;
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 10px;
}

.premium-card p,
.founder-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

.trust-cards .premium-card:nth-child(1),
.practice-cards .premium-card:nth-child(1),
.audience-cards .premium-card:nth-child(1) { --card-icon-one: #a9702a; --card-icon-two: #4d3518; }

.trust-cards .premium-card:nth-child(2),
.practice-cards .premium-card:nth-child(2),
.audience-cards .premium-card:nth-child(2) { --card-icon-one: #2d7a87; --card-icon-two: #143f47; }

.trust-cards .premium-card:nth-child(3),
.practice-cards .premium-card:nth-child(3),
.audience-cards .premium-card:nth-child(3) { --card-icon-one: #385c97; --card-icon-two: #1d304d; }

.trust-cards .premium-card:nth-child(4),
.practice-cards .premium-card:nth-child(4),
.audience-cards .premium-card:nth-child(4) { --card-icon-one: #1f6f56; --card-icon-two: #173b31; }

.practice-cards .premium-card:nth-child(5),
.audience-cards .premium-card:nth-child(5) { --card-icon-one: #9b4b2d; --card-icon-two: #4f261b; }

.practice-cards .premium-card:nth-child(6),
.audience-cards .premium-card:nth-child(6) { --card-icon-one: #7650a6; --card-icon-two: #3a2557; }

.network-section {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 24px;
  align-items: stretch;
}

.network-copy {
  padding: 38px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.62), rgba(255,255,255,0)),
    #fffaf0;
  box-shadow: var(--shadow-soft);
}

.network-copy span,
.opportunity-copy span {
  display: block;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.network-copy h2,
.opportunity-copy h2 {
  margin-top: 10px;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
}

.network-copy p,
.opportunity-copy p {
  color: var(--muted);
  font-size: 16px;
  margin: 20px 0 0;
}

.jurisdiction-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.jurisdiction-chips span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(17,16,13,0.04);
}

.jurisdiction-chips span:nth-child(3n+1) { border-color: rgba(169,112,42,0.36); }
.jurisdiction-chips span:nth-child(3n+2) { border-color: rgba(45,122,135,0.32); }
.jurisdiction-chips span:nth-child(3n+3) { border-color: rgba(31,111,86,0.32); }

.network-visual::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17,16,13,0.02), rgba(255,253,247,0.08)),
    radial-gradient(circle at 30% 28%, rgba(182,135,66,0.16), transparent 30%);
}

.network-visual {
  position: relative;
  min-height: 470px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.network-visual::after,
.opportunity-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(17, 16, 13, 0.52));
  pointer-events: none;
}

.network-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  padding: 18px;
  color: var(--paper);
  background: rgba(17, 16, 13, 0.86);
  border: 1px solid rgba(255,255,255,0.14);
}

.network-note strong {
  display: block;
  color: #f1d199;
  margin-bottom: 5px;
}

.network-note span {
  display: block;
  color: #ddd2c0;
  font-size: 13px;
}

.dark-panel {
  width: min(1320px, calc(100% - 42px));
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding: 54px;
  color: var(--paper);
  background:
    radial-gradient(circle at 75% 35%, rgba(182, 135, 66, 0.18), transparent 35%),
    linear-gradient(135deg, #14130f, #242018 68%, #11100d);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow);
}

.dark-copy p {
  color: #d6cdbc;
}

.ecosystem-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ecosystem-panel {
  display: grid;
  grid-template-rows: 230px auto;
  gap: 14px;
}

.ecosystem-panel img {
  min-height: 230px;
  border: 1px solid rgba(255,255,255,0.12);
  filter: saturate(0.78) contrast(1.05) brightness(0.84);
}

.ecosystem-map span {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: #efe5d4;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.035);
  font-weight: 800;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.ecosystem-map span:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(215,180,110,0.46);
}

.opportunities-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
  align-items: stretch;
}

.opportunity-media {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.opportunity-media::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17,16,13,0.04), rgba(17,16,13,0.48)),
    linear-gradient(90deg, rgba(182,135,66,0.12), transparent 56%);
}

.opportunity-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 18px;
  color: var(--paper);
  background: rgba(17, 16, 13, 0.86);
  border: 1px solid rgba(255,255,255,0.14);
}

.opportunity-note strong {
  display: block;
  color: #f1d199;
  margin-bottom: 6px;
}

.opportunity-note span {
  display: block;
  color: #ddd2c0;
  font-size: 13px;
  line-height: 1.45;
}

.opportunity-copy {
  padding: 38px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.64), rgba(255,255,255,0)),
    #fffaf0;
  box-shadow: var(--shadow-soft);
}

.opportunity-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.opportunity-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.opportunity-list article:hover {
  transform: translateY(-3px);
  border-color: rgba(182,135,66,0.46);
  box-shadow: 0 14px 32px rgba(17,16,13,0.08);
}

.opportunity-list i {
  grid-row: span 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.34);
  background: linear-gradient(145deg, var(--op-icon-one, #a9702a), var(--op-icon-two, #3a3021));
  box-shadow: 0 12px 26px rgba(17,16,13,0.12);
}

.opportunity-list article:nth-child(1) { --op-icon-one: #a9702a; --op-icon-two: #4d3518; }
.opportunity-list article:nth-child(2) { --op-icon-one: #2d7a87; --op-icon-two: #143f47; }
.opportunity-list article:nth-child(3) { --op-icon-one: #385c97; --op-icon-two: #1d304d; }

.opportunity-list strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 6px;
}

.opportunity-list span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.founders {
  display: grid;
  gap: 26px;
}

.avatar {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  color: var(--paper);
  background: linear-gradient(145deg, var(--founder-one, var(--ink)), var(--founder-two, #3a3021));
  border: 1px solid rgba(182, 135, 66, 0.48);
  box-shadow: 0 16px 34px rgba(17,16,13,0.14), inset 0 0 0 1px rgba(255,255,255,0.08);
  font-size: 24px;
}

.founder-card:nth-child(1) { --founder-one: #a9702a; --founder-two: #3a3021; }
.founder-card:nth-child(2) { --founder-one: #2d7a87; --founder-two: #143f47; }
.founder-card:nth-child(3) { --founder-one: #385c97; --founder-two: #1d304d; }
.founder-card:nth-child(4) { --founder-one: #1f6f56; --founder-two: #173b31; }
.founder-card:nth-child(5) { --founder-one: #7650a6; --founder-two: #3a2557; }

.founder-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  color: var(--gold-dark);
  font-size: 13px;
  line-height: 1.45;
}

.founder-note {
  position: relative;
  z-index: 1;
  margin-top: 12px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 24px;
  align-items: stretch;
  padding: 58px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0)),
    var(--paper);
  box-shadow: var(--shadow);
}

.contact-stack {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.contact-copy,
.contact-panel,
.inquiry-form {
  min-width: 0;
}

.contact-panel {
  display: grid;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.contact-panel a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 16px 18px;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  color: var(--ink);
  transition: background 0.22s ease, color 0.22s ease;
  min-width: 0;
}

.contact-panel a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-panel a:last-child {
  border-bottom: 0;
}

.contact-panel a:hover {
  background: linear-gradient(90deg, #fffaf0, #f5ead8);
  color: var(--gold-dark);
}

.contact-panel i {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: var(--paper);
  border: 1px solid rgba(255,255,255,0.34);
  background: linear-gradient(145deg, var(--contact-one, #a9702a), var(--contact-two, #3a3021));
  box-shadow: 0 10px 24px rgba(17,16,13,0.1);
}

.contact-panel a:nth-child(1) { --contact-one: #2d6fb9; --contact-two: #153c69; }
.contact-panel a:nth-child(2) { --contact-one: #20c766; --contact-two: #075e33; }
.contact-panel a:nth-child(3) { --contact-one: #a9702a; --contact-two: #4d3518; }
.contact-panel a:nth-child(4) { --contact-one: #d55243; --contact-two: #7f2f27; }
.contact-panel a:nth-child(5) { --contact-one: #1f6f56; --contact-two: #173b31; }

.contact-address {
  max-width: 620px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.58), rgba(255,255,255,0)),
    #fffaf0;
  box-shadow: var(--shadow-soft);
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0)),
    #fffaf0;
  box-shadow: var(--shadow-soft);
}

.form-head span {
  display: block;
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-head h3 {
  font-size: 34px;
  font-weight: 600;
}

.form-head p,
.form-note,
.form-status {
  color: var(--muted);
  font-size: 13px;
  margin: 8px 0 0;
}

.form-grid,
.dynamic-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.inquiry-form label span {
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: 600 14px var(--sans);
  padding: 12px 13px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.inquiry-form textarea {
  resize: vertical;
  min-height: 128px;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: rgba(182, 135, 66, 0.75);
  box-shadow: 0 0 0 4px rgba(182, 135, 66, 0.12);
  background: #fffdf8;
}

.inquiry-form [aria-invalid="true"] {
  border-color: #a93425;
  box-shadow: 0 0 0 4px rgba(169, 52, 37, 0.12);
}

.full-field {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-actions .btn {
  border-radius: 0;
  cursor: pointer;
}

.form-status {
  min-height: 20px;
  color: var(--gold-dark);
  font-weight: 800;
}

.form-status.is-error {
  color: #a93425;
}

.form-status.is-success {
  color: #0d6f3b;
}

.site-footer {
  color: var(--paper);
  background: #10100e;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  width: min(1220px, calc(100% - 42px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 1fr 1fr;
  gap: 28px;
  padding: 50px 0 36px;
}

.footer-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: invert(1) brightness(1.8);
  opacity: 0.9;
}

.footer-brand h2,
.site-footer h3 {
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 0.94;
  font-weight: 600;
}

.site-footer h3 {
  font-size: 22px;
  margin: 0 0 16px;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: #cfc5b6;
  font-size: 13px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: #f1d199;
}

.social-links {
  display: grid;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.13);
  transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.social-links a:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(182,135,66,0.55);
}

.social-links i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(145deg, var(--social-one, #a9702a), var(--social-two, #3a3021));
}

.social-links a:nth-child(1) { --social-one: #f58529; --social-two: #833ab4; }
.social-links a:nth-child(2) { --social-one: #1877f2; --social-two: #0b3d86; }
.social-links a:nth-child(3) { --social-one: #ff0033; --social-two: #8d001c; }
.social-links a:nth-child(4) { --social-one: #0a66c2; --social-two: #073b72; }

.footer-bottom {
  width: min(1220px, calc(100% - 42px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  margin: 0;
  max-width: 600px;
  font-size: 12px;
}

.footer-bottom .footer-attribution {
  flex: 0 0 100%;
  max-width: none;
  text-align: center;
  color: #bfb4a4;
}

.footer-bottom .footer-attribution a {
  color: #f1d199;
  font-weight: 700;
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 0.22s ease;
}

.footer-bottom .footer-attribution a:hover,
.footer-bottom .footer-attribution a:focus-visible {
  color: #ffe2aa;
  text-decoration: underline;
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  gap: 12px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.floating-actions a {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.42);
  font-size: 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-actions a:hover {
  transform: translateY(-4px) scale(1.03);
}

.contact-in-view .floating-actions {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.float-call {
  background: linear-gradient(145deg, #2d6fb9, #153c69);
  box-shadow: 0 0 0 7px rgba(31, 91, 159, 0.13), 0 15px 30px rgba(0,0,0,0.24);
}

.float-whatsapp {
  background: linear-gradient(145deg, #2be36d, #075e33);
  box-shadow: 0 0 0 7px rgba(18, 140, 76, 0.15), 0 15px 30px rgba(0,0,0,0.24);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 3px 0;
    background: var(--ink);
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .menu-toggle em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 82px 21px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(255,253,247,0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-width: 0;
    min-height: 0;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .site-nav a i {
    width: 22px;
    font-size: 16px;
    text-align: center;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .dark-panel,
  .contact-section,
  .split,
  .section-heading,
  .story-grid,
  .network-section,
  .opportunities-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    min-height: 430px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .hero-panel-inner {
    max-width: none;
  }

  .service-rail {
    grid-template-columns: repeat(4, 1fr);
  }

  .practice-cards,
  .audience-cards,
  .trust-cards,
  .practice-expanded,
  .founder-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .network-visual,
  .opportunity-media {
    min-height: 390px;
  }
}

@media (max-width: 760px) {
  .header-shell,
  .section,
  .hero,
  .service-rail,
  .dark-panel,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 30px, 1220px);
  }

  .header-shell {
    min-height: 74px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo-wrap {
    width: 54px;
    height: 54px;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 3px 0;
    background: var(--ink);
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .menu-toggle em {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 74px 15px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(255,253,247,0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-width: 0;
    min-height: 0;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .site-nav a i {
    width: 22px;
    font-size: 16px;
    text-align: center;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 56px 0;
    scroll-margin-top: 92px;
  }

  .hero-copy {
    padding: 50px 24px;
  }

  h1 {
    font-size: clamp(42px, 3.35rem, 56px);
  }

  .hero-lead,
  .section-content p,
  .contact-copy p,
  .dark-copy p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    white-space: normal;
  }

  .service-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-rail a {
    min-height: 112px;
    padding: 18px 10px;
    gap: 12px;
  }

  .service-rail i {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .service-rail span {
    font-size: 14px;
  }

  .practice-cards,
  .audience-cards,
  .trust-cards,
  .practice-expanded,
  .founder-grid,
  .ecosystem-map,
  .story-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    min-height: 92px;
  }

  .hero-panel {
    padding: 34px 24px;
  }

  .hero-panel::before {
    inset: 14px;
  }

  .hero-panel::after {
    width: 96px;
  }

  .hero-panel h2 {
    font-size: clamp(32px, 2.75rem, 44px);
  }

  .hero-panel-grid article {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 14px;
  }

  .hero-panel-grid i {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .hero-panel-link {
    width: 100%;
    justify-content: center;
  }

  .image-panel,
  .network-visual,
  .opportunity-media {
    min-height: 300px;
  }

  .network-copy,
  .opportunity-copy {
    padding: 24px;
  }

  .opportunity-list article {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .dynamic-fields {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    padding: 20px;
  }

  .form-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dark-panel {
    padding: 36px 22px;
  }

  .contact-section {
    padding: 34px 22px;
  }

  .contact-panel a {
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
  }

  .contact-panel a span {
    font-size: 13px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .contact-panel i {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom .footer-attribution {
    flex-basis: auto;
    text-align: left;
  }

  .floating-actions {
    right: 6px;
    bottom: 10px;
    gap: 8px;
  }

  .floating-actions a {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }
}
