/* =========================================================================
   ILVES Pole Climbing — Stylesheet
   Brand palette derived from the printed flyer.
   ========================================================================= */

:root {
  --orange: #EF834A;          /* sampled directly from the flyer */
  --orange-dark: #D66A30;
  --orange-soft: #FCE5D6;
  --black: #111111;
  --ink: #1c1c1c;
  --steel: #4a4a4a;
  --steel-soft: #6d6d6d;
  --line: #e5e5e5;
  --paper: #f5f5f3;
  --paper-warm: #efece6;
  --white: #ffffff;

  --font-display: 'Barlow Condensed', 'Oswald', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1240px;
  --container-narrow: 980px;

  --radius: 0;       /* sharp industrial corners */
  --radius-soft: 4px;

  --shadow-soft: 0 6px 24px -8px rgba(0,0,0,0.18);
  --shadow-deep: 0 14px 40px -12px rgba(0,0,0,0.35);

  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

html, body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

/* ------------------------------------------------------------------ Layout */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
.container--narrow {
  max-width: var(--container-narrow);
}

section {
  position: relative;
  padding: 96px 0;
}
section + section { border-top: 1px solid transparent; }

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
}

/* ------------------------------------------------------------------ Typography */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.05;
  color: var(--ink);
  text-transform: uppercase;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.15rem; letter-spacing: 0.08em; }

p { color: var(--steel); max-width: 65ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  position: relative;
  padding-left: 38px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 2px;
  background: var(--orange);
  transform: translateY(-50%);
}

.section-title { margin-bottom: 18px; }
.section-lead  {
  font-size: 1.05rem;
  color: var(--steel);
  max-width: 60ch;
  margin-bottom: 56px;
}

/* ------------------------------------------------------------------ Header / nav */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}
.header__logo img {
  height: 92px;
  width: auto;
  display: block;
}

@media (max-width: 920px) {
  .header__inner { height: 92px; }
  .header__logo img { height: 68px; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav__link {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.9rem;
  position: relative;
  padding: 6px 0;
  color: var(--ink);
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--orange);
  transition: width var(--transition);
}
.nav__link:hover { color: var(--orange); }
.nav__link:hover::after { width: 100%; }

.lang {
  display: flex;
  align-items: center;
  gap: 2px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  margin-left: 10px;
}
.lang a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px;
  color: var(--steel-soft);
  transition: color var(--transition);
}
.lang a:hover { color: var(--ink); }
.lang a.is-active {
  color: var(--orange);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 40px; height: 40px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 8px;
  height: 2px; width: 24px;
  background: var(--ink);
  transition: var(--transition);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 92px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--white);
    padding: 20px 28px 28px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__link {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .lang {
    border-left: none;
    border-top: 1px solid var(--line);
    margin: 12px 0 0;
    padding: 16px 0 0;
    width: 100%;
  }
}

/* ------------------------------------------------------------------ Hero */

.hero {
  position: relative;
  min-height: 88vh;
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--white);
}

.hero__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  width: 100%;
  align-items: stretch;
}

.hero__copy {
  background: var(--orange);
  color: var(--white);
  padding: clamp(48px, 8vw, 120px) clamp(28px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero__copy::after {
  content: '';
  position: absolute;
  right: -160px; bottom: -160px;
  width: 360px; height: 360px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero__copy h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.hero__copy h1 .line {
  display: block;
  overflow: hidden;
}
.hero__copy h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroSlide 0.9s cubic-bezier(0.2,0.7,0.2,1) forwards;
}
.hero__copy h1 .line:nth-child(1) span { animation-delay: 0.05s; }
.hero__copy h1 .line:nth-child(2) span { animation-delay: 0.18s; }

@keyframes heroSlide {
  to { transform: translateY(0); }
}

.hero__values {
  position: relative;
  z-index: 2;
  list-style: none;
  margin-top: 12px;
}
.hero__values li {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: rgba(255,255,255,0.95);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease forwards;
}
.hero__values li:nth-child(1) { animation-delay: 0.5s; }
.hero__values li:nth-child(2) { animation-delay: 0.65s; }
.hero__values li:nth-child(3) { animation-delay: 0.8s; }

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

.hero__patent {
  margin-top: 36px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 1s forwards;
}
.hero__patent strong { font-weight: 600; color: white; }

.hero__visual {
  position: relative;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  overflow: hidden;
}
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.04), transparent 70%);
}
.hero__visual img {
  position: relative;
  width: 100%;
  max-width: 760px;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.18));
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  animation: heroProduct 1.1s cubic-bezier(0.2,0.7,0.2,1) 0.3s forwards;
}
@keyframes heroProduct {
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* decorative number / vertical text */
.hero__sidetag {
  position: absolute;
  right: 28px; top: 50%;
  transform: rotate(90deg) translateY(0);
  transform-origin: right top;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--steel-soft);
  z-index: 3;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero__visual { padding: 40px 24px 60px; }
  .hero__sidetag { display: none; }
}

/* ------------------------------------------------------------------ Pillars */

.pillars {
  background: var(--paper);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 56px;
}
.pillar {
  position: relative;
  padding-top: 24px;
}
.pillar__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.pillar h3 { margin-bottom: 14px; }
.pillar p  { color: var(--steel); }

@media (max-width: 800px) {
  .pillars__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ------------------------------------------------------------------ Product */

.product {
  background: var(--white);
}
.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product__image {
  position: relative;
  line-height: 0;
  overflow: hidden;
  /* Source image has a 3px black bar on the right edge — crop it on the
     container (which never animates) so it can never flash in. */
  clip-path: inset(0 0.16% 0 0);
}
.product__image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
  transform-origin: left center;
}
.product__image:hover img {
  transform: scale(1.04);
}

.product__text h2 { margin-bottom: 24px; }
.product__text p  { margin-bottom: 18px; font-size: 1.05rem; }

.bullets {
  list-style: none;
  margin-top: 28px;
}
.bullets li {
  position: relative;
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.98rem;
}
.bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 22px;
  width: 16px; height: 2px;
  background: var(--orange);
}

@media (max-width: 900px) {
  .product__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ------------------------------------------------------------------ Specs */

.specs {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.specs::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 80%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(239,131,74,0.15), transparent 60%);
  pointer-events: none;
}
.specs h2 { color: var(--white); margin-bottom: 18px; }
.specs .section-lead { color: rgba(255,255,255,0.7); }

.specs__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.size-table {
  border-top: 1px solid rgba(255,255,255,0.15);
}
.size-table__row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  transition: padding var(--transition);
}
.size-table__row:hover { padding-left: 16px; }
.size-table__row .size {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--orange);
}
.size-table__row .range {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  font-weight: 500;
}
.size-table__row .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.spec-features {
  list-style: none;
}
.spec-features li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255,255,255,0.88);
  font-size: 0.97rem;
}
.spec-features li svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  margin-top: 2px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
}
.spec-features li strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.torque {
  margin-top: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--orange);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.torque strong { color: var(--white); display: block; margin-bottom: 6px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; }
.torque ul { list-style: none; }
.torque li { padding: 4px 0; font-size: 0.92rem; }
.torque li::before { content: '— '; color: var(--orange); }

@media (max-width: 900px) {
  .specs__grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ------------------------------------------------------------------ Gallery */

.gallery {
  background: var(--paper);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin-top: 56px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  cursor: zoom-in;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2,0.7,0.2,1);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4));
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__caption {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 2;
  color: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.gallery__item:hover .gallery__caption {
  opacity: 1; transform: translateY(0);
}

.gallery__item--wide { grid-column: span 8; grid-row: span 2; }
.gallery__item--tall { grid-column: span 4; grid-row: span 2; }
.gallery__item--small { grid-column: span 4; grid-row: span 1; }

@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; }
  .gallery__item--wide { grid-column: span 6; }
  .gallery__item--tall { grid-column: span 6; grid-row: span 2; }
  .gallery__item--small { grid-column: span 3; }
}

/* ------------------------------------------------------------------ Applications */

.applications {
  background: var(--white);
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.app-card {
  position: relative;
  padding: 48px 40px;
  background: var(--paper);
  border-left: 4px solid var(--orange);
  transition: transform var(--transition), background var(--transition);
  overflow: hidden;
}
.app-card:hover {
  background: var(--paper-warm);
  transform: translateY(-4px);
}
.app-card__icon {
  width: 56px; height: 56px;
  margin-bottom: 24px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.5;
}
.app-card h3 { margin-bottom: 14px; }
.app-card p { color: var(--steel); }

@media (max-width: 800px) {
  .app-grid { grid-template-columns: 1fr; }
  .app-card { padding: 36px 28px; }
}

/* ------------------------------------------------------------------ CTA strip */

.cta-strip {
  background: var(--orange);
  color: var(--white);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: var(--ink);
  opacity: 0.15;
}
.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-strip h2 {
  color: var(--white);
  margin: 0;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
}
.cta-strip p {
  color: rgba(255,255,255,0.9);
  margin: 8px 0 0 0;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.92rem;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn:hover { background: var(--white); color: var(--ink); }
.btn svg { width: 16px; height: 16px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--orange:hover {
  background: var(--ink); border-color: var(--ink); color: var(--white);
}

/* ------------------------------------------------------------------ Contact */

.contact {
  background: var(--paper);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 40px;
}
.contact__info dt {
  font-family: var(--font-display);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--steel-soft);
  margin-top: 28px;
  margin-bottom: 6px;
}
.contact__info dd {
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.5;
}
.contact__info dd a:hover { color: var(--orange); }
.contact__info dt:first-child { margin-top: 0; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.social-links a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.contact__map {
  position: relative;
  background: var(--paper);
  height: 420px;
  overflow: hidden;
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ------------------------------------------------------------------ Footer */

.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand img { height: 100px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer__brand p { color: rgba(255,255,255,0.6); max-width: 280px; font-size: 0.92rem; }

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer ul li { padding: 4px 0; font-size: 0.95rem; }
.footer ul li a:hover { color: var(--orange); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 800px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------------ Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 40px;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition);
}
.lightbox__close:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* ------------------------------------------------------------------ Reveal */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2,0.7,0.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------ Print niceties */
@media print {
  .header, .footer, .cta-strip { display: none; }
  section { padding: 20px 0; }
}
