/* Randhawa Investments — styles */
:root {
  --bg: #121212;
  --bg-elev: #1a1a1a;
  --bg-deep: #0a0a0a;
  --ink: #efebe4;
  --ink-2: #a8a8ad;
  --ink-3: #8e8e93;
  --rule: rgba(239,235,228,.10);
  --rule-2: rgba(239,235,228,.05);
  --accent: #a39171;
  --max: 1280px;
  --pad: clamp(20px,4vw,56px);
  --gap: clamp(16px,2vw,28px);
  --display: 'Cormorant Garamond','Times New Roman',serif;
  --body: 'Inter',ui-sans-serif,-apple-system,system-ui,sans-serif;
  --mono: 'JetBrains Mono',ui-monospace,monospace;
  --section-y: clamp(72px,11vw,140px);
}

[data-theme="light"] {
  --bg: #efebe4; --bg-elev: #e6e1d6; --bg-deep: #dcd5c5;
  --ink: #121212; --ink-2: #3a3a3c; --ink-3: #8e8e93;
  --rule: rgba(18,18,18,.14); --rule-2: rgba(18,18,18,.07);
  --accent: #a39171;
}
[data-theme="dark"] {
  --bg: #121212; --bg-elev: #1a1a1a; --bg-deep: #0a0a0a;
  --ink: #efebe4; --ink-2: #a8a8ad; --ink-3: #8e8e93;
  --rule: rgba(239,235,228,.10); --rule-2: rgba(239,235,228,.05);
  --accent: #a39171;
}
[data-theme="forest"] {
  --bg: #f5f5f0; --bg-elev: #ebebe2; --bg-deep: #1a3626;
  --ink: #1a3626; --ink-2: #2c2c2c; --ink-3: #6b6b65;
  --rule: rgba(26,54,38,.16); --rule-2: rgba(26,54,38,.08);
  --accent: #c5b382;
}
[data-theme="midnight"] {
  --bg: #ffffff; --bg-elev: #e2e8f0; --bg-deep: #0a1128;
  --ink: #0a1128; --ink-2: #4a5568; --ink-3: #718096;
  --rule: rgba(10,17,40,.14); --rule-2: rgba(10,17,40,.06);
  --accent: #0a1128;
}

[data-type="sans"] { --display: 'Inter',ui-sans-serif,system-ui,sans-serif; }
[data-density="airy"]    { --section-y: clamp(96px,14vw,180px); --gap: clamp(20px,3vw,36px); }
[data-density="compact"] { --section-y: clamp(48px,7vw,88px);  --gap: clamp(12px,1.5vw,20px); }

*,*::before,*::after { box-sizing: border-box; }
html,body { margin: 0; padding: 0; overflow-x: hidden; }
body { width: 100%; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01','cv11';
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus { left: 0; }

/* ── Layout ── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); min-width: 0; }

/* ── Typography ── */
.serif { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

h1,h2,h3,h4 { margin: 0; font-weight: 400; }
.h-display {
  font-family: var(--display);
  font-size: clamp(48px,8vw,112px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.h-section {
  font-family: var(--display);
  font-size: clamp(32px,4.5vw,56px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.h-card {
  font-family: var(--display);
  font-size: clamp(22px,2vw,28px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.lede {
  font-family: var(--display);
  font-size: clamp(20px,1.6vw,24px);
  line-height: 1.45;
  color: var(--ink-2);
  font-style: italic;
  max-width: 60ch;
}
.body-lg { font-size: 17px; line-height: 1.6; color: var(--ink-2); }
.body-md { font-size: 15px; line-height: 1.55; color: var(--ink-2); }
.body-sm { font-size: 13.5px; line-height: 1.5; color: var(--ink-3); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule); }
.btn-ghost:hover { border-color: var(--ink); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 11.5px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-block;
}

/* ── Section header ── */
.sect-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: clamp(36px,5vw,64px);
}
@media (min-width: 800px) {
  .sect-head { grid-template-columns: 280px 1fr; gap: 48px; align-items: end; }
}

/* ── Sections ── */
section[data-screen-label] {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--rule-2);
  position: relative;
}
section.sect-elev { background: var(--bg-elev); border-top: 1px solid var(--rule); }
section.sect-deep { background: var(--bg-deep); border-top: 1px solid var(--rule); }
section.sect-feature { background: var(--bg-deep); border-top: 1px solid var(--rule); }

/* Text inversion for feature/deep plates on light-grounded themes */
[data-theme="forest"] section.sect-feature,
[data-theme="midnight"] section.sect-feature,
[data-theme="light"] section.sect-feature,
[data-theme="forest"] section.sect-deep,
[data-theme="midnight"] section.sect-deep,
[data-theme="light"] section.sect-deep { color: var(--bg); }

[data-theme="forest"] section.sect-feature .h-section,
[data-theme="forest"] section.sect-feature .h-card,
[data-theme="forest"] section.sect-feature .h-display,
[data-theme="midnight"] section.sect-feature .h-section,
[data-theme="midnight"] section.sect-feature .h-card,
[data-theme="midnight"] section.sect-feature .h-display,
[data-theme="light"] section.sect-feature .h-section,
[data-theme="light"] section.sect-feature .h-card,
[data-theme="light"] section.sect-feature .h-display,
[data-theme="forest"] section.sect-deep .h-section,
[data-theme="forest"] section.sect-deep .h-card,
[data-theme="midnight"] section.sect-deep .h-section,
[data-theme="midnight"] section.sect-deep .h-card,
[data-theme="light"] section.sect-deep .h-section,
[data-theme="light"] section.sect-deep .h-card { color: var(--bg); }

[data-theme="forest"] section.sect-feature .body-md,
[data-theme="forest"] section.sect-feature .body-lg,
[data-theme="forest"] section.sect-feature .body-sm,
[data-theme="forest"] section.sect-feature .lede,
[data-theme="forest"] section.sect-feature .eyebrow,
[data-theme="midnight"] section.sect-feature .body-md,
[data-theme="midnight"] section.sect-feature .body-lg,
[data-theme="midnight"] section.sect-feature .body-sm,
[data-theme="midnight"] section.sect-feature .lede,
[data-theme="midnight"] section.sect-feature .eyebrow,
[data-theme="light"] section.sect-feature .body-md,
[data-theme="light"] section.sect-feature .body-lg,
[data-theme="light"] section.sect-feature .body-sm,
[data-theme="light"] section.sect-feature .lede,
[data-theme="light"] section.sect-feature .eyebrow,
[data-theme="forest"] section.sect-deep .body-md,
[data-theme="forest"] section.sect-deep .body-lg,
[data-theme="forest"] section.sect-deep .body-sm,
[data-theme="forest"] section.sect-deep .lede,
[data-theme="forest"] section.sect-deep .eyebrow,
[data-theme="midnight"] section.sect-deep .body-md,
[data-theme="midnight"] section.sect-deep .body-lg,
[data-theme="midnight"] section.sect-deep .body-sm,
[data-theme="midnight"] section.sect-deep .lede,
[data-theme="midnight"] section.sect-deep .eyebrow,
[data-theme="light"] section.sect-deep .body-md,
[data-theme="light"] section.sect-deep .body-lg,
[data-theme="light"] section.sect-deep .body-sm,
[data-theme="light"] section.sect-deep .lede,
[data-theme="light"] section.sect-deep .eyebrow {
  color: color-mix(in srgb, var(--bg) 78%, transparent);
}

[data-theme="forest"] section.sect-feature .pill,
[data-theme="midnight"] section.sect-feature .pill,
[data-theme="light"] section.sect-feature .pill,
[data-theme="forest"] section.sect-deep .pill,
[data-theme="midnight"] section.sect-deep .pill,
[data-theme="light"] section.sect-deep .pill {
  border-color: color-mix(in srgb, var(--bg) 28%, transparent);
  color: color-mix(in srgb, var(--bg) 85%, transparent);
}

[data-theme="forest"] section.sect-feature button,
[data-theme="midnight"] section.sect-feature button,
[data-theme="light"] section.sect-feature button { color: var(--bg); }

/* ── Architectural placeholder ── */
.arch {
  position: relative;
  background:
    repeating-linear-gradient(135deg, var(--bg-elev) 0 12px, transparent 12px 13px),
    var(--bg);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.arch::after {
  content: attr(data-tag);
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--bg);
  padding: 4px 8px;
  border: 1px solid var(--rule);
}

/* ── Grids ── */
.grid { display: grid; gap: var(--gap); }
.cols-2 { grid-template-columns: 1fr; }
.cols-3 { grid-template-columns: 1fr; }
.cols-4 { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .cols-2 { grid-template-columns: 1fr 1fr; }
  .cols-3 { grid-template-columns: repeat(3,1fr); }
  .cols-4 { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 1000px) {
  .cols-4 { grid-template-columns: repeat(4,1fr); }
}

/* ── Stat block ── */
.stat .num {
  font-family: var(--display);
  font-size: clamp(48px,6vw,80px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
}

/* ── Step number ── */
.step-num {
  font-family: var(--display);
  font-size: 14px;
  color: var(--ink-3);
  font-feature-settings: 'tnum';
  font-variant-numeric: tabular-nums;
}

/* ── Sectors ── */
.sectors { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--rule);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.nav-logo { height: 28px; width: auto; display: block; }
.monogram {
  width: 30px; height: 30px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: -1px;
}
.wordmark-text {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.accent-dot { color: var(--accent); }
.nav-links {
  display: none;
  gap: 28px;
  align-items: center;
}
@media (min-width: 960px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: 13px;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.menu-btn {
  appearance: none;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
}
@media (min-width: 960px) { .menu-btn { display: none; } }
@media (max-width: 959px) { .nav-cta .btn { display: none; } }
@media (max-width: 959px) { .nav-inner { gap: 12px; } }

/* ── Mobile menu (CSS :target) ── */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 99;
  padding: 100px 32px 32px;
  flex-direction: column;
  gap: 20px;
  display: none;
}
.mobile-menu:target { display: flex; }
.mobile-menu a { font-family: var(--display); font-size: 32px; color: var(--ink); }
.mobile-close {
  position: absolute; top: 22px; right: 22px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-family: var(--body);
  text-decoration: none;
}

/* ── Forms ── */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font-family: var(--body);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease;
  width: 100%;
  -webkit-appearance: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--ink); }

/* ── Services accordion ── */
.services-list { border-top: 1px solid var(--rule); }
details.service-item { border-bottom: 1px solid var(--rule); }
details.service-item > summary {
  list-style: none;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: clamp(24px,3vw,40px) 0;
  cursor: pointer;
}
details.service-item > summary::-webkit-details-marker { display: none; }
details.service-item > summary::marker { display: none; }
.service-no { font-family: var(--display); font-size: 22px; color: var(--ink-3); }
.service-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink-2);
  transition: transform .25s ease;
  flex-shrink: 0;
}
details.service-item[open] .service-toggle { transform: rotate(45deg); }
.service-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding-bottom: clamp(24px,3vw,40px);
}
@media (min-width: 720px) {
  .service-body { grid-template-columns: 60px 1fr 1fr; gap: 24px; }
}
.service-body > span { display: none; }
@media (min-width: 720px) { .service-body > span { display: block; } }
.service-body p { margin: 0; }
.service-items {
  margin: 0; padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-items li {
  font-size: 13.5px;
  color: var(--ink-2);
  padding-left: 18px;
  position: relative;
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.service-items li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 8px; height: 1px;
  background: var(--accent);
}

/* ── FAQ accordion ── */
.faq-list { border-top: 1px solid var(--rule); }
details.faq-item { border-bottom: 1px solid var(--rule); }
details.faq-item > summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
}
details.faq-item > summary::-webkit-details-marker { display: none; }
details.faq-item > summary::marker { display: none; }
.faq-q {
  font-family: var(--display);
  font-size: clamp(18px,1.6vw,22px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.faq-toggle {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--ink-3);
  transition: transform .25s ease;
  flex-shrink: 0;
}
details.faq-item[open] .faq-toggle { transform: rotate(45deg); }
details.faq-item p { margin: 0; padding-bottom: 24px; max-width: 70ch; }

/* ── Partners grid ── */
.partner-card { display: flex; flex-direction: column; gap: 18px; }
.partner-title {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  color: var(--accent);
}

/* ── Process steps ── */
.process-step {
  border-top: 1px solid var(--ink);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ── Founders form ── */
.form-card {
  border: 1px solid var(--rule);
  padding: clamp(28px,3vw,44px);
  background: var(--bg-elev);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ── Investor stats ── */
.circle-stat {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: baseline;
}
.circle-stat-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.circle-stat-val {
  font-family: var(--display);
  font-size: 18px;
}

/* ── Footer ── */
.foot {
  border-top: 1px solid var(--rule);
  padding: 64px 0 32px;
  font-size: 13px;
  color: var(--ink-3);
}
.foot-grid {
  display: grid;
  gap: var(--gap);
  grid-template-columns: 1fr;
  align-items: start;
  margin-bottom: 56px;
}
@media (min-width: 720px) { .foot-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1000px) { .foot-grid { grid-template-columns: repeat(4,1fr); } }
.foot-links { display: flex; flex-direction: column; gap: 8px; }
.foot-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
}
.newsletter-form {
  display: flex;
  border-bottom: 1px solid var(--rule);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 8px 0;
  color: var(--ink);
  font-size: 14px;
  font-family: var(--body);
  outline: none;
}
.newsletter-form button {
  background: transparent;
  border: 0;
  color: var(--ink);
  padding: 8px 0;
  font-size: 14px;
  cursor: pointer;
}
/* Override theme color inversions inside form cards */
[data-theme] .form-card .eyebrow,
[data-theme] .form-card .eyebrow span {
  color: var(--ink-3);
}
.radio-hidden {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
label:has(.radio-pill) {
  display: flex;
  flex-direction: column;
}
.radio-pill {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 8px;
  border: 1px solid var(--ink-3);
  border-radius: 4px;
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
  background: transparent;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.radio-hidden:checked + .radio-pill {
  border-color: var(--accent);
  border-width: 2px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  font-weight: 600;
}
label:hover .radio-pill {
  border-color: var(--ink);
  color: var(--ink);
}
