@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --navy: #0e1f2b;
  --navy-deep: #071118;
  --navy-soft: #17303f;
  --teal: #2f5551;
  --cream: #faf6ef;
  --paper: #fffdfa;
  --gold: #b6863c;
  --gold-soft: #e3c085;
  --gold-line: #d9b877;
  --ink: #1c2a30;
  --ink-soft: #52616a;
  --line: #e6ddc9;
  --max: 1120px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(182,134,60,0.07), transparent 40%),
    radial-gradient(circle at 88% 30%, rgba(14,31,43,0.06), transparent 45%),
    radial-gradient(rgba(28,42,48,0.05) 1px, transparent 1px);
  background-size: auto, auto, 22px 22px;
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.16;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

h1 { font-weight: 800; }

a { color: var(--navy); }
p { margin: 0 0 1.2em; color: var(--ink-soft); max-width: 65ch; }
ul { color: var(--ink-soft); }
ul li { margin-bottom: 0.5em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ---------- Scroll progress bar ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  z-index: 200;
  transition: width 0.08s linear;
}

/* ---------- Nav ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: blur(10px) saturate(1.4);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  isolation: isolate;
}

header.site-header.scrolled { box-shadow: 0 6px 24px rgba(14,31,43,0.06); }

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 15px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand .name-line { white-space: nowrap; }

.brand .mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid var(--gold-soft);
}

.brand .mark img { width: 100%; height: 100%; object-fit: cover; }
.brand .accent { color: var(--gold); }
.brand .role {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 1px;
}

nav.links { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

nav.links a {
  position: relative;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 8px 14px;
  border-radius: 100px;
  transition: color .2s var(--ease), background .2s var(--ease);
}

nav.links a:hover { color: var(--navy); background: rgba(182,134,60,0.1); }

nav.links a.active {
  color: var(--navy-deep);
  background: var(--gold-soft);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 42px; height: 38px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle span {
  width: 20px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: flex; }
  nav.links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px 20px 18px;
    box-shadow: 0 12px 24px -8px rgba(14,31,43,0.12);
  }
  nav.links.open { display: flex; }
  nav.links a { padding: 12px 8px; border-radius: 6px; }
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

/* ---------- Section index labels ---------- */
.sec-index {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--gold);
  border: 1px solid var(--gold-line);
  border-radius: 100px;
  padding: 5px 14px;
  display: inline-block;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -140px; right: -160px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,134,60,0.16), transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -180px; left: -120px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47,85,81,0.10), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-wrap { order: -1; max-width: 260px; margin: 0 auto 20px; }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.7vw, 3.5rem);
  max-width: 17ch;
}

.hero h1 em {
  font-style: normal;
  font-weight: 800;
  color: var(--gold);
}

.hero .lede {
  font-size: 1.14rem;
  max-width: 54ch;
  color: var(--ink-soft);
  margin-top: 16px;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: visible;
}

.hero-photo-wrap .frame {
  position: absolute; inset: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(7,17,24,0.35);
  border: 1px solid var(--line);
  transform: rotate(0.4deg);
  transition: transform .5s var(--ease);
}

.hero-photo-wrap:hover .frame { transform: rotate(0deg) scale(1.015); }

.hero-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- Photo banner ---------- */
.photo-banner {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -24px rgba(7,17,24,0.32);
  margin-top: 8px;
}
.photo-banner img {
  width: 100%;
  height: clamp(260px, 42vw, 480px);
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.photo-banner:hover img { transform: scale(1.035); }
.photo-caption {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}

.floating-chip {
  position: absolute;
  bottom: -18px; left: -18px;
  background: var(--navy);
  color: var(--paper);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 16px 34px -10px rgba(7,17,24,0.45);
  font-family: 'Manrope', sans-serif;
  animation: floaty 5s ease-in-out infinite;
  max-width: 180px;
}

.floating-chip .n { font-size: 1.5rem; font-weight: 700; color: var(--gold-soft); display: block; line-height: 1; }
.floating-chip .l { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: #cdd8de; font-family: 'Inter', sans-serif; }

.floating-chip.top {
  bottom: auto; top: -16px; left: auto; right: -16px;
  background: var(--paper); color: var(--navy);
  border: 1px solid var(--line);
  animation-delay: .4s;
}
.floating-chip.top .n { color: var(--gold); }
.floating-chip.top .l { color: var(--ink-soft); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Sections ---------- */
section.block { padding: 68px 0; border-bottom: 1px solid var(--line); position: relative; }
section.block:last-of-type { border-bottom: none; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }

@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 26px; }

.card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px 26px;
  text-decoration: none;
  display: block;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.card .num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.card:hover .num { background: var(--navy); color: var(--gold-soft); }

.logo-box {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
  transition: transform .3s var(--ease);
}
.logo-box img {
  max-height: 100%;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(0.1);
}
.card:hover .logo-box { transform: translateY(-2px); }

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -14px rgba(16,34,47,0.16);
  border-color: transparent;
}
.card:hover::before { transform: scaleX(1); }

.card h3 { font-size: 1.16rem; margin-bottom: 8px; }
.card p { margin: 0; font-size: 0.95rem; }

.card .go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap .25s var(--ease);
}
.card:hover .go { gap: 10px; }

/* ---------- Stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; padding: 10px 0; }

.stat { border-top: 2px solid var(--gold-line); padding-top: 16px; }

.stat .num {
  font-family: 'Manrope', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
}

.stat .label { font-size: 0.85rem; color: var(--ink-soft); letter-spacing: 0.01em; }

/* ---------- Quote ---------- */
blockquote {
  position: relative;
  border-left: 3px solid var(--gold);
  margin: 32px 0;
  padding: 8px 0 8px 28px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 1.32rem;
  font-style: normal;
  color: var(--navy);
  max-width: 60ch;
}
blockquote cite { display: block; font-family: 'Inter', sans-serif; font-style: normal; font-size: 0.85rem; color: var(--ink-soft); margin-top: 10px; }

.quote-panel {
  background: var(--navy);
  border-radius: 14px;
  padding: 56px 50px;
  position: relative;
  overflow: hidden;
}
.quote-panel::before {
  content: '"';
  position: absolute;
  top: -40px; left: 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 220px;
  color: rgba(255,255,255,0.05);
  line-height: 1;
}
.quote-panel::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(182,134,60,0.18), transparent 70%);
}
.quote-panel blockquote { color: var(--paper); border-left-color: var(--gold-soft); max-width: 62ch; position: relative; }
.quote-panel blockquote cite { color: #a9b8c0; }

.pull {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--navy);
  max-width: 46ch;
  line-height: 1.4;
  margin: 26px 0;
}

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 34px 0 0; padding: 0; border-left: 2px solid var(--line); }
.timeline li { position: relative; padding: 0 0 32px 32px; }
.timeline li::before {
  content: '';
  position: absolute; left: -7px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.timeline li:hover::before { transform: scale(1.3); box-shadow: 0 0 0 4px rgba(182,134,60,0.18); }
.timeline .year { font-family: 'Manrope', sans-serif; font-weight: 700; color: var(--navy); font-size: 1.06rem; display: block; margin-bottom: 4px; }
.timeline p { margin: 0; }

/* ---------- Badges ---------- */
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.badge {
  background: #ece3ce;
  color: var(--navy);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.badge:hover { transform: translateY(-2px); background: var(--gold-soft); }

/* ---------- Venture panels ---------- */
.venture {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 46px;
  margin-top: 30px;
  position: relative;
  transition: box-shadow .3s var(--ease);
}
.venture:hover { box-shadow: 0 24px 48px -20px rgba(16,34,47,0.14); }
.venture .venture-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.venture .venture-head h2 { font-size: 1.7rem; margin: 0; }
.venture .tag { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); font-weight: 700; }
.venture .subline { font-size: 0.95rem; color: var(--teal); font-weight: 600; margin: -10px 0 20px; font-family: 'Manrope', sans-serif; font-style: normal; }

/* ---------- Ventures sidebar layout ---------- */
.ventures-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 44px;
  align-items: start;
}
.ventures-side {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.logo-tile {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.logo-tile:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -14px rgba(16,34,47,0.16); }
.logo-tile img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }

@media (max-width: 900px) {
  .ventures-layout { grid-template-columns: 1fr; }
  .ventures-side { position: static; flex-direction: row; flex-wrap: wrap; }
  .logo-tile { flex: 1 1 160px; }
}

/* ---------- Testimonial strip ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 24px; }
.testi {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px;
  font-size: 0.95rem;
  transition: transform .25s var(--ease);
}
.testi:hover { transform: translateY(-4px); }
.testi p { font-style: italic; color: var(--ink); margin-bottom: 10px; }
.testi .who { font-size: 0.82rem; color: var(--ink-soft); font-weight: 600; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; display: block; }

/* ---------- Clip carousel (Media page — short-form video) ---------- */
.clip-carousel-wrap {
  position: relative;
  margin-top: 30px;
}

.clip-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 6px 6px 22px;
  scrollbar-width: none;
  cursor: grab;
}
.clip-carousel::-webkit-scrollbar { display: none; }
.clip-carousel.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }

.clip-card {
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: block;
  text-decoration: none;
  color: inherit;
}
.clip-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -16px rgba(16,34,47,0.18); }

.clip-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: linear-gradient(160deg, var(--navy), var(--navy-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.clip-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.clip-duration {
  position: absolute;
  top: 10px; right: 10px;
  background: rgba(14,31,43,0.65);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 2;
}

.clip-embed .play-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.clip-card:hover .play-icon { transform: scale(1.1); background: rgba(255,255,255,0.2); }
.clip-embed .play-icon::after {
  content: '';
  border-style: solid;
  border-width: 8px 0 8px 13px;
  border-color: transparent transparent transparent var(--gold-soft);
  margin-left: 3px;
}

.clip-embed .placeholder-label {
  position: absolute;
  bottom: 14px; left: 12px; right: 12px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-align: center;
}

.clip-info { padding: 14px 16px 18px; }
.clip-info h3 { font-size: 0.92rem; margin-bottom: 3px; line-height: 1.3; }
.clip-info p { font-size: 0.8rem; margin: 0; color: var(--ink-soft); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px -10px rgba(16,34,47,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.carousel-arrow:hover { transform: translateY(-50%) scale(1.08); }
.carousel-arrow.prev { left: -6px; }
.carousel-arrow.next { right: -6px; }
.carousel-arrow:disabled { opacity: 0; pointer-events: none; }

.clip-carousel-wrap::before,
.clip-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 22px;
  width: 44px;
  z-index: 2;
  pointer-events: none;
}
.clip-carousel-wrap::before { left: 0; background: linear-gradient(90deg, var(--cream), rgba(250,246,239,0)); }
.clip-carousel-wrap::after { right: 0; background: linear-gradient(-90deg, var(--cream), rgba(250,246,239,0)); }

@media (max-width: 640px) {
  .clip-card { width: 58vw; }
  .carousel-arrow { display: none; }
  .clip-carousel-wrap::before, .clip-carousel-wrap::after { width: 22px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--paper);
  padding: 13px 24px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), gap .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(14,31,43,0.4); background: var(--navy-soft); gap: 12px; }
.btn.ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn.ghost:hover { background: var(--navy); color: var(--paper); }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(2px); }

/* ---------- Footer ---------- */
footer { padding-top: 56px; border-top: 1px solid var(--line); margin-top: 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: 'Manrope', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.footer-col h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--gold); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--ink-soft); text-decoration: none; font-size: 0.92rem; margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--navy); }
footer .fine-print { padding: 22px 0 60px; color: var(--ink-soft); font-size: 0.85rem; }

.note {
  background: #f3ecd9;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 18px 22px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 20px;
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 14px 30px -8px rgba(7,17,24,0.5);
  opacity: 0; transform: translateY(10px);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  z-index: 90;
  font-size: 1.1rem;
}
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top:hover { background: var(--navy-soft); }

/* ---------- Phone refinements (iPhone SE through Pro Max) ---------- */
@media (max-width: 600px) {
  body { font-size: 16px; }
  header.site-header {
    background: rgba(250, 246, 239, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .container { padding: 0 20px; }
  .nav-inner { padding: 13px 20px; }
  .brand { font-size: 1rem; gap: 9px; }
  .brand .mark { width: 32px; height: 32px; }
  .brand .role { font-size: 0.6rem; letter-spacing: 0.06em; }

  .hero { padding: 44px 0 32px; }
  .hero h1 { font-size: clamp(1.8rem, 7.5vw, 2.3rem); max-width: none; }
  .hero .lede { font-size: 1.02rem; }
  .hero-photo-wrap { max-width: 210px; }
  .floating-chip { padding: 10px 14px; max-width: 150px; }
  .floating-chip .n { font-size: 1.15rem; }
  .floating-chip .l { font-size: 0.6rem; }

  section.block { padding: 40px 0; }
  .stats { gap: 18px 16px; }
  .stat .num { font-size: 1.9rem; }
  .card-grid { gap: 16px; }
  .card { padding: 22px 20px; }

  .venture { padding: 24px 20px; }
  .venture .venture-head h2 { font-size: 1.35rem; }

  .quote-panel { padding: 30px 22px; border-radius: 12px; }
  .quote-panel::before { font-size: 120px; top: -16px; left: 10px; }
  blockquote { font-size: 1.08rem; padding: 6px 0 6px 18px; }
  .pull { font-size: 1.12rem; }

  .logo-tile { height: 110px; padding: 16px; }
  .ventures-side { gap: 14px; }

  .btn { padding: 12px 20px; font-size: 0.88rem; }
  .to-top { bottom: 18px; right: 18px; width: 42px; height: 42px; }
}
