/* ═══════════════════════════════════════════════════════════════
   Schaeffer Engineering Group — Site Stylesheet
   Modern technical: Inter throughout (heavy at headlines, regular at body),
   JetBrains Mono technical labels. Soft near-black paper, cream ink,
   terracotta accent. Dark theme always on.
   Note: --gold and --serif var names retained for change-set minimalism;
   --gold holds terracotta, --serif points to Inter. --paper-rgb/--ink-rgb
   companion triplets exist so rgba() tints render correctly.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --paper: #0F1419;
  --paper-tint: #161B23;
  --ink: #F8F5EE;
  --ink-deep: #FFFFFF;
  --ink-soft: rgba(248, 245, 238, 0.88);
  --slate: rgba(248, 245, 238, 0.65);
  --muted: rgba(248, 245, 238, 0.45);
  --gold: #B85725;
  --gold-deep: #9a4720;
  --red: #A63A3A;
  --paper-rgb: 15, 20, 25;
  --ink-rgb: 248, 245, 238;
  --line: rgba(var(--ink-rgb), 0.12);
  --line-soft: rgba(var(--ink-rgb), 0.06);
  --surface: #161B23;

  --serif: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
  --display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(184, 87, 37, 0.10) 0, transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(var(--ink-rgb), 0.025) 0, transparent 50%);
}

body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

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

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { margin: 0; font-weight: 400; color: var(--ink); }

.serif { font-family: var(--serif); font-weight: 700; }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 700; }

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.section-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.section-label::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.section-label.on-dark { color: var(--gold); }

/* ── LAYOUT ─────────────────────────────────────────────── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 2; }

section { padding: 100px 0; position: relative; }
section + section { border-top: 1px solid var(--line-soft); }

@media (max-width: 720px) {
  section { padding: 64px 0; }
  .wrap, .wrap-narrow { padding: 0 22px; }
}

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(var(--paper-rgb), 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  line-height: 1;
}
.brand-mark .firm {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.brand-mark .division {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  border-left: 1px solid var(--line);
  padding-left: 14px;
}
@media (max-width: 720px) {
  .brand-mark .division { display: none; }
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  text-decoration: none;
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  color: var(--ink);
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
}
.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 12.5px !important;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: #1a3550; }
.nav-cta::after { display: none !important; }

@media (max-width: 820px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: #1a3550; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost-light {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(var(--paper-rgb), 0.4);
}
.btn-ghost-light:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn .arrow { display: inline-block; transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ── FADE-IN ANIMATIONS ─────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fade-in.d1 { animation-delay: 0.05s; }
.fade-in.d2 { animation-delay: 0.18s; }
.fade-in.d3 { animation-delay: 0.32s; }
.fade-in.d4 { animation-delay: 0.46s; }
.fade-in.d5 { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero { padding: 110px 0 90px; position: relative; overflow: hidden; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
}

.hero-content { min-width: 0; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
}
.hero-eyebrow .vol { color: var(--gold); }
.hero-eyebrow .div { width: 60px; height: 1px; background: var(--line); }

.hero-title {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 14ch;
}
.hero-title em {
  font-family: var(--serif);
  font-weight: 800;
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 56ch;
  margin-bottom: 38px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero video panel — sits in the right column on desktop, full-width below text on mobile */
.hero-media {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-media-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(var(--ink-rgb), 0.25),
    0 12px 24px -8px rgba(var(--ink-rgb), 0.15);
}
.hero-media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-media-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(to top, rgba(8, 23, 42, 0.85) 0%, rgba(8, 23, 42, 0.4) 60%, transparent 100%);
  color: var(--paper);
  pointer-events: none;
}
.hero-media-label {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}
.hero-media-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  color: var(--paper);
  margin-bottom: 2px;
}
.hero-media-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: rgba(var(--paper-rgb), 0.72);
  text-transform: uppercase;
  font-weight: 500;
}

/* Compact hero for inner pages */
.hero-inner {
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--line-soft);
}
.hero-inner .hero-title {
  font-size: clamp(40px, 6.5vw, 80px);
  max-width: 18ch;
  margin-bottom: 24px;
}
.hero-inner .hero-sub { margin-bottom: 0; max-width: 60ch; }

/* ── PRACTICE PAGE VIDEO SHOWCASE ────────────────────────
   Full-width video moment at top of practice pages.
   Sits between the compact hero and the first content section.
   ──────────────────────────────────────────────────────── */
.video-showcase {
  padding: 60px 0 0;
  background: var(--paper);
}
.video-showcase-frame {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 40px 80px -20px rgba(var(--ink-rgb), 0.3),
    0 16px 32px -10px rgba(var(--ink-rgb), 0.18);
}
.video-showcase-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-showcase-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px 40px;
  background: linear-gradient(to top, rgba(8, 23, 42, 0.85) 0%, rgba(8, 23, 42, 0.4) 60%, transparent 100%);
  color: var(--paper);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
}
.video-showcase-info .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}
.video-showcase-info .name {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
  color: var(--paper);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
}
.video-showcase-info .name em {
  font-style: italic;
  color: var(--gold);
}
.video-showcase-info .meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(var(--paper-rgb), 0.78);
  text-transform: uppercase;
  font-weight: 500;
}
.video-showcase-cta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: rgba(var(--paper-rgb), 0.7);
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  align-self: flex-end;
}
@media (max-width: 720px) {
  .video-showcase-caption {
    padding: 22px 22px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ── TRUST STRIP ────────────────────────────────────────── */
.trust-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.trust-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(var(--paper-rgb), 0.85);
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-item .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-head {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.0;
  letter-spacing: -0.012em;
  color: var(--ink);
  max-width: 14ch;
}
.section-head h2 em { font-style: italic; color: var(--gold-deep); }
.section-head .lede {
  font-size: 17px;
  color: var(--slate);
  line-height: 1.6;
  max-width: 52ch;
}
@media (max-width: 820px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}

/* ── PRACTICES (HOME) ───────────────────────────────────── */
.practices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.practice-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.4fr 200px;
  background: var(--paper);
  padding: 38px 32px;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  transition: background 0.25s ease;
  position: relative;
}
.practice-row:hover { background: var(--surface); }
.practice-row .pn {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 500;
}
.practice-row .ptitle {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.1;
  color: var(--ink);
}
.practice-row .ptitle em { font-style: italic; color: var(--gold-deep); }
.practice-row .pdesc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--slate);
}
.practice-row .parrow {
  text-align: right;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  transition: gap 0.2s ease;
}
.practice-row:hover .parrow { gap: 14px; color: var(--gold-deep); }
@media (max-width: 820px) {
  .practice-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 22px;
  }
  .practice-row .parrow { justify-content: flex-start; }
}

/* ── SERVICES GRID (PRACTICE PAGES) ─────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--paper);
  padding: 36px 32px 32px;
  position: relative;
  transition: background 0.25s ease;
}
.service-card:hover { background: var(--surface); }
.service-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}
.service-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 12px;
}
.service-desc {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 720px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── PROCESS STEPS ──────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 24px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), var(--line), transparent);
  z-index: 0;
}
.step { position: relative; padding: 0 16px; z-index: 1; }
.step-marker {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;  color: var(--ink);
  margin-bottom: 22px;
}
.step-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.step-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
}
@media (max-width: 820px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
  .process-steps::before { display: none; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ── PRICING TABLE ──────────────────────────────────────── */
.pricing-table { border-top: 1px solid var(--ink); margin-top: 24px; }
.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  gap: 24px;
}
.pricing-tier {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  line-height: 1.15;
}
.pricing-tier .badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184, 87, 37, 0.08);
  padding: 3px 8px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
  font-weight: 500;
}
.pricing-amount {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.pricing-desc {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.5;
}
@media (max-width: 720px) {
  .pricing-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
}

.pricing-note {
  margin-top: 28px;
  padding: 18px 22px;
  border-left: 2px solid var(--gold);
  background: rgba(184, 87, 37, 0.04);
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.6;
}

/* ── DARK CARD (FEATURE BLOCK) ──────────────────────────── */
.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  overflow: hidden;
}
.feature-text {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-text h3 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.05;
  margin-bottom: 18px;
  color: var(--paper);
  letter-spacing: -0.01em;
}
.feature-text h3 em { font-style: italic; color: var(--gold); }
.feature-text p {
  color: rgba(var(--paper-rgb), 0.78);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 42ch;
}
.feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  width: fit-content;
  transition: background 0.2s ease, transform 0.2s ease;
}
.feature-cta:hover { background: var(--gold); transform: translateY(-1px); }
.feature-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 40px;
  background-image:
    linear-gradient(135deg, rgba(184,134,11,0.08), transparent 60%),
    linear-gradient(to bottom right, #15314f, #0a1d33);
}
@media (max-width: 820px) {
  .feature-card { grid-template-columns: 1fr; }
  .feature-text { padding: 44px 32px; }
  .feature-visual { padding: 40px 32px; }
}

/* ── ABOUT / FACTS ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
}
.about-prose p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  margin: 0 0 18px;
}
.about-prose p:first-child::first-letter {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 52px;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 0;
  color: var(--ink);
}
.about-facts { border-top: 1px solid var(--ink); padding-top: 8px; }
.fact {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.fact-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding-top: 4px;
}
.fact-value {
  font-size: 14.5px;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.45;
}
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--ink); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
}
.faq-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--gold);
  padding-top: 4px;
  font-weight: 500;
}
.faq-q {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}
.faq-a {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.6;
  max-width: 65ch;
}
@media (max-width: 720px) {
  .faq-item { grid-template-columns: 1fr; gap: 8px; }
}

/* ── CONTACT ────────────────────────────────────────────── */
.contact {
  background: var(--ink);
  color: var(--paper);
  border-top: none;
}
.contact h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.0;
  letter-spacing: -0.012em;
  color: var(--paper);
  margin-bottom: 18px;
  max-width: 16ch;
}
.contact h2 em { font-style: italic; color: var(--gold); }
.contact-lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(var(--paper-rgb), 0.78);
  max-width: 56ch;
  margin-bottom: 50px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--paper-rgb), 0.65);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(var(--paper-rgb), 0.18);
  color: var(--paper);
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 15px;
  border-radius: 2px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.07);
}
.field textarea { resize: vertical; min-height: 110px; font-family: var(--sans); }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; }

.form .btn-submit {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 16px 24px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.18s ease;
  margin-top: 8px;
  align-self: flex-start;
}
.form .btn-submit:hover { background: #d09f17; transform: translateY(-1px); }

.contact-direct {
  border-left: 1px solid rgba(var(--paper-rgb), 0.15);
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (max-width: 820px) {
  .contact-direct {
    border-left: none;
    border-top: 1px solid rgba(var(--paper-rgb), 0.15);
    padding-left: 0;
    padding-top: 36px;
  }
}
.contact-direct .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(var(--paper-rgb), 0.55);
  margin-bottom: 6px;
}
.contact-direct .value {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: var(--paper);
  text-decoration: none;
  display: block;
}
.contact-direct .value:hover { color: var(--gold); }

/* ── CTA STRIP (USED ON INNER PAGES) ────────────────────── */
.cta-strip {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0;
  border-top: none;
}
.cta-strip-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-strip h2 {
  font-family: var(--serif);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.05;
  color: var(--paper);
  margin: 0;
  letter-spacing: -0.012em;
}
.cta-strip h2 em { font-style: italic; color: var(--gold); }
.cta-strip .actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 820px) {
  .cta-strip-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-strip .actions { justify-content: flex-start; }
}

/* ── FEATURE LIST (PROSE PAGES) ─────────────────────────── */
.feature-list { margin-top: 24px; }
.feature-row {
  display: grid;
  grid-template-columns: 60px 1fr 1.4fr;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  gap: 24px;
  align-items: start;
}
.feature-row:last-child { border-bottom: 1px solid var(--line); }
.feature-row .roman {
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}
.feature-row .ftitle {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  color: var(--ink);
}
.feature-row .ftext {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 56ch;
}
@media (max-width: 720px) {
  .feature-row { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .feature-row .roman { font-size: 22px; }
}

/* ── PORTFOLIO TILES (USED ON HOSPITALITY PAGES) ────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 24px;
}
.portfolio-tile {
  background: var(--paper);
  padding: 28px 24px;
  position: relative;
  page-break-inside: avoid;
}
.portfolio-tile .ptag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.portfolio-tile .pname {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 8px;
}
.portfolio-tile .pmeta {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--slate);
}
@media (max-width: 720px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ── PROJECTS PAGE ──────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 16px 0;
  margin-bottom: 48px;
  align-items: center;
}
.filter-bar .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 18px;
  font-weight: 500;
}
.filter-chip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  background: transparent;
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
  font-weight: 500;
}
.filter-chip:hover { color: var(--ink); border-color: var(--ink); }
.filter-chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.project-tile {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease;
  position: relative;
}
.project-tile:hover { background: var(--surface); }
.project-image {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0F2740 0%, #1a3550 50%, #0a1d33 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-image::after {
  /* Subtle paper grain on the placeholder */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.08;
  pointer-events: none;
}
.project-image .placeholder-mark {
  position: relative;
  z-index: 2;
  text-align: center;
  color: rgba(var(--paper-rgb), 0.4);
}
.project-image .placeholder-mark .num {
  font-family: var(--serif);
  font-weight: 800;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: rgba(184, 87, 37, 0.5);
  margin-bottom: 8px;
}
.project-image .placeholder-mark .pending {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ──────────────────────────────────────────────────────────────
   Project tile gallery — manual prev/next navigation through
   multiple venue photos. Reusable across any tile that has
   more than one photo. Currently in use on tiles 01 & 07.
   ────────────────────────────────────────────────────────────── */
.ptile-gallery {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ptile-frames {
  position: absolute;
  inset: 0;
}
.ptile-frames img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.ptile-frames img.is-active { opacity: 1; }

/* Navigation arrows — restrained, editorial. Visible on hover; always
   visible on touch devices via the (hover: none) media query below. */
.ptile-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(var(--ink-rgb), 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 700;
  font-style: italic;
  font-size: 26px;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.ptile-prev { left: 12px; }
.ptile-next { right: 12px; }
.project-tile:hover .ptile-nav { opacity: 1; }
.ptile-nav:hover { background: rgba(var(--ink-rgb), 0.85); }
.ptile-nav:focus-visible {
  opacity: 1;
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
}

/* Counter pip — tiny mono caps in the bottom-right of the image. */
.ptile-counter {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  padding: 5px 9px 4px;
  background: rgba(var(--ink-rgb), 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
}

/* Touch devices: arrows stay visible since there's no hover. */
@media (hover: none) {
  .ptile-nav { opacity: 0.85; }
}
.project-tile .ptile-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  text-decoration: none;
  color: inherit;
}
.project-tile .ptile-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.project-tile .ptile-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.15;
  color: var(--ink);
}
.project-tile .ptile-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
}
.project-tile .ptile-desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--slate);
  margin-top: 4px;
}
.project-tile .ptile-arrow {
  margin-top: auto;
  padding-top: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.project-tile:hover .ptile-arrow { gap: 12px; color: var(--gold-deep); }

/* Video-bearing project tiles */
.project-tile .tile-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.project-tile .tile-video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(8, 23, 42, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 2px;
  font-weight: 500;
  pointer-events: none;
}
@media (max-width: 980px) {
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .projects-grid { grid-template-columns: 1fr; }
}

.projects-empty-state {
  text-align: center;
  padding: 80px 32px;
  border: 1px dashed var(--line);
  background: rgba(var(--ink-rgb), 0.02);
  margin-bottom: 32px;
}
.projects-empty-state .ese-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}
.projects-empty-state .ese-title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 12px;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}
.projects-empty-state .ese-title em { font-style: italic; color: var(--gold-deep); }
.projects-empty-state .ese-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  max-width: 56ch;
  margin: 0 auto;
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--ink-deep);
  color: rgba(var(--paper-rgb), 0.6);
  padding: 60px 0 30px;
  font-size: 13px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 36px;
  margin-bottom: 24px;
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
.footer-brand .firm {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.04em;
  color: var(--paper);
  margin-bottom: 4px;
}
.footer-brand .tag {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(var(--paper-rgb), 0.55);
  max-width: 32ch;
  line-height: 1.5;
}
.footer-col .label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(var(--paper-rgb), 0.4);
  margin-bottom: 10px;
}
.footer-col a, .footer-col span {
  display: block;
  color: rgba(var(--paper-rgb), 0.7);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 5px;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: rgba(var(--paper-rgb), 0.4);
  font-family: var(--mono);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 12px;
}
