/* ==========================================================================
   CALUPOH FILMS L.L.C. — FILM CUTTING ROOM STYLESHEET
   Dark theme, safelight-rose accent, pure-CSS cutting room motif.
   Palette:
     body charcoal          #17171B   neutral midnight neutral grade
     projection silver      #ECECE4   primary text
     safelight rose         #B23A48   primary accent
     bench panel            #1F1F25   raised raised panels
     sump deep              #0E0E12   deeper darker panels
     leader grey            #8B8B93   secondary
     cue gold               #C9A24B   tertiary, one dot row only
     hairline               #2B2B32   thin separators
   No gradients on text, no semi-transparent colors, no rgba(), no opacity.
   ========================================================================== */

body {
  margin: 0;
  font-size: 16px;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.7;
  background-color: #17171B;
  color: #ECECE4;
  overflow-x: hidden;
}

:root {
  --bg: #17171B;
  --silver: #ECECE4;
  --rose: #B23A48;
  --panel: #1F1F25;
  --deep: #0E0E12;
  --grey: #8B8B93;
  --gold: #C9A24B;
  --hair: #2B2B32;
}

a {
  color: #D95A66;
  text-decoration: none;
}
a:hover {
  color: #ECECE4;
  text-decoration: underline;
}
.splicestrip a {
  color: #ECECE4;
}

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  color: #ECECE4;
}
h2 {
  font-size: 2rem;
  margin: 0 0 1rem;
}
p {
  margin: 0 0 1rem;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   SPLICE STRIP HEADER — one long horizontal film base with sprocket holes
   ========================================================================== */
.splicestrip {
  position: relative;
  background-color: #0E0E12;
  border-bottom: 1px solid #2B2B32;
}
.splicestrip .base {
  max-width: 1400px;
  margin: 0 auto;
  padding: 34px 24px 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}
/* sprocket holes top */
.splicestrip .base::before {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  top: 10px;
  height: 6px;
  background-image: radial-gradient(circle, #17171B 0, #17171B 2px, #2B2B32 3px);
  background-size: 22px 14px;
  background-position: center left;
}
/* sprocket holes bottom */
.splicestrip .base::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 8px;
  height: 6px;
  background-image: radial-gradient(circle, #17171B 0, #17171B 2px, #2B2B32 3px);
  background-size: 22px 14px;
  background-position: center left;
}
.splicestrip .brandside {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.splicestrip .leaderTag {
  background-color: #17171B;
  border: 1px solid #8B8B93;
  padding: 6px 12px 4px;
  font-family: 'Courier New', Courier, monospace;
}
.splicestrip .brandName {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #ECECE4;
}
.splicestrip .tagline {
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: #8B8B93;
  text-transform: uppercase;
}
.splicestrip .countdownDots {
  display: block;
  font-size: 0.7rem;
  color: #8B8B93;
  letter-spacing: 3px;
}
.splicestrip .dotRow {
  width: 90px;
  height: 6px;
  background-image: radial-gradient(circle, #8B8B93 0, #8B8B93 2px, #0E0E12 3px);
  background-size: 14px 14px;
  background-position: left center;
}
.splicestrip .splices {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.splicestrip .isplice {
  list-style: none;
  margin: 0;
}
.splicestrip .spliceLink {
  position: relative;
  display: inline-block;
  padding: 6px 14px;
  background-color: #1F1F25;
  border: 1px solid #2B2B32;
  font-family: 'Courier New', Courier, monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}
/* diagonal splice marks at each end */
.splicestrip .spliceLink::before,
.splicestrip .spliceLink::after {
  content: '';
  position: absolute;
  top: -1px;
  bottom: -1px;
  width: 8px;
  background-image: repeating-linear-gradient(45deg, #B23A48 0, #B23A48 2px, #0E0E12 2px, #0E0E12 4px);
}
.splicestrip .spliceLink::before {
  left: 0;
}
.splicestrip .spliceLink::after {
  right: 0;
}
.splicestrip .spliceLink:hover {
  background-color: #B23A48;
  color: #17171B;
  text-decoration: none;
}
.splicestrip .crank {
  width: 40px;
  height: 40px;
  border: 1px solid #8B8B93;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle, #1F1F25 0, #1F1F25 40%, #0E0E12 100%);
  flex-shrink: 0;
}
.splicestrip .crank::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background-color: #B23A48;
  border-radius: 50%;
}
.splicestrip .crank::after {
  content: '';
  position: absolute;
  right: -2px;
  top: -4px;
  width: 12px;
  height: 3px;
  background-color: #8B8B93;
}
@media (max-width: 720px) {
  .splicestrip .base {
    flex-direction: column;
    align-items: flex-start;
  }
  .splicestrip .splices {
    width: 100%;
  }
  .splicestrip .crank {
    display: none;
  }
}
/* mobile nav toggle button */
.navToggle {
  display: none;
  background: none;
  border: 1px solid #8B8B93;
  color: #ECECE4;
  font-family: 'Courier New', Courier, monospace;
  padding: 8px 12px;
  cursor: pointer;
}
@media (max-width: 720px) {
  .navToggle {
    display: inline-block;
  }
  .hiddenOnMobile .splices {
    display: none;
  }
  .hiddenOnMobile.openSplices .splices {
    display: flex;
  }
}

/* ==========================================================================
   FLATBED BENCH HERO
   ========================================================================== */
.flatbed {
  background-color: #17171B;
  border-bottom: 1px solid #2B2B32;
}
.flatbed .fdInside {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 24px 70px;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .flatbed .fdInside {
    grid-template-columns: 1fr;
  }
}
.flatbed .headline {
  font-size: 3rem;
  line-height: 1.1;
  color: #ECECE4;
}
@media (max-width: 720px) {
  .flatbed .headline {
    font-size: 2.2rem;
  }
}
.flatbed .roseWord {
  color: #B23A48;
}
.flatbed .rule {
  height: 1px;
  background-color: #8B8B93;
  position: relative;
  margin: 8px 0;
}
.flatbed .rule::after {
  content: 'x';
  position: absolute;
  right: -6px;
  top: -11px;
  color: #B23A48;
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.1rem;
}
.flatbed .news {
  font-size: 1.1rem;
  color: #D9D9CF;
  max-width: 60ch;
}
.flatbed .ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.flatbed .spliceBtn {
  display: inline-block;
  position: relative;
  background-color: #0E0E12;
  border: 1px solid #8B8B93;
  padding: 10px 20px;
  font-family: 'Courier New', Courier, monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: #ECECE4;
}
.flatbed .spliceBtn.primary {
  background-color: #B23A48;
  border-color: #B23A48;
  color: #17171B;
}
.flatbed .spliceBtn:hover {
  text-decoration: none;
  outline: 1px solid #ECECE4;
}
.flatbed .tableScene {
  position: relative;
  background-color: #1F1F25;
  border: 1px solid #2B2B32;
  border-radius: 8px;
  padding: 20px;
  min-height: 340px;
}
/* platters */
.flatbed .platter {
  position: absolute;
  border-radius: 50%;
  border: 2px solid #8B8B93;
  background-color: #0E0E12;
}
.flatbed .platterBig {
  width: 150px;
  height: 150px;
  left: 6%;
  bottom: 20px;
}
.flatbed .platterSide {
  width: 90px;
  height: 90px;
  right: 8%;
  bottom: 20px;
}
.flatbed .coilSpiral {
  position: absolute;
  left: 6%;
  bottom: 22px;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 14px solid #B23A48;
  border-top-color: #0E0E12;
  border-bottom-color: #0E0E12;
  transform: rotate(20deg);
}
/* viewing screen */
.flatbed .screen {
  position: absolute;
  top: 2%;
  left: 28%;
  width: 200px;
  height: 130px;
  background-color: #0E0E12;
  border: 3px solid #8B8B93;
  border-radius: 3px;
  box-shadow: 0 0 0 4px #1F1F25, 0 0 0 6px #2B2B32;
}
.flatbed .litFrame {
  position: absolute;
  inset: 10%;
  background:
    linear-gradient(#ECECE4 0 0) no-repeat 10% 30% / 60% 6px,
    linear-gradient(#ECECE4 0 0) no-repeat 10% 55% / 60% 6px,
    #2B2B32;
  border: 1px solid #17171B;
}
.flatbed .litFrame::after {
  content: '';
  position: absolute;
  right: 12%;
  top: 12%;
  width: 30px;
  height: 40px;
  background-color: #B23A48;
}
/* film threading */
.flatbed .filmLine {
  position: absolute;
  top: 12%;
  left: 0;
  width: 80%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #8B8B93 0, #8B8B93 10px, #17171B 10px, #17171B 12px);
  transform: rotate(-6deg);
  transform-origin: left center;
}
.flatbed .tableLegs {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 6px;
  height: 16px;
  background-color: #0E0E12;
}
@media (max-width: 600px) {
  .flatbed .tableScene {
    min-height: 220px;
  }
  .flatbed .screen {
    width: 140px;
    height: 90px;
  }
}

/* ==========================================================================
   TRIMMING BINS — hanging film strips of different lengths
   ========================================================================== */
.trimbins {
  background-color: #0E0E12;
}
.trimbins .tbHead {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 10px;
}
.trimbins .tbHead h2 {
  color: #ECECE4;
}
.trimbins .tbHead p {
  color: #8B8B93;
  max-width: 70ch;
}
.trimbins .tbHead .weave {
  margin-top: 14px;
  max-width: 86ch;
  background-color: #1F1F25;
  border: 1px solid #2B2B32;
  padding: 16px 20px;
}
.trimbins .tbHead .weave p {
  color: #D6D6CC;
  margin: 0 0 12px;
}
.trimbins .tbHead .weave p:last-child {
  margin-bottom: 0;
}
.trimbins .tbHead .weave a {
  color: #EE7F89;
  text-decoration: underline;
}
.trimbins .rack {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 24px 60px;
}
/* hanging rail */
.trimbins .rack::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #8B8B93;
}
/* staggered hanging pins */
.trimbins .rackPin {
  position: absolute;
  top: 6px;
  width: 6px;
  height: 26px;
  background-color: #8B8B93;
}
.trimbins .pinA { left: 6%; }
.trimbins .pinB { left: 26%; }
.trimbins .pinC { left: 50%; }
.trimbins .pinD { left: 72%; }
.trimbins .pinE { left: 40%; }
.trimbins .pinF { left: 88%; }

/* a film strip, base is a thin vertical tape */
.trimbins .strip {
  position: relative;
  background-color: #17171B;
  border: 1px solid #2B2B32;
  padding: 18px 22px;
  max-width: 720px;
  box-shadow: 0 6px 16px #000000;
}
.trimbins .stripA { width: 60%; margin: 40px auto 0 4%; }
.trimbins .stripB { width: 72%; margin: 46px 4% 0 auto; }
.trimbins .stripC { width: 55%; margin: 50px auto 0 26%; }
.trimbins .stripD { width: 68%; margin: 44px 0 0 30%; }
.trimbins .stripE { width: 62%; margin: 42px 30% 0 auto; }
.trimbins .stripF { width: 76%; margin: 48px 4% 0 12%; }
/* sprocket holes along strip top/bottom edges */
.trimbins .strip::before,
.trimbins .strip::after {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  height: 5px;
  background-image: radial-gradient(circle, #0E0E12 0, #0E0E12 2px, #2B2B32 3px);
  background-size: 20px 14px;
  background-position: center center;
}
.trimbins .strip::before { top: 0; }
.trimbins .strip::after { bottom: 0; }
.trimbins .frameBlock {
  position: relative;
  background-color: #1F1F25;
  padding: 20px 22px 20px 26px;
  margin: 2px;
  border-left: 6px solid #B23A48;
  border-top: 1px solid #2B2B32;
  border-right: 1px solid #2B2B32;
  border-bottom: 1px solid #2B2B32;
}
.trimbins .frameBlock h3 {
  margin: 0 0 8px;
  color: #ECECE4;
  font-size: 1.5rem;
}
.trimbins .frameBlock h3 a {
  color: #ECECE4;
  text-decoration: none;
}
.trimbins .frameBlock h3 a:hover {
  color: #B23A48;
  text-decoration: underline;
}
.trimbins .frameBlock p {
  margin: 0 0 10px;
  color: #D9D9CF;
}
.trimbins .frameBlock p:last-child {
  margin-bottom: 0;
}
.trimbins .frameBlock::after {
  content: '';
  position: absolute;
  left: 0;
  right: auto;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background-color: #8B8B93;
}
/* loose coil below two strips */
.trimbins .coil {
  height: 18px;
  margin: 0 0 30px 30%;
  width: 120px;
  background: repeating-linear-gradient(90deg, #8B8B93 0, #8B8B93 14px, #0E0E12 14px, #0E0E12 16px);
  border-radius: 12px;
}
/* a sync block clamping a pair */
.trimbins .syncBlock {
  position: relative;
  margin: -20px auto 26px 60%;
  width: 260px;
  height: 46px;
  background-color: #1F1F25;
  border: 1px solid #8B8B93;
  border-radius: 4px;
}
.trimbins .syncBlock::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 19px;
  height: 6px;
  background-image: radial-gradient(circle at 40% 100%, #B23A48 0, #B23A48 2px, #8B8B93 3px);
}
/* trimming bin at base with discarded strips */
.trimbins .bin {
  margin: 30px 0 0 20%;
  width: 260px;
  height: 60px;
  background-color: #1F1F25;
  border: 1px solid #2B2B32;
  border-top: 4px solid #8B8B93;
  position: relative;
}
.trimbins .bin::before,
.trimbins .bin::after {
  content: '';
  position: absolute;
  top: -34px;
  height: 34px;
  width: 60px;
  background: repeating-linear-gradient(90deg, #8B8B93 0, #8B8B93 8px, #17171B 8px, #17171B 10px);
  transform: rotate(8deg);
}
.trimbins .bin::before { left: 10px; }
.trimbins .bin::after { right: 8px; transform: rotate(-10deg); }
@media (max-width: 820px) {
  .trimbins .strip { width: 90% !important; margin-left: auto !important; margin-right: auto !important; }
}
@media (max-width: 540px) {
  .trimbins .rackPin { display: none; }
  .trimbins .strip { width: 94% !important; }
}

/* reveal utility classes (noscript safe) */
.rv {
  opacity: 1;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: translateY(0);
}
html.js .rv {
  opacity: 0;
  transform: translateY(18px);
}
html.js .rv.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   ACCENT STRIP — PICTURE LOCK
   ========================================================================== */
.pictureLock {
  background-color: #B23A48;
}
.pictureLock .plInside {
  max-width: 1200px;
  margin: 0 auto;
  padding: 42px 24px;
  text-align: center;
}
.pictureLock p {
  color: #F6EFEF;
  font-size: 1.15rem;
  margin: 0 auto;
  max-width: 74ch;
}
.pictureLock strong {
  color: #17171B;
}
.pictureLock .plLabel {
  font-family: 'Courier New', Courier, monospace;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  color: #F6EFEF;
}

/* ==========================================================================
   CAN STACK FOOTER — film cans seen from the side
   ========================================================================== */
.canstack {
  background-color: #0E0E12;
  border-top: 1px solid #2B2B32;
}
.canstack .csWrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 44px 24px 30px;
}
.canstack .csRow {
  display: grid;
  grid-template-columns: 2fr 4fr 1fr;
  gap: 30px;
  align-items: start;
}
@media (max-width: 860px) {
  .canstack .csRow {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
.canstack .csBrand {
  font-size: 1.45rem;
  letter-spacing: 2px;
  color: #ECECE4;
  margin: 0 0 10px;
  font-family: Georgia, serif;
}
.canstack .csBlurb p,
.canstack .csBlurb .csText {
  margin: 0;
  color: #8B8B93;
  font-family: Georgia, serif;
  max-width: 46ch;
}
.canstack .csLids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 600px) {
  .canstack .csLids {
    grid-template-columns: 1fr;
  }
}
.canstack .csLid {
  border: 1px solid #8B8B93;
  border-radius: 26px / 50%;
  background-color: #1F1F25;
  padding: 14px 16px;
}
.canstack .csLid .label {
  display: block;
  font-family: 'Courier New', Courier, monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  color: #8B8B93;
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px dotted #2B2B32;
}
.canstack .csLid a {
  display: block;
  color: #ECECE4;
  font-family: Georgia, serif;
  padding: 3px 0;
}
.canstack .csLid a:hover {
  color: #B23A48;
}
/* decorative side view cans */
.canstack .dcCans {
  display: flex;
  justify-content: flex-end;
}
.canstack .dcCans .dcCol {
  display: grid;
  gap: 8px;
  width: 96px;
}
.canstack .dcCan {
  height: 22px;
  border: 1px solid #8B8B93;
  border-radius: 50% / 100%;
  background-color: #1F1F25;
  position: relative;
}
.canstack .dcCan::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  background-color: #17171B;
}
@media (max-width: 860px) {
  .canstack .dcCans {
    justify-content: flex-start;
  }
}
/* bottom shelf line */
.canstack .shelf {
  border-top: 1px solid #2B2B32;
  margin-top: 26px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 26px;
  align-items: center;
  justify-content: space-between;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.8rem;
  color: #8B8B93;
}
.canstack .shelf .legalLinks a {
  color: #8B8B93;
  text-decoration: underline;
}
.canstack .shelf .contactLine {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
}
.canstack .shelf a {
  color: #ECECE4;
  text-decoration: underline;
}
.canstack .shelf a.telLink {
  color: #ECECE4;
}
.canstack .dotRowFoot {
  width: 120px;
  height: 8px;
  background-image: radial-gradient(circle, #C9A24B 0, #C9A24B 2px, #0E0E12 3px);
  background-size: 14px 14px;
  background-position: left center;
}

/* several-column editorial prose band */
.sliceEssay {
  background-color: #1F1F25;
  border-bottom: 1px solid #2B2B32;
}
.sliceEssay .essayWrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 24px 30px;
}
.sliceEssay .essayWrap h2 {
  color: #ECECE4;
  font-size: 2rem;
}
.sliceEssay .essayWrap p {
  color: #D6D6CC;
  margin: 0 0 18px;
}

/* various editorial supplements for shared pages */
.sliceEssay .pageHead {
  font-size: 3rem;
  line-height: 1.1;
  color: #ECECE4;
  margin: 0 0 16px;
}
.sliceEssay p a,
.ctaBand a {
  color: #EE7F89;
  text-decoration: underline;
}
.sliceEssay .processList h2 {
  margin-top: 20px;
}
.pictureLock a {
  color: #F6EFEF;
  text-decoration: underline;
}
.processList ol.processSteps {
  margin: 6px 0 0;
  padding-left: 22px;
  color: #D6D6CC;
}
.processList li {
  margin: 0 0 10px;
}
.processList li strong {
  color: #ECECE4;
}

/* general band spacing */
.ctaBand {
  background-color: #1F1F25;
}
.ctaBand .cbInside {
  max-width: 1100px;
  margin: 0 auto;
  padding: 46px 24px;
  text-align: center;
}
.ctaBand .cbInside h2 {
  color: #ECECE4;
}

/* section default spacing for subpages */
.subpage {
  background-color: #17171B;
}
.subpage .spInside {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 24px;
}

/* ==========================================================================
   CONTACT PAGE — two-bay desk with a form ledger and contact cards
   ========================================================================== */
.contactDeck {
  background-color: #17171B;
}
.contactDeck .cdInside {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 56px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 840px) {
  .contactDeck .cdInside {
    grid-template-columns: 1fr;
  }
}
.contactDeck h2 {
  color: #ECECE4;
  font-size: 2rem;
}
.contactDeck .cdForm {
  background-color: #0E0E12;
  border: 1px solid #2B2B32;
  padding: 26px 26px 20px;
}
.contactDeck .field {
  margin: 0 0 16px;
}
.contactDeck .field label {
  display: block;
  margin: 0 0 6px;
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #8B8B93;
}
.contactDeck .field input,
.contactDeck .field textarea {
  width: 100%;
  box-sizing: border-box;
  background-color: #1F1F25;
  border: 1px solid #2B2B32;
  border-bottom: 1px solid #8B8B93;
  color: #ECECE4;
  padding: 10px 12px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1rem;
}
.contactDeck .field textarea {
  min-height: 130px;
  resize: vertical;
}
.contactDeck .field input:focus,
.contactDeck .field textarea:focus {
  outline: 2px solid #B23A48;
  outline-offset: 1px;
}
.contactDeck .formHint {
  font-size: 0.9rem;
  color: #8B8B93;
  margin: 14px 0 0;
}
.contactDeck .cdAside .sideCard {
  background-color: #0E0E12;
  border: 1px solid #2B2B32;
  border-top: 4px solid #B23A48;
  padding: 18px 18px;
  margin: 0 0 18px;
}
.contactDeck .sideCard h3 {
  margin: 0 0 8px;
  color: #ECECE4;
  font-size: 1.1rem;
}
.contactDeck .sideCard p {
  margin: 0;
  color: #D6D6CC;
}
.contactDeck .sideCard a {
  color: #EE7F89;
  text-decoration: underline;
}
.contactDeck .sideCard a.telLink {
  color: #ECECE4;
  text-decoration: underline;
}

/* FAQ disclosures */
.faqBlock .faqWrap {
  max-width: 860px;
}
.faqWrap .qa {
  background-color: #0E0E12;
  border: 1px solid #2B2B32;
  margin: 0 0 14px;
  padding: 4px 18px 14px;
}
.faqWrap .qa summary {
  cursor: pointer;
  color: #ECECE4;
  font-weight: bold;
  padding: 12px 0 8px;
  font-family: Georgia, serif;
}
.faqWrap .qa p {
  color: #D6D6CC;
  margin: 6px 0 0;
}
.faqWrap .qa[open] summary {
  color: #B23A48;
}

/* services detail stripes on services/contact not banners */
