/* ============================================================
   J. CRANE — PRIVATE INVESTIGATOR
   Film noir aesthetic · Los Angeles, 1947
   ============================================================ */

:root {
  --black:    #000;
  --noir:     #080808;
  --ink:      #111;
  --charcoal: #1a1a1a;
  --smoke:    #282828;
  --ash:      #444;
  --steel:    #777;
  --silver:   #aaa;
  --fog:      #ccc;
  --paper:    #d4c5a9;
  --cream:    #ede4d3;
  --bone:     #f5f0e8;
  --white:    #fafaf5;
  --red:      #8b1a1a;
  --blood:    #b22222;
  --crimson:  #c41e3a;
  --gold:     #c8a951;
  --amber:    #e8a020;
  --warm:     rgba(200, 169, 81, 0.08);

  --f-display: NoirSerif, serif;
  --f-heading: NoirSerif, serif;
  --f-body:    NoirSerif, serif;
  --f-type:    NoirType, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--noir);
  color: var(--fog);
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background: var(--red);
  color: var(--bone);
}

/* ============================================================
   OVERLAYS: Rain canvas, Film grain, Venetian blinds
   ============================================================ */
.rain-canvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.6;
}
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9991;
  opacity: 0.045;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainDrift 0.6s steps(5) infinite;
}
@keyframes grainDrift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-1%, 2%); }
  50%  { transform: translate(2%, -1%); }
  75%  { transform: translate(-2%, 1%); }
  100% { transform: translate(1%, -2%); }
}

.blinds {
  position: fixed; inset: -5%;
  pointer-events: none; z-index: 9989;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 38px,
    rgba(0, 0, 0, 0.12) 38px,
    rgba(0, 0, 0, 0.12) 40px
  );
  transform: rotate(-3deg) scale(1.15);
  animation: blindsShift 25s ease-in-out infinite;
}
@keyframes blindsShift {
  0%, 100% { transform: rotate(-3deg) scale(1.15) translateY(0); }
  50%      { transform: rotate(-1.5deg) scale(1.15) translateY(10px); }
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 10000;
  mix-blend-mode: difference;
}
.cur-dot {
  position: absolute;
  width: 5px; height: 5px;
  background: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cur-ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, border-color .25s;
}
.cursor.hover .cur-ring {
  width: 56px; height: 56px;
  border-color: var(--crimson);
}
@media (hover: none) {
  body, a, button { cursor: auto !important; }
  .cursor { display: none !important; }
}

/* ============================================================
   INTRO (black screen → typewriter → fade in)
   ============================================================ */
.intro {
  position: fixed; inset: 0; z-index: 10001;
  background: var(--black);
  display: grid; place-items: center;
  transition: opacity 1s ease, visibility 1s ease;
}
.intro.done { opacity: 0; visibility: hidden; pointer-events: none; }
.intro-inner { text-align: center; }
.intro-line {
  font-family: var(--f-type);
  font-size: clamp(16px, 3vw, 28px);
  color: var(--fog);
  letter-spacing: 0.3em;
  min-height: 1.4em;
}
.intro-sub {
  font-family: var(--f-heading);
  font-size: 12px;
  color: var(--ash);
  letter-spacing: 0.5em;
  margin-top: 16px;
  opacity: 0;
  transition: opacity 0.8s ease 0.5s;
}
.intro.typing .intro-sub { opacity: 1; }
.intro-match {
  width: 2px; height: 0;
  background: var(--amber);
  margin: 0 auto 30px;
  box-shadow: 0 0 8px var(--amber), 0 0 20px rgba(232, 160, 32, 0.4);
  transition: height 0.6s ease;
}
.intro.lit .intro-match { height: 30px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 60px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: linear-gradient(180deg, rgba(0,0,0,0.9) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.8s ease 3s, transform 0.8s ease 3s;
}
body.loaded .nav { opacity: 1; transform: translateY(0); }

.nav-logo {
  font-family: var(--f-heading);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--bone);
  display: flex; align-items: center; gap: 8px;
}
.nl-sep { color: var(--gold); }
.nl-title { color: var(--gold); }
.nav-links {
  display: flex; gap: 32px; list-style: none;
}
.nav-links a {
  font-family: var(--f-heading);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--steel);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--bone); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  color: var(--crimson) !important;
  border: 1px solid var(--crimson);
  padding: 6px 16px !important;
  transition: background 0.3s, color 0.3s !important;
}
.nav-cta:hover {
  background: var(--crimson) !important;
  color: var(--bone) !important;
}
.nav-cta::after { display: none !important; }

/* ============================================================
   HERO: THE OFFICE
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 35% 55%, rgba(200, 169, 81, 0.06), transparent),
    radial-gradient(ellipse 40% 40% at 70% 30%, rgba(139, 26, 26, 0.04), transparent),
    var(--noir);
}

/* Desk lamp warm glow */
.lamp-glow {
  position: absolute;
  left: 20%; top: 30%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse 100% 80%,
    rgba(200, 169, 81, 0.1) 0%,
    rgba(200, 169, 81, 0.03) 40%,
    transparent 70%
  );
  filter: blur(30px);
  pointer-events: none;
  animation: lampPulse 6s ease-in-out infinite;
}
@keyframes lampPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.7; }
}

/* Smoke canvas */
.smoke-canvas {
  position: absolute;
  left: 15%; bottom: 10%;
  width: 400px; height: 500px;
  pointer-events: none;
  opacity: 0.5;
}

/* Neon sign */
.neon-sign {
  position: absolute;
  top: 12%; right: 8%;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  animation: neonFadeIn 1s ease 3.5s forwards;
}
@keyframes neonFadeIn { to { opacity: 1; } }

.neon-text {
  font-family: var(--f-type);
  font-size: clamp(18px, 2.5vw, 32px);
  color: var(--crimson);
  letter-spacing: 0.3em;
  text-shadow:
    0 0 7px var(--crimson),
    0 0 10px var(--crimson),
    0 0 21px var(--crimson),
    0 0 42px rgba(196, 30, 58, 0.5),
    0 0 82px rgba(196, 30, 58, 0.3);
  animation: neonFlicker 8s infinite;
}
@keyframes neonFlicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
  20%, 24%, 55% { opacity: 0.4; }
}
.neon-sub {
  font-family: var(--f-type);
  font-size: 11px;
  color: var(--crimson);
  letter-spacing: 0.6em;
  opacity: 0.6;
  text-shadow: 0 0 4px var(--crimson);
  margin-top: 4px;
}

/* Hero content */
.hero-content {
  position: relative; z-index: 5;
  text-align: center;
  padding: 40px;
  max-width: 800px;
}

.hero-est {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 3s forwards;
}
.est-text {
  font-family: var(--f-heading);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--steel);
}
.rule {
  display: block;
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-name {
  font-family: var(--f-display);
  font-size: clamp(72px, 14vw, 200px);
  font-weight: 400;
  line-height: 0.85;
  color: var(--bone);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 1.2s ease 3.2s forwards;
  text-shadow:
    0 0 80px rgba(200, 169, 81, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-role {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-family: var(--f-heading);
  font-size: clamp(12px, 1.8vw, 16px);
  letter-spacing: 0.6em;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 1s ease 3.5s forwards;
}
.role-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero-divider {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s ease 3.7s forwards;
}
.dv-line { display: block; width: 80px; height: 1px; background: var(--ash); }
.dv-dia { color: var(--crimson); font-size: 10px; }

.hero-quote {
  font-family: var(--f-type);
  font-size: clamp(16px, 2vw, 22px);
  color: var(--silver);
  letter-spacing: 0.06em;
  line-height: 1.6;
  min-height: 1.8em;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 3.9s forwards;
}

.hero-ctas {
  display: flex; gap: 20px;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 4.2s forwards;
}

@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--f-heading);
  font-size: 12px;
  letter-spacing: 0.35em;
  padding: 14px 32px;
  border: 1px solid;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: currentColor;
  transform: translateY(101%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn-primary {
  color: var(--bone);
  border-color: var(--bone);
  background: transparent;
}
.btn-primary:hover { color: var(--noir); }
.btn-ghost {
  color: var(--steel);
  border-color: var(--ash);
}
.btn-ghost:hover { color: var(--noir); border-color: var(--bone); }
.btn-full { width: 100%; text-align: center; }

.scroll-cue {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-heading);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--ash);
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.8s ease 4.5s forwards;
}
.sc-line {
  width: 1px; height: 50px;
  background: var(--ash);
  margin: 10px auto 0;
  position: relative; overflow: hidden;
}
.sc-line i {
  position: absolute; top: -12px; left: 0; right: 0;
  height: 12px;
  background: var(--gold);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { top: -12px; }
  100% { top: 50px; }
}

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
section { padding: 120px 40px; position: relative; }

.section-tag {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 48px;
}
.st-line { display: block; width: 60px; height: 1px; background: var(--crimson); }
.st-text {
  font-family: var(--f-heading);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--crimson);
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
.section-sub {
  font-family: var(--f-type);
  font-size: 16px;
  color: var(--steel);
  letter-spacing: 0.08em;
  margin-bottom: 60px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal:nth-child(3) { transition-delay: 0.24s; }
.reveal:nth-child(4) { transition-delay: 0.36s; }

/* ============================================================
   ABOUT: THE DOSSIER
   ============================================================ */
.about {
  background:
    linear-gradient(180deg, var(--noir) 0%, var(--charcoal) 50%, var(--noir) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

/* Photo frame */
.photo-frame {
  position: relative;
  background: var(--smoke);
  padding: 14px;
  border: 1px solid var(--ash);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    inset 0 0 30px rgba(0, 0, 0, 0.4);
  transform: rotate(-2deg);
  transition: transform 0.5s;
}
.photo-frame:hover { transform: rotate(0deg); }
.photo-inner {
  width: 100%; aspect-ratio: 3/4;
  background:
    linear-gradient(180deg, #2a2420 0%, #1a1510 100%);
  position: relative; overflow: hidden;
}
.photo-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 45%, transparent 30%, rgba(0,0,0,0.7) 100%);
}
.photo-tape {
  position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%) rotate(1deg);
  width: 80px; height: 24px;
  background: rgba(212, 197, 169, 0.25);
  border: 1px solid rgba(212, 197, 169, 0.15);
}
.photo-caption {
  font-family: var(--f-type);
  font-size: 12px;
  color: var(--steel);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.1em;
}

/* CSS Detective silhouette */
.detective-sil {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -48%);
  width: 140px; height: 250px;
}
.det-hat {
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 100px; height: 30px;
  background: #1a1510;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: 0 -2px 0 #2a2420;
}
.det-hat::before {
  content: "";
  position: absolute;
  left: -15px; right: -15px; bottom: 0;
  height: 8px;
  background: #1a1510;
  border-radius: 50%;
}
.det-head {
  position: absolute;
  left: 50%; top: 30px;
  transform: translateX(-50%);
  width: 60px; height: 75px;
  background: linear-gradient(180deg, #3a3028 0%, #2a2420 100%);
  border-radius: 30% 30% 35% 35% / 45% 45% 55% 55%;
}
.det-neck {
  position: absolute;
  left: 50%; top: 100px;
  transform: translateX(-50%);
  width: 28px; height: 20px;
  background: #2a2420;
}
.det-shoulders {
  position: absolute;
  left: 50%; top: 115px;
  transform: translateX(-50%);
  width: 130px; height: 40px;
  background: linear-gradient(180deg, #1a1510 0%, #0f0d08 100%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.det-coat {
  position: absolute;
  left: 50%; top: 145px;
  transform: translateX(-50%);
  width: 130px; height: 110px;
  background: linear-gradient(180deg, #0f0d08 0%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}

/* About text */
.about-heading {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  color: var(--bone);
  line-height: 1;
  margin-bottom: 28px;
}
.ah-small {
  display: block;
  font-family: var(--f-heading);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 8px;
}
.about-body {
  font-family: var(--f-body);
  font-size: 19px;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 40px;
}
.about-body p + p { margin-top: 16px; }

.about-stats {
  display: flex; gap: 40px;
  padding: 28px 0;
  border-top: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
  margin-bottom: 24px;
}
.stat-num {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 400;
  color: var(--bone);
  line-height: 1;
}
.stat-num small { font-size: 24px; }
.stat-lbl {
  font-family: var(--f-heading);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--ash);
  margin-top: 6px;
}

.about-badge {
  display: flex; align-items: center; gap: 12px;
}
.badge-line { flex: 1; height: 1px; background: var(--ash); }
.badge-text {
  font-family: var(--f-heading);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: var(--noir);
  max-width: 1200px;
  margin: 0 auto;
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.svc {
  border: 1px solid var(--smoke);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.3s;
  background: linear-gradient(135deg, rgba(26, 21, 16, 0.3), transparent);
}
.svc:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.svc::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--crimson);
  transition: height 0.5s ease;
}
.svc:hover::before { height: 100%; }
.svc-num {
  font-family: var(--f-display);
  font-size: 48px;
  color: var(--smoke);
  margin-bottom: 16px;
  line-height: 1;
}
.svc-title {
  font-family: var(--f-heading);
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--bone);
  margin-bottom: 12px;
}
.svc-rule {
  width: 40px; height: 1px;
  background: var(--gold);
  margin-bottom: 16px;
}
.svc-desc {
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--steel);
  line-height: 1.6;
}
.svc-stamp {
  position: absolute;
  bottom: 12px; right: 16px;
  font-family: var(--f-type);
  font-size: 11px;
  color: rgba(178, 34, 34, 0.5);
  letter-spacing: 0.2em;
  border: 1px solid rgba(178, 34, 34, 0.35);
  padding: 2px 8px;
  transform: rotate(-3deg);
}

/* ============================================================
   CASE FILES
   ============================================================ */
.cases {
  background:
    linear-gradient(180deg, var(--noir) 0%, #12100c 50%, var(--noir) 100%);
  max-width: 1200px; margin: 0 auto;
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.case {
  border: 1px solid rgba(212, 197, 169, 0.25);
  background:
    linear-gradient(180deg,
      rgba(212, 197, 169, 0.08) 0%,
      rgba(212, 197, 169, 0.03) 100%);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, box-shadow 0.4s;
}
.case:hover {
  border-color: rgba(212, 197, 169, 0.45);
  box-shadow: 0 4px 30px rgba(200, 169, 81, 0.08);
}
/* Subtle warm top edge */
.case::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.case-status {
  font-family: var(--f-heading);
  font-size: 10px;
  letter-spacing: 0.4em;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 700;
}
.case-status.closed {
  color: var(--noir);
  background: var(--gold);
  border: 1px solid var(--gold);
}
.case-status.active {
  color: var(--bone);
  background: var(--crimson);
  border: 1px solid var(--crimson);
}
.case-status.cold {
  color: var(--bone);
  background: var(--ash);
  border: 1px solid var(--ash);
}
.case-no {
  font-family: var(--f-type);
  font-size: 13px;
  color: var(--steel);
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.case-title {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.case-body {
  font-family: var(--f-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 18px;
}
.case-meta {
  display: flex; gap: 24px;
  font-family: var(--f-heading);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--steel);
  padding-top: 14px;
  border-top: 1px solid rgba(212, 197, 169, 0.15);
}
.case-stamp {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-family: var(--f-type);
  font-size: 56px;
  color: rgba(178, 34, 34, 0.28);
  letter-spacing: 0.25em;
  border: 5px solid rgba(178, 34, 34, 0.22);
  padding: 8px 28px;
  pointer-events: none;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(178, 34, 34, 0.15);
}

/* Redacted text — visible black bars with clear interaction cue */
.redacted {
  background: var(--charcoal);
  color: var(--charcoal);
  padding: 1px 6px;
  transition: all 0.5s ease;
  cursor: none;
  border-radius: 2px;
  border-bottom: 2px solid rgba(196, 30, 58, 0.4);
}
.redacted:hover {
  background: rgba(196, 30, 58, 0.2);
  color: var(--crimson);
  border-bottom-color: var(--crimson);
  text-shadow: 0 0 6px rgba(196, 30, 58, 0.4);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.clients {
  background: var(--noir);
  max-width: 1000px;
  margin: 0 auto;
}
.quotes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.quote {
  padding: 40px 48px;
  border-left: 2px solid var(--gold);
  position: relative;
  background: linear-gradient(90deg, rgba(200, 169, 81, 0.03), transparent 60%);
}
.q-mark {
  font-family: var(--f-display);
  font-size: 120px;
  color: rgba(200, 169, 81, 0.1);
  line-height: 0.5;
  margin-bottom: 8px;
}
.quote p {
  font-family: var(--f-body);
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 16px;
}
.quote cite {
  font-family: var(--f-heading);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--ash);
  font-style: normal;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background:
    linear-gradient(180deg, var(--noir) 0%, #0d0a06 50%, var(--noir) 100%);
  max-width: 1100px; margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.ci-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  color: var(--bone);
  line-height: 0.95;
  margin-bottom: 16px;
}
.ci-sub {
  font-family: var(--f-type);
  font-size: 18px;
  color: var(--steel);
  margin-bottom: 40px;
}
.ci-row {
  display: flex; gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--smoke);
}
.ci-lbl {
  font-family: var(--f-heading);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  min-width: 100px;
  padding-top: 3px;
}
.ci-val {
  font-family: var(--f-body);
  font-size: 17px;
  color: var(--silver);
  line-height: 1.5;
}

/* Telegram form */
.telegram {
  border: 1px solid rgba(212, 197, 169, 0.2);
  background: rgba(212, 197, 169, 0.03);
  padding: 36px;
}
.tg-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.tg-hl { flex: 1; height: 1px; background: rgba(212, 197, 169, 0.25); }
.tg-title {
  font-family: var(--f-heading);
  font-size: 13px;
  letter-spacing: 0.6em;
  color: var(--paper);
}
.tg-field { margin-bottom: 22px; }
.tg-field label {
  display: block;
  font-family: var(--f-heading);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 8px;
}
.tg-field input,
.tg-field textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--ash);
  color: var(--cream);
  font-family: var(--f-type);
  font-size: 16px;
  padding: 12px 14px;
  transition: border-color 0.3s;
  outline: none;
  cursor: none;
}
.tg-field input:focus,
.tg-field textarea:focus {
  border-color: var(--gold);
}
.tg-field input::placeholder,
.tg-field textarea::placeholder {
  color: var(--ash);
  font-style: italic;
}
.tg-note {
  font-family: var(--f-type);
  font-size: 12px;
  color: var(--ash);
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.1em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 80px 40px 30px;
  text-align: center;
  background: var(--black);
  border-top: 1px solid var(--smoke);
}
.ft-card {
  display: inline-block;
  padding: 30px 60px;
  border: 1px solid var(--ash);
  margin-bottom: 40px;
}
.ftc-rule { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 14px; }
.ftc-name {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--bone);
  margin-bottom: 4px;
}
.ftc-role {
  font-family: var(--f-heading);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 14px;
}
.ftc-addr {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--steel);
  margin-top: 14px;
}
.ftc-phone {
  font-family: var(--f-type);
  font-size: 14px;
  color: var(--silver);
  margin-top: 4px;
}
.ft-bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-type);
  font-size: 12px;
  color: var(--ash);
  letter-spacing: 0.1em;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (hover: none), (pointer: coarse) {
  body, a, button, .redacted { cursor: auto !important; }
  .cursor { display: none !important; }
  .blinds { display: none; }
}

@media (max-width: 900px) {
  section { padding: 80px 24px; }
  .nav { padding: 0 20px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 10px; letter-spacing: 0.25em; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-photo { max-width: 280px; margin: 0 auto; }
  .svc-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .neon-sign { top: 6%; right: 4%; }
  .lamp-glow { width: 300px; height: 300px; left: 10%; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero-ctas { flex-direction: column; gap: 14px; align-items: center; }
  .btn { width: 260px; text-align: center; }
  .about-stats { flex-direction: column; gap: 24px; }
  .svc { padding: 28px; }
  .case { padding: 24px; }
  .quote { padding: 24px; }
  .telegram { padding: 24px; }
  .ft-card { padding: 24px 32px; }
  .case-stamp { font-size: 32px; }
  .smoke-canvas { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .rain-canvas, .grain, .blinds { display: none; }
}
