/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  --charcoal:   #1A1A1A;
  --travertine: #E9E6D8;
  --bg:         rgba(233,230,216,0.4); /* travertine at 40% */
  --blue:       #283991;
  --walnut:     #764F37;
  --white:      #FFFFFF;
  --rule:       rgba(26,26,26,0.15);
  --rule-light: rgba(26,26,26,0.08);

  --font-display: 'Scheherazade New', Georgia, serif;
  --font-body:    'Google Sans', system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --max-w: 1280px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h, 64px) + 20px); }

body {
  background: #FFFFFF; /* white base so 60% travertine reads correctly */
  color: var(--charcoal);
  font-family: var(--font-body);
  font-optical-sizing: auto;
  font-variation-settings: "GRAD" 0;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* Transparent travertine overlay on all sections */
body > * { background: var(--bg); }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.rule {
  border: none;
  border-top: 1px solid var(--rule);
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 160;
  padding: 1.25rem var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(233,230,216,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule-light);
}

.nav-logo-mark {
  display: inline-block;
  height: 22px;
  aspect-ratio: 1013 / 215;
  background-color: var(--charcoal);
  mask-image: url(../assets/logo.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: left center;
  -webkit-mask-image: url(../assets/logo.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: left center;
  transition: background-color 0.2s;
}
.nav-logo:hover .nav-logo-mark { background-color: var(--walnut); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.65;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

.nav-cta {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  border-radius: 1px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--charcoal); color: var(--travertine); }

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s ease, opacity 0.2s ease, width 0.2s ease;
}
.nav-hamburger span:nth-child(1) { width: 24px; }
.nav-hamburger span:nth-child(2) { width: 18px; }
.nav-hamburger span:nth-child(3) { width: 24px; }
.nav-hamburger.open span:nth-child(1) { width: 24px; transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { width: 24px; transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--travertine);
  flex-direction: column;
  padding: 5.5rem 1.75rem 3rem;
  overflow-y: auto;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--space-md);
}
.nav-mobile-nav li {
  border-bottom: 1px solid var(--rule);
  padding: 1.25rem 0;
}
.nav-mobile-nav a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.65;
  display: block;
}
.nav-mobile-nav a:hover { opacity: 1; }
.nav-mobile-cta {
  margin-top: var(--space-lg);
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--travertine);
  border-radius: 1px;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  padding-top: 4rem; /* nav height only — no extra gap */
  border-bottom: 1px solid var(--rule);
}

.hero-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--space-md);
  display: grid;
  grid-template-columns: 65fr 35fr;
  align-items: start;
}

.hero-left {
  padding: var(--space-xl) var(--space-md) var(--space-xl) 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: var(--space-md);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--walnut);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--charcoal);
}

/* The signature element: "branch" stamped in Walnut Hugs */
.stamp-rotator {
  display: block;
  position: relative;
  height: 1.2em;
  overflow: hidden;
}

.hero-headline .stamp {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--walnut);
  letter-spacing: -0.04em;
  opacity: 0;
  animation: stamp-swap 20s linear infinite;
}

.hero-headline .stamp:nth-child(1) { animation-delay: 0s; }
.hero-headline .stamp:nth-child(2) { animation-delay: 5s; }
.hero-headline .stamp:nth-child(3) { animation-delay: 10s; }
.hero-headline .stamp:nth-child(4) { animation-delay: 15s; }

@keyframes stamp-swap {
  0% { opacity: 0; }
  8% { opacity: 1; }
  17% { opacity: 1; }
  25% { opacity: 0; }
  100% { opacity: 0; }
}

.report-illustration {
  max-width: 288px;
  width: 100%;
  margin: -1.75rem 0;
}

.hero-subline {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.75;
  max-width: 55ch;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.btn-primary {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  background: var(--charcoal);
  color: var(--travertine);
  border: 1px solid var(--charcoal);
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: transparent; color: var(--charcoal); }

.btn-secondary {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  background: transparent;
  color: var(--charcoal);
  border: 1px solid rgba(26,26,26,0.35);
  border-radius: 1px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--charcoal); }

.hero-right {
  padding: var(--space-xl) var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-lg);
}

.hero-building-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s;
  margin-top: 20px;
}
.hero-building-card:hover { border-color: var(--charcoal); }

.hero-building-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.hero-building-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 0.4s ease;
}
.hero-building-card:hover .hero-building-img img { transform: scale(1.03); }

.hero-building-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hero-building-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.hero-building-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-mid);
}

.hero-building-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 0.5rem;
}

.hero-credential {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.credential-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 1;
}

.credential-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.credential-note {
  font-size: 14px;
  color: var(--charcoal);
  opacity: 0.55;
}

.hero-divider {
  width: 32px;
  border-top: 1px solid var(--rule);
}

/* ─── SECTION HEADERS ────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.section-index {
  font-size: 16 px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
  opacity: 1;
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--charcoal);
}

/* ─── ENGAGEMENT SPECTRUM ────────────────────────────────── */
.spectrum {
  padding: 5rem 0;
  border-bottom: 1px solid var(--rule);
}

.spectrum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.spectrum-item {
  padding: var(--space-lg) var(--space-md);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: background 0.25s;
  cursor: pointer;
}
.spectrum-item:last-child { border-right: none; }
.spectrum-item:hover { background: rgba(26,26,26,0.03); }

.spectrum-level {
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut);
}

.spectrum-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--charcoal);
}

.spectrum-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.65;
}

.spectrum-services {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.spectrum-services li {
  font-size: 14px;
  color: var(--charcoal);
  opacity: 0.55;
  padding-left: 1rem;
  position: relative;
}
.spectrum-services li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.4;
}

.spectrum-cta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--walnut);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.spectrum-item:hover .spectrum-cta { opacity: 1; }

/* ─── INDUSTRIES ─────────────────────────────────────────── */
.industries {
  padding: 5rem 0;
  border-bottom: 1px solid var(--rule);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.industry-item {
  padding: var(--space-lg) var(--space-md);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: background 0.25s;
  cursor: pointer;
}
.industry-item:last-child { border-right: none; }
.industry-item:hover { background: rgba(26,26,26,0.03); }

.industry-num {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--walnut);
  opacity: 0.75;
}

.industry-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--charcoal);
}

.industry-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--charcoal);
  opacity: 0.55;
  flex: 1;
}

.industry-cta {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--walnut);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity 0.2s;
}
.industry-item:hover .industry-cta { opacity: 1; }

/* ─── PARTNERSHIPS ───────────────────────────────────────── */
.partnerships {
  padding: 5rem 0;
  border-bottom: 1px solid var(--rule);
}

.partnerships-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: end;
  margin-bottom: var(--space-lg);
}

.partnerships-intro {
  font-size: 17px;
  line-height: 1.75;
  color: var(--charcoal);
  opacity: 0.6;
  max-width: 40ch;
}

.case-studies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.case-study {
  background: var(--travertine);
  padding: var(--space-md) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  cursor: pointer;
  transition: background 0.2s;
}
.case-study:hover { background: rgba(255,255,255,0.5); }

.case-tag {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--walnut);
}

.case-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--charcoal);
}

.case-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.55;
}

.case-outcome {
  margin-top: auto;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--walnut);
  opacity: 0.85;
}

.story-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.story-filter {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--rule);
  border-radius: 1px;
  background: transparent;
  color: var(--charcoal);
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.2s, border-color 0.2s, background 0.2s, color 0.2s;
}
.story-filter:hover { opacity: 1; border-color: var(--charcoal); }
.story-filter.active {
  opacity: 1;
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--travertine);
}

.story-empty {
  font-size: 15px;
  color: var(--charcoal);
  opacity: 0.5;
  padding: var(--space-lg) 0;
}

/* ─── INSIGHTS ───────────────────────────────────────────── */
.insights {
  padding: 5rem 0;
  border-bottom: 1px solid var(--rule);
}

.insights-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.insights-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--walnut);
  opacity: 0.7;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}
.insights-link:hover { opacity: 1; border-color: var(--walnut); }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.article-card {
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: opacity 0.2s;
  cursor: pointer;
}
.article-card:first-child { padding-left: 0; }
.article-card:last-child { border-right: none; padding-right: 0; }
.article-card:hover { opacity: 0.75; }

.article-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.article-category {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--walnut);
}

.article-read {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.35;
}

.article-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--charcoal);
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  align-items: center;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-item img {
  width: 100%;
  max-width: 160px;
  height: 60px;
  object-fit: contain;
}

@media (max-width: 640px) {
  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

.article-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.55;
}

.article-author {
  margin-top: auto;
  font-size: 13px;
  color: var(--charcoal);
  opacity: 0.4;
}

/* ─── HP INTRO ───────────────────────────────────────────── */
.hp-intro {
  position: relative;
  padding: 7rem 0;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hp-intro-bg {
  position: absolute;
  inset: 0;
}
.hp-intro-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: calc(70% + 400px) center;
  filter: saturate(1.5) contrast(1.1);
}
.hp-intro-bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(233,230,216,0.97) 0%, rgba(233,230,216,0.97) 50%, rgba(233,230,216,0.5) 70%, transparent 90%);
}
.hp-intro-content {
  position: relative;
  z-index: 2;
  max-width: 50%;
}
.hp-intro-content .section-index { display: block; margin-bottom: 1rem; }
.hp-intro-content .section-title { margin-bottom: 1rem; }
.hp-intro-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}
.hp-intro-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .hp-intro-bg { width: 100%; opacity: 0.3; }
  .hp-intro-bg-fade { background: var(--travertine); opacity: 0.5; }
  .hp-intro-content { max-width: 100%; }
}

/* ─── HP BUILDING TEASER ──────────────────────────────────── */
.hp-building {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.hp-building-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hp-building-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hp-building-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,8,5,0.82) 0%, rgba(10,8,5,0.6) 50%, rgba(10,8,5,0.2) 100%);
}
.hp-building-content {
  position: relative;
  z-index: 2;
  padding: 5rem 8vw;
  width: 100%;
}
.hp-building-inner { max-width: 560px; }
.hp-building-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(233,230,216,0.7);
  margin-bottom: 1rem;
}
.hp-building-heading {
  color: var(--travertine);
  margin-bottom: 1.25rem;
}
.hp-building-body {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(233,230,216,0.8);
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hp-intro-lead { grid-template-columns: 1fr; gap: 3rem; }
  .hp-values-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hp-value-item { border-right: none; padding: 0 0 1.5rem; border-bottom: 1px solid var(--rule); }
  .hp-value-item:last-child { border-bottom: none; padding-bottom: 0; }
  .hp-value-item:not(:first-child) { padding-left: 0; }
}
@media (max-width: 600px) {
  .hp-building { min-height: auto; }
  .hp-intro-actions { flex-direction: column; }
  .hp-building-content { padding: 4rem 6vw; }
  .hp-building-scrim { background: rgba(10,8,5,0.7); }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  padding: var(--space-lg) 0;
  background: var(--charcoal);
}

.footer-inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: var(--space-lg);
  align-items: start;
}

.footer-logo img {
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-tagline {
  font-size: 11px;
  color: var(--travertine);
  opacity: 0.5;
  margin-top: 0.75rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--walnut);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--travertine);
  opacity: 0.65;
  transition: opacity 0.2s;
}
.footer-col ul li a:hover { opacity: 1; }

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-sm);
}

.footer-contact {
  font-size: 11px;
  color: var(--travertine);
  opacity: 0.5;
  text-align: right;
  line-height: 1.7;
}

.footer-bottom {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(233,230,216,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 10px;
  color: var(--travertine);
  opacity: 0.4;
  letter-spacing: 0.06em;
}

.footer-legal {
  display: flex;
  gap: var(--space-md);
}
.footer-legal a {
  font-size: 10px;
  color: var(--travertine);
  opacity: 0.4;
  transition: opacity 0.2s;
}
.footer-legal a:hover { opacity: 0.8; }

/* ─── SUBPAGE: PAGE HEADER ───────────────────────────────── */
.page-hero {
  padding: calc(4rem + var(--space-lg)) 0 var(--space-sm);
  border-bottom: 1px solid var(--rule);
}

.page-hero .container {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.page-hero .container:has(.service-hero-grid) {
  flex-direction: column;
  align-items: stretch;
  gap: var(--space-sm);
}

.page-hero-text {
  flex: 1;
  min-width: 0;
}

.page-hero-image {
  flex: 0 0 40%;
  max-width: 480px;
  aspect-ratio: 4 / 3;
  background-color: var(--rule);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-image--illustration {
  background: none;
  border-radius: 0;
  aspect-ratio: 1 / 1;
}
.page-hero-image--illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.page-hero-image-placeholder {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .page-hero .container {
    flex-direction: column;
  }
  .page-hero-image {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}

.page-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: var(--space-sm);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  max-width: 16ch;
}

.page-intro {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.7;
  max-width: 55ch;
  margin-top: var(--space-md);
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: var(--space-md);
  align-items: start;
  overflow: visible;
}

.service-hero-grid img.service-hero-image {
  margin-top: -3rem;
}

.service-hero-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-color: var(--rule);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  opacity: 0.35;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: var(--space-xl);
  align-items: start;
}

.service-summary {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.75;
  margin-top: var(--space-sm);
}

.service-detail {
  max-width: 80%;
}

.service-detail-item {
  padding: var(--space-md) 0;
  border-top: 1px solid var(--rule);
}

.service-detail-item:first-child {
  border-top: none;
  padding-top: 0;
}

.service-detail-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: var(--space-sm);
}

.service-detail-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  opacity: 0.7;
}

@media (max-width: 860px) {
  .service-detail { max-width: 100%; }
}

@media (max-width: 640px) {
  .service-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .service-hero-grid > div { order: 2; }
  .service-hero-grid img.service-hero-image {
    order: 1;
    width: 104px !important;
    height: 104px !important;
    padding: 0.5rem 0;
    object-fit: contain;
  }
  .service-overview-grid { grid-template-columns: 1fr; }
}

/* ─── SUBPAGE: SECTOR BLOCKS ─────────────────────────────── */
.sector-section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--rule);
}

.sector-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--rule-light);
}
.sector-block:first-child { padding-top: 0; }
.sector-block:last-child { border-bottom: none; padding-bottom: 0; }

.sector-problem-opportunity p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.7;
  margin-bottom: var(--space-sm);
}
.sector-problem-opportunity p strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--walnut);
  opacity: 1;
  margin-bottom: 0.35rem;
  font-weight: 400;
}

.sector-problem-opportunity p.blueprint-label {
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.4;
  margin-bottom: var(--space-sm);
  line-height: inherit;
}

.blueprint-label {
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.4;
  margin-bottom: var(--space-sm);
}

.blueprint-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.blueprint-step {
  padding: 1rem 0;
  border-top: 1px solid var(--rule-light);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-sm);
}

.blueprint-step-label {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

.blueprint-step-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--charcoal);
  opacity: 0.6;
}

/* ─── SUBPAGE: COMPANY / ABOUT ───────────────────────────── */
.company-section {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--rule);
}

.company-statements {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-lg);
}

.statement-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: var(--space-sm);
}

.statement-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.core-values {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.core-value-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule-light);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-sm);
  align-items: start;
}
.core-value-item:first-child { border-top: 1px solid var(--rule-light); }

.core-value-mark {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--walnut);
  margin-top: 0.55em;
  flex-shrink: 0;
}

.core-value-name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.core-value-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--charcoal);
  opacity: 0.55;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.founder-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.founder-role {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-top: -0.5rem;
}

.founder-detail {
  font-size: 14px;
  line-height: 1.65;
  color: var(--charcoal);
  opacity: 0.65;
}
.founder-detail strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.4;
  margin-bottom: 0.3rem;
  font-weight: 400;
}

/* ─── FOOTER LOGO ────────────────────────────────────────── */
footer .nav-logo-mark {
  background-color: #fff !important;
}
footer .footer-inner img {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* ─── FOOTER COLORS ──────────────────────────────────────── */
.footer-col-title {
  font-size: 12px;
  color: #c5bab0;
  opacity: 1;
}
.footer-col ul li a {
  color: #fff;
  opacity: 0.75;
}
.footer-col ul li a:hover { opacity: 1; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-item { border-bottom: 1px solid var(--rule); }
  .industry-item:nth-child(2) { border-right: none; }
  .industry-item:nth-child(3), .industry-item:nth-child(4) { border-bottom: none; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .spectrum-cta, .industry-cta { opacity: 1; }
  .section-header {
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: var(--space-md);
  }
  .spectrum { padding: 4.5rem 0; }
  .industries { padding: 4.5rem 0; }
  .partnerships { padding: 4.5rem 0; }
  .insights { padding: 4.5rem 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left { border-right: none; padding: 3rem 0; }
  .hero-building-card { margin-top: 0; }
  .hero-right { padding: 2rem 0 3rem; flex-direction: row; flex-wrap: wrap; gap: 2rem; }
  .hero-credential { flex: 1; min-width: 120px; }
  .spectrum-grid { grid-template-columns: 1fr; }
  .spectrum-item { border-right: none; border-bottom: 1px solid var(--rule); }
  .spectrum-item:last-child { border-bottom: none; }
  .industries-grid { grid-template-columns: 1fr; }
  .industry-item { border-right: none; }
  .partnerships-header { grid-template-columns: 1fr; }
  .case-studies { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .article-card { border-right: none; border-bottom: 1px solid var(--rule); padding: 0 0 var(--space-md); }
  .article-card:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-right { align-items: flex-start; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .container { padding-inline: 1.25rem; }
  .sector-block { grid-template-columns: 1fr; gap: var(--space-md); }
  .company-statements { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
}

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

/* ─── ABOUT PAGE ─────────────────────────────────────────── */

/* Scroll-reveal utility */
.ab-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.3,1), transform 0.9s cubic-bezier(.2,.7,.3,1);
}
.ab-reveal.in-view { opacity: 1; transform: translateY(0); }
.ab-reveal.delay-1 { transition-delay: 0.12s; }
.ab-reveal.delay-2 { transition-delay: 0.24s; }
.ab-reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1s ease, transform 1s ease;
}
.ab-reveal-right.in-view { opacity: 1; transform: translateX(0); }

/* Hero */
/* ══════════════════════════════════════════════════════════
   BUILDING PAGE (bp-*)
   ══════════════════════════════════════════════════════════ */

/* Shared section base */
.bp-section { position: relative; }
.bp-section-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
  margin: 0 0 1.25rem;
}
.bp-eyebrow--light { color: rgba(233,230,216,0.6); }
.bp-eyebrow--walnut { color: var(--walnut); }
.bp-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}

/* ── HERO ─────────────────────────────────────────────────── */
.bp-hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.bp-hero-bg {
  position: absolute;
  inset: 0;
}
.bp-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.bp-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,5,0.85) 0%, rgba(10,8,5,0.3) 55%, rgba(10,8,5,0.1) 100%);
}
.bp-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw 6vh;
  max-width: 680px;
  color: var(--travertine);
}
.bp-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(233,230,216,0.6);
  margin: 0 0 1rem;
}
.bp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1;
  color: var(--travertine);
  margin: 0 0 1.25rem;
}
.bp-hero-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(233,230,216,0.75);
  max-width: 480px;
  margin: 0 0 1.75rem;
}
.bp-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.bp-hero-pills span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--travertine);
  border: 1px solid rgba(233,230,216,0.3);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}
.bp-hero-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--travertine);
  padding: 0.9rem 1.8rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.bp-hero-cta:hover { background: #fff; }
.bp-scroll-cue {
  position: absolute;
  bottom: 2rem;
  right: 8vw;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(233,230,216,0.4);
  writing-mode: vertical-rl;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.bp-scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 3rem;
  background: rgba(233,230,216,0.25);
}

/* ── LOCATION ─────────────────────────────────────────────── */
.bp-location {
  height: 100vh;
  min-height: 640px;
  display: flex;
}
.bp-map-wrap {
  position: absolute;
  inset: 0;
}
.bp-map-wrap iframe { display: block; width: 100%; height: 100%; }
.bp-map-mobile { display: none; }
@media (max-width: 768px) {
  .bp-map-desktop { display: none; }
  .bp-map-mobile { display: block; }
}
.bp-location-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h, 64px) + 4rem) 8vw 4rem;
  width: 100%;
  background: linear-gradient(to right, rgba(233,230,216,0.97) 38%, rgba(233,230,216,0.85) 55%, transparent 75%);
}
.bp-location-card {
  max-width: 420px;
}
.bp-location-card .bp-section-title { color: var(--charcoal); }
.bp-location-body {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--charcoal);
  opacity: 0.7;
  margin: 0 0 1.5rem;
}
.bp-location-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bp-location-highlights li {
  font-size: 0.88rem;
  color: var(--charcoal);
  opacity: 0.75;
  padding-left: 1rem;
  position: relative;
}
.bp-location-highlights li::before {
  content: '—';
  position: absolute; left: 0;
  opacity: 0.35;
}
.bp-map-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid rgba(26,26,26,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.bp-map-link:hover { border-color: var(--charcoal); }

/* ── BUILDING OVERVIEW ────────────────────────────────────── */
.bp-building-overview {
  padding: 8rem 8vw;
  background: var(--travertine);
}
.bp-building-inner { max-width: 1100px; }
.bp-building-header {
  max-width: 560px;
  margin-bottom: 4rem;
}
.bp-building-header .bp-section-title { color: var(--charcoal); }
.bp-building-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal);
  opacity: 0.65;
  margin: 0;
}
.bp-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.bp-spec-item {
  padding: 1.5rem 2rem 1.5rem 0;
  border-top: 1px solid var(--rule);
}
.bp-spec-item:nth-child(even) { padding-left: 2rem; border-left: 1px solid var(--rule); }
.bp-spec-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 0.5rem;
}
.bp-spec-value {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--charcoal);
  opacity: 0.75;
}

/* ── FLOOR SECTIONS (shared) ──────────────────────────────── */
.bp-floor {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}
.bp-floor-bg {
  position: absolute;
  inset: 0;
}
.bp-floor-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.bp-floor-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.bp-floor-scrim--left {
  background: linear-gradient(to right, rgba(10,8,5,0.88) 0%, rgba(10,8,5,0.7) 45%, rgba(10,8,5,0.1) 75%, transparent 100%);
}
.bp-floor-scrim--right {
  background: linear-gradient(to left, rgba(233,230,216,1) 0%, rgba(233,230,216,1) 36%, rgba(233,230,216,0.85) 51%, rgba(233,230,216,0.2) 71%, transparent 100%);
}
.bp-floor-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 8rem 8vw;
  width: 100%;
}
.bp-floor-content--right { justify-content: flex-end; }

.bp-floor-card {
  max-width: 480px;
  width: 100%;
}
.bp-floor-card--dark {}
.bp-floor-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--travertine);
  margin: 0 0 1.25rem;
}
.bp-floor-title--dark { color: var(--charcoal); }
.bp-floor-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(233,230,216,0.75);
  margin: 0 0 2rem;
}
.bp-floor-body--dark {
  color: var(--charcoal);
  opacity: 0.65;
}
.bp-floor-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(233,230,216,0.15);
}
.bp-floor-spec {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(233,230,216,0.15);
}
.bp-floor-spec-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(233,230,216,0.4);
}
.bp-floor-spec-value {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(233,230,216,0.85);
}

/* Second floor office config cards */
.bp-office-configs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-bottom: 1.5rem;
}
.bp-config-option {
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}
.bp-config-divider {
  height: 1px;
  background: var(--charcoal);
  opacity: 0.08;
  margin: 0.25rem 0;
}
.bp-config-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 0.3rem;
}
.bp-config-area {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.bp-config-rent {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  opacity: 0.75;
  margin-bottom: 0.25rem;
}
.bp-config-note {
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--charcoal);
  opacity: 0.5;
}
.bp-floor-footnote {
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--charcoal);
  opacity: 0.45;
  margin: 0;
  border-top: 1px solid var(--rule);
  padding-top: 1rem;
}

/* ── LEASE TERMS ──────────────────────────────────────────── */
.bp-terms {
  padding: 8rem 8vw;
  background: var(--charcoal);
}
.bp-terms-inner { max-width: 1000px; }
.bp-terms-header { margin-bottom: 4rem; }
.bp-terms-header .bp-section-eyebrow { color: rgba(233,230,216,0.45); }
.bp-terms-header .bp-section-title { color: var(--travertine); }
.bp-terms-intro {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(233,230,216,0.55);
  max-width: 520px;
  margin: 0;
}
.bp-terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 3rem;
}
.bp-term-item {
  padding: 1.5rem 2rem 1.5rem 0;
  border-top: 1px solid rgba(233,230,216,0.1);
}
.bp-term-item:nth-child(even) { padding-left: 2rem; border-left: 1px solid rgba(233,230,216,0.1); }
.bp-term-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 0.5rem;
}
.bp-term-value {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(233,230,216,0.7);
}
.bp-terms-disclaimer {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(233,230,216,0.3);
  border-top: 1px solid rgba(233,230,216,0.08);
  padding-top: 1.5rem;
  margin: 0;
}

/* ── DESIGN COLLAB ────────────────────────────────────────── */
.bp-design-collab {
  position: relative;
  padding: 7rem 8vw;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.bp-design-collab-bg {
  position: absolute;
  inset: 0;
}
.bp-design-collab-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.bp-design-collab-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(233,230,216,0.90);
}
.bp-design-inner { position: relative; z-index: 1; max-width: 680px; }
.bp-design-collab .bp-section-title { color: var(--charcoal); }
.bp-design-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--charcoal);
  opacity: 0.65;
  margin: 0 0 1rem;
}

/* ── ENQUIRE CTA ──────────────────────────────────────────── */
.bp-enquire {
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.bp-enquire-bg {
  position: absolute;
  inset: 0;
}
.bp-enquire-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.4);
}
.bp-enquire-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10,8,5,0.55);
}
.bp-enquire-content {
  position: relative;
  z-index: 2;
  padding: 6rem 8vw;
  max-width: 600px;
  color: var(--travertine);
}
.bp-enquire-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--travertine);
  margin: 0 0 1.25rem;
}
.bp-enquire-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(233,230,216,0.7);
  margin: 0 0 2.5rem;
}
.bp-enquire-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.bp-enquire-email {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(233,230,216,0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(233,230,216,0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.bp-enquire-email:hover { color: var(--travertine); border-color: rgba(233,230,216,0.6); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .bp-location { height: auto; min-height: 100vh; flex-direction: column; }
  .bp-location-overlay {
    background: rgba(233,230,216,0.97);
    padding: calc(var(--nav-h, 64px) + 2rem) 6vw 2rem;
  }
  .bp-map-wrap { position: relative; height: 50vh; }
  .bp-floor-scrim--left { background: linear-gradient(to top, rgba(10,8,5,0.92) 0%, rgba(10,8,5,0.5) 60%, transparent 100%); }
  .bp-floor-scrim--right { background: rgba(233,230,216,0.95); }
  .bp-floor-content, .bp-floor-content--right { align-items: flex-end; justify-content: flex-start; padding: 4rem 6vw; }
  .bp-floor--second .bp-floor-content { padding-top: 2rem; }
  .bp-floor--second { min-height: 50vh; }
  .bp-floor--ground .bp-floor-content { padding-top: 2rem; }
  .bp-floor--ground { min-height: 50vh; }
  .bp-specs-grid, .bp-terms-grid { grid-template-columns: 1fr; }
  .bp-spec-item:nth-child(even), .bp-term-item:nth-child(even) { padding-left: 0; border-left: none; }
  .bp-building-overview, .bp-terms, .bp-design-collab { padding: 5rem 6vw; }
}

/* ══════════════════════════════════════════════════════════
   END BUILDING PAGE
   ══════════════════════════════════════════════════════════ */

.about-hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--charcoal) !important;
}
.about-hero-bg {
  position: absolute;
  inset: -10% 0 0 0;
  height: 120%;
}
.about-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.1) 0%, rgba(26,26,26,0.72) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8vw 8vh;
  color: var(--travertine);
  max-width: 800px;
}
.about-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8a97e;
  font-weight: 500;
  margin-bottom: 1rem;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--travertine);
}
.about-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0.85;
  max-width: 480px;
  color: var(--travertine);
  line-height: 1.65;
}
.about-scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 8vw;
  z-index: 2;
  color: var(--travertine);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-scroll-cue::after {
  content: '';
  width: 1px; height: 28px;
  background: var(--travertine);
  opacity: 0.6;
  animation: ab-cue 1.8s ease-in-out infinite;
}
@keyframes ab-cue {
  0%,100% { transform: scaleY(0.4); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 0.8; }
}

/* Mission */
.about-mission {
  padding: 8rem 8vw;
  display: flex;
  align-items: flex-start;
  gap: 4vw;
}
.about-mission-illustration {
  flex: 0 0 340px;
  width: 340px;
  background: none;
  margin-top: -3rem;
}
.about-mission h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 640px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.about-mission p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #3a3934;
  margin-bottom: 1.1rem;
  max-width: 640px;
}
.about-mission .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--blue);
  margin-top: 1.5rem;
  display: block;
}

/* Building scroll sequence */
.about-building-pin {
  height: 300vh;
  position: relative;
  background: var(--charcoal) !important;
}
.about-building-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ab-floor-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.ab-floor-layer img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ab-floor-layer.active { opacity: 1; }
.ab-floor-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.45) 0%, rgba(26,26,26,0.1) 40%, rgba(26,26,26,0.7) 100%);
  z-index: 1;
}
.ab-building-copy {
  position: relative;
  z-index: 2;
  padding: 0 8vw;
  color: var(--travertine);
  max-width: 560px;
}
.ab-building-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8a97e;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.ab-floor-label {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 300;
  margin-bottom: 0.75rem;
  min-height: 2.2em;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.ab-floor-desc {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 400px;
  line-height: 1.65;
}
.ab-floor-progress {
  position: absolute;
  right: 8vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ab-floor-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.4s;
}
.ab-floor-dot.active { background: var(--travertine); }
.ab-building-intro {
  position: absolute;
  top: 5.5rem; left: 8vw;
  z-index: 2;
  color: var(--travertine);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* Values */
.about-values {
  background: var(--charcoal) !important;
  color: var(--travertine);
  padding: 8rem 8vw;
}
.about-values-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c8a97e;
  font-weight: 500;
  margin-bottom: 1rem;
}
.about-values h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 3rem;
  max-width: 560px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.ab-value-row {
  display: flex;
  gap: 5rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 900px;
  align-items: baseline;
}
.ab-value-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.1); }
.ab-value-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  flex: 0 0 260px;
  color: #c8a97e;
}
.ab-value-desc {
  font-size: 0.95rem;
  color: rgba(233,230,216,0.6);
  line-height: 1.65;
  flex: 1;
  text-align: left;
}
.ab-value-row.ab-reveal { transform: translateX(-20px); }
.ab-value-row.ab-reveal.in-view { transform: translateX(0); }

/* Founders */
.about-founders {
  padding: 8rem 0;
}
.about-founders-head {
  padding: 0 8vw;
  margin-bottom: 4rem;
}
.about-founders-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 300;
  max-width: 560px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.about-founders-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--walnut);
  font-weight: 500;
  margin-bottom: 1rem;
}
.ab-founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 8vw;
}
.ab-founder-card { position: relative; }
.ab-founder-photo {
  height: 18vh;
  max-width: 200px;
  overflow: hidden;
}
.ab-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
  filter: grayscale(100%);
}
.ab-founder-text {
  padding: 1.75rem 0 0;
  margin: 0;
}
.ab-founder-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
.ab-founder-role {
  font-size: 0.85rem;
  color: var(--walnut);
  margin-bottom: 0.9rem;
  letter-spacing: 0.02em;
}
.ab-founder-bio {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #3a3934;
  max-width: 340px;
}

/* AI Approach */
.about-ai {
  padding: 8rem 8vw;
  display: flex;
  gap: 5vw;
  align-items: center;
  flex-wrap: wrap;
}
.about-ai-copy { flex: 1 1 420px; max-width: 520px; }
.about-ai-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.about-ai-copy p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #3a3934;
  margin-bottom: 1rem;
}
.about-ai-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--walnut);
  font-weight: 500;
  margin-bottom: 1rem;
}
.about-ai-visual {
  flex: 1 1 300px;
  max-width: 420px;
  height: 320px;
  position: relative;
  align-self: flex-start;
}
.about-ai-canvas-wrap {
  width: 100%; height: 100%;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background: var(--charcoal);
}
#about-ai-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-ai-mark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.6);
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid var(--travertine);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.8,.3,1);
}
.about-ai-mark.locked {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}
.about-ai-mark span {
  color: var(--travertine);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
}

/* Close CTA */
.about-close {
  height: 40vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal) !important;
}
.about-close-bg {
  position: absolute;
  inset: -10% 0 0 0;
  height: 120%;
}
.about-close-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.about-close-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.55);
}
.about-close-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--travertine);
  padding: 2rem 6vw;
}
.about-close-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.about-close-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.9rem 2rem;
  border: 1px solid var(--travertine);
  color: var(--travertine);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
  border-radius: 1px;
}
.about-close-btn:hover { background: var(--travertine); color: var(--charcoal); }

/* About page responsive */
@media (max-width: 768px) {
  .about-mission { padding: 5rem 6vw; }
  .about-values { padding: 5rem 6vw; }
  .about-ai { flex-direction: column; padding: 5rem 6vw; }
  .about-ai-visual { flex: none; width: 100%; max-width: 100%; height: 260px; }
  .ab-founder-grid { grid-template-columns: 1fr; padding: 0 6vw; }
  .ab-founder-text { margin: 0; padding: 1rem 0 3rem; }
  .ab-founder-photo { height: 18vh; }
  .about-founders-head { padding: 0 6vw; }
  .ab-value-row { flex-direction: column; gap: 0.4rem; }
  .ab-value-name { flex: none; min-width: 0; }
  .about-hero-content { padding: 0 6vw 6vh; }
  .ab-building-copy { padding: 0 6vw; }
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.ct-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.ct-reveal.in-view { opacity: 1; transform: translateY(0); }

/* Hero */
.ct-hero {
  padding: calc(5rem + var(--nav-h, 64px)) 8vw 5rem;
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  display: flex;
  align-items: center;
  gap: 4vw;
}
.ct-hero-inner {
  flex: 1 1 40%;
}
.ct-hero-report {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
}
.ct-report-top {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.ct-hero-report .report-illustration {
  max-width: 160px;
  flex-shrink: 0;
}
.ct-report-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .ct-hero { flex-direction: column; }
  .ct-hero-report { flex: none; max-width: 100%; }
}
.ct-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 1.25rem;
}
.ct-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
}
.ct-subtext {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.6;
  max-width: 520px;
}

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-meta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--charcoal);
  opacity: 0.45;
  margin-top: 0.75rem;
  letter-spacing: 0.02em;
}
.legal-body {
  padding: 5rem 8vw 8rem;
}
.legal-container {
  max-width: 780px;
}
.legal-intro {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
  opacity: 0.75;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
}
.legal-toc {
  margin-bottom: 3.5rem;
  padding: 2rem 2.5rem;
  background: rgba(26,26,26,0.03);
  border-radius: 2px;
}
.legal-toc-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
  margin: 0 0 1rem;
}
.legal-toc-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 2rem;
}
.legal-toc-list li {
  font-size: 0.85rem;
  line-height: 1.5;
}
.legal-toc-list a {
  color: var(--charcoal);
  opacity: 0.65;
  text-decoration: none;
  transition: opacity 0.15s;
}
.legal-toc-list a:hover { opacity: 1; }
.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule-light);
}
.legal-section:last-child { border-bottom: none; }
.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 1.25rem;
}
.legal-section h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.6;
  margin: 2rem 0 0.75rem;
}
.legal-section p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--charcoal);
  opacity: 0.75;
  margin: 0 0 1rem;
}
.legal-section ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.legal-section ul li {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--charcoal);
  opacity: 0.75;
}
.legal-contact-block {
  background: rgba(26,26,26,0.03);
  border-radius: 2px;
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.legal-contact-block p { margin: 0; }
.legal-contact-block a {
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 768px) {
  .legal-toc-list { grid-template-columns: 1fr; }
  .legal-body { padding: 3rem 6vw 5rem; }
}

/* Body grid */
/* ── REPORT PAGE ─────────────────────────────────────────── */
.rp-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 6vw;
  padding-top: calc(5rem + var(--nav-h, 64px));
  padding-bottom: 8rem;
  padding-left: 8vw;
  padding-right: 8vw;
  align-items: start;
}
.rp-copy {
  display: flex;
  flex-direction: column;
}
.rp-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  margin: 0 0 1.5rem;
}
.rp-lead {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--charcoal);
  opacity: 0.7;
  margin: 0;
}
.rp-divider {
  width: 2rem;
  height: 1px;
  background: var(--rule);
  margin: 2.5rem 0;
}
.rp-section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
  margin: 0 0 1rem;
}
.rp-contents,
.rp-audience {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.rp-contents li,
.rp-audience li {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--charcoal);
  opacity: 0.7;
  padding-left: 1rem;
  position: relative;
}
.rp-contents li::before,
.rp-audience li::before {
  content: '—';
  position: absolute;
  left: 0;
  opacity: 0.35;
}
@media (max-width: 768px) {
  .rp-grid { grid-template-columns: 1fr; gap: 4rem; padding-top: calc(3.5rem + var(--nav-h, 64px)); padding-bottom: 5rem; }
}
.rp-form-header {
  margin-bottom: 2.5rem;
}
.rp-form-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 0.75rem;
}
.rp-form-privacy {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.55;
  margin: 0;
}
.rp-form-privacy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 1;
}

.ct-body {
  padding: 0 8vw 8rem;
}
.ct-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 6vw;
  padding-top: 5rem;
  align-items: start;
}

/* Info column */
.ct-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.ct-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ct-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.ct-info-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--walnut);
}
.ct-info-value {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.75;
}
a.ct-link {
  color: var(--charcoal);
  opacity: 0.75;
  transition: opacity 0.2s;
}
a.ct-link:hover { opacity: 1; }

.ct-map {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--rule);
}
.ct-map iframe { display: block; }

.ct-building-link { border-top: 1px solid var(--rule); padding-top: 1.5rem; }
.ct-building-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.6;
  transition: opacity 0.2s, gap 0.2s;
}
.ct-building-cta:hover { opacity: 1; gap: 0.75rem; }

/* Form column */
.ct-form-wrap {
  position: relative;
  min-height: 400px;
}
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.3s ease;
}
.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.ct-field label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.55;
}
.ct-req { color: var(--walnut); opacity: 1; }
.ct-field input,
.ct-field textarea,
.ct-field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(26,26,26,0.2);
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.ct-field input::placeholder,
.ct-field textarea::placeholder { color: var(--charcoal); opacity: 0.25; }
.ct-field input:focus,
.ct-field textarea:focus,
.ct-field select:focus { border-bottom-color: var(--charcoal); }
.ct-field input.ct-error,
.ct-field textarea.ct-error { border-bottom-color: #c0392b; }
.ct-field textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.ct-select-wrap { position: relative; }
.ct-select-wrap select { padding-right: 1.5rem; cursor: pointer; }
.ct-select-wrap select option[value=""][disabled] { color: var(--charcoal); opacity: 0.25; }
.ct-select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--charcoal);
  opacity: 0.4;
}

.ct-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.5rem;
}
.ct-privacy {
  font-size: 11px;
  color: var(--charcoal);
  opacity: 0.4;
  line-height: 1.5;
}
.ct-privacy a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.ct-privacy a:hover { opacity: 1; }

.ct-submit {
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--travertine);
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  padding: 0.85rem 2rem;
  cursor: pointer;
  border-radius: 1px;
  transition: background 0.25s, color 0.25s;
}
.ct-submit:hover { background: transparent; color: var(--charcoal); }

/* Success state */
.ct-success {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2rem;
}
.ct-success.visible { display: flex; animation: ct-fadein 0.5s ease forwards; }
@keyframes ct-fadein { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.ct-success-inner { max-width: 400px; }
.ct-success-mark {
  font-size: 1.5rem;
  color: var(--walnut);
  margin-bottom: 1rem;
}
.ct-success-inner h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.ct-success-inner p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.6;
}

/* Contact responsive */
@media (max-width: 900px) {
  .ct-grid { grid-template-columns: 1fr; gap: 4rem; }
  .ct-map { aspect-ratio: 16 / 9; }
}
@media (max-width: 600px) {
  .ct-hero { padding: calc(4rem + var(--nav-h, 64px)) 6vw 3.5rem; }
  .ct-body { padding: 0 6vw 6rem; }
  .ct-grid { padding-top: 3rem; }
  .ct-form-row { grid-template-columns: 1fr; }
  .ct-form-footer { flex-direction: column; align-items: flex-start; }
  .ct-submit { width: 100%; text-align: center; }
  .ct-info-row { grid-template-columns: 1fr; }
}
