
/* === PORTED closing/contact form bundle === */
.closing {
  background: var(--ink); color: var(--cream);
  padding: var(--xl) 0 var(--lg);
  position: relative; overflow: hidden;
}
.closing::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 70% at 80% 30%, rgba(225,31,38,0.12) 0%, transparent 60%);
}
.closing-bull {
  position: absolute; right: -8%; top: 10%;
  width: 56%; max-width: 760px;
  max-height: 80%;
  opacity: 0.24; pointer-events: none;
  filter: brightness(1.5) contrast(1.05) saturate(0.9) drop-shadow(0 18px 36px rgba(0,0,0,0.5));
}
.closing-bull img {
  width: 100%; height: 100%; object-fit: contain; object-position: right top;
  clip-path: inset(0 0 38% 0);
}
.closing-inner { position: relative; z-index: 2; }
.closing-display {
  font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 700;
  font-size: clamp(44px, 6.2vw, 104px); line-height: 0.9;
  letter-spacing: -0.04em;
}
.closing-display .line { display: block; }
.closing-display .gold {
  background: var(--gold-metal);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.closing-row {
  margin-top: clamp(18px, 2.2vw, 36px);
  padding-top: 24px;
  border-top: 1px solid var(--cream-20);
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 4vw, 64px); align-items: center;
}
.closing-pitch { display: flex; flex-direction: column; gap: 22px; }
.closing-blurb {
  font-size: clamp(17px, 1.3vw, 21px); line-height: 1.35; color: var(--cream-60);
  max-width: 540px;
}
.closing-blurb strong { color: var(--cream); font-weight: 600; }
.closing-promise { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.closing-promise li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 13px; letter-spacing: 0.04em;
  color: var(--cream);
}
.closing-promise li::before {
  content: ""; width: 18px; height: 2px; background: var(--miami);
  flex-shrink: 0;
}

/* === Contact form === */
.contact-form {
  background: rgba(244,231,210,0.04);
  border: 1px solid rgba(244,231,210,0.18);
  padding: clamp(20px, 2vw, 30px);
  display: flex; flex-direction: column; gap: 11px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  position: relative;
}
.contact-form::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg,
    var(--miami) 0%,
    var(--gold-base) 25%,
    var(--pink) 50%,
    var(--red) 75%,
    var(--miami) 100%);
  background-size: 200% 100%;
  animation: cfRainbow 5s linear infinite, cfPulse 2.6s ease-in-out infinite;
}
@keyframes cfRainbow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes cfPulse {
  0%, 100% { opacity: 0.55; height: 2px; }
  50% { opacity: 1; height: 3px; }
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-label {
  font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-60);
}
.cf-label em { color: var(--miami-light); font-style: normal; margin-left: 2px; }
.cf-field input,
.cf-field select,
.cf-field textarea {
  font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 500; font-size: 14px;
  padding: 10px 14px;
  background: rgba(11,9,7,0.55);
  color: var(--cream);
  border: 1px solid rgba(244,231,210,0.18);
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  width: 100%; box-sizing: border-box;
  cursor: none;
}
.cf-field textarea { resize: vertical; min-height: 96px; line-height: 1.45; }
.cf-field input::placeholder, .cf-field textarea::placeholder { color: rgba(244,231,210,0.35); }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  border-color: var(--miami);
  background: rgba(11,9,7,0.7);
  box-shadow: 0 0 0 3px rgba(0,183,212,0.18);
}
.cf-field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--cream-60) 50%), linear-gradient(135deg, var(--cream-60) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.cf-consent {
  display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start;
  font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 12px; line-height: 1.4;
  color: var(--cream-60);
  cursor: none;
}
.cf-consent em { font-style: italic; color: var(--cream); }
.cf-consent input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px;
  background: rgba(11,9,7,0.55);
  border: 1.5px solid var(--cream-40);
  display: grid; place-items: center;
  cursor: none;
  margin: 2px 0 0;
  transition: border-color .2s ease, background .2s ease;
}
.cf-consent input[type="checkbox"]:checked {
  background: var(--miami);
  border-color: var(--miami);
}
.cf-consent input[type="checkbox"]:checked::after {
  content: ""; width: 10px; height: 6px;
  border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg) translate(1px, -1px);
}
.cf-submit {
  margin-top: 8px;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  padding: 16px 22px;
  font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--miami); color: var(--ink);
  border: 2px solid var(--miami);
  cursor: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.cf-submit svg { width: 16px; height: 9px; }
.cf-submit:hover {
  background: var(--red); border-color: var(--red); color: var(--cream);
  transform: translateY(-1px);
}
.cf-fine {
  margin: 0; padding-top: 4px;
  font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream-40); text-align: center;
}
@media (max-width: 900px) {
  .closing-row { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
}


/* === BATCH2 lane number + grey bar === */
/* Lane num top-glyph clipping fix */
.lane-num { padding-top: 0.12em !important; overflow: visible !important; }
.lane-inner { overflow: visible !important; }
/* Homepage hero -> nav grey bar divider */
.hero-topbar { height: 44px; background: #1A1817; border-bottom: 1px solid rgba(191,191,191,0.22); display: block; width: 100%; }




  :root {
    --ink: #0B0907; --ink-15: rgba(11,9,7,0.15); --ink-60: rgba(11,9,7,0.60);
    --cream: #F4E7D2; --cream-90: rgba(244,231,210,0.90); --cream-60: rgba(244,231,210,0.60); --cream-40: rgba(244,231,210,0.40); --cream-20: rgba(244,231,210,0.20);
    --red: #E11F26; --red-deep: #B0161B;
    --miami: #00B7D4; --miami-deep: #079D9D; --miami-light: #5EE5E5;
    --pink: #FF66B2;
    --gold-base: #D4A23A; --gold-bright: #F4DC8E;
    --gold-metal: linear-gradient(180deg, #FFEDB2 0%, #E9C56B 28%, #A07A24 68%, #5C420F 100%);
    --line: rgba(244,231,210,0.18);
    --paper: #F0E3CB; --paper-deep: #E5D5B8;
    --ease: cubic-bezier(0.65, 0, 0.35, 1); --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  }
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-forma-djr-text), "DJR Text", -apple-system, system-ui, sans-serif; overflow-x: hidden; cursor: none; }
  @media (hover: none), (max-width: 900px) { body { cursor: auto; } }
  img { display: block; max-width: 100%; height: auto; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; }

  body::before { content: ""; position: fixed; inset: 0; background: repeating-linear-gradient(180deg, transparent 0 28px, rgba(60,40,15,0.025) 28px 29px), radial-gradient(ellipse at 30% 20%, rgba(180,140,60,0.06) 0%, transparent 55%); pointer-events: none; z-index: 0; opacity: 0.55; }

  .container { width: min(1340px, 94vw); margin: 0 auto; position: relative; z-index: 2; }

  /* Cursor */
  .cursor-bullseye { position: fixed; left: 0; top: 0; width: 0; height: 0; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); }
  .cursor-bullseye .bull-ring { position: absolute; left: 50%; top: 50%; width: 28px; height: 28px; border: 1.5px solid var(--miami); border-radius: 50%; transform: translate(-50%, -50%); transition: width .25s, height .25s, border-color .25s; }
  .cursor-bullseye .bull-ring.r2 { width: 16px; height: 16px; }
  .cursor-bullseye .bull-ring.r3 { width: 6px; height: 6px; background: var(--miami); }
  .cursor-bullseye.is-hover .bull-ring.r1 { width: 56px; height: 56px; border-color: var(--red); }
  .cursor-bullseye.is-hover .bull-ring.r2 { width: 36px; height: 36px; border-color: var(--red); }
  .cursor-bullseye.is-hover .bull-ring.r3 { background: var(--gold-bright); border-color: var(--gold-bright); }
  @media (hover: none), (max-width: 900px) { .cursor-bullseye { display: none; } }

  /* Masthead */
  .masthead { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 24px clamp(28px, 4vw, 64px); background: var(--ink); color: var(--cream); border-bottom: 1px solid rgba(244,231,210,0.08); }
  .masthead::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: linear-gradient(90deg, transparent, var(--miami) 30%, var(--pink) 70%, transparent); opacity: 0.5; }
  .mast-mark img { height: 56px; transition: transform .3s; }
  .mast-mark:hover img { transform: rotate(-3deg); }
  .mast-nav { display: flex; align-items: center; gap: 36px; }
  .mast-link { font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream); position: relative; transition: color .25s; }
  .mast-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: linear-gradient(90deg, var(--miami), var(--pink)); transition: right .3s; }
  .mast-link:hover, .mast-link.is-current { color: var(--miami-light); }
  .mast-link:hover::after, .mast-link.is-current::after { right: 0; }
  .btn-blue { display: inline-flex; align-items: center; gap: 12px; padding: 14px 22px; background: var(--miami); color: var(--ink); border: 2px solid var(--miami); font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)); transition: background .25s, color .25s, border-color .25s, transform .2s, box-shadow .25s; }
  .btn-blue:hover { background: var(--red); border-color: var(--red); color: var(--cream); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(225,31,38,0.36); }
  .btn-blue svg { width: 14px; height: 8px; }

  /* ============= LANE BAR ============= */
  .ib-lane-bar { margin-top: 92px; padding: 14px 0; background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; z-index: 3; }
  .ib-lane-bar-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--cream-60); }
  .ib-lane-bar-inner strong { color: var(--gold-bright); }
  .ib-lane-bar .lane-no { padding: 4px 10px; background: rgba(244,220,142,0.12); border: 1px solid rgba(244,220,142,0.4); color: var(--gold-bright); }
  .ib-lane-bar a { color: var(--miami-light); transition: color .25s; }
  .ib-lane-bar a:hover { color: var(--red); }
  .ib-lane-bar .siblings { display: inline-flex; gap: 12px; margin-left: auto; flex-wrap: wrap; }
  .ib-lane-bar .siblings .sib { color: var(--cream-40); }
  .ib-lane-bar .siblings .sib:hover { color: var(--cream); }

  /* ============= INBOX HEAD BAR (send/deliver) ============= */
  .ib-head-bar {
    background:
      linear-gradient(180deg, rgba(26,19,10,0.92) 0%, var(--ink) 100%),
      repeating-linear-gradient(90deg, transparent 0 3px, rgba(244,220,142,0.04) 3px 4px);
    padding: 13px 0; position: relative;
    border-top: 1px solid rgba(244,220,142,0.18);
    border-bottom: 1px solid rgba(244,220,142,0.3);
    overflow: hidden;
  }
  .ib-head-bar::before, .ib-head-bar::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 3; pointer-events: none;
  }
  .ib-head-bar::before { left: 0; background: linear-gradient(90deg, var(--ink) 0%, transparent 100%); }
  .ib-head-bar::after { right: 0; background: linear-gradient(270deg, var(--ink) 0%, transparent 100%); }
  .ib-head-bar-track {
    display: flex; gap: 28px; white-space: nowrap; align-items: center;
    animation: ibSend 50s linear infinite;
    will-change: transform;
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 11.5px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--cream-60);
  }
  @keyframes ibSend { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  .ib-head-cell { flex-shrink: 0; display: inline-flex; align-items: center; gap: 8px; }
  .ib-head-cell strong { color: var(--gold-bright); letter-spacing: 0.18em; }
  .ib-head-cell.sep { opacity: 0.35; color: rgba(244,231,210,0.4); }
  .ib-head-cell .envelope { color: var(--gold-bright); animation: envFly 2.4s ease-in-out infinite; }
  @keyframes envFly { 0%, 75%, 100% { transform: translateX(0); } 85% { transform: translateX(3px) rotate(-6deg); } 95% { transform: translateX(0); } }
  .ib-head-cell .ind {
    display: inline-flex; align-items: center; justify-content: center;
    width: 14px; height: 14px; line-height: 1; font-size: 9px;
    border-radius: 2px; flex-shrink: 0;
  }
  .ib-head-cell .ind--up { color: #4ade80; background: rgba(74,222,128,0.10); border: 1px solid rgba(74,222,128,0.35); }
  .ib-head-cell .ind--down { color: #4ade80; background: rgba(74,222,128,0.10); border: 1px solid rgba(74,222,128,0.35); }
  .ib-head-cell .ind--loss { color: #f87171; background: rgba(248,113,113,0.10); border: 1px solid rgba(248,113,113,0.35); }
  .ib-head-cell.is-gold strong { color: var(--gold-bright); }
  .ib-head-cell.is-miami strong { color: var(--miami-light); }
  .ib-head-cell.is-pink strong { color: var(--pink); }
  .ib-head-cell .pill { padding: 2px 8px; border: 1px solid currentColor; color: #4ade80; font-size: 9.5px; letter-spacing: 0.18em; border-radius: 2px; opacity: 0.85; }

  /* ============= HERO · INBOX MOCK ============= */
  .ib-hero { padding: 60px 0 80px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
  .ib-hero-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(36px, 4vw, 70px); align-items: center; }

  .ib-status { display: inline-flex; align-items: center; gap: 12px; padding: 6px 14px; background: rgba(212,162,58,0.10); border: 1px solid var(--gold-base); font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-base); margin-bottom: 22px; }
  .ib-status::before { content: ""; width: 8px; height: 8px; background: var(--gold-base); border-radius: 50%; box-shadow: 0 0 12px var(--gold-base); animation: pulse 1.5s ease-in-out infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }

  .ib-hero-kicker { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 800; font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink-60); margin-bottom: 12px; }
  .ib-hero-title { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; font-size: clamp(48px, 6.5vw, 100px); line-height: 0.95; letter-spacing: -0.03em; margin: 0 0 22px; color: var(--ink); }
  .ib-hero-title em { font-style: italic; font-weight: 700; color: var(--ink-60); }
  .ib-hero-title .gold { background: var(--gold-metal); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
  .ib-hero-title .accent-red { color: var(--red); }

  .ib-hero-lede { font-family: var(--font-forma-djr-text), "DJR Text"; font-size: clamp(15px, 1.05vw, 18px); line-height: 1.65; color: var(--ink); margin: 0 0 28px; max-width: 540px; }
  .ib-hero-lede strong { color: var(--red); }
  .ib-hero-ctas { display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  .ib-hero-ctas .meta { font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-60); }
  .ib-hero-ctas .meta strong { color: var(--red); }

  /* Mailbox UI */
  .ib-mail {
    position: relative;
    background: linear-gradient(180deg, #0a0e12 0%, var(--ink) 100%);
    border: 1px solid var(--line);
    box-shadow: inset 0 1px 0 rgba(244,220,142,0.18), 0 30px 80px rgba(0,0,0,0.4);
    clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
    overflow: hidden;
  }
  .ib-mail-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 22px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, #1a130a 0%, #0a0e12 100%);
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10.5px;
    letter-spacing: 0.3em; text-transform: uppercase;
  }
  .ib-mail-bar .label { color: var(--gold-bright); }
  .ib-mail-bar .count {
    padding: 3px 9px;
    background: var(--red); color: var(--cream);
    font-size: 9px; letter-spacing: 0.2em;
  }
  .ib-mail-bar .sort { color: var(--cream-60); }

  .ib-thread {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    gap: 14px;
    padding: 16px 22px;
    border-bottom: 1px solid var(--line);
    align-items: center;
    transition: background .25s;
    cursor: none;
  }
  .ib-thread:hover { background: rgba(244,220,142,0.06); }
  .ib-thread.unread .ib-from { color: var(--cream); font-weight: 800; }
  .ib-thread.unread .ib-subj { color: var(--cream); font-weight: 700; }
  .ib-thread.unread::before {
    content: ""; width: 8px; height: 8px;
    background: var(--miami); border-radius: 50%;
    box-shadow: 0 0 8px var(--miami);
  }
  .ib-thread .from-wrap { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
  .ib-from {
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 12px;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--cream-60);
  }
  .ib-from .badge {
    margin-left: 8px;
    padding: 2px 7px;
    background: rgba(244,220,142,0.12);
    color: var(--gold-bright);
    border: 1px solid rgba(244,220,142,0.35);
    font-size: 9px; letter-spacing: 0.18em;
  }
  .ib-subj {
    font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 700; font-size: 16px;
    line-height: 1.2; letter-spacing: -0.005em;
    color: var(--cream-90);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .ib-thread .stats {
    display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
  }
  .ib-thread .open {
    font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900;
    font-size: 18px; letter-spacing: -0.005em;
    color: var(--gold-bright);
  }
  .ib-thread .time {
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 9.5px;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--cream-40);
  }

  .ib-mail-foot {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 22px;
    border-top: 1px solid var(--line);
    background: rgba(244,220,142,0.04);
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10px;
    letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--cream-60);
  }
  .ib-mail-foot strong { color: var(--gold-bright); }
  .ib-mail-foot .arrow { color: var(--miami); }

  @media (max-width: 1000px) { .ib-hero-grid { grid-template-columns: 1fr; } }

  /* ============= SECTION COMMON ============= */
  .ib-section { padding: clamp(60px, 7vh, 100px) 0; position: relative; }
  .ib-section-eyebrow { font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-base); margin-bottom: 14px; display: inline-flex; align-items: center; gap: 12px; }
  .ib-section-eyebrow::before { content: "▮"; color: var(--red); }
  .ib-section-h { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; font-size: clamp(36px, 5vw, 72px); line-height: 0.98; letter-spacing: -0.025em; margin: 0 0 22px; color: var(--ink); }
  .ib-section-h em { font-style: italic; font-weight: 400; color: var(--ink-60); }
  .ib-section-h .accent-red { color: var(--red); }
  .ib-section-h .gold { background: var(--gold-metal); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
  .ib-section-deck { font-family: var(--font-forma-djr-text), "DJR Text"; font-size: clamp(15px, 1.05vw, 18px); line-height: 1.6; color: var(--ink); max-width: 720px; margin: 0 0 38px; }
  .ib-section-deck strong { color: var(--red); }

  /* Ink-section override for sections staying dark (receipts, closing) */
  .ib-section--ink .ib-section-eyebrow { color: var(--gold-bright); }
  .ib-section--ink .ib-section-eyebrow::before { color: var(--miami); }
  .ib-section--ink .ib-section-h { color: var(--cream); }
  .ib-section--ink .ib-section-h em { color: var(--cream-40); }
  .ib-section--ink .ib-section-deck { color: var(--cream-90); }
  .ib-section--ink .ib-section-deck strong { color: var(--gold-bright); }

  /* ============= 3 PROGRAMS ============= */
  .ib-progs { border-top: 1px solid var(--ink-15); background: var(--paper); }
  .ib-prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
  .ib-prog { position: relative; padding: 28px 24px 24px; background: var(--ink); border: 1px solid var(--line); transition: transform .35s, border-color .35s, box-shadow .35s; overflow: hidden; clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px)); }
  .ib-prog::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--gold-bright), var(--miami)); }
  .ib-prog:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 22px 50px rgba(225,31,38,0.18); }
  .ib-prog-head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 16px; }
  .ib-prog-ix { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; font-size: 36px; line-height: 1; letter-spacing: -0.02em; background: var(--gold-metal); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
  .ib-prog-status { font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--miami-light); }
  .ib-prog-name { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 800; font-size: 24px; line-height: 1.1; color: var(--cream); margin: 0 0 8px; }
  .ib-prog-tools { font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 14px; }
  .ib-prog-desc { font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 13.5px; line-height: 1.55; color: var(--cream-90); margin: 0 0 16px; }
  .ib-prog-list { list-style: none; padding: 0; margin: 14px 0 0; padding-top: 14px; border-top: 1px solid var(--line); }
  .ib-prog-list li { padding: 7px 0; font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 13px; line-height: 1.45; color: var(--cream-90); display: flex; align-items: center; gap: 10px; }
  .ib-prog-list li::before { content: "▸"; color: var(--gold-bright); font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; }
  @media (max-width: 900px) { .ib-prog-grid { grid-template-columns: 1fr; } }

  /* ============= OPEN-RATE METERS ============= */
  .ib-meters { border-top: 1px solid var(--ink-15); background: var(--paper-deep); }
  .ib-meters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 26px; }
  .ib-meter { padding: 22px; background: var(--cream); border: 1px solid var(--ink-15); transition: transform .35s, border-color .35s, box-shadow .35s; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px)); }
  .ib-meter:hover { transform: translateY(-3px); border-color: var(--red); box-shadow: 0 16px 32px rgba(11,9,7,0.12); }
  .ib-meter-tag { display: flex; justify-content: space-between; align-items: center; padding-bottom: 10px; border-bottom: 1px solid var(--ink-15); margin-bottom: 14px; font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-60); }
  .ib-meter-tag .ix { color: var(--red); font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; font-size: 22px; letter-spacing: -0.02em; }
  .ib-meter-name { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 800; font-size: 16px; line-height: 1.1; color: var(--ink); margin: 0 0 14px; }

  /* Ring */
  .ib-ring-wrap { position: relative; width: 96px; height: 96px; margin: 0 auto 12px; }
  .ib-ring-wrap svg { width: 100%; height: 100%; transform: rotate(-90deg); }
  .ib-ring-bg { fill: none; stroke: rgba(11,9,7,0.08); stroke-width: 8; }
  .ib-ring-fg { fill: none; stroke: url(#ibgrad); stroke-width: 8; stroke-linecap: round; }
  .ib-ring-num {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900;
    font-size: 22px; letter-spacing: -0.015em;
    background: var(--gold-metal);
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
  }
  .ib-meter-stat { text-align: center; font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-60); }
  .ib-meter-stat strong { color: var(--red); }
  @media (max-width: 1000px) { .ib-meters-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .ib-meters-grid { grid-template-columns: 1fr; } }

  /* ============= RECEIPTS ============= */
  .ib-receipts { background: var(--ink); border-top: 1px solid var(--line); }
  .ib-rec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 26px; }
  .ib-rec { padding: 32px 28px; background: linear-gradient(180deg, rgba(11,9,7,0.85) 0%, var(--ink) 100%); border: 1px solid rgba(244,220,142,0.35); transition: transform .35s, border-color .35s, box-shadow .35s; display: flex; flex-direction: column; clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px)); }
  .ib-rec:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 22px 50px rgba(225,31,38,0.22); }
  .ib-rec-tag { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid rgba(244,220,142,0.25); margin-bottom: 18px; font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; }
  .ib-rec-tag .ix { color: var(--gold-bright); }
  .ib-rec-tag .ch { color: var(--miami-light); }
  .ib-rec-name { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 800; font-size: 24px; line-height: 1.1; color: var(--cream); margin: 0 0 14px; }
  .ib-rec-big { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; font-size: clamp(48px, 5vw, 72px); line-height: 0.95; background: var(--gold-metal); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; margin-bottom: 6px; font-variant-numeric: tabular-nums; }
  .ib-rec-bigl { font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--cream-60); margin-bottom: 20px; }
  .ib-rec-blurb { font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 14px; line-height: 1.6; color: var(--cream-90); margin: 0 0 22px; flex: 1; }
  .ib-rec-link { display: inline-flex; align-items: center; gap: 8px; padding-top: 14px; border-top: 1px solid rgba(244,220,142,0.25); font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--miami-light); transition: color .25s; }
  .ib-rec-link svg { width: 14px; height: 8px; transition: transform .25s; }
  .ib-rec:hover .ib-rec-link { color: var(--red); }
  .ib-rec:hover .ib-rec-link svg { transform: translateX(4px); }
  @media (max-width: 900px) { .ib-rec-grid { grid-template-columns: 1fr; } }

  /* ============= BENCH ============= */
  .ib-bench { background: var(--paper); border-top: 1px solid var(--ink-15); }
  .ib-bench-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; margin-top: 28px; }
  .ib-bench-photo { position: relative; width: 100%; aspect-ratio: 4 / 3; background: var(--ink); border: 1px solid var(--ink); overflow: hidden; box-shadow: 0 20px 50px rgba(11,9,7,0.18); clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px)); }
  .ib-bench-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
  .ib-bench-photo .tag { position: absolute; bottom: 14px; left: 16px; padding: 5px 12px; background: var(--cream); color: var(--ink); font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; }
  .ib-bench-body h3 { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; font-size: clamp(30px, 3.4vw, 52px); line-height: 1.02; letter-spacing: -0.025em; margin: 0 0 16px; color: var(--ink); }
  .ib-bench-body h3 em { font-style: italic; font-weight: 400; color: var(--ink-60); }
  .ib-bench-body h3 .accent-red { color: var(--red); }
  .ib-bench-body p { font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 15.5px; line-height: 1.6; color: var(--ink); margin: 0 0 14px; }
  .ib-bench-body p strong { color: var(--red); }
  .ib-bench-promises { list-style: none; padding: 0; margin: 24px 0 0; border-top: 1px solid var(--ink-15); }
  .ib-bench-promises li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--ink-15); font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 14px; line-height: 1.5; color: var(--ink); }
  .ib-bench-promises li:last-child { border-bottom: none; }
  .ib-bench-promises li::before { content: "▸"; color: var(--red); font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; font-size: 16px; flex-shrink: 0; }
  .ib-bench-promises li strong { color: var(--red); }
  @media (max-width: 1000px) { .ib-bench-grid { grid-template-columns: 1fr; } }

  /* ============= CLOSING ============= */
  .ib-close { padding: 90px 0 110px; background: radial-gradient(ellipse at center, #1a130a 0%, var(--ink) 70%); text-align: center; position: relative; overflow: hidden; border-top: 1px solid rgba(244,220,142,0.3); }
  .ib-close::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(244,220,142,0.14) 0%, transparent 55%); }
  .ib-close-inner { position: relative; max-width: 760px; margin: 0 auto; }
  .ib-close h2 { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; font-size: clamp(40px, 5vw, 80px); line-height: 0.96; letter-spacing: -0.025em; color: var(--cream); margin: 0 0 18px; }
  .ib-close h2 .gold { background: var(--gold-metal); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
  .ib-close h2 .accent-red { color: var(--red); }
  .ib-close p { font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 17px; line-height: 1.6; color: var(--cream-90); margin: 0 auto 32px; max-width: 580px; }
  .ib-close-cta { display: inline-flex; align-items: center; gap: 14px; padding: 18px 34px; background: var(--miami); color: var(--ink); border: 2px solid var(--miami); font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; cursor: none; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px)); transition: background .25s, color .25s, border-color .25s, transform .2s, box-shadow .25s; }
  .ib-close-cta:hover { background: var(--red); border-color: var(--red); color: var(--cream); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(225,31,38,0.42); }
  .ib-close-cta svg { width: 16px; height: 9px; }

  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
  .reveal.is-in { opacity: 1; transform: translateY(0); }
  .reveal-1 { transition-delay: .08s; }
  .reveal-2 { transition-delay: .16s; }
  .reveal-3 { transition-delay: .24s; }

  /* === Responsive baseline + hero font fallback === */
  img, svg { max-width: 100%; height: auto; }
  @media (max-width: 600px) {
    .ib-hero-title { font-size: clamp(40px, 11vw, 56px); }
    .ib-section-h, .ib-close h2 { font-size: clamp(30px, 9vw, 42px); }
    .ib-bench-body h3 { font-size: clamp(26px, 8vw, 38px); }
    .ib-rec-big { font-size: clamp(36px, 11vw, 52px); }
  }
  @media (max-width: 380px) {
    .ib-hero-title { font-size: 38px; }
  }
/* === IMAGE QUALITY SAFEGUARDS === */
/* Optimize rendering for raster images on retina */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
/* Force smooth interpolation for explicitly sized photos */
img[src*="storyblok"], img[src*="webp"], img[src*=".jpg"], img[src*=".png"] {
  image-rendering: auto;
}
/* Object-position defaults so portraits don't get face-cropped */
img.headshot, [class*="-headshot"] img, [class*="team-card"] img, [class*="ds-team"] img, [class*="ds-roster"] img {
  object-fit: cover;
  object-position: center top;
}



/* Cap image display sizes proportional to Storyblok source resolution so upscale-blur stops */
img[src*="storyblok.com/f/1023744/380x640/"] { max-width: 570px; }
img[src*="storyblok.com/f/1023744/262x357/"] { max-width: 393px; }
img[src*="storyblok.com/f/1023744/600x918/"] { max-width: 900px; }
img[src*="storyblok.com/f/1023744/1083x747/"] { max-width: 1625px; }
img[src*="storyblok.com/f/1023744/1137x762/"] { max-width: 1705px; }
img[src*="storyblok.com/f/1023744/381623/"] { max-width: 100%; }
@media (min-width: 1101px) {
  .work-grid { max-width: 1140px; margin: 0 auto; }
}


/* contact section: match homepage (tightened) */
.closing{padding:clamp(44px,5vw,76px) 0 clamp(36px,4vw,60px);}
.closing-display{font-size:clamp(38px,4.8vw,78px);line-height:0.92;}
.closing-row{margin-top:clamp(14px,1.6vw,26px);padding-top:20px;gap:clamp(28px,3.2vw,52px);align-items:center;}
.contact-form{padding:clamp(18px,1.8vw,26px);gap:10px;}
.cf-field input,.cf-field select,.cf-field textarea{padding:9px 13px;}
.cf-field textarea{min-height:80px;}
.closing-blurb{max-width:480px;}

/* contact: shine background + tighter (Alex) */
.closing{padding:clamp(38px,4.2vw,64px) 0 clamp(32px,3.4vw,52px);}
.closing::before{background:radial-gradient(155% 80% at 50% -6%,rgba(248,240,224,0.46) 0%,rgba(244,231,210,0.20) 24%,rgba(244,231,210,0.06) 46%,transparent 64%),radial-gradient(62% 62% at 80% 26%,rgba(0,183,212,0.16) 0%,transparent 60%),radial-gradient(55% 55% at 16% 92%,rgba(225,31,38,0.10) 0%,transparent 62%) !important;}
.closing::after{content:"";position:absolute;left:0;right:0;top:0;height:1px;pointer-events:none;background:linear-gradient(90deg,transparent,rgba(244,231,210,0.35),rgba(0,183,212,0.4),rgba(244,231,210,0.35),transparent);}
.closing-inner{max-width:1180px;margin:0 auto;}
.closing-display{font-size:clamp(34px,4.2vw,68px);line-height:0.94;}
.closing-row{margin-top:clamp(10px,1.2vw,20px);padding-top:16px;gap:clamp(24px,2.8vw,46px);align-items:center;}