/* ============================================================
   Timeless Development — Atelier (cream + brass + serif)
   ============================================================ */
:root {
  --bg:           #f4eee2;
  --bg-elev:      #ede4cf;
  --bg-soft:      #faf5e8;
  --paper:        #fbf8f0;
  /* translucent veils — let the scroll-bg show through */
  --veil:         rgba(244, 238, 226, 0.88);
  --veil-soft:    rgba(250, 245, 232, 0.92);
  --veil-elev:    rgba(237, 228, 207, 0.94);
  --veil-strong:  rgba(244, 238, 226, 0.96);
  --line:         #d6cdb9;
  --line-strong:  #b9ad8e;
  --ink:          #1f1813;
  --ink-soft:     #4d4438;
  --ink-mute:     #8a7d63;
  --brass:        #9c7339;
  --brass-deep:   #6d4f23;
  --brass-bright: #b88c4b;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1280px;
  --gutter: clamp(24px, 5vw, 80px);
  --section-y: clamp(60px, 9vw, 120px);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, textarea, button, select { font-family: inherit; color: inherit; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
/* subtle paper texture using radial dots */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(31, 24, 19, 0.02) 1px, transparent 1px);
  background-size: 18px 18px;
  z-index: 0;
  mix-blend-mode: multiply;
}

::selection { background: var(--brass); color: var(--paper); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* ============================================================
   Typography
   ============================================================ */
.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 500;
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--brass);
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(54px, 8.5vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.018em;
  margin: 0 0 28px;
  color: var(--ink);
}
.display em {
  font-style: italic;
  color: var(--brass);
  font-weight: 400;
}

.serif-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  margin: 0 0 24px;
  color: var(--ink);
}
.serif-display em {
  font-style: italic;
  color: var(--brass);
  font-weight: 500;
}
.serif-display .muted { color: var(--ink-mute); font-style: italic; }

.prose {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.78;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 18px;
}
.prose em { color: var(--brass-deep); font-style: italic; }
.lead-prose {
  font-size: clamp(18px, 1.4vw, 21px);
  line-height: 1.7;
  color: var(--ink);
  max-width: 56ch;
  margin-top: 32px;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(20px, 1.65vw, 26px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 38ch;
  margin: 0 0 40px;
  font-weight: 400;
  font-style: italic;
}

.label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin: 0 0 8px;
}
.muted { color: var(--ink-mute); }

/* ============================================================
   Inline link (editorial)
   ============================================================ */
.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--brass-deep);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.link-inline:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.link-inline span { transition: transform 0.3s var(--ease); }
.link-inline:hover span { transform: translateX(4px); }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  border: 1px solid var(--ink);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  background: transparent;
  transition: all 0.4s var(--ease);
  cursor: pointer;
}
.cta:hover {
  background: var(--ink);
  color: var(--paper);
}
.cta svg { transition: transform 0.4s var(--ease); }
.cta:hover svg { transform: translateX(4px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px var(--gutter);
  background: linear-gradient(to bottom, rgba(244, 238, 226, 0.85), rgba(244, 238, 226, 0));
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(244, 238, 226, 0.92);
  backdrop-filter: blur(16px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.brand-mark {
  height: 56px;
  width: auto;
  transition: height 0.4s var(--ease);
  filter: drop-shadow(0 1px 3px rgba(31, 24, 19, 0.1));
}
.site-header.scrolled .brand-mark { height: 44px; }

.primary-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.primary-nav a {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ink-soft);
  font-weight: 400;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 0;
  background: var(--brass);
  transition: width 0.4s var(--ease);
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { width: 100%; }

.nav-toggle { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; padding: 0; }
.nav-toggle span { display: block; height: 1px; background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   Hero — split classical
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px var(--gutter) clamp(60px, 10vw, 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-left {
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-left .eyebrow { margin-bottom: 28px; }
.hero-left .display { margin-bottom: 32px; }

/* Hero background video — cream-tinted, ambient */
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg);
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.78);
  transform: translateZ(0);
  will-change: transform;
}
.hero-video__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(244, 238, 226, 0.78) 0%, rgba(244, 238, 226, 0.35) 50%, rgba(244, 238, 226, 0.30) 100%),
    linear-gradient(180deg, rgba(244, 238, 226, 0.25) 0%, transparent 30%, rgba(244, 238, 226, 0.35) 100%);
}

.hero-right {
  position: relative;
}
.hero-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-elev);
  box-shadow:
    0 1px 0 var(--paper) inset,
    0 30px 60px -20px rgba(31, 24, 19, 0.25),
    0 8px 20px -8px rgba(31, 24, 19, 0.15);
}
.hero-img::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(244, 238, 226, 0.4);
  pointer-events: none;
  z-index: 2;
}
.hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.95);
  transform: scale(1.04);
  animation: heroSlow 14s var(--ease) forwards;
}
@keyframes heroSlow {
  to { transform: scale(1.0); }
}
.hero-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  margin: 18px 0 0;
  padding-left: 8px;
}

/* ============================================================
   Sections — shared
   ============================================================ */
section { position: relative; z-index: 1; }
.philosophy,
.approach,
.building,
.process,
.firm,
.contact {
  padding: var(--section-y) 0;
}

.section-head {
  margin-bottom: clamp(50px, 7vw, 90px);
  max-width: 800px;
}
.section-head .prose { margin-top: 22px; }

/* hairline divider for some sections */
.philosophy,
.approach,
.building,
.process,
.firm,
.contact {
  border-top: 1px solid var(--line);
}

/* ============================================================
   Philosophy
   ============================================================ */
.philosophy { background: var(--bg); }
.philosophy .serif-display { max-width: 22ch; }
.philosophy .lead-prose {
  border-left: 2px solid var(--brass);
  padding-left: 28px;
  margin-top: 50px;
  font-style: italic;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.55;
  font-weight: 400;
}

/* ============================================================
   Credibility strip (between hero and build-story)
   ============================================================ */
.credo {
  padding: clamp(50px, 6vw, 80px) 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 1;
}
.credo-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: clamp(16px, 3vw, 50px);
  align-items: center;
}
.credo-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}
.credo-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 500;
  margin: 0;
}
.credo-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.15;
  color: var(--ink);
  margin: 0;
}
.credo-divider {
  width: 1px;
  height: 40px;
  background: var(--line-strong);
}
@media (max-width: 720px) {
  .credo-row { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .credo-divider { display: none; }
}

/* ============================================================
   Principles
   ============================================================ */
.principles {
  padding: var(--section-y) 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 50px);
}
.principle {
  border-top: 1px solid var(--line-strong);
  padding-top: 28px;
  transition: border-color 0.4s var(--ease);
}
.principle:hover { border-top-color: var(--brass); }
.principle-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--brass-deep);
  display: block;
  margin-bottom: 14px;
}
.principle h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1.05;
  margin: 0 0 14px;
  color: var(--ink);
  letter-spacing: -0.008em;
}
.principle p {
  font-size: 14px;
  line-height: 1.72;
  color: var(--ink-soft);
  margin: 0;
}
.principles-grid .principle.reveal:nth-child(1) { transition-delay: 0.05s; }
.principles-grid .principle.reveal:nth-child(2) { transition-delay: 0.15s; }
.principles-grid .principle.reveal:nth-child(3) { transition-delay: 0.25s; }
.principles-grid .principle.reveal:nth-child(4) { transition-delay: 0.35s; }

@media (max-width: 1024px) {
  .principles-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .principles-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   Pull quote — editorial breath
   ============================================================ */
.pullquote {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  z-index: 1;
}
.pullquote-figure {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 clamp(20px, 5vw, 60px);
}
.pullquote-mark {
  display: block;
  font-family: var(--serif);
  font-size: clamp(80px, 9vw, 140px);
  line-height: 0.6;
  color: var(--brass);
  font-style: italic;
  margin: 0 0 -10px;
  user-select: none;
}
.pullquote blockquote {
  margin: 0;
  padding: 0;
}
.pullquote blockquote p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3.6vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.pullquote blockquote p em {
  font-style: italic;
  color: var(--brass);
}
.pullquote figcaption {
  margin-top: clamp(28px, 3vw, 44px);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.pullquote figcaption::before,
.pullquote figcaption::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brass);
}

/* ============================================================
   Approach — editorial numbered
   ============================================================ */
.approach { background: var(--bg-soft); }
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(40px, 5vw, 80px);
  row-gap: 0;
  border-top: 1px solid var(--line-strong);
}

.pillar {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: clamp(20px, 3vw, 44px);
  padding: clamp(36px, 4vw, 52px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: background 0.4s var(--ease);
}
.pillar:hover { background: rgba(156, 115, 57, 0.04); }

.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 5vw, 72px);
  color: var(--brass);
  line-height: 1;
  padding-top: 4px;
}

.pillar-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 3.2vw, 48px);
  margin: 0 0 18px;
  letter-spacing: -0.008em;
  color: var(--ink);
}
.pillar-lede {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.72;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0;
}
.pillar-list {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.pillar-list li {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
}
.pillar-list li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--brass);
  border-radius: 50%;
}

/* ============================================================
   Currently Building
   ============================================================ */
.building { background: var(--bg); }
/* Editorial layout: featured big card on left, three supporting cards stacked right */
.building-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
  min-height: 58vh;
}
.building-grid .bcard:first-child {
  grid-row: span 3;
  display: flex;
  flex-direction: column;
}
.building-grid .bcard:first-child .bcard-img {
  aspect-ratio: auto;
  flex: 1;
  min-height: 0;
}
.building-grid .bcard:not(:first-child) {
  display: flex;
  flex-direction: column;
}
.building-grid .bcard:not(:first-child) .bcard-img {
  aspect-ratio: 16 / 9;
  flex: 1;
}
.building-grid .bcard:not(:first-child) figcaption {
  padding-top: 14px;
}
.bcard { margin: 0; }
.bcard-img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-elev);
  box-shadow:
    0 18px 40px -16px rgba(31, 24, 19, 0.2),
    0 6px 14px -6px rgba(31, 24, 19, 0.12);
}
.bcard-img::before {
  content: "";
  position: absolute; inset: 6px;
  border: 1px solid rgba(244, 238, 226, 0.45);
  z-index: 2;
  pointer-events: none;
}
.bcard-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.92);
  transition: transform 1.2s var(--ease);
}
.bcard:hover .bcard-img img { transform: scale(1.04); }

.bcard figcaption {
  padding: 22px 6px 0;
}
.bcard-type {
  font-family: var(--serif);
  font-size: 24px;
  margin: 0 0 6px;
  color: var(--ink);
}
.bcard-meta {
  font-size: 13px;
  color: var(--ink-mute);
  margin: 0;
}
.bcard-meta em {
  color: var(--brass-deep);
  font-style: italic;
}

/* ============================================================
   Process
   ============================================================ */
.process { background: var(--bg-soft); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.process-steps li {
  position: relative;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.process-steps li::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 48px;
  height: 1px;
  background: var(--brass);
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--brass);
  display: block;
  margin-bottom: 14px;
}
.process-steps h4 {
  font-family: var(--serif);
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 400;
  margin: 0 0 14px;
  color: var(--ink);
}
.process-steps p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   Build Story — Apple-style pinned scroll image sequence
   ============================================================ */
.build-story {
  position: relative;
  /* 6 frames at brisker pacing — ~50vh each, tighter scroll experience. */
  height: 300vh;
  background: var(--ink);
  border-top: 1px solid var(--line);
  z-index: 1;
  contain: layout style;
}

.build-story__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

/* Image stack — all frames pinned in place, opacity swapped */
.build-story__frames {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.build-story__frames .bframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  filter: contrast(1.02) saturate(0.92) brightness(0.95);
  will-change: opacity;
  transform: translateZ(0);
}
.build-story__frames .bframe.is-active {
  opacity: 1;
}
/* Final frame is a render on white — show the whole drawing, no crop */
.build-story__frames .bframe--contain {
  object-fit: contain;
  background: #f4eee2;
  filter: none;
}
.build-story__frames .bframe--contain.is-active {
  transform: scale(1.0);
}

/* Blueprint ghost overlay — Option B */
.blueprint-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(40px, 6vw, 100px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.blueprint-overlay img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) brightness(0.95) contrast(0.9);
}
/* Per-stage visibility: strong at start, fades through construction, gone on the Built composite */
.build-story[data-stage="0"] .blueprint-overlay { opacity: 0.38; }
.build-story[data-stage="1"] .blueprint-overlay { opacity: 0.28; }
.build-story[data-stage="2"] .blueprint-overlay { opacity: 0.18; }
.build-story[data-stage="3"] .blueprint-overlay { opacity: 0.10; }
.build-story[data-stage="4"] .blueprint-overlay { opacity: 0.22; }
.build-story[data-stage="5"] .blueprint-overlay { opacity: 0; }

/* ============================================================
   Final-frame composite (Built) — replaces the simple frame
   ============================================================ */
.bfo-final {
  position: absolute;
  inset: 0;
  z-index: 6;
  background: var(--bg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s var(--ease);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  overflow: hidden;
}
.build-story[data-stage="5"] .bfo-final {
  opacity: 1;
  pointer-events: auto;
}
/* When composite is active, hide the underlying simple Built frame + scrim/overlay */
.build-story[data-stage="5"] .bframe--contain,
.build-story[data-stage="5"] .build-story__scrim,
.build-story[data-stage="5"] .build-story__overlay {
  opacity: 0;
}

.bfo-main {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bfo-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(20px, 3vw, 50px);
}

.bfo-side {
  padding: clamp(36px, 4.5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(16px, 1.5vw, 22px);
  background: var(--bg-soft);
  border-left: 1px solid var(--line);
}

.bfo-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 500;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.bfo-eyebrow::before {
  content: ""; width: 36px; height: 1px; background: var(--brass);
}

.bfo-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4.2vw, 68px);
  line-height: 1.0;
  letter-spacing: -0.014em;
  color: var(--ink);
  margin: 0;
}
.bfo-title em { font-style: italic; color: var(--brass); }

.bfo-meta {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
  padding-bottom: clamp(8px, 1vw, 14px);
  border-bottom: 1px solid var(--line);
}

.bfo-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bfo-thumbs figure { margin: 0; }
.bfo-thumbs img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fbf8f0;
  border: 1px solid var(--line);
  padding: 6px;
}
.bfo-thumbs figcaption {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
  text-align: center;
}

.bfo-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.bfo-tag {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0;
  padding-top: clamp(10px, 1.2vw, 16px);
  border-top: 1px solid var(--line);
}
.bfo-tag em {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  font-size: 14px;
  margin-left: 4px;
}

@media (max-width: 1024px) {
  .bfo-final { grid-template-columns: 1fr; grid-template-rows: 50% 50%; }
  .bfo-side {
    border-left: 0;
    border-top: 1px solid var(--line);
    overflow-y: auto;
  }
}
@media (max-width: 720px) {
  .bfo-thumbs { display: none; }
  .bfo-side { padding: 22px; gap: 12px; }
  .bfo-title { font-size: 32px; }
  .bfo-text { font-size: 14px; }
  .bfo-final { grid-template-rows: 40% 60%; }
}

/* Soft gradient scrim so the caption stays readable */
.build-story__scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15, 12, 9, 0.45) 0%, rgba(15, 12, 9, 0.15) 35%, rgba(15, 12, 9, 0.15) 60%, rgba(15, 12, 9, 0.75) 100%),
    linear-gradient(95deg, rgba(15, 12, 9, 0.55) 0%, rgba(15, 12, 9, 0.15) 50%, transparent 100%);
}

/* Overlay: eyebrow top-left, captions bottom-left, progress dots top-right */
.build-story__overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  padding: clamp(80px, 9vw, 140px) clamp(28px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--paper);
  pointer-events: none;
}

.build-story__eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(244, 238, 226, 0.78);
  font-weight: 500;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
}
.build-story__eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--brass-bright);
}

.build-story__captions {
  position: relative;
  max-width: 640px;
  min-height: 240px;
}
.bcaption {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
  pointer-events: none;
  will-change: opacity, transform;
}
.bcaption.is-active {
  opacity: 1;
  transform: translateY(0);
}
.bcaption__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.6vw, 26px);
  color: var(--brass-bright);
  margin: 0 0 14px;
  display: block;
}
.bcaption h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: 1;
  letter-spacing: -0.018em;
  margin: 0 0 22px;
  color: var(--paper);
}
.bcaption p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.45;
  color: rgba(244, 238, 226, 0.85);
  margin: 0;
  max-width: 32ch;
}

.build-story__progress {
  position: absolute;
  top: clamp(80px, 9vw, 140px);
  right: clamp(28px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 5;
}
.bp-dot {
  display: block;
  width: 1px;
  height: 28px;
  background: rgba(244, 238, 226, 0.28);
  transition: background 0.5s var(--ease), height 0.5s var(--ease);
}
.bp-dot.is-active {
  background: var(--brass-bright);
  height: 44px;
}
.bp-dot.is-passed {
  background: rgba(244, 238, 226, 0.6);
}

@media (max-width: 720px) {
  .build-story { height: 420vh; }
  .build-story__overlay { padding: 90px 22px 60px; }
  .build-story__progress { top: 90px; right: 22px; }
  .bp-dot { height: 22px; }
  .bp-dot.is-active { height: 34px; }
  .bcaption h3 { font-size: clamp(40px, 11vw, 64px); }
  .bcaption p  { font-size: 16px; }
  .build-story__captions { min-height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  .build-story__frames .bframe { transition: opacity 0.001ms; transform: none; }
  .bcaption { transition: opacity 0.001ms; transform: none; }
}

/* ============================================================
   Firm
   ============================================================ */
.firm { background: var(--bg); }
.firm-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.firm-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.firm-media img {
  width: 100%;
  object-fit: cover;
  background: var(--bg-elev);
  box-shadow:
    0 22px 50px -20px rgba(31, 24, 19, 0.22),
    0 8px 18px -8px rgba(31, 24, 19, 0.14);
}
.firm-img-main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}
.firm-img-aux {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  margin-top: 6px;
}
.firm-caption {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  margin: 6px 0 0;
}
.firm-copy {
  padding-top: 8px;
}
.firm-facts {
  margin: clamp(30px, 4vw, 50px) 0 0;
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.firm-facts div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.firm-facts dt {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin: 0;
}
.firm-facts dd {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink);
  margin: 0;
  line-height: 1.3;
}

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 6vw, 100px);
}
.contact-info { margin-top: 36px; }
.contact-info li {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: start;
  gap: 24px;
}
.contact-info li:last-child { border-bottom: 1px solid var(--line); }
.contact-info .label { margin: 4px 0 0; }
.contact-info a {
  font-family: var(--serif);
  color: var(--ink);
  font-size: 19px;
  line-height: 1.5;
  transition: color 0.3s var(--ease);
}
.contact-info a:hover { color: var(--brass-deep); }

.contact-form { display: grid; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}
.field input,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  padding: 12px 0;
  font-size: 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  transition: border-color 0.3s var(--ease);
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--brass);
}
.contact-form .cta { margin-top: 14px; justify-self: start; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 100px) 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 1px 3px rgba(31, 24, 19, 0.12));
}
.footer-col p { margin: 0; font-size: 14px; line-height: 1.85; color: var(--ink-soft); }
.footer-col a { color: var(--ink-soft); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--brass-deep); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-mute);
}
.footer-bottom p { margin: 0; }
.footer-bottom em { color: var(--brass-deep); }

/* ============================================================
   Reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.pillars .pillar.reveal:nth-child(1) { transition-delay: 0.05s; }
.pillars .pillar.reveal:nth-child(2) { transition-delay: 0.15s; }
.pillars .pillar.reveal:nth-child(3) { transition-delay: 0.25s; }
.building-grid .bcard.reveal:nth-child(1) { transition-delay: 0.05s; }
.building-grid .bcard.reveal:nth-child(2) { transition-delay: 0.15s; }
.building-grid .bcard.reveal:nth-child(3) { transition-delay: 0.25s; }
.process-steps li.reveal:nth-child(1) { transition-delay: 0.05s; }
.process-steps li.reveal:nth-child(2) { transition-delay: 0.15s; }
.process-steps li.reveal:nth-child(3) { transition-delay: 0.25s; }
.process-steps li.reveal:nth-child(4) { transition-delay: 0.35s; }
.hero .reveal { transition-duration: 1.1s; }
.hero .eyebrow.reveal     { transition-delay: 0.2s; }
.hero .display.reveal     { transition-delay: 0.4s; }
.hero .lede.reveal        { transition-delay: 0.6s; }
.hero .link-inline.reveal { transition-delay: 0.8s; }
.hero .hero-right.reveal  { transition-delay: 0.3s; }

/* ============================================================
   Responsive — tablet
   ============================================================ */
@media (max-width: 1024px) {
  .building-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: auto;
    gap: 24px;
  }
  .building-grid .bcard:first-child { grid-row: auto; grid-column: 1 / -1; }
  .building-grid .bcard:first-child .bcard-img { aspect-ratio: 16 / 9; flex: none; }
  .building-grid .bcard:not(:first-child) .bcard-img { aspect-ratio: 4 / 3; }
  .firm-grid { grid-template-columns: 1fr; gap: 40px; }
  .firm-facts { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pillar { grid-template-columns: 80px 1fr; }
  .pillar-num { font-size: 44px; }
  /* Keep 2-col Approach grid down to 720px so tablet stays compact */
}

/* ============================================================
   Responsive — mobile (≤720px)
   ============================================================ */
@media (max-width: 720px) {
  /* nav drawer */
  .primary-nav {
    position: fixed; inset: 0;
    background: var(--bg);
    flex-direction: column; justify-content: center;
    gap: 32px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s var(--ease);
    z-index: 40;
  }
  .primary-nav.is-open { opacity: 1; pointer-events: auto; }
  .primary-nav a { font-size: 24px; padding: 12px 24px; }
  .nav-toggle {
    display: flex;
    width: 44px; height: 44px;          /* bumped to a proper touch target */
    margin-right: -8px;
    z-index: 60;
    position: relative;
  }
  .brand-mark { height: 44px; }
  .site-header.scrolled .brand-mark { height: 36px; }
  .site-header { padding: 16px var(--gutter); }

  /* hero — tighten and ensure tap targets */
  .hero { min-height: 90vh; padding-top: 110px; }
  .hero-left .display { margin-bottom: 24px; }
  .link-inline { font-size: 17px; padding: 4px 0; }
  .cta { padding: 14px 22px; min-height: 44px; }

  /* building grid → single column on phones */
  .building-grid { grid-template-columns: 1fr; gap: 20px; }
  .building-grid .bcard:first-child { grid-column: 1; }
  .building-grid .bcard:first-child .bcard-img,
  .building-grid .bcard:not(:first-child) .bcard-img { aspect-ratio: 4 / 3; }

  /* firm */
  .firm-media { grid-template-columns: 1fr; }
  .firm-facts { grid-template-columns: 1fr; gap: 18px; }

  /* footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  /* contact */
  .contact-info li { grid-template-columns: 1fr; gap: 6px; }
  .contact-info .label { margin-bottom: 0; }
  .contact-form { gap: 18px; }
  .field input, .field textarea { padding: 14px 0; font-size: 16px; }

  /* approach pillars */
  .pillars { grid-template-columns: 1fr; }
  .pillar { grid-template-columns: 60px 1fr; gap: 20px; padding: 32px 0; }
  .pillar-num { font-size: 36px; }
  .pillar-body h3 { font-size: 28px; }

  /* build-story — taller progress dots for tap-ability + tighter section padding */
  .build-story { height: 320vh; }     /* a hair taller per stage on mobile so it doesn't feel jumpy */
  .bp-dot { width: 2px; }              /* slightly more visible */

  /* general section padding (compress) */
  :root { --section-y: clamp(70px, 14vw, 110px); }
}

/* ============================================================
   Responsive — very small phones (≤420px)
   ============================================================ */
@media (max-width: 420px) {
  :root { --gutter: 20px; }
  .display { font-size: clamp(44px, 11vw, 60px); }
  .serif-display { font-size: clamp(30px, 9vw, 44px); }
  .credo { padding: 36px 0; }
  .credo-row { gap: 22px 16px; }
  .credo-value { font-size: 17px; }
  .principle h3 { font-size: 26px; }
  .bcaption h3 { font-size: 38px; }
  .bfo-thumbs { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-img img { animation: none; transform: none; }
  * { transition-duration: 0.001ms !important; }
}

/* ============================================================
   PROCESS VIDEO — scroll-scrubbed cinematic montage
   ============================================================ */
.process-video {
  position: relative;
  background: var(--ink, #0a0805);
  color: var(--cream, #f4eee2);
  /* tall section gives scroll headroom; the pin scrubs the video */
  height: 360vh;
  padding: 0;
}

.process-video__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.process-video__media {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 0;
}

.process-video__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-video__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10,8,6,0.45) 0%, rgba(10,8,6,0) 22%, rgba(10,8,6,0) 70%, rgba(10,8,6,0.6) 100%);
}

.process-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(48px, 6vw, 88px) clamp(40px, 5vw, 110px);
  pointer-events: none;
  color: var(--cream, #f4eee2);
}

.process-video__intro .eyebrow {
  color: var(--gold, #9c7339);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 22px;
}
.process-video__intro .eyebrow .rule {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--gold, #9c7339);
}

.process-video__intro .serif-display {
  margin: 0;
  color: var(--cream, #f4eee2);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.012em;
  max-width: 14ch;
}
.process-video__intro .serif-display em {
  font-style: italic;
  color: var(--gold, #9c7339);
}

.process-video__hint {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(244, 238, 226, 0.7);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
}
.process-video__hint .rule {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: rgba(244, 238, 226, 0.5);
}

@media (max-width: 720px) {
  .process-video { height: 320vh; }
  .process-video__overlay { padding: 32px 24px; }
  .process-video__intro .serif-display { font-size: clamp(36px, 11vw, 60px); }
  .process-video__hint { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .process-video { height: auto; }
  .process-video__pin { position: relative; height: auto; aspect-ratio: 16/9; }
  .process-video__media video { display: none; }
  .process-video__media {
    background-image: url(../assets/process-poster.jpg);
    background-size: cover;
    background-position: center;
  }
}

/* ============================================================
   CINEMATIC POLISH — pass 2
   ============================================================ */

/* ===== Hero parallax wrapper baseline =====
   JS toggles transform on .hero-video for scroll-linked zoom.
   We just want a smooth transition + GPU compositing. */
.hero-video {
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 60ms linear;
}

/* ===== Hero eyebrow accent rule ===== */
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.hero .eyebrow::before {
  content: "";
  display: inline-block;
  width: 64px;
  height: 1px;
  background: var(--brass);
}

/* ===== Pullquote — bigger, more cinematic ===== */
.pullquote {
  background: var(--bg-soft, var(--bg));
  padding-block: clamp(80px, 11vw, 140px);
}
.pullquote-figure {
  max-width: 1100px;
}
.pullquote-mark {
  font-size: clamp(110px, 12vw, 200px) !important;
  margin-bottom: -28px !important;
  opacity: 0.85;
}
.pullquote blockquote p {
  font-size: clamp(28px, 4vw, 60px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.012em;
}
.pullquote figcaption {
  margin-top: clamp(36px, 4vw, 56px) !important;
  letter-spacing: 0.34em !important;
  font-size: 12px !important;
}
.pullquote figcaption::before,
.pullquote figcaption::after {
  width: 40px !important;
}

/* ===== Approach pillars — subtle dimension + better hover ===== */
.pillar {
  position: relative;
  transition: background 0.45s var(--ease), transform 0.45s var(--ease);
}
.pillar::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(156, 115, 57, 0) 0%, var(--brass) 30%, var(--brass) 70%, rgba(156, 115, 57, 0) 100%);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
}
.pillar:hover::after {
  opacity: 0.6;
  transform: scaleX(1);
}
.pillar:hover .pillar-num {
  color: var(--brass-deep, #7a5524);
  transform: translateX(2px);
}
.pillar-num {
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
.pillar-body h3 {
  transition: color 0.4s var(--ease);
}
.pillar:hover .pillar-body h3 {
  color: var(--ink);
}

/* ===== Currently Building — refined card treatment ===== */
.building { background: var(--bg-soft); }
.bcard {
  position: relative;
  cursor: default;
}
.bcard-img {
  box-shadow:
    0 30px 60px -24px rgba(31, 24, 19, 0.28),
    0 10px 22px -8px rgba(31, 24, 19, 0.16) !important;
  transition: box-shadow 0.6s var(--ease), transform 0.6s var(--ease);
}
.bcard:hover .bcard-img {
  box-shadow:
    0 40px 80px -24px rgba(31, 24, 19, 0.38),
    0 14px 28px -8px rgba(31, 24, 19, 0.22) !important;
  transform: translateY(-3px);
}
.bcard figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.bcard-type {
  font-size: clamp(22px, 1.8vw, 28px) !important;
  font-style: italic;
}
.bcard-meta {
  font-family: var(--sans);
  font-size: 11px !important;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
}
.bcard-meta em {
  font-style: normal !important;
  letter-spacing: 0.22em;
  color: var(--brass-deep);
}

/* ===== Firm section — magazine layout with overlap ===== */
.firm-media {
  position: relative;
}
.firm-img-main {
  filter: contrast(1.04) saturate(0.95);
}
.firm-img-aux {
  filter: contrast(1.04) saturate(0.95) brightness(0.92);
  box-shadow: 0 30px 60px -28px rgba(31, 24, 19, 0.4);
}
.firm-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ===== Section chapter accents — thin gold rule between major sections ===== */
.pullquote { border-top: 1px solid var(--line); }
.approach { border-top: 1px solid var(--line); }
.firm { border-top: 1px solid var(--line); }
.contact { border-top: 1px solid var(--line); }

/* ===== Header — finer scroll state ===== */
.site-header.scrolled {
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(244, 238, 226, 0.78);
  border-bottom: 1px solid rgba(31, 24, 19, 0.06);
}

/* ===== Reduced-motion overrides ===== */
@media (prefers-reduced-motion: reduce) {
  .hero-video { transform: none !important; }
  .pillar::after { display: none; }
  .bcard:hover .bcard-img { transform: none; }
}
