/* ================================================
   Run Capital Partners — v2
   Valeur-style cinematic landing
   ================================================ */

:root {
  --ink: #0a0a0a;
  --ink-soft: #141414;
  --cream: #f7f3ea;
  --gold: #c9a84c;
  --gold-light: #e0c874;
  --gold-warm: #a8882f;
  --gray: #8a8a8a;
  --line: rgba(201,168,76,0.18);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--ink);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- NAV ---- */
/* Nav styles removed — inherited from main style.css */

/* ---- TOP (hero + partners share one video backdrop) ---- */
.top {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.top__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.top__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.25) 40%, rgba(10,10,10,0.7) 88%, rgba(10,10,10,0.92) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(10,10,10,0.4) 85%);
  z-index: 1;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.8;
}
.hl {
  stroke-dasharray: 140 260;
  filter: drop-shadow(0 0 8px rgba(224,200,116,0.4));
  animation: hlFlow 14s linear infinite;
}
.hl--1 { animation-duration: 14s; }
.hl--2 { animation-duration: 18s; animation-delay: -4s; }
.hl--3 { animation-duration: 22s; animation-delay: -9s; }
@keyframes hlFlow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -400; }
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 980px;
}

.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.42em;
  color: var(--gold-light);
  margin: 0 0 28px;
  font-weight: 500;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(54px, 8vw, 120px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
  opacity: 0;
  animation: fadeUp 1.4s var(--ease) 0.5s forwards;
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(110deg, var(--gold-warm) 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, var(--gold-warm) 100%);
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 7s ease-in-out 2s infinite;
}
@keyframes shimmer {
  0%, 15%   { background-position: 100% 0; }
  50%       { background-position: 0% 0; }
  85%, 100% { background-position: -100% 0; }
}

.hero__sub {
  margin: 28px auto 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  color: #8a8a8a;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}

.hero__locations {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 40px 0 0;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.1s forwards;
}
.hero__pill {
  display: inline-block;
  padding: 10px 26px;
  border: 1.5px solid rgba(201,168,76,0.55);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(10,10,10,0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  cursor: default;
}
.hero__pill:hover {
  border-color: var(--gold-light);
  color: #fff;
  background: rgba(201,168,76,0.12);
}

.hero__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.3s forwards;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 38px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  border-radius: 10px;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border: 1.5px solid transparent;
  text-align: center;
}
.btn--primary {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #141414;
  box-shadow: 0 10px 28px rgba(201,168,76,0.28);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201,168,76,0.4);
}
.btn--ghost {
  background: rgba(10,10,10,0.3);
  color: var(--cream);
  border-color: rgba(247,243,234,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(247,243,234,0.6);
  z-index: 3;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.6s forwards;
}
.hero__scroll svg {
  width: 20px; height: 20px;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(8px); opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Institutional Partners (water continues behind) ---- */
.partners {
  position: relative;
  z-index: 2;
  padding: 48px 0 72px;
  border-top: 1px solid rgba(201,168,76,0.18);
}
.partners__label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 32px;
  font-weight: 500;
}
.partners__marquee {
  display: flex;
  gap: 72px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.partners__track {
  display: flex;
  gap: 72px;
  flex-shrink: 0;
  animation: partnerScroll 55s linear infinite;
  padding-right: 72px;
}
@keyframes partnerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
.partner {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(247,243,234,0.7);
  white-space: nowrap;
  transition: color 0.3s;
}
.partner:hover { color: var(--gold-light); }
.partner--serif { font-family: var(--serif); font-weight: 500; font-size: 22px; letter-spacing: 0.04em; }
.partner--italic { font-style: italic; font-weight: 700; }
.partner--thin { font-weight: 300; letter-spacing: 0.22em; }

/* ---- Sections ---- */
.section {
  padding: 140px 0;
  background: var(--cream);
  color: var(--ink);
  position: relative;
}
.section--dark {
  background: var(--ink);
  color: var(--cream);
}

.section__eyebrow {
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
  font-weight: 500;
}
.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
  max-width: 900px;
}
.section__title em {
  font-style: italic;
  color: var(--gold);
}
.section__lede {
  font-size: 20px;
  line-height: 1.55;
  max-width: 720px;
  color: rgba(10,10,10,0.7);
  font-weight: 300;
}
.section--dark .section__lede { color: rgba(247,243,234,0.72); }

/* ---- Numbers (Valeur-style sticky two-col) ---- */
.numbers {
  background: var(--ink);
  color: var(--cream);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.numbers::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  pointer-events: none;
}
.numbers__grid {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.numbers__left {
  position: sticky;
  top: 120px;
}
.numbers__right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px 48px;
}
.stat {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.stat__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.stat__plus {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--gold);
  margin-left: 4px;
  vertical-align: baseline;
}
.stat__label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247,243,234,0.55);
  font-weight: 500;
}

/* ---- Services ---- */
.services {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(10,10,10,0.12);
  border: 1px solid rgba(10,10,10,0.12);
}
.service {
  background: var(--cream);
  padding: 48px 40px;
  position: relative;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
  cursor: pointer;
}
.service:hover {
  background: var(--ink);
  color: var(--cream);
}
.service__num {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
}
.service h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.service p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(10,10,10,0.65);
  margin: 0 0 24px;
  font-weight: 300;
}
.service:hover p { color: rgba(247,243,234,0.7); }
.service__link {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ---- Services: Dark card variant ---- */
.services-section .section__title em {
  color: var(--gold);
}
.services--dark {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  background: transparent;
  border: 0;
}
.services--dark .service--card {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0) 55%),
    linear-gradient(180deg, #0b0906 0%, #070605 100%);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 10px;
  padding: 44px 48px 40px;
  color: var(--cream);
  cursor: default;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}
.services--dark .service--card:hover {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(201,168,76,0.12) 0%, rgba(201,168,76,0) 55%),
    linear-gradient(180deg, #0b0906 0%, #070605 100%);
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-2px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.08);
  color: var(--cream);
}
.services--dark .service__num {
  position: absolute;
  top: 28px;
  right: 36px;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0;
}
.services--dark .service h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--cream);
  letter-spacing: -0.01em;
  padding-right: 48px;
}
.services--dark .service__tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0 0 20px;
}
.services--dark .service p:not(.service__tag) {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(247,243,234,0.62);
  margin: 0 0 26px;
  font-weight: 300;
}
.services--dark .service:hover p:not(.service__tag) {
  color: rgba(247,243,234,0.78);
}
.services--dark .service__link {
  color: var(--gold);
  transition: color 0.3s var(--ease), letter-spacing 0.3s var(--ease);
}
.services--dark .service--card:hover .service__link {
  color: var(--gold-light, #e3c57a);
  letter-spacing: 0.26em;
}
@media (max-width: 900px) {
  .services--dark {
    grid-template-columns: 1fr;
  }
}

/* ---- Offices ---- */
.offices {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
}
.office {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.office__label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
.office h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 40px;
  line-height: 1;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.office p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(247,243,234,0.55);
  margin: 0;
  font-weight: 300;
}

/* ---- Group Structure (inside offices dark section) ---- */
.group-structure {
  margin-top: 120px;
  padding-top: 72px;
  border-top: 1px solid var(--line);
  position: relative;
}
.group-structure__head {
  margin-bottom: 56px;
}
.group-structure__title {
  margin-bottom: 0;
}
.group-structure__parent {
  max-width: 520px;
  margin: 0 auto;
  padding: 36px 44px;
  background: linear-gradient(180deg, rgba(20,20,20,0.9) 0%, rgba(10,10,10,0.95) 100%);
  border: 1px solid rgba(201,168,76,0.28);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.08) inset;
  text-align: center;
  position: relative;
}
.group-structure__parent-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}
.group-structure__parent-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 12px;
}
.group-structure__parent-loc {
  display: inline-block;
  padding: 7px 20px;
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(247,243,234,0.72);
  font-weight: 500;
}
.group-structure__connector {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(201,168,76,0.4), rgba(201,168,76,0));
  margin: 0 auto;
}
.group-structure__children {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.entity {
  position: relative;
  padding: 36px 28px 28px;
  background: rgba(247,243,234,0.03);
  border: 1px solid rgba(247,243,234,0.08);
  border-radius: 12px;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease), transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.entity:hover {
  border-color: rgba(201,168,76,0.45);
  background: rgba(201,168,76,0.04);
  transform: translateY(-4px);
}
.entity__num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: rgba(201,168,76,0.55);
}
.entity__tag {
  position: absolute;
  top: 18px;
  left: 22px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
}
.entity--spinoff {
  background: linear-gradient(180deg, rgba(201,168,76,0.1) 0%, rgba(201,168,76,0.03) 100%);
  border-color: rgba(201,168,76,0.28);
}
.entity__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.18;
  margin: 24px 0 14px;
  letter-spacing: -0.005em;
  color: var(--cream);
}
.entity--spinoff .entity__name { margin-top: 32px; }
.entity__desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(247,243,234,0.6);
  font-weight: 300;
  margin: 0 0 28px;
  flex-grow: 1;
}
.entity__meta {
  border-top: 1px solid rgba(247,243,234,0.1);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.entity__loc {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247,243,234,0.85);
  font-weight: 600;
}
.entity__reg {
  font-size: 12px;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .group-structure { margin-top: 80px; padding-top: 56px; }
  .group-structure__children { grid-template-columns: 1fr 1fr; gap: 16px; }
  .entity { padding: 28px 20px 22px; }
}
@media (max-width: 560px) {
  .group-structure__children { grid-template-columns: 1fr; }
}

/* ---- Journal (editorial TOC style) ---- */
.journal {
  background: var(--cream);
  color: var(--ink);
}
.journal__head {
  max-width: 900px;
  margin-bottom: 96px;
}
.journal__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(10,10,10,0.14);
}
.entry {
  display: grid;
  grid-template-columns: 64px 200px 1fr auto;
  column-gap: 48px;
  align-items: baseline;
  padding: 36px 0;
  border-bottom: 1px solid rgba(10,10,10,0.14);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: padding-left 0.5s var(--ease), color 0.3s;
}
.entry::before {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width 0.6s var(--ease);
}
.entry:hover {
  padding-left: 14px;
}
.entry:hover::before {
  width: 100%;
}
.entry:hover .entry__title {
  color: var(--gold-warm);
}
.entry:hover .entry__index {
  color: var(--gold);
}
.entry__index {
  font-family: var(--serif);
  font-size: 14px;
  color: rgba(10,10,10,0.35);
  letter-spacing: 0.1em;
  transition: color 0.3s;
  font-weight: 500;
  padding-top: 4px;
}
.entry__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}
.entry__date {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.55);
  font-weight: 600;
}
.entry__kind {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.entry__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  transition: color 0.3s;
  max-width: 640px;
}
.entry__byline {
  text-align: right;
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  min-width: 220px;
}
.entry__author {
  font-size: 12px;
  color: rgba(10,10,10,0.7);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.entry__len {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.4);
  font-weight: 600;
}
.journal__all {
  display: inline-block;
  margin-top: 56px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(201,168,76,0.35);
  transition: color 0.3s, border-color 0.3s;
}
.journal__all:hover {
  color: var(--gold-warm);
  border-color: var(--gold-warm);
}

@media (max-width: 900px) {
  .entry {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }
  .entry__byline {
    text-align: left;
    align-items: flex-start;
    padding-top: 0;
  }
  .entry:hover { padding-left: 0; }
}

/* ---- Contact ---- */
.contact {
  background: var(--cream);
  color: var(--ink);
  padding: 160px 0;
  text-align: center;
}
.contact__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.contact__title em {
  font-style: italic;
  color: var(--gold);
}
.contact__sub {
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: rgba(10,10,10,0.65);
  line-height: 1.55;
  font-weight: 300;
}
.contact__cta {
  display: inline-block;
  padding: 20px 40px;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.3s var(--ease);
}
.contact__cta:hover { background: var(--gold-warm); color: #fff; }

/* ---- Footer ---- */
/* Footer styles intentionally removed — using main style.css footer */

/* ---- Reveal ---- */
.r { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.r.in { opacity: 1; transform: translateY(0); }

/* ---- Mobile ---- */
@media (max-width: 800px) {
  .container { padding: 0 24px; }
  /* nav mobile overrides removed — inherited from main style.css */
  .section { padding: 80px 0; }
  .contact { padding: 100px 0; }
  .numbers { padding: 80px 0; }
  .numbers__grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
  .numbers__left { position: static; }
  .numbers__right { grid-template-columns: 1fr; gap: 48px; }
  .hero__scroll { bottom: 28px; }
  .footer__inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .r { opacity: 1; transform: none; }
}

/* Multi-column footer removed — now inherited from style.css */
