/* =================================================================
   ISAAC BERNSTEIN CONCEPTS — STYLESHEET
   Brand: Flow Line Mark system. Sora + DM Serif Display.
   Single source of truth for all visual styling.
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@200;300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

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

:root {
  /* ─── Brand colors (per Flow Line brand board) ──── */
  --black:  #0B0B0D;
  --white:  #FFFFFF;
  --cream:  #F3F1EE;
  --copper: #B88A5A;
  --gray:   #5A5A5D;

  /* ─── Derived / utility ─────────────────────────── */
  --line:        rgba(11, 11, 13, 0.14);   /* hairlines on light bg */
  --line-dark:   rgba(255, 255, 255, 0.14); /* hairlines on dark bg */
  --soft:        #E8E4DD;                   /* subtle fill on cream */
  --ink-muted:   #2C2C30;                    /* body copy on light — darker for readability */

  /* ─── Type ──────────────────────────────────────── */
  --font-sans:   'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif:  'DM Serif Display', 'Georgia', serif;

  /* ─── Layout ────────────────────────────────────── */
  --pad: clamp(1.5rem, 5vw, 6rem);
  --max: 1440px;
  --max-text: 720px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ─── Brand texture (subtle paper grain) ──────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.015em;
}

p { line-height: 1.75; font-weight: 400; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* =================================================================
   1. NAVIGATION
   ================================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem var(--pad);
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: 1rem; padding-bottom: 1rem;
}
.nav.dark-page.scrolled {
  background: rgba(11, 11, 13, 0.92);
  box-shadow: 0 1px 0 var(--line-dark);
}

.nav-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 0.2rem; }
.nav-logo-tag {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  line-height: 1;
  white-space: nowrap;
  opacity: 0.85;
}
.nav.scrolled .nav-logo-tag { color: var(--gray); }
@media (max-width: 768px) { .nav-logo-tag { display: none; } }
.logo-mark {
  width: clamp(140px, 14vw, 178px);
  height: auto;
  color: var(--white);
  transition: color 0.4s ease, width 0.3s ease;
  display: block;
}
.nav.scrolled .logo-mark { color: var(--black); width: clamp(120px, 11vw, 152px); }
.nav.dark-page.scrolled .logo-mark { color: var(--white); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.3s;
  position: relative;
}
.nav.scrolled .nav-links a { color: var(--ink-muted); }
.nav.dark-page.scrolled .nav-links a { color: rgba(255, 255, 255, 0.78); }
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a:hover { color: var(--black); }
.nav.dark-page.scrolled .nav-links a:hover { color: var(--white); }

.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width 0.35s ease;
}
.nav-links a.active::after,
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.65rem 1.25rem;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--copper); border-color: var(--copper); color: var(--black); }
.nav.scrolled .nav-cta { border-color: var(--black); }
.nav.scrolled .nav-cta:hover { background: var(--black); color: var(--white); }
.nav.dark-page.scrolled .nav-cta { border-color: rgba(255, 255, 255, 0.4); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--white); transition: background 0.4s, transform 0.3s;
}
.nav.scrolled .nav-hamburger span { background: var(--black); }
.nav.dark-page.scrolled .nav-hamburger span { background: var(--white); }

.nav-mobile {
  display: none; position: fixed; inset: 0;
  background: var(--black); color: var(--white); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 1.75rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 7vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--white);
}
.nav-mobile a em { color: var(--copper); font-style: italic; }
.nav-mobile-close {
  position: absolute; top: 1.5rem; right: var(--pad);
  font-size: 2rem; font-weight: 200; line-height: 1;
  background: none; border: none; color: var(--white);
}

/* =================================================================
   2. LOGO MARK (Flow Line)
   ================================================================= */
.logo-mark .flow-line { stroke: currentColor; stroke-width: 1.1; }
.logo-mark .flow-letter { fill: currentColor; }
.logo-mark .flow-dot { fill: var(--copper); }

/* Stacked variant for footer */
.logo-stacked { display: inline-flex; flex-direction: column; align-items: flex-start; gap: 0.9rem; }
.logo-stacked .logo-mark { width: 220px; }
.logo-stacked .stacked-name {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}
.logo-stacked .stacked-tag {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
}

/* Two-line ISAAC BERNSTEIN / CONCEPTS lockup */
.stacked-wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.stacked-primary {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.stacked-secondary {
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.2;
}

/* =================================================================
   3. SHARED PRIMITIVES
   ================================================================= */
.section { padding: clamp(4.5rem, 9vw, 9rem) var(--pad); }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-narrow { max-width: 980px; margin: 0 auto; }

.section.dark { background: var(--black); color: var(--white); }
.section.cream { background: var(--cream); }

.divider { width: 100%; height: 1px; background: var(--line); }
.section.dark + .divider,
.divider.dark { background: var(--line-dark); }

/* Eyebrow / kicker label */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--copper);
}
.eyebrow.no-line::before { display: none; }
.section.dark .eyebrow { color: rgba(255, 255, 255, 0.55); }

/* Display headline */
.display {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.display em { font-style: italic; color: var(--copper); }
.display .accent { color: var(--copper); font-style: italic; }

/* Lead paragraph */
.lead {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink-muted);
  max-width: var(--max-text);
}
.section.dark .lead { color: rgba(255, 255, 255, 0.78); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 1.05rem 2rem;
  border: 1px solid var(--black);
  color: var(--black);
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
}
.btn::after {
  content: ''; width: 14px; height: 1px; background: currentColor;
  transition: width 0.3s ease;
}
.btn:hover { background: var(--black); color: var(--white); padding-right: 2.5rem; }
.btn:hover::after { width: 22px; }

.btn-light { border-color: var(--white); color: var(--white); }
.btn-light:hover { background: var(--white); color: var(--black); }

.btn-copper { border-color: var(--copper); color: var(--copper); }
.btn-copper:hover { background: var(--copper); color: var(--black); }

/* Inline arrow link */
.arrow-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  transition: gap 0.25s ease, color 0.25s ease;
}
.arrow-link::after {
  content: ''; width: 22px; height: 1px; background: currentColor;
  transition: width 0.25s ease;
}
.arrow-link:hover { gap: 1.1rem; color: var(--copper); }
.arrow-link:hover::after { width: 32px; }
.section.dark .arrow-link { color: var(--white); }
.section.dark .arrow-link:hover { color: var(--copper); }

/* Flow line ornament (decorative horizontal mark) */
.flow-ornament {
  display: inline-flex; align-items: center; gap: 0; height: 1em;
}
.flow-ornament::before {
  content: ''; display: block; width: 56px; height: 1px;
  background: currentColor; opacity: 0.5;
}
.flow-ornament::after {
  content: ''; display: block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--copper); margin-left: -1px;
}

/* Ticket frame brackets [  ] */
.ticket-frame {
  position: relative; padding: 0 1.4rem;
}
.ticket-frame::before, .ticket-frame::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 0.55rem;
  border: 1px solid currentColor; opacity: 0.4;
}
.ticket-frame::before { left: 0; border-right: none; }
.ticket-frame::after { right: 0; border-left: none; }

/* =================================================================
   4. HERO (homepage)
   ================================================================= */
.hero {
  background: var(--black); color: var(--white);
  padding: clamp(5rem, 6vw, 7rem) var(--pad) clamp(2rem, 3vw, 3rem);
  min-height: 100svh;
  box-sizing: border-box;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.hero-text { position: relative; }
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.85rem;
}
.hero-eyebrow::before {
  content: ''; width: 38px; height: 1px; background: var(--copper);
}
/* Stamped caps + italic serif headline (brand-board hero treatment) */
.hero-headline {
  display: flex; flex-direction: column;
  gap: 0.05em;
  margin-bottom: 1.75rem;
}
.hero-headline .stamp {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 7.5vw, 6.5rem);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.012em;
  line-height: 0.92;
  color: var(--white);
}
.hero-headline .serif-accent {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 8vw, 7.5rem);
  font-style: italic;
  color: var(--copper);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-top: 0.1em;
}
.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero photo block — Ticket Frame brackets + Flow Line extension */
.hero-photo-block {
  position: relative;
  padding: 22px 0;
}
.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: visible;
}
.hero-image {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(184, 138, 90, 0.08) 0%, transparent 60%),
    linear-gradient(135deg, #1a1a1d 0%, #2a2520 50%, #0e0c0a 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  overflow: hidden;
}
.hero-image img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
}
.carousel-slide {
  opacity: 0;
  transition: opacity 1.4s ease;
}
.carousel-slide.active {
  opacity: 1;
}
.hero-image-marker {
  position: absolute; top: 1.25rem; left: 1.25rem;
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  z-index: 3;
}
.hero-image-marker::before {
  content: ''; width: 6px; height: 6px; background: var(--copper); border-radius: 50%;
}

/* Ticket-frame corner brackets around the photo */
.frame-corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 1.4px solid var(--copper);
  pointer-events: none;
  z-index: 2;
}
.frame-corner.tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.frame-corner.tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.frame-corner.bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.frame-corner.br { bottom: 0; right: 0; border-left: none; border-top: none; }

/* Flow Line extension — copper line+dot exiting the photo's right edge */
.hero-flow-extension {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex; align-items: center;
  z-index: 4;
  pointer-events: none;
}
.hero-flow-extension .line {
  width: clamp(40px, 8vw, 110px);
  height: 1px;
  background: linear-gradient(to right, transparent 0%, var(--copper) 35%);
}
.hero-flow-extension .dot {
  width: 9px; height: 9px;
  background: var(--copper);
  border-radius: 50%;
  margin-left: -1px;
  box-shadow: 0 0 0 4px rgba(184, 138, 90, 0.12);
}

@media (max-width: 1024px) {
  .hero-flow-extension { display: none; }
}

/* Stats band — directly under hero, with system-grid corner motif */
.stats-band {
  background: var(--black); color: var(--white);
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad);
  border-top: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 88px; height: 88px;
  background-image: radial-gradient(circle, rgba(184, 138, 90, 0.4) 1px, transparent 1.5px);
  background-size: 14px 14px;
  background-position: 0 0;
  opacity: 0.55;
  pointer-events: none;
}
.stats-band::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60vw; max-width: 700px; height: 1px;
  background: linear-gradient(to right, transparent, var(--line-dark), transparent);
}
.stats-band-inner {
  max-width: var(--max); margin: 0 auto;
  position: relative;
  z-index: 1;
}
.stats-band-label {
  display: flex; align-items: center; gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}
.stats-band-label::after {
  content: ''; flex: 0 0 auto; width: 60px; height: 1px; background: var(--copper);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.stat {
  border-left: 1px solid var(--line-dark);
  padding-left: 1.25rem;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.stat-num em { color: var(--copper); font-style: normal; }
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* =================================================================
   5. PAGE HEADER (interior pages)
   ================================================================= */
.page-header {
  background: var(--cream);
  padding: clamp(8rem, 14vw, 14rem) var(--pad) clamp(3rem, 6vw, 6rem);
  position: relative;
}
.page-header-inner { max-width: var(--max); margin: 0 auto; }
.page-header h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.page-header h1 em { font-style: italic; color: var(--copper); }
.page-header-sub {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 400;
  color: var(--ink-muted);
  max-width: var(--max-text);
  margin-top: 1.75rem;
}

/* =================================================================
   6. HOMEPAGE — SERVICES PREVIEW
   ================================================================= */
.home-services {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  background: var(--white);
}
.home-services-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.home-services-head h2 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1;
}
.home-services-head h2 em { font-style: italic; color: var(--copper); }

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex; flex-direction: column;
  position: relative;
  transition: background 0.4s ease;
  overflow: hidden;
}
.service-card:hover { background: var(--cream); }
.card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.08;
  filter: grayscale(0);
  transition: filter 0.6s ease, opacity 0.6s ease;
  pointer-events: none;
}
.service-card:hover .card-bg {
  filter: grayscale(1);
  opacity: 0.14;
}
.service-card-num,
.service-card h3,
.service-card-desc,
.service-card .arrow-link {
  position: relative; z-index: 1;
}
.service-card-num {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--copper);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.service-card-num::after {
  content: ''; flex: 1; height: 1px; background: var(--line); max-width: 60px;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.service-card-desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  flex-grow: 1;
}

/* =================================================================
   7. APPROACH PILLARS
   ================================================================= */
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.section.dark .pillars,
.section.dark .pillars { background: var(--line-dark); border-color: var(--line-dark); }

.pillar {
  background: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex; flex-direction: column;
}
.section.dark .pillar { background: var(--black); }

.pillar-icon {
  width: 32px; height: 32px;
  margin-bottom: 1.75rem;
  color: var(--copper);
}
.pillar h3 {
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  color: var(--black);
}
.section.dark .pillar h3 { color: var(--white); }
.pillar-body {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--ink-muted);
}
.section.dark .pillar-body { color: rgba(255, 255, 255, 0.7); }
.pillar-body strong {
  display: block;
  font-weight: 500;
  color: var(--black);
  margin-top: 0.5rem;
}
.section.dark .pillar-body strong { color: var(--white); }

/* Larger approach detail rows (used on approach.html) */
.approach-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.approach-row:last-child { border-bottom: none; }
.approach-row-head {
  position: sticky; top: 6rem;
}
.approach-row-num {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--copper);
  margin-bottom: 1.25rem;
}
.approach-row h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.approach-row-body { font-family: var(--font-sans); font-size: 1rem; line-height: 1.8; color: var(--ink-muted); }
.approach-row-body p + p { margin-top: 1.25rem; }
.approach-row-body p:first-child { font-size: 1.1rem; color: var(--black); font-weight: 300; }

@media (max-width: 800px) {
  .approach-row-head { position: static; }
}

/* =================================================================
   8. SERVICES PAGE — DETAIL ROWS
   ================================================================= */
.service-detail {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: clamp(2.5rem, 5vw, 6rem);
  padding: clamp(4rem, 7vw, 7rem) 0;
  border-bottom: 1px solid var(--line);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-head {
  position: sticky; top: 6rem;
}
.service-detail-num {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--copper);
  font-style: italic;
  margin-bottom: 1rem;
}
.service-detail h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.service-detail-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.85rem;
}
.service-detail-body p { font-size: 0.98rem; color: var(--ink-muted); line-height: 1.85; }
.service-detail-body p + p { margin-top: 1.25rem; }
.service-detail-body p.lead-line { font-size: 1.15rem; color: var(--black); font-weight: 300; line-height: 1.55; }

.scope-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 2.5rem;
}
.scope-col {
  background: var(--white);
  padding: 1.75rem;
}
.scope-col-title {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.scope-col-title::before {
  content: ''; width: 14px; height: 1px; background: var(--copper);
}
.scope-list { list-style: none; }
.scope-list li {
  font-size: 0.88rem;
  color: var(--ink-muted);
  padding: 0.45rem 0 0.45rem 1.1rem;
  position: relative;
  line-height: 1.55;
}
.scope-list li::before {
  content: ''; position: absolute; left: 0; top: 0.95rem;
  width: 6px; height: 1px; background: var(--gray);
}

.service-detail-meta {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 2.5rem;
}
.service-meta-block { font-family: var(--font-sans); }
.service-meta-label {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.4rem;
}
.service-meta-value {
  font-size: 0.95rem;
  color: var(--black);
  font-weight: 400;
}

/* =================================================================
   9. ABOUT PAGE
   ================================================================= */
.about-bio {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 7rem);
  align-items: start;
}
.about-photo-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border: 1px solid var(--line);
}
.about-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
}
.about-photo-tag {
  position: absolute; left: 1rem; bottom: 1rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(11, 11, 13, 0.7);
  padding: 0.5rem 0.85rem;
}
.about-text .lead-display {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}
.about-text .lead-display em { font-style: italic; color: var(--copper); }
.about-text p {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--ink-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  max-width: 580px;
}

.about-credentials {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.credential-list { display: flex; flex-direction: column; }
.credential {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  align-items: baseline;
}
.credential:last-child { border-bottom: none; }
.credential-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--copper);
}
.credential-value {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--black);
  line-height: 1.7;
}
.credential-value em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--ink-muted);
  font-size: 0.92rem;
  display: block;
  margin-top: 0.2rem;
}

/* =================================================================
   10. INSIGHTS GRID
   ================================================================= */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.insight-card {
  background: var(--white);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex; flex-direction: column;
  min-height: 320px;
  transition: background 0.35s ease;
  text-decoration: none;
}
.insight-card:hover { background: var(--cream); }
.insight-tag {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.insight-tag::before {
  content: ''; width: 14px; height: 1px; background: var(--copper);
}
.insight-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--black);
}
.insight-card-meta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 1.25rem;
}
.insight-card-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
.insight-card-link {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  display: flex; align-items: center; gap: 0.5rem;
  transition: gap 0.25s, color 0.25s;
}
.insight-card-link::after { content: '→'; }
.insight-card:hover .insight-card-link { gap: 0.85rem; color: var(--copper); }

/* =================================================================
   11. CONTACT
   ================================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 6vw, 7rem);
}

.contact-info-block {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}
.contact-info-value {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--black);
  line-height: 1.7;
}
.contact-info-value a { transition: color 0.2s; }
.contact-info-value a:hover { color: var(--copper); }

.contact-form { display: flex; flex-direction: column; gap: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper);
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 300;
  padding: 0.85rem 0;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--black);
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--black); }
.form-textarea { resize: none; height: 140px; }
.form-select { appearance: none; -webkit-appearance: none; padding-right: 1.5rem; background-image: linear-gradient(45deg, transparent 50%, var(--gray) 50%), linear-gradient(135deg, var(--gray) 50%, transparent 50%); background-position: right 6px center, right 1px center; background-size: 6px 6px; background-repeat: no-repeat; }

/* =================================================================
   12. FULL-BLEED CTA
   ================================================================= */
.cta-band {
  background: var(--black);
  color: var(--white);
  padding: clamp(4rem, 8vw, 8rem) var(--pad);
  position: relative;
  overflow: hidden;
}
.cta-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.cta-band h2 em { font-style: italic; color: var(--copper); }
.cta-band-actions { display: flex; justify-content: flex-end; }

/* =================================================================
   13. FOOTER
   ================================================================= */
.footer {
  background: var(--black); color: var(--white);
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--pad) 2rem;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: 1.75rem;
}
.footer-tagline {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  line-height: 2.2;
  max-width: 320px;
  margin-top: 1.5rem;
}
.footer-tagline .accent { color: var(--copper); }

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.85rem; }
.footer-links a {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--copper); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* =================================================================
   13b. BRAND MOTIFS — Flow Line, Timestamp, REV markers, System Grid
   ================================================================= */

/* Flow Line section divider — full-width line + copper dot */
.flow-divider {
  position: relative;
  display: flex; align-items: center;
  width: 100%;
  padding: 0 var(--pad);
  height: 1px;
  margin: 0;
  background: transparent;
}
.flow-divider::before {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.flow-divider::after {
  content: '';
  width: 9px; height: 9px;
  background: var(--copper);
  border-radius: 50%;
  margin-left: -4.5px;
}
.flow-divider.dark::before { background: var(--line-dark); }
.flow-divider.center::before { max-width: 50%; }
.flow-divider.center { justify-content: center; }
.flow-divider.center::after { margin-left: -4.5px; }

/* REV / Timestamp marker — small technical strip */
.rev-marker {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray);
}
.rev-marker > span { white-space: nowrap; }
.rev-marker > span.dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--copper);
  border-radius: 50%;
}
.section.dark .rev-marker,
.hero .rev-marker { color: rgba(255, 255, 255, 0.45); }

.hero-rev-marker {
  position: absolute;
  bottom: clamp(1.5rem, 3vw, 2.25rem);
  left: var(--pad);
  z-index: 3;
}

/* Timestamp Mark — crosshair + tick decorative SVG container */
.timestamp-mark {
  width: 28px; height: 28px;
  color: var(--copper);
  flex-shrink: 0;
}

/* System Grid — 4x4 dot pattern as decorative block */
.system-grid {
  width: 64px; height: 64px;
  background-image: radial-gradient(circle, var(--copper) 1px, transparent 1.5px);
  background-size: 16px 16px;
  background-position: 0 0;
  background-repeat: repeat;
  opacity: 0.6;
}

/* Service card — copper tick at top edge (ticket-perforation feel) */
.service-card {
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: clamp(2rem, 4vw, 3.5rem);
  width: 28px; height: 1px;
  background: var(--copper);
}
.service-card:hover::before {
  width: 56px;
  transition: width 0.4s ease;
}

/* Pillar — refined: small flow-line under icon */
.pillar {
  position: relative;
}
.pillar-icon-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.pillar-icon-wrap .micro-line {
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 80px;
}
.pillar-icon-wrap .micro-line::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--copper);
  border-radius: 50%;
  margin-left: -2.5px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.section.dark .pillar-icon-wrap .micro-line { background: var(--line-dark); }

/* Insights card — copper top-tick */
.insight-card { position: relative; }
.insight-card::before {
  content: '';
  position: absolute;
  top: 0; left: clamp(1.75rem, 3vw, 2.25rem);
  width: 22px; height: 1px;
  background: var(--copper);
  transition: width 0.4s ease;
}
.insight-card:hover::before { width: 48px; }

/* Approach row number — bold sans + flow line */
.approach-row-num {
  display: flex; align-items: center; gap: 0.85rem;
}
.approach-row-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
  max-width: 80px;
}

/* Page-header rev marker (small technical text in interior page headers) */
.page-header-rev {
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(11, 11, 13, 0.1);
  max-width: 720px;
}

/* Band label row — text + flow line + copper dot (brand-board "OUR SERVICES ━━●") */
.band-label-row {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
}
.band-label-row .label-text {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  flex-shrink: 0;
}
.band-label-row.light .label-text { color: var(--gray); }
.band-label-row .flow-line {
  flex: 0 0 auto;
  width: clamp(60px, 8vw, 120px);
  height: 1px;
  background: var(--copper);
}
.band-label-row .flow-dot {
  width: 9px; height: 9px;
  background: var(--copper);
  border-radius: 50%;
  margin-left: -3px;
  flex-shrink: 0;
}

/* Featured quote section (homepage Brief, etc.) */
.quote-display {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4.5vw, 4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--black);
  max-width: 18ch;
  margin: 0 auto;
}
.quote-display em {
  color: var(--copper);
  font-style: italic;
}
.section.dark .quote-display { color: var(--white); }
.quote-attr {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 2rem;
}
.section.dark .quote-attr { color: rgba(255, 255, 255, 0.5); }

/* Brief section — full-bleed background image with dark overlay */
.approach-bg {
  background-size: cover;
  background-position: center;
  position: relative;
}
.approach-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.approach-bg .section-inner { position: relative; z-index: 1; }
.approach-bg .home-services-head h2 { color: var(--white); }

.brief-bg {
  background-size: cover;
  background-position: center;
  position: relative;
}
.brief-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.62);
}
.brief-bg .section-inner { position: relative; z-index: 1; }
.brief-bg .quote-display { color: var(--white); }
.brief-bg .quote-attr { color: rgba(255, 255, 255, 0.6); }
.brief-bg .label-text { color: rgba(255, 255, 255, 0.5); }
.brief-bg .flow-line { background: rgba(255, 255, 255, 0.25) !important; }
.brief-bg .flow-dot { background: var(--copper) !important; }

/* Brand credo / mantra — small italic copper line */
.quote-credo {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.92rem, 1.2vw, 1.1rem);
  color: var(--copper);
  margin-top: 1.25rem;
  letter-spacing: -0.005em;
}

/* Footer rev marker */
.footer-rev {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}
.footer-rev .dot {
  width: 4px; height: 4px; background: var(--copper); border-radius: 50%; flex-shrink: 0;
}

/* =================================================================
   13c. BRAND BAND — unified dark closing panel (homepage)
   ================================================================= */
.brand-band {
  background: var(--black);
  color: var(--white);
  padding: clamp(5rem, 10vw, 10rem) var(--pad);
  border-top: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
}
.brand-band::before {
  content: '';
  position: absolute;
  top: 2.5rem; right: 2.5rem;
  width: 80px; height: 80px;
  background-image: radial-gradient(circle, rgba(184, 138, 90, 0.32) 1px, transparent 1.5px);
  background-size: 14px 14px;
  pointer-events: none;
  opacity: 0.7;
}
.brand-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}
.brand-band-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.brand-band-eyebrow::before {
  content: ''; width: 22px; height: 1px; background: var(--copper);
}
.brand-band-tagline {
  font-family: var(--font-sans);
  font-size: clamp(2.1rem, 5vw, 4.75rem);
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 3.5rem;
}
.bb-accent { color: var(--copper); font-weight: 300; }

/* Signature mark SVG */
.brand-band-sig {
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sig-mark {
  width: clamp(130px, 16vw, 190px);
  height: auto;
  opacity: 0.80;
  /* invert: black strokes → white; sepia+hue: tint white to copper; screen: white bg disappears on dark */
  filter: invert(1) sepia(0.85) saturate(1.4) hue-rotate(4deg) brightness(0.88);
  mix-blend-mode: screen;
}
.sig-attr {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.36);
}

/* Mini pillar grid (brand band right col) */
.brand-mini-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.brand-mini-pillar {
  background: var(--black);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: background 0.35s ease;
}
.brand-mini-pillar:hover { background: rgba(255, 255, 255, 0.03); }
.bmp-num {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--copper);
  margin-bottom: 0.2rem;
}
.bmp-title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}
.bmp-body {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .brand-band-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .brand-mini-pillars { grid-template-columns: 1fr; }
}

/* =================================================================
   14. SCROLL ANIMATIONS
   ================================================================= */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.85s ease, transform 0.85s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.85s ease; }
.fade-in.visible { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* =================================================================
   15. RESPONSIVE
   ================================================================= */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image-wrap { aspect-ratio: 16/10; max-height: 500px; }
  .stats-row { grid-template-columns: repeat(3, 1fr); row-gap: 2rem; }
  .stat:nth-child(4), .stat:nth-child(5) { border-left: none; padding-left: 0; }
  .home-services-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .about-bio { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 480px; }
  .about-credentials { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-head { position: static; }
  .approach-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .service-cards { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-left: none; padding-left: 0; }
  .stat:nth-child(even) { border-left: 1px solid var(--line-dark); padding-left: 1.25rem; }
  .pillars { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .instagram-grid { max-width: 100%; }
  .scope-grid { grid-template-columns: 1fr; }
  .credential { grid-template-columns: 1fr; gap: 0.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band-inner { grid-template-columns: 1fr; }
  .cta-band-actions { justify-content: flex-start; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =================================================================
   INSIGHTS — TABS & MEDIA PANES
   ================================================================= */

/* ── Tab Navigation ─────────────────────────────────── */
.insights-tab-nav {
  display: flex;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.insights-tab-nav::-webkit-scrollbar { display: none; }

.insights-tab-btn {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 1rem 0;
  margin-right: 2.5rem;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
}
.insights-tab-btn:hover { color: var(--copper); }
.insights-tab-btn.active {
  color: var(--copper);
  border-bottom-color: var(--copper);
}

/* ── Pane Switching ─────────────────────────────────── */
.insights-pane { display: none; }
.insights-pane.active {
  display: block;
  animation: pane-in 0.35s ease;
}
@keyframes pane-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Substack ───────────────────────────────────────── */
.substack-block {
  padding: clamp(2.5rem, 4vw, 5rem) 0;
  max-width: 680px;
}
.substack-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 1.25rem 0 1.5rem;
}
.substack-headline em { font-style: italic; color: var(--copper); }
.substack-body {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.substack-actions { margin-bottom: 1.25rem; }
.substack-meta {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── Instagram ──────────────────────────────────────── */
.instagram-block { padding: clamp(2.5rem, 4vw, 5rem) 0; }

.instagram-handle {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 1rem 0 0.75rem;
}
.instagram-body {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 540px;
  margin-bottom: 2rem;
}
.ig-placeholder {
  aspect-ratio: 1 / 1;
  background: var(--soft);
  position: relative;
  overflow: hidden;
}
.ig-placeholder::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(184, 138, 90, 0.28);
  pointer-events: none;
}
.instagram-meta {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 1.25rem;
}

/* ── Media / Coming Soon ────────────────────────────── */
.media-coming-block {
  background: var(--black);
  color: var(--white);
  padding: clamp(4rem, 7vw, 7rem) clamp(2.5rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
}
.media-coming-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.media-eyebrow {
  color: var(--copper);
  position: relative;
  z-index: 1;
}
.media-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 1.25rem 0 1.75rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.media-headline em { font-style: italic; color: var(--copper); }
.media-body {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}
.media-actions {
  position: relative;
  z-index: 1;
  margin-bottom: 2.5rem;
}
.media-channels-row {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}
.media-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

/* =================================================================
   COMING SOON PAGE
   ================================================================= */
/* =================================================================
   CONTACT PAGE — BACKGROUND IMAGE
   ================================================================= */
.contact-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.contact-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 13, 0.72);
  pointer-events: none;
}
.contact-bg .page-header-inner { position: relative; z-index: 1; }
.contact-bg h1 { color: var(--white); }
.contact-bg h1 em { color: var(--copper); }
.contact-bg .eyebrow { color: rgba(255, 255, 255, 0.55); }
.contact-bg .page-header-sub { color: rgba(255, 255, 255, 0.65); }

/* =================================================================
   COMING SOON PAGE
   ================================================================= */
.coming-soon-hero {
  min-height: 100svh;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(7rem, 12vw, 12rem) var(--pad) clamp(4rem, 8vw, 8rem);
  position: relative;
  overflow: hidden;
}
.coming-soon-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.coming-soon-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}
.coming-soon-mark {
  width: 120px;
  margin-bottom: 2.5rem;
  opacity: 0.55;
}
.coming-soon-mark svg { width: 100%; }
.coming-soon-eyebrow { color: var(--copper); }
.coming-soon-headline {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.coming-soon-headline em { font-style: italic; color: var(--copper); }
.coming-soon-body {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.coming-soon-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.coming-soon-flow {
  display: flex;
  align-items: center;
  margin-top: clamp(3rem, 6vw, 5rem);
}
.coming-soon-line {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.coming-soon-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--copper);
  margin-left: -1px;
}
