:root {
  --paper: #f7f4ed;
  --paper-soft: #efe8dd;
  --surface: #fffdf8;
  --ink: #171715;
  --muted: #67635c;
  --line: rgba(23, 23, 21, 0.12);
  --navy: #0f2430;
  --olive: #697451;
  --caramel: #b8874f;
  --gold-soft: #d6bc82;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(16, 42, 58, 0.14);
  --radius: 14px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
ol {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: Manrope, Inter, system-ui, sans-serif;
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 5rem;
  line-height: 1.02;
  max-width: 980px;
}

h2 {
  font-size: 3.35rem;
  line-height: 1.06;
}

h3 {
  font-size: 1.5rem;
}

small {
  color: inherit;
  font-size: 0.88rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(100% - 32px, 1280px);
  margin: 16px auto 0;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  background: rgba(247, 244, 237, 0.84);
  box-shadow: 0 12px 45px rgba(16, 42, 58, 0.1);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  font-weight: 750;
  color: var(--ink);
  font-family: Manrope, Inter, system-ui, sans-serif;
}

.brand-logo {
  display: block;
  width: clamp(218px, 18vw, 258px);
  height: auto;
}

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

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(23, 23, 21, 0.78);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(16, 42, 58, 0.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 42, 58, 0.92) 0%, rgba(16, 42, 58, 0.78) 38%, rgba(16, 42, 58, 0.18) 100%);
  z-index: 1;
}

.hero-home {
  border-bottom: 1px solid var(--line);
}

.hero.welcome-hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 0;
  color: var(--white);
  background: var(--navy);
  isolation: isolate;
}

.welcome-hero-image,
.welcome-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.welcome-hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: center 24%;
  transform: translateY(84px) scale(1.07);
  transform-origin: center center;
}

.welcome-hero-shade {
  z-index: -1;
  background:
    radial-gradient(ellipse at 24% 80%, rgba(4, 13, 19, 0.6) 0%, rgba(4, 13, 19, 0.36) 28%, rgba(4, 13, 19, 0) 58%),
    linear-gradient(90deg, rgba(4, 13, 19, 0.2) 0%, rgba(4, 13, 19, 0.04) 46%, rgba(4, 13, 19, 0.1) 100%),
    linear-gradient(180deg, rgba(4, 13, 19, 0.24) 0%, rgba(4, 13, 19, 0) 36%, rgba(4, 13, 19, 0.32) 100%);
  pointer-events: none;
}

.welcome-hero-caption {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 0 0 clamp(54px, 7vw, 96px);
}

.welcome-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: rgba(247, 243, 234, 0.78);
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.welcome-kicker::before {
  content: "";
  width: 44px;
  height: 2px;
  border-radius: 99px;
  background: var(--caramel);
}

.welcome-headline {
  position: relative;
  max-width: 980px;
  margin: 0;
  color: #fffdf8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.7rem, 5.7vw, 6.2rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 18px 70px rgba(0, 0, 0, 0.46);
}

.welcome-copy {
  display: block;
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.08rem, 1.2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 12px 45px rgba(0, 0, 0, 0.36);
}

.hero-shell {
  width: min(100% - 40px, var(--max));
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  margin: 0 auto;
  padding: 150px 0 72px;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-brand-lockup {
  grid-column: 1 / -1;
  width: min(100%, 980px);
}

.hero-logo {
  width: min(100%, 860px);
  height: auto;
  margin: 0;
}

.hero-tagline {
  max-width: 720px;
  margin: 18px 0 0 min(27%, 230px);
  color: var(--navy);
  font-size: 2.72rem;
  font-weight: 800;
  line-height: 1.12;
}

.hero-tagline span {
  display: block;
}

.hero-inner p {
  max-width: 760px;
  color: var(--muted);
}

.hero-home .eyebrow {
  color: var(--olive);
}

.hero-lead {
  font-size: 1.28rem;
}

.hero-inner .hero-lead + p {
  margin-top: 18px;
}

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

.hero-home .button.ghost {
  color: var(--navy);
  border-color: rgba(15, 36, 48, 0.22);
  background: rgba(255, 253, 248, 0.58);
}

.hero-home .button.ghost:hover {
  background: var(--surface);
}

.hero-home .text-link.light {
  color: var(--navy);
}

.hero-side {
  position: relative;
  display: grid;
  gap: 16px;
}

.hero-photo-card {
  overflow: hidden;
  min-height: 560px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hero-founder-note {
  position: relative;
  z-index: 2;
  justify-self: end;
  width: min(330px, 100%);
  margin-top: -82px;
  padding: 18px 20px;
  border-top: 3px solid var(--caramel);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 18px 55px rgba(16, 42, 58, 0.12);
  backdrop-filter: blur(16px);
}

.hero-founder-note span,
.hero-founder-note strong {
  display: block;
}

.hero-founder-note span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-founder-note strong {
  margin-top: 4px;
  font-size: 1.05rem;
}

.page-hero {
  position: relative;
  min-height: 68svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 190px;
  padding-bottom: 88px;
}

.page-hero-inner p:not(.eyebrow):not(.statement) {
  max-width: 740px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.25rem;
}

.community-hero {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=2200&q=84");
}

.trips-hero {
  background-image: url("https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=2200&q=84");
}

.mentoring-hero {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=2200&q=84");
}

.join-hero {
  background-image: url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=2200&q=84");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&w=2200&q=84");
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.section {
  padding: clamp(64px, 8vw, 108px) 0;
}

.intro-band {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.intro-band .two-column {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: start;
}

.intro-band h2 {
  max-width: 690px;
  font-size: 3.08rem;
  line-height: 1.08;
}

.list-intro {
  margin-top: 30px;
  color: var(--navy) !important;
  font-weight: 780;
}

.intro-list {
  gap: 18px;
  margin-top: 18px;
}

.intro-list li {
  min-height: 0;
  padding: 0 0 0 28px;
  color: rgba(23, 23, 21, 0.76);
  font-size: 1.04rem;
  line-height: 1.55;
  background: transparent;
}

.intro-list li::before {
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  background: var(--caramel);
  box-shadow: 0 0 0 5px rgba(184, 135, 79, 0.1);
}

.pull-quote.intro-quote {
  max-width: 820px;
  margin: clamp(34px, 5vw, 54px) 0 0 auto;
  padding: 20px 24px 20px 26px;
  border: 0;
  border-left: 3px solid rgba(184, 135, 79, 0.72);
  border-radius: 6px;
  color: var(--ink) !important;
  background: rgba(239, 232, 221, 0.24);
  box-shadow: none;
  font-size: 1.14rem !important;
  font-weight: 680;
  line-height: 1.5;
}

.muted {
  background: var(--paper-soft);
}

.dark-section {
  color: var(--white);
  background: var(--navy);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.76);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}

.feature-split,
.founder-grid,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}

.feature-split.reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.stack {
  display: grid;
  gap: 20px;
}

.stack p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--olive);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--navy);
}

.button.primary:hover {
  background: #17364a;
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.light-button {
  color: var(--navy) !important;
  background: var(--white) !important;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  border-bottom: 1px solid currentColor;
  font-weight: 650;
}

.text-link.light {
  color: rgba(255, 255, 255, 0.86);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.check-list.columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--caramel);
}

.pull-quote,
.statement {
  padding: 22px;
  border-left: 4px solid var(--caramel);
  color: var(--ink) !important;
  background: rgba(184, 135, 79, 0.1);
  font-size: 1.55rem !important;
  font-weight: 780;
  line-height: 1.25;
}

.light-quote {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.08);
}

.culture-section {
  background:
    radial-gradient(circle at 20% 18%, rgba(184, 135, 79, 0.1), rgba(184, 135, 79, 0) 32%),
    linear-gradient(145deg, #0a1922 0%, var(--navy) 58%, #102938 100%);
}

.culture-section .two-column {
  align-items: start;
}

.culture-section h2 {
  max-width: 560px;
  color: #fffdf8;
}

.culture-section .stack {
  gap: 24px;
}

.culture-section .stack p:not(.pull-quote) {
  color: rgba(255, 253, 248, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

.culture-section .light-quote {
  max-width: 680px;
  padding: 22px 26px;
  border-left: 3px solid var(--caramel);
  color: #fffdf8 !important;
  background: rgba(255, 253, 248, 0.055);
  box-shadow: none;
  font-size: 1.22rem !important;
  line-height: 1.45;
}

.hero-statement {
  max-width: 760px;
  margin-top: 30px;
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.1);
}

.media-frame {
  overflow: hidden;
  min-height: 460px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.media-frame.tall {
  min-height: 620px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.trips-section {
  background: var(--surface);
}

.trip-meta {
  width: fit-content;
  max-width: 100%;
  margin-top: -2px;
  padding: 13px 0;
  border-top: 1px solid rgba(184, 135, 79, 0.36);
  border-bottom: 1px solid rgba(184, 135, 79, 0.22);
  color: rgba(15, 36, 48, 0.76) !important;
  font-size: 0.98rem !important;
  font-weight: 720;
  line-height: 1.4;
}

.trips-section .stack {
  gap: 22px;
}

.trips-photo {
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(16, 42, 58, 0.1);
}

.trips-photo img {
  object-position: center;
}

.selective-section {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--paper);
  isolation: isolate;
}

.selective-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 13, 19, 0.16) 0%, rgba(4, 13, 19, 0.03) 46%, rgba(247, 244, 237, 0.1) 72%, rgba(255, 253, 248, 0.26) 100%),
    linear-gradient(180deg, rgba(4, 13, 19, 0.1) 0%, rgba(4, 13, 19, 0) 42%, rgba(4, 13, 19, 0.12) 100%);
  pointer-events: none;
}

.selective-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  filter: saturate(0.86) contrast(0.94) brightness(0.9);
}

.selective-background-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(760px, 52vw) minmax(430px, 500px) minmax(80px, 1fr);
  align-items: center;
  padding: 0 clamp(28px, 4vw, 80px);
}

.selective-copy-panel {
  grid-column: 2;
  width: 100%;
  min-width: 0;
  gap: 22px;
  padding: clamp(32px, 3.2vw, 46px);
  border-radius: 10px;
  border: 1px solid rgba(15, 36, 48, 0.08);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 16px 42px rgba(16, 42, 58, 0.07);
  backdrop-filter: blur(8px);
}

.selective-copy-panel h2 {
  max-width: 470px;
  font-size: 2.36rem;
  line-height: 1.08;
}

.selective-copy-panel p {
  max-width: 650px;
}

.statement.selective-note {
  max-width: 640px;
  padding: 22px 24px 22px 28px;
  border-left: 4px solid var(--caramel);
  color: var(--ink) !important;
  background: rgba(239, 232, 221, 0.58);
  box-shadow: none;
  font-size: 1.28rem !important;
  font-weight: 760;
  line-height: 1.36;
}

.selective-human-note {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
  background: rgba(255, 253, 248, 0.58) !important;
  font-size: 1.08rem !important;
  line-height: 1.48 !important;
}

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

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

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

.card {
  min-height: 118px;
  display: flex;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.74);
  font-weight: 620;
}

.fit-section {
  background: var(--paper);
}

.fit-section .section-heading {
  max-width: 900px;
  margin-bottom: 40px;
}

.fit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(34px, 5vw, 72px);
  row-gap: 0;
}

.fit-grid .card {
  position: relative;
  min-height: 0;
  padding: 20px 10px 20px 34px;
  border: 0;
  border-top: 1px solid rgba(15, 36, 48, 0.11);
  border-radius: 0;
  color: rgba(23, 23, 21, 0.84);
  background: transparent;
  box-shadow: none;
  font-size: 1.03rem;
  font-weight: 620;
  line-height: 1.55;
}

.fit-grid .card::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 29px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--caramel);
  box-shadow: 0 0 0 5px rgba(184, 135, 79, 0.08);
}

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

.feature-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(15, 36, 48, 0.09);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: 0 10px 34px rgba(16, 42, 58, 0.04);
}

.feature-card.wide {
  grid-column: span 2;
}

.feature-card span {
  color: var(--caramel);
  font-weight: 800;
}

.feature-card p {
  color: var(--muted);
}

.formats-section {
  background: var(--paper);
}

.formats-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: start;
}

.formats-section .section-heading {
  max-width: 500px;
  margin-bottom: 0;
}

.formats-section .feature-card span {
  width: fit-content;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(184, 135, 79, 0.42);
  color: var(--caramel);
  font-size: 0.86rem;
}

.formats-section .feature-card h3 {
  margin-top: 34px;
}

.formats-content {
  display: grid;
  gap: 24px;
}

.formats-pillars {
  border-top: 1px solid rgba(15, 36, 48, 0.13);
}

.pillar-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: 30px 0;
  border-bottom: 1px solid rgba(15, 36, 48, 0.11);
}

.pillar-number {
  padding-top: 5px;
  color: var(--caramel);
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 820;
}

.pillar-row h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.5rem;
}

.pillar-row p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.66;
}

.formats-note {
  max-width: 760px;
  margin-top: 0;
  padding: 18px 0 0 24px;
  border-top: 1px solid rgba(15, 36, 48, 0.1);
  border-left: 3px solid var(--caramel);
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.portrait-placeholder {
  min-height: 620px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 28px;
  border: 1px solid rgba(16, 42, 58, 0.16);
  border-radius: 16px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(16, 42, 58, 0.96), rgba(105, 116, 81, 0.84)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: cover, 36px 36px, 36px 36px;
  background-position: center;
  box-shadow: var(--shadow);
}

.portrait-placeholder span {
  font-size: 2rem;
  font-weight: 820;
}

.portrait-placeholder p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.8);
}

.founder-section {
  background: var(--surface);
}

.founder-section .founder-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(52px, 7vw, 104px);
}

.founder-photo {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  border-radius: 8px;
  background: var(--paper-soft);
  box-shadow: 0 18px 54px rgba(16, 42, 58, 0.1);
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 13, 19, 0), rgba(4, 13, 19, 0.1));
  pointer-events: none;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center center;
}

.founder-copy {
  gap: 26px;
}

.founder-copy h2 {
  max-width: 720px;
}

.founder-copy p {
  max-width: 740px;
  color: rgba(23, 23, 21, 0.72);
  font-size: 1.12rem;
  line-height: 1.78;
}

.founder-closing {
  max-width: 680px !important;
  margin-top: 4px;
  padding: 24px 28px;
  border-left: 4px solid var(--caramel);
  color: var(--ink) !important;
  background: rgba(239, 232, 221, 0.52);
  font-size: 1.32rem !important;
  font-weight: 760;
  line-height: 1.38 !important;
}

.logo-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.logo-panel p {
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 650;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(15, 36, 48, 0.11);
  border-bottom: 1px solid rgba(15, 36, 48, 0.11);
}

.logo-item {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  min-height: 116px;
  padding: 22px 18px;
  border-right: 1px solid rgba(15, 36, 48, 0.08);
}

.logo-item:last-child {
  border-right: 0;
}

.logo-item strong {
  position: relative;
  width: min(116px, 100%);
  height: 40px;
  border-radius: 4px;
  background: rgba(15, 36, 48, 0.045);
  overflow: hidden;
}

.logo-item strong::before,
.logo-item strong::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  height: 2px;
  border-radius: 99px;
  background: rgba(15, 36, 48, 0.2);
}

.logo-item strong::before {
  top: 14px;
}

.logo-item strong::after {
  top: 23px;
  left: 30%;
  right: 30%;
}

.logo-item span {
  color: rgba(23, 23, 21, 0.5);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
}

.members-showcase {
  margin-top: clamp(46px, 6vw, 72px);
}

.members-showcase h3 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 2rem;
}

.member-preview,
.member-note {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 26px;
  padding: 24px;
  border: 1px solid rgba(15, 36, 48, 0.09);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.64);
  box-shadow: 0 12px 36px rgba(16, 42, 58, 0.04);
}

.member-portrait {
  width: 100%;
  height: 100%;
  min-height: 270px;
  border-radius: 6px;
  object-fit: cover;
  object-position: 18% center;
}

.member-preview strong,
.member-preview span,
.member-note strong,
.member-note span {
  display: block;
}

.member-preview strong,
.member-note strong {
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.15;
}

.member-preview span,
.member-preview p,
.member-note span,
.member-note p {
  color: var(--muted);
}

.member-preview span,
.member-note span {
  margin-top: 6px;
  font-weight: 680;
}

.member-preview p,
.member-note p {
  margin-top: 18px;
  line-height: 1.7;
}

.member-note {
  grid-template-columns: 0.45fr 1fr;
  margin-top: 16px;
  box-shadow: none;
}

.cta-section {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 22, 31, 0.92), rgba(15, 36, 48, 0.82)),
    url("assets/business-island-cta-lounge.png");
  background-size: cover;
  background-position: center;
}

.cta-box {
  max-width: 850px;
  text-align: center;
}

.cta-box p:not(.eyebrow) {
  margin: 24px auto 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.cta-box .button {
  margin-top: 32px;
  box-shadow: none;
}

.cta-box small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

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

.traits-grid span {
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: 16px;
  color: var(--white);
  background: var(--navy);
  font-weight: 720;
}

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

.member-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.member-card p,
.member-card span {
  color: var(--muted);
}

.member-card a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-weight: 720;
}

.member-photo {
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(16, 42, 58, 0.12), rgba(184, 135, 79, 0.18)),
    var(--paper-soft);
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.process div {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border-radius: 16px;
  color: var(--white);
  background: var(--navy);
}

.process span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--gold-soft);
  font-weight: 800;
}

.process p {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 680;
}

.centered-copy {
  max-width: 790px;
  margin: 34px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 1.08rem;
}

.cta-inline {
  display: grid;
  gap: 12px;
  margin-top: 10px;
  padding: 24px;
  border-radius: 16px;
  background: var(--paper-soft);
}

.form-layout {
  align-items: start;
}

.form-card {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-card label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 21, 0.18);
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffefa;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-card textarea {
  resize: vertical;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--caramel);
  box-shadow: 0 0 0 4px rgba(184, 135, 79, 0.16);
}

.form-card small {
  color: var(--muted);
}

.form-note {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(184, 135, 79, 0.28);
  border-radius: 16px;
  background: rgba(184, 135, 79, 0.1);
}

.form-note strong {
  color: var(--ink);
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: 1.1rem;
}

.form-note span {
  color: var(--muted);
}

.contact-details a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-weight: 740;
}

.muted-text {
  color: var(--muted);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer {
  padding: 64px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 20% 0%, rgba(184, 135, 79, 0.08), rgba(184, 135, 79, 0) 34%),
    #0b1f2b;
}

.footer-inner {
  width: min(100% - 40px, var(--max));
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: clamp(36px, 6vw, 76px);
  margin: 0 auto;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-logo {
  width: min(240px, 100%);
}

.site-footer p {
  max-width: 430px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  width: fit-content;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact p {
  margin: 0;
  color: var(--white);
  font-weight: 720;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom {
  width: min(100% - 40px, var(--max));
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.92rem;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4.25rem;
  }

  .hero-tagline {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 2.9rem;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding: 10px 9px;
    font-size: 0.88rem;
  }

  .cards-grid,
  .cards-grid.compact,
  .feature-cards,
  .traits-grid,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card.wide {
    grid-column: span 1;
  }
}

@media (max-width: 820px) {
  .site-header {
    width: min(100% - 24px, 1280px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 78px 12px auto;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(23, 23, 21, 0.1);
    border-radius: 14px;
    background: rgba(255, 253, 248, 0.97);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    padding: 14px;
    font-size: 1rem;
  }

  .page-hero::before {
    background: linear-gradient(180deg, rgba(16, 42, 58, 0.9) 0%, rgba(16, 42, 58, 0.72) 58%, rgba(16, 42, 58, 0.88) 100%);
  }

  h1 {
    font-size: 3.35rem;
  }

  .hero-tagline {
    max-width: 620px;
    margin-left: 0;
    font-size: 2.18rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  h3 {
    font-size: 1.32rem;
  }

  .hero-shell {
    width: min(100% - 28px, var(--max));
    grid-template-columns: 1fr;
    padding: 130px 0 56px;
  }

  .hero-photo-card {
    min-height: 430px;
  }

  .page-hero-inner {
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .hero-founder-note {
    width: min(440px, calc(100% - 28px));
    margin: -66px 16px 0 auto;
  }

  .two-column,
  .feature-split,
  .feature-split.reverse,
  .founder-grid,
  .form-layout,
  .member-preview,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .intro-band .two-column,
  .selective-background-inner,
  .formats-layout {
    grid-template-columns: 1fr;
  }

  .intro-band h2,
  .selective-copy-panel h2 {
    font-size: 2.55rem;
  }

  .pull-quote.intro-quote {
    max-width: none;
    margin-left: 0;
  }

  .media-frame,
  .media-frame.tall,
  .portrait-placeholder,
  .founder-photo {
    min-height: 390px;
  }

  .selective-section {
    min-height: auto;
    padding: 380px 0 64px;
    align-items: end;
  }

  .selective-section::before {
    background:
      linear-gradient(180deg, rgba(4, 13, 19, 0.02) 0%, rgba(4, 13, 19, 0) 24%, rgba(247, 244, 237, 0.82) 56%, rgba(255, 253, 248, 0.98) 100%),
      linear-gradient(90deg, rgba(4, 13, 19, 0.04) 0%, rgba(4, 13, 19, 0) 100%);
  }

  .selective-bg-image {
    object-position: 32% center;
  }

  .selective-background-inner {
    min-height: 0;
    padding: 0;
  }

  .selective-copy-panel {
    grid-column: 1;
    width: min(100%, 680px);
    min-width: 0;
    max-width: 680px;
    margin-left: auto;
  }

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

  .formats-section .section-heading {
    max-width: 780px;
  }

  .logo-grid,
  .member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .member-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    margin-top: 10px;
  }

  .brand-logo {
    width: 188px;
  }

  .hero-logo {
    width: 100%;
    max-width: 520px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 1.04;
  }

  .hero-tagline {
    font-size: 1.58rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 2.08rem;
  }

  .hero-shell {
    width: min(100% - 28px, var(--max));
    padding: 116px 0 46px;
  }

  .hero-lead,
  .page-hero-inner p:not(.eyebrow):not(.statement) {
    font-size: 1.08rem;
  }

  .welcome-hero-caption {
    width: min(100% - 28px, var(--max));
    padding-bottom: 42px;
  }

  .welcome-kicker {
    margin-bottom: 14px;
    font-size: 0.78rem;
  }

  .welcome-headline {
    max-width: none;
    font-size: 2.35rem;
    line-height: 1;
  }

  .welcome-copy {
    max-width: 340px;
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .welcome-hero-image {
    object-position: center 24%;
    transform: translateY(44px) scale(1.09);
  }

  .hero-photo-card {
    min-height: 330px;
  }

  .hero-founder-note {
    width: calc(100% - 18px);
    margin: -48px 9px 0 auto;
  }

  .pull-quote,
  .statement {
    font-size: 1.2rem !important;
  }

  .intro-band h2,
  .selective-copy-panel h2 {
    font-size: 2.08rem;
  }

  .pull-quote.intro-quote,
  .statement.selective-note {
    padding: 20px 22px 20px 24px;
    font-size: 1.12rem !important;
  }

  .selective-section {
    padding: 320px 0 54px;
  }

  .selective-copy-panel {
    padding: 26px 22px;
    border-radius: 8px;
  }

  .pillar-row {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0;
  }

  .pillar-row h3 {
    font-size: 1.34rem;
  }

  .culture-section .light-quote {
    font-size: 1.12rem !important;
  }

  .hero-actions,
  .social-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .check-list.columns,
  .cards-grid,
  .cards-grid.compact,
  .fit-grid,
  .feature-cards,
  .traits-grid,
  .process,
  .logo-grid,
  .member-grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 108px;
  }

  .feature-card {
    min-height: 240px;
  }

  .process div {
    min-height: 170px;
  }
}
