/* =============================================================================
   Premium Roofing — shared site styles
   This file is the canonical source for any rule that should be the same on
   every page (nav, footer, common interactions, accessibility safety nets).
   Loaded BEFORE per-page <style> so per-page rules can still override.
   ============================================================================= */

/* ----- Brand tokens ----- */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-mid: #1a1a1a;
  --mid: #2a2a2a;
  --light-mid: #999;
  --light: #e8e8e8;
  --white: #ffffff;
  --accent: #ff5d00;
  --accent-dim: #e05400;
  --accent-glow: rgba(255, 93, 0, 0.15);
}

/* ----- Reduced-motion safety net (also injected per-page; kept here for rigour) ----- */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .stagger-reveal > *,
  .hero-tag,
  .hero-title .word,
  .hero-subtitle,
  .hero-buttons,
  .scroll-indicator {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ----- Custom cursor: explicitly disabled site-wide -----
   The custom SVG cursor was inconsistent across pages and a usability tax
   on slow hardware / accessibility tools. Use system cursors. */
html, body, a, button, [role="button"], input, textarea, select, .nav-link,
.btn, .card, .service-card, .mega-card, .mega-link {
  cursor: auto;
}
a, button, [role="button"], .nav-link, .btn, .mega-card, .mega-link,
input[type="submit"], input[type="button"], summary {
  cursor: pointer;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="search"],
input[type="number"], textarea {
  cursor: text;
}

/* ----- Footer (canonical) -----
   Site-wide footer styling. Kept here so a single edit updates every page. */
.footer-canonical {
  background: var(--black);
  color: var(--light-mid);
  padding: 4.5rem 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer-canonical-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-canonical-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 1.25rem;
}
.footer-canonical-tagline {
  color: var(--light-mid);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-canonical-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1.1rem;
}
.footer-canonical-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-canonical-col a,
.footer-canonical-contact a {
  color: var(--light-mid);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-canonical-col a:hover,
.footer-canonical-contact a:hover {
  color: var(--accent);
}
.footer-canonical-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-style: normal;
}
.footer-canonical-contact strong {
  color: var(--white);
  font-weight: 600;
}
.footer-canonical-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--light-mid);
}
.footer-canonical-badges {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.footer-canonical-badge {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}
@media (max-width: 900px) {
  .footer-canonical-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.25rem;
  }
  .footer-canonical-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 540px) {
  .footer-canonical {
    padding: 3rem 1.5rem 1.5rem;
  }
  .footer-canonical-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-canonical-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* skip-to-content */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100000;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #111;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: 4px;
  transition: top 0.2s ease;
}
.skip-to-content:focus {
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* scroll-progress disabled site-wide
   The 3px orange progress bar at the top of every page reads as a "page loading"
   indicator and consistently scores as confusing in usability tests.
   Hidden globally; element kept in markup for any dependent JS. */
.scroll-progress {
  display: none !important;
}

/* ----- Keyboard focus (canonical) -----
   Visible focus ring for keyboard users only; mouse clicks stay clean. */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ----- Media placeholders -----
   All photo/video assets are disconnected pending the media redo.
   Each slot is marked with data-media describing the intended asset.
   The label is rendered from data-media so the slot documents itself. */
.media-ph {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.025) 0px,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 12px
    ),
    var(--dark-mid);
  border: 1px dashed rgba(255, 93, 0, 0.35);
  overflow: hidden;
}
.media-ph::before {
  content: attr(data-ph-type);
  position: absolute;
  top: 0.6rem;
  left: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.85;
}
.media-ph::after {
  content: attr(data-media);
  display: block;
  padding: 1.5rem;
  max-width: 90%;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}
.media-ph--bg {
  position: absolute;
  inset: 0;
  min-height: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}
.media-ph--bg::after {
  font-size: 0.85rem;
}
/* compact labels inside small nav mega-menu thumbnails */
.mega-card-img .media-ph::after {
  font-size: 0.58rem;
  padding: 0.5rem;
  line-height: 1.45;
}
.mega-card-img .media-ph::before {
  font-size: 0.52rem;
  top: 0.4rem;
  left: 0.5rem;
}

/* ----- Cross-document page transitions (decision D11) -----
   Branded sweep: old page dims and drifts up, new page reveals top-down.
   Progressive enhancement — browsers without View Transitions just navigate. */
@media (prefers-reduced-motion: no-preference) {
  @view-transition {
    navigation: auto;
  }
  ::view-transition-old(root) {
    animation: vt-out 0.22s ease both;
  }
  ::view-transition-new(root) {
    animation: vt-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  @keyframes vt-out {
    to {
      opacity: 0.25;
      transform: translateY(-14px);
    }
  }
  @keyframes vt-in {
    from {
      clip-path: inset(0 0 100% 0);
    }
    to {
      clip-path: inset(0 0 0% 0);
    }
  }
}

/* ----- Motion-layer handoff -----
   When the GSAP motion module boots it sets .has-motion on <html> and takes
   ownership of all entrance animation via inline styles. These overrides
   neutralise the legacy CSS reveal/keyframe system so the two never fight. */
html.has-motion .reveal,
html.has-motion .stagger-reveal > * {
  opacity: 1;
  transform: none;
  transition: none !important;
}
/* Attribute selectors cover every page's hero prefix
   (.hero-*, .port-hero-*, .sp-hero-*, .fn-hero-*, ...) */
html.has-motion [class$="hero-tag"],
html.has-motion [class$="hero-title"],
html.has-motion [class$="hero-title"] .word,
html.has-motion [class$="hero-sub"],
html.has-motion [class$="hero-subtitle"],
html.has-motion [class$="hero-buttons"],
html.has-motion [class$="hero-phone"],
html.has-motion .scroll-indicator {
  opacity: 1;
  transform: none;
  animation: none !important;
}

/* =============================================================================
   Shared motion-system components (canonical; used across multiple pages)
   ============================================================================= */

/* ===== ROOF SYSTEM ASSEMBLY ===== */
.roof-assembly {
  position: relative;
  /* the dark band fades to black at both edges — no seam against the sections
     above and below; the orange glow rides on top of it */
  background:
    radial-gradient(ellipse 70% 55% at 70% 45%, rgba(255, 93, 0, 0.05), transparent 65%),
    linear-gradient(180deg, var(--black) 0%, var(--dark) 12%, var(--dark) 88%, var(--black) 100%);
}
.roof-assembly-pin {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.roof-assembly-inner {
  display: grid;
  grid-template-columns: minmax(320px, 460px) 1fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 3rem;
}
.roof-assembly-copy .interstitial-tag {
  justify-content: flex-start;
}
.roof-assembly-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 1.25rem 0;
}
.roof-assembly-title .word-thin {
  font-weight: 300;
  color: var(--light-mid);
}
.roof-assembly-subtitle {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--light-mid);
  max-width: 420px;
}
.roof-layers {
  list-style: none;
  margin-top: 2.25rem;
  padding: 0;
}
.roof-layer {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.32;
  transition: opacity 0.4s ease;
}
.roof-layer.is-active {
  opacity: 1;
}
.roof-layer-num {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  min-width: 1.6rem;
}
.roof-layer strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
}
.roof-layer div span {
  font-size: 0.82rem;
  color: var(--light-mid);
}
.roof-assembly-stage {
  position: relative;
  height: min(72vh, 640px);
}
@media (max-width: 899px) {
  .roof-assembly-pin {
    min-height: 0;
  }
  .roof-assembly-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 4rem 1.5rem;
  }
  .roof-assembly-stage {
    order: -1;
    height: 46vh;
  }
}

/* system switcher */
.roof-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 2rem;
}
.roof-switch {
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--light-mid);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.roof-switch:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}
.roof-switch.is-active {
  color: var(--accent);
  background: rgba(255, 93, 0, 0.12);
  border-color: rgba(255, 93, 0, 0.55);
}
/* slick swap: fade the stage + layer list while the new system rebuilds */
.roof-assembly-stage,
.roof-layers {
  transition: opacity 0.28s ease;
}
.roof-assembly.is-switching .roof-assembly-stage,
.roof-assembly.is-switching .roof-layers {
  opacity: 0;
}

/* ===== EMERGENCY REPAIRS STRIP ===== */
.emergency-strip {
  /* fades to black at both edges so the strip floats in the page instead of
     being a boxed band with visible seams */
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 15%, var(--dark) 85%, var(--black) 100%);
}
.emergency-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 3rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.emergency-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(255, 93, 0, 0.8);
  animation: emergencyPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes emergencyPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.8); }
}
.emergency-strip p {
  color: var(--light-mid);
  font-size: 0.95rem;
  flex: 1;
  min-width: 240px;
}
.emergency-strip p strong {
  color: var(--white);
  font-family: 'Outfit', sans-serif;
}
.emergency-strip-call {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--accent);
  white-space: nowrap;
  border: 1px solid rgba(255, 93, 0, 0.4);
  padding: 0.55rem 1.2rem;
  border-radius: 4px;
  transition: background 0.25s ease, color 0.25s ease;
}
.emergency-strip-call:hover {
  background: var(--accent);
  color: var(--black);
}
@media (max-width: 540px) {
  .emergency-strip-inner { padding: 1rem 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .emergency-dot { animation: none; }
}

/* ----- System-page hero 3D showcase ----- */
.system-showcase {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ----- Hero call line (paired CTA, decision D2) ----- */
.hero-call-line {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--light-mid);
  transition: color 0.2s ease;
}
.hero-call-line strong {
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero-call-line:hover,
.hero-call-line:hover strong {
  color: var(--accent);
}

/* ----- Interactive material swatch section ----- */
.material-strip {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.material-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 7rem 3rem;
  display: grid;
  grid-template-columns: minmax(320px, 440px) 1fr;
  gap: 3.5rem;
  align-items: center;
}
.material-strip-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--light-mid);
  max-width: 420px;
  margin: 1.25rem 0 2rem;
}
.material-specs {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.5rem;
}
.material-specs li {
  border-left: 2px solid rgba(255, 93, 0, 0.5);
  padding-left: 0.9rem;
}
.material-specs strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}
.material-specs span {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light-mid);
}
.material-strip-hint {
  margin-top: 2rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.material-strip-stage {
  position: relative;
  height: min(56vh, 480px);
}
@media (max-width: 899px) {
  .material-strip-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 1.5rem;
  }
  /* smart-lite (D12): no orbiter on mobile — specs carry the section */
  .material-strip-stage,
  .material-strip-hint {
    display: none;
  }
}

/* =============================================================================
   Anatomy of an Ice Dam — scroll-driven cross-section (ice-damming.html)
   ============================================================================= */
.icedam {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(91, 141, 239, 0.06), transparent 65%),
    var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.icedam-pin {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.icedam-inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 4.5rem 3rem;
}
.icedam-copy {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 1.5rem;
}
.icedam-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0.75rem 0 0.75rem;
}
.icedam-lead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--light-mid);
  max-width: 520px;
  margin: 0 auto;
}
.icedam-stage {
  position: relative;
  height: min(62vh, 580px);
  width: 100%;
}

/* badge (BEFORE / AFTER) */
.icedam-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff7a3c;
  border: 1px solid rgba(255, 93, 0, 0.4);
  background: rgba(255, 93, 0, 0.08);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  pointer-events: none;
}
.icedam-badge.after {
  color: #7fd0ff;
  border-color: rgba(127, 208, 255, 0.45);
  background: rgba(127, 208, 255, 0.08);
}

/* caption */
.icedam-caption {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--light);
  pointer-events: none;
}
.icedam-caption.flip {
  animation: icedamCaptionIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes icedamCaptionIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* static fallback (motion off / reduced-motion) */
.icedam-stage.icedam-live .icedam-fallback {
  display: none;
}
.icedam-fallback {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
  height: 100%;
  align-content: center;
}
.icedam-fb-col {
  background: var(--dark-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 1.5rem 1.5rem 1.75rem;
}
.icedam-fb-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.icedam-fb-tag.before {
  color: #ff7a3c;
  background: rgba(255, 93, 0, 0.1);
  border: 1px solid rgba(255, 93, 0, 0.3);
}
.icedam-fb-tag.after {
  color: #7fd0ff;
  background: rgba(127, 208, 255, 0.1);
  border: 1px solid rgba(127, 208, 255, 0.3);
}
.icedam-fb-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.icedam-fb-col li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--light-mid);
}
.icedam-fb-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
@media (max-width: 899px) {
  .icedam-pin { min-height: 0; }
  .icedam-inner { padding: 3.5rem 1.25rem; }
  .icedam-stage { height: 56vh; }
  .icedam-fallback { grid-template-columns: 1fr; }
}

/* ice-dam hyper-real story: caption entrance */
@keyframes idsCaptionIn {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ---------------------------------------------------------------------------
   Real media replacing the old dashed placeholders. The containers
   (.mega-card-img, portfolio tiles, section backgrounds) already set their own
   aspect ratio and clip overflow, so the image just fills them.
   --------------------------------------------------------------------------- */
.media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Nothing here is a hero; a short fade avoids a hard pop on lazy load.
     fill-mode BACKWARDS + a from-only keyframe: the fade starts at 0 and ends
     at whatever opacity the cascade gives the element. (fill-mode:both pinned
     every image to opacity:1 forever, overriding container rules like the
     mission section's dimmed background — animations beat the cascade.) */
  animation: media-in .35s ease backwards;
}
picture:has(> .media-img) { display: contents; }

@keyframes media-in { from { opacity: 0 } }
@media (prefers-reduced-motion: reduce) {
  .media-img { animation: none }
}

/* Hero background loops. index.html and the material pages each define their
   own rule inline; this covers the pages that define neither, and keeps the
   behaviour identical everywhere. Page-level rules still win by cascade order. */
.hero-video,
.sp-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video, .sp-hero-video { display: none; }
  .hero-poster { display: block; }
}
