/* ═══════════════════════════════════════════════════════════════
   PALM LIFE COMMERCIAL — Oak Bend Townhomes
   Developer-First Case Study · Institutional Tone
   #FAF9F7 warm white · Gold accents · No dark gamer aesthetics
   ═══════════════════════════════════════════════════════════════ */


/* ─── Design Tokens ─── */
:root {
  --gold:         #C6A66B;
  --gold-lt:      #D9BD8E;
  --gold-dk:      #A8893B;
  --gold-tint:    rgba(198, 166, 107, 0.12);
  --gold-pale:    #F8F3EA;
  --gold-border:  rgba(198, 166, 107, 0.28);

  --ink:          #1A1A1A;
  --ink-70:       #363430;
  --ink-50:       #565450;
  --ink-30:       #8C8A86;
  --ink-10:       #C8C6C2;

  --bg:           #FAF9F7;
  --bg-off:       #F4F2EE;
  --bg-mid:       #ECEAE6;
  --border:       #E8E6E3;
  --border-md:    #D6D4D0;

  --dark-bg:      #141210;
  --dark-card:    rgba(255,255,255,0.04);
  --dark-border:  rgba(255,255,255,0.08);

  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Inter', system-ui, -apple-system, sans-serif;

  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t:            0.28s;
  --t-slow:       0.55s;

  --r-xs:         2px;
  --r-sm:         4px;
  --r-md:         8px;
  --r-lg:         14px;
  --r-xl:         20px;

  --sh-xs:        0 1px 4px rgba(0,0,0,0.05);
  --sh-sm:        0 2px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  --sh-md:        0 6px 28px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.05);
  --sh-lg:        0 16px 52px rgba(0,0,0,0.12), 0 4px 14px rgba(0,0,0,0.06);
}


/* ─── Reset ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
img  { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
strong { font-weight: 700; }


/* ─── Layout Container ─── */
.ob-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 900px)  { .ob-container { padding: 0 32px; } }
@media (max-width: 640px)  { .ob-container { padding: 0 20px; } }


/* ─── Section Base ─── */
.ob-section { padding: 96px 0; }
@media (max-width: 768px)  { .ob-section { padding: 64px 0; } }


/* ─── Shared Typography ─── */
.ob-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.ob-eyebrow--light { color: var(--gold-lt); }

.ob-eyebrow-light {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}

.ob-h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 20px;
}
.ob-h2 em { font-style: italic; font-weight: 300; color: var(--gold); }
.ob-h2--light { color: #fff; }
.ob-h2--light em { color: var(--gold-lt); }

.ob-section-intro {
  font-size: 0.9375rem;
  color: var(--ink-30);
  line-height: 1.75;
  max-width: 560px;
}

.ob-body {
  font-size: 0.9375rem;
  color: var(--ink-50);
  line-height: 1.78;
  margin-bottom: 14px;
}


/* ─── Buttons ─── */
.ob-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 13px 28px;
  border-radius: var(--r-xs);
  border: 1.5px solid transparent;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.ob-btn--gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.ob-btn--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(198,166,107,0.3);
}
.ob-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.36);
}
.ob-btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.ob-btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-md);
}
.ob-btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.ob-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.ob-nav.scrolled {
  background: rgba(250,249,247,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.ob-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) { .ob-nav-inner { padding: 0 20px; } }

.ob-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}
.ob-brand-top {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1;
  color: var(--ink);
  transition: color var(--t);
}
.ob-brand-btm {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
  line-height: 1;
  color: var(--gold);
  text-transform: uppercase;
}
.ob-nav:not(.scrolled) .ob-brand-top { color: rgba(255,255,255,0.9); }
.ob-nav:not(.scrolled) .ob-brand-btm { color: var(--gold-lt); }

.ob-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.775rem;
  color: var(--ink-30);
  flex: 1;
  justify-content: center;
}
.ob-breadcrumb a { transition: color var(--t); }
.ob-breadcrumb a:hover { color: var(--gold); }
.ob-breadcrumb i { font-size: 0.55rem; color: var(--ink-10); }
.ob-breadcrumb span { color: var(--ink-50); font-weight: 500; }
.ob-nav:not(.scrolled) .ob-breadcrumb,
.ob-nav:not(.scrolled) .ob-breadcrumb a,
.ob-nav:not(.scrolled) .ob-breadcrumb span { color: rgba(255,255,255,0.4); }
.ob-nav:not(.scrolled) .ob-breadcrumb i { color: rgba(255,255,255,0.18); }

.ob-nav-cta {
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  padding: 8px 16px;
  border: 1px solid var(--gold-border);
  border-radius: var(--r-xs);
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.ob-nav-cta:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.ob-nav:not(.scrolled) .ob-nav-cta { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.78); }
.ob-nav:not(.scrolled) .ob-nav-cta:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.55); color: #fff; }

@media (max-width: 640px) {
  .ob-breadcrumb { display: none; }
  .ob-nav-cta { display: none; }
}


/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.ob-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1A2228;
}

.ob-hero-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(145deg, #1A2430 0%, #232C36 100%);
}

.ob-hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.4s ease;
}
.ob-video-ready { opacity: 1; }

.ob-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    150deg,
    rgba(12,16,20,0.80) 0%,
    rgba(12,16,20,0.48) 55%,
    rgba(12,16,20,0.22) 100%
  );
}

.ob-hero-body {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 120px 0 100px;
}

.ob-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 8vw, 6.8rem);
  font-weight: 500;
  line-height: 1.0;
  color: #fff;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 28px rgba(0,0,0,0.35);
  margin-bottom: 14px;
}
.ob-hero-h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-lt);
}

.ob-hero-outcome {
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.88);
  margin-bottom: 16px;
  line-height: 1.4;
}

.ob-hero-desc {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  line-height: 1.72;
  max-width: 600px;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.2);
}

.ob-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

/* KPI strip */
.ob-hero-kpis {
  display: flex;
  align-items: stretch;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: fit-content;
  flex-wrap: wrap;
  overflow: hidden;
}

.ob-hero-kpi {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 26px;
}
.ob-hero-kpi:first-child { padding-left: 22px; }

.ob-hero-kpi strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1;
}
.ob-hero-kpi--gold strong { color: var(--gold-lt); }

.ob-hero-kpi span {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.36);
}

.ob-hero-kpi-div {
  width: 1px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
  align-self: stretch;
}

@media (max-width: 640px) {
  .ob-hero-kpis { width: 100%; }
  .ob-hero-kpi { flex: 1; min-width: 110px; }
}

/* Scroll cue */
.ob-scroll-cue {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ob-scroll-line {
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: obPulse 2.4s ease-in-out infinite;
}
.ob-scroll-word {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.24);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
@keyframes obPulse {
  0%, 100% { opacity: 0.22; }
  50%       { opacity: 0.70; }
}
@media (max-width: 640px) { .ob-scroll-cue { display: none; } }


/* ══════════════════════════════════════════
   SECTION 1 — DEVELOPER OUTCOME
══════════════════════════════════════════ */
.ob-outcome {
  background: var(--bg);
}

.ob-outcome-header {
  margin-bottom: 52px;
  max-width: 680px;
}

.ob-outcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

/* Featured card spans full width */
.ob-outcome-card--featured {
  grid-column: 1 / -1;
}

@media (max-width: 560px) {
  .ob-outcome-grid { grid-template-columns: 1fr; }
}

.ob-outcome-card {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow var(--t) var(--ease), border-color var(--t), transform var(--t);
}
.ob-outcome-card:hover {
  box-shadow: var(--sh-md);
  border-color: rgba(198,166,107,0.3);
  transform: translateY(-2px);
}

/* Featured card — horizontal layout */
.ob-outcome-card--featured {
  background: var(--gold-pale);
  border-color: var(--gold-border);
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 40px;
}
.ob-outcome-card--featured:hover {
  border-color: var(--gold);
}
.ob-outcome-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 640px) {
  .ob-outcome-card--featured {
    flex-direction: column;
    padding: 28px 24px;
    gap: 16px;
  }
}

.ob-outcome-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--gold-tint);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ob-outcome-icon i { font-size: 1rem; color: var(--gold); }
.ob-outcome-icon--lg {
  width: 56px; height: 56px;
  background: rgba(198,166,107,0.18);
}
.ob-outcome-icon--lg i { font-size: 1.3rem; }

.ob-outcome-val {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold-dk);
  line-height: 1;
  margin-bottom: 2px;
}
.ob-outcome-card--featured .ob-outcome-val { font-size: 3.4rem; }

.ob-outcome-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.2;
}
.ob-outcome-card--featured h3 { font-size: 1.6rem; }

.ob-outcome-card p {
  font-size: 0.875rem;
  color: var(--ink-50);
  line-height: 1.68;
}
.ob-outcome-card--featured p {
  font-size: 0.9375rem;
  color: var(--ink-70);
  line-height: 1.72;
}

/* Closing statement */
.ob-outcome-close {
  text-align: center;
  padding: 44px 32px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--bg-off);
}
.ob-outcome-close-rule {
  width: 36px; height: 2px;
  background: var(--gold);
  margin: 0 auto 22px;
  border-radius: 1px;
}
.ob-outcome-close-text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-70);
  line-height: 1.65;
  max-width: 780px;
  margin: 0 auto 14px;
}
.ob-outcome-close-attr {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}


/* ══════════════════════════════════════════
   SECTION 2 — VALUE DRIVERS
══════════════════════════════════════════ */
.ob-drivers {
  background: var(--bg-off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ob-drivers-header { margin-bottom: 60px; }

.ob-drivers-list {
  display: flex;
  flex-direction: column;
  max-width: 880px;
}

.ob-driver {
  display: flex;
  gap: 28px;
  padding-bottom: 40px;
}

.ob-driver-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 52px;
}

.ob-driver-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink-30);
  flex-shrink: 0;
  transition: border-color var(--t), background var(--t), color var(--t);
}
.ob-driver:hover .ob-driver-num {
  border-color: var(--gold-border);
  background: var(--gold-pale);
  color: var(--gold);
}
.ob-driver-num--gold {
  background: var(--gold-pale) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.ob-driver-connector {
  flex: 1;
  width: 1px;
  background: var(--border);
  margin-top: 8px;
  min-height: 20px;
}

.ob-driver-right {
  flex: 1;
  padding-top: 8px;
}

.ob-driver-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-30);
  background: var(--bg-mid);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 2px;
  margin-bottom: 10px;
}
.ob-driver-tag--gold {
  color: var(--gold-dk);
  background: var(--gold-pale);
  border-color: var(--gold-border);
}

.ob-driver-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
.ob-driver--featured .ob-driver-title { font-size: 1.7rem; }

.ob-driver-body {
  font-size: 0.9rem;
  color: var(--ink-50);
  line-height: 1.74;
  margin-bottom: 16px;
}

.ob-driver-result {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--ink-30);
  letter-spacing: 0.01em;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border-md);
  border-radius: var(--r-sm);
  line-height: 1.5;
}
.ob-driver-result--gold {
  color: var(--gold-dk);
  border-color: var(--gold-border);
  border-left-color: var(--gold);
  background: var(--gold-pale);
}
.ob-driver-result i { color: var(--gold); font-size: 0.6rem; margin-top: 4px; flex-shrink: 0; }
.ob-driver-result--gold i { color: var(--gold-dk); }

/* Featured driver — card treatment */
.ob-driver--featured {
  background: var(--bg);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 28px 28px 28px 20px;
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--t);
}
.ob-driver--featured:hover { box-shadow: var(--sh-md); }
.ob-driver--featured .ob-driver-body { color: var(--ink-70); }

/* Drivers closing quote */
.ob-drivers-close {
  margin-top: 48px;
  padding: 28px 36px;
  background: var(--dark-bg);
  border-radius: var(--r-lg);
  text-align: center;
}
.ob-drivers-close p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}


/* ══════════════════════════════════════════
   SECTION 3 — PERFORMANCE METRICS (DARK)
══════════════════════════════════════════ */
.ob-perf-section {
  background: var(--dark-bg);
  padding: 88px 0;
}

.ob-perf-header { margin-bottom: 52px; }

.ob-perf-grid {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  flex-wrap: wrap;
}

.ob-perf-item {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 36px 20px;
  text-align: center;
  transition: background var(--t);
}
.ob-perf-item:hover { background: rgba(255,255,255,0.03); }
.ob-perf-item--gold .ob-perf-val { color: var(--gold-lt) !important; }

.ob-perf-val {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1;
  /* NO opacity:0 — prevents invisible content */
}

.ob-perf-lbl {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.48);
  text-transform: uppercase;
}
.ob-perf-sub {
  font-size: 0.67rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.22);
}

.ob-perf-div {
  width: 1px;
  background: var(--dark-border);
  flex-shrink: 0;
  align-self: stretch;
}

@media (max-width: 760px) {
  .ob-perf-item { min-width: 45%; }
  .ob-perf-div { display: none; }
}
@media (max-width: 400px) {
  .ob-perf-item { min-width: 100%; }
  .ob-perf-grid { border: none; gap: 1px; }
  .ob-perf-item {
    border: 1px solid var(--dark-border);
    border-radius: var(--r-md);
    padding: 24px 20px;
  }
}


/* ══════════════════════════════════════════
   SECTION 4 — FRICTION REDUCTION
══════════════════════════════════════════ */
.ob-friction {
  background: var(--bg);
}

.ob-friction-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .ob-friction-grid { grid-template-columns: 1fr; gap: 48px; }
}

.ob-friction-close {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-dk);
  line-height: 1.65;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.ob-friction-right {
  display: flex;
  flex-direction: column;
}

.ob-friction-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
}
.ob-friction-item:first-child { border-top: 1px solid var(--border); }
.ob-friction-item:hover {
  background: var(--bg-off);
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: var(--r-sm);
}

.ob-friction-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--gold-tint);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ob-friction-icon i { font-size: 0.9rem; color: var(--gold); }

.ob-friction-item h4 {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}
.ob-friction-item p {
  font-size: 0.855rem;
  color: var(--ink-50);
  line-height: 1.68;
}


/* ══════════════════════════════════════════
   SECTION 5 — TAKEAWAY (DARK)
══════════════════════════════════════════ */
.ob-takeaway-section {
  background: var(--dark-bg);
  padding: 100px 0;
}

.ob-takeaway-inner { text-align: center; }

.ob-takeaway-h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}
.ob-takeaway-h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-lt);
}

.ob-takeaway-body {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.78;
  max-width: 560px;
  margin: 0 auto 60px;
}

.ob-takeaway-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--dark-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: left;
}
@media (max-width: 900px) {
  .ob-takeaway-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .ob-takeaway-cols { grid-template-columns: 1fr; }
}

.ob-takeaway-col {
  padding: 34px 30px;
  border-right: 1px solid var(--dark-border);
  transition: background var(--t);
}
.ob-takeaway-col:last-child { border-right: none; }
.ob-takeaway-col:hover { background: rgba(255,255,255,0.03); }

@media (max-width: 900px) {
  .ob-takeaway-col {
    border-right: none;
    border-bottom: 1px solid var(--dark-border);
  }
  .ob-takeaway-col:last-child { border-bottom: none; }
  .ob-takeaway-col:nth-child(odd) { border-right: 1px solid var(--dark-border); }
}
@media (max-width: 480px) {
  .ob-takeaway-col:nth-child(odd) { border-right: none; }
}

.ob-tk-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: rgba(198,166,107,0.12);
  border: 1px solid rgba(198,166,107,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.ob-tk-icon i { font-size: 0.9rem; color: var(--gold); }

.ob-takeaway-col h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  margin-bottom: 10px;
}
.ob-takeaway-col p {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
}


/* ══════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════ */
.ob-cta-section {
  background: var(--bg-off);
  border-top: 1px solid var(--border);
  padding: 100px 0;
}

.ob-cta-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.ob-cta-h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 18px;
}
.ob-cta-h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.ob-cta-body {
  font-size: 0.9375rem;
  color: var(--ink-50);
  line-height: 1.78;
  margin: 0 auto 36px;
  max-width: 520px;
}

.ob-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.ob-cta-divider {
  width: 36px; height: 1px;
  background: var(--border-md);
  margin: 0 auto 28px;
}

.ob-cta-contact {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.ob-cta-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--ink-30);
}
.ob-cta-contact i { color: var(--gold); font-size: 0.75rem; }

.ob-cta-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.ob-cta-related {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-30);
  transition: color var(--t), gap var(--t);
  letter-spacing: 0.02em;
}
.ob-cta-related:hover { color: var(--gold); }
.ob-cta-related i { font-size: 0.62rem; transition: transform var(--t); }
.ob-cta-related:hover .fa-arrow-right { transform: translateX(4px); }
.ob-cta-related:hover .fa-arrow-left  { transform: translateX(-4px); }


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.ob-footer {
  background: var(--ink);
  padding: 28px 0;
}
.ob-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ob-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ob-footer-brand .ob-brand-top {
  color: rgba(255,255,255,0.82);
  font-size: 11.5px;
  letter-spacing: 0.17em;
  font-weight: 700;
}
.ob-footer-brand .ob-brand-btm {
  color: var(--gold);
  font-size: 7.5px;
  letter-spacing: 0.24em;
  font-weight: 700;
}
.ob-footer-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
  flex: 1;
  text-align: center;
}
.ob-footer-links {
  display: flex;
  gap: 20px;
}
.ob-footer-links a {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.34);
  transition: color var(--t);
}
.ob-footer-links a:hover { color: var(--gold-lt); }

@media (max-width: 768px) {
  .ob-footer-inner { flex-direction: column; text-align: center; }
  .ob-footer-links { justify-content: center; }
}


/* ══════════════════════════════════════════
   SCROLL REVEAL
   Note: opacity starts at 0 but has a CSS
   fallback at 1.0s so content is always shown
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal--delay { transition-delay: 0.14s; }

/* Hard fallback — always show after 1s regardless of JS */
@keyframes obForceVisible {
  to { opacity: 1; transform: none; }
}
.reveal {
  animation: obForceVisible 0.01s 1.0s forwards;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  animation: obForceVisible 0.01s 1.2s forwards;
}
.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.00s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.40s; }


/* ─── Polish ─── */
::selection {
  background: var(--gold-tint);
  color: var(--ink);
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-off); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
