@charset "utf-8";
/* ══════════════════════════════════════════════════════════════
   FIFA WORLD CUP™ TROPHY — BRIEF HISTORY
   Faithful web adaptation of the MDM/Donn Corporation brochure
   Palette sampled directly from the source PDF:
     dark background : #221f1f
     gold accent     : #a07c3d
================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

.fh-wrap {
  --fh-dark: #221f1f;
  --fh-dark2: #1c1a19;
  --fh-gold: #a07c3d;
  --fh-gold-light: #c9a24a;
  --fh-cream: #f4efe6;
  --fh-text: rgba(255, 255, 255, 0.82);
  --fh-text-dim: rgba(255, 255, 255, 0.5);
  font-family: 'Poppins', 'Open Sans', sans-serif;
  background: var(--fh-dark);
  color: var(--fh-text);
  overflow: hidden;
  padding-top: 88px;
}
@media (max-width: 550px) {
  .fh-wrap { padding-top: 66px; }
}
.fh-wrap * { box-sizing: border-box; }
.fh-wrap img { max-width: 100%; display: block; }

.fh-inner {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Shared type ── */
.fh-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
}
.fh-heading {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--fh-gold);
  margin: 0 0 34px;
  letter-spacing: -0.5px;
}
.fh-chapter-head {
  position: relative;
  padding: 90px 0 44px;
}
.fh-chapter-head .fh-corner-icon {
  position: absolute;
  top: 70px;
  right: 40px;
  width: 46px;
  opacity: 0.95;
}
.fh-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding-bottom: 90px;
}
.fh-two-col p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--fh-text);
  margin: 0 0 20px;
}
.fh-two-col p:first-child strong,
.fh-two-col p.fh-lead {
  font-weight: 700;
  color: #fff;
}
.fh-subhead {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}

/* ── Gold callout box (quotes / side-stories) ── */
.fh-callout {
  background: var(--fh-gold);
  color: var(--fh-dark);
  padding: 28px 30px;
  margin-top: 26px;
}
.fh-callout h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--fh-dark);
  margin: 0 0 12px;
}
.fh-callout p {
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(34, 31, 31, 0.88);
  margin: 0;
}

/* ── Gold spec box (trophy fact sheets) ── */
.fh-spec-box {
  background: var(--fh-gold);
  color: var(--fh-dark);
  padding: 30px 34px;
}
.fh-spec-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--fh-dark);
  margin: 0 0 6px;
}
.fh-spec-box .fh-spec-sub {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: rgba(34, 31, 31, 0.85);
  margin-bottom: 18px;
}
.fh-spec-box dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  row-gap: 9px;
}
.fh-spec-box dt {
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(34, 31, 31, 0.75);
  white-space: nowrap;
}
.fh-spec-box dd {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--fh-dark);
}

/* ── Divider ── */
.fh-divider {
  border: none;
  height: 1px;
  background: rgba(160, 124, 61, 0.3);
  margin: 0;
}

/* ══════════════════════════════════════════════════
   COVER — actual PDF cover artwork, shown whole (no crop)
   ══════════════════════════════════════════════════ */
.fh-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.fh-cover {
  background: #312d2c;
  text-align: center;
}
.fh-cover .fh-cover-img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(850px, 100%);
  max-height: calc(100vh - 110px);
  object-fit: contain;
  margin: 0 auto;
}

/* ── Shared 1024px-max, centered, black-letterboxed frame ── */
.fh-1024 {
  max-width: 1024px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════
   FULL-BLEED PHOTO BANNER
   ══════════════════════════════════════════════════ */
.fh-photo-banner {
  background: #000;
}
.fh-photo-banner .fh-1024 {
  position: relative;
  max-width: 850px;
}
.fh-photo-banner img {
  display: block;
  width: 100%;
  max-width: 850px;
  height: auto;
  max-height: calc(100vh - 110px);
  object-fit: contain;
  margin: 0 auto;
}
.fh-credit {
  position: absolute;
  bottom: 10px;
  left: 14px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.3px;
}

/* ══════════════════════════════════════════════════
   PHOTO SPREADS (2-up with captions)
   ══════════════════════════════════════════════════ */
.fh-photo-spread-wrap {
  background: #000;
}
.fh-photo-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.fh-photo-spread figure {
  position: relative;
  margin: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fh-photo-spread img {
  width: 100%;
  height: auto;
}
.fh-photo-spread figcaption {
  position: absolute;
  left: 0;
  right: 0;
  padding: 16px 20px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #fff;
  background: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent);
}
.fh-photo-spread figcaption.fh-cap-bottom {
  top: auto;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}

/* ══════════════════════════════════════════════════
   STORY GRID (Lost & Found sub-stories)
   ══════════════════════════════════════════════════ */
.fh-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  padding-bottom: 50px;
}
.fh-story-grid h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--fh-gold-light);
  margin: 0 0 12px;
}
.fh-story-grid p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--fh-text);
  margin: 0;
}
.fh-story-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 60px;
}
.fh-story-photos img {
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.05);
}

/* ══════════════════════════════════════════════════
   PORTRAIT ROW (designer photo inline with text)
   ══════════════════════════════════════════════════ */
.fh-portrait-row {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.fh-portrait-row img {
  width: 130px;
  height: auto;
  flex-shrink: 0;
}
.fh-portrait-row figcaption {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--fh-text-dim);
}

/* ══════════════════════════════════════════════════
   OVERLAP PHOTO + SPEC (Käser / 1974 trophy reveal)
   ══════════════════════════════════════════════════ */
.fh-overlap-photo {
  position: relative;
  margin-bottom: 90px;
}
.fh-overlap-photo img {
  width: 100%;
  height: auto;
}
.fh-overlap-photo .fh-spec-box {
  position: absolute;
  left: 0;
  bottom: -60px;
  width: min(380px, 88%);
}
.fh-overlap-photo figcaption {
  position: absolute;
  right: 24px;
  bottom: 16px;
  max-width: 320px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #fff;
  text-align: right;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* ══════════════════════════════════════════════════
   SIDE FIGURE (small photo beside closing paragraph)
   ══════════════════════════════════════════════════ */
.fh-side-figure {
  margin-top: 20px;
}
.fh-side-figure img {
  width: 100%;
  height: auto;
}
.fh-side-figure figcaption {
  font-size: 12.5px;
  color: var(--fh-text-dim);
  line-height: 1.6;
  margin-top: 10px;
}

/* ══════════════════════════════════════════════════
   SPLIT SPREAD (trophy studio + maradona/hat-story)
   ══════════════════════════════════════════════════ */
.fh-split-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  align-items: start;
}
.fh-split-spread .fh-split-photo {
  background: var(--fh-dark2);
}
.fh-split-spread .fh-split-photo img {
  width: 100%;
  height: auto;
}
.fh-split-right {
  display: flex;
  flex-direction: column;
}
.fh-split-right figure {
  margin: 0;
  position: relative;
}
.fh-split-right figure img {
  width: 100%;
  height: auto;
}
.fh-split-right figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 20px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.fh-split-right .fh-callout {
  margin: 0;
  padding: 34px 36px;
}

/* ══════════════════════════════════════════════════
   CUP OF LIFE — WINNERS ROLL (back cover)
   ══════════════════════════════════════════════════ */
.fh-honors {
  background: var(--fh-dark2);
  padding: 90px 0 70px;
}
.fh-honors-head {
  text-align: center;
  margin-bottom: 50px;
}
.fh-honors-head img {
  width: 54px;
  margin: 0 auto 20px;
}
.fh-honors-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  margin: 0;
}
.fh-winners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
.fh-winners-era {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--fh-gold-light);
  margin-bottom: 8px;
}
.fh-winners-sub {
  display: block;
  font-size: 12.5px;
  color: var(--fh-text-dim);
  margin-bottom: 18px;
}
.fh-winner-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14.5px;
}
.fh-winner-row .fh-flag { font-size: 18px; width: 26px; text-align: center; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.fh-winner-row .fh-flag img { width: 26px; height: 18px; object-fit: cover; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,0.18); display: block; }
.fh-winner-row .fh-year { color: var(--fh-text-dim); width: 44px; flex-shrink: 0; }
.fh-winner-row .fh-country { color: #fff; font-weight: 500; }
.fh-winner-row.fh-tbd .fh-country,
.fh-winner-row.fh-tbd .fh-year { color: var(--fh-gold-light); }

.fh-legal-block {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1140px;
  margin: 60px auto 0;
  padding: 30px 100px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 11px;
  line-height: 1.8;
  color: var(--fh-text-dim);
}
.fh-legal-badge { flex-shrink: 0; }
.fh-legal-badge img { width: 110px; display: block; }
.fh-legal-text h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  margin: 0 0 10px;
}
.fh-legal-text p { margin: 0 0 10px; }
.fh-legal-text p:last-child { margin-bottom: 0; }
.fh-legal-text .fh-legal-address { color: var(--fh-text); font-weight: 500; }
@media (max-width: 700px) {
  .fh-legal-block { flex-direction: column; align-items: flex-start; padding: 30px 24px 0; text-align: left; }
}

/* ══════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════ */
.fh-contact {
  text-align: center;
  padding: 90px 24px 100px;
  background: var(--fh-dark2);
}
.fh-contact img {
  width: 64px;
  margin: 0 auto 24px;
}
.fh-contact h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--fh-gold);
  letter-spacing: 1px;
  margin: 0 0 26px;
}
.fh-contact p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fh-text);
  margin: 0 0 30px;
}
.fh-contact .fh-contact-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.fh-contact .fh-contact-role {
  font-size: 13px;
  color: var(--fh-text-dim);
  margin-bottom: 26px;
}
.fh-contact .fh-contact-line {
  font-size: 15px;
  color: var(--fh-text);
  margin-bottom: 4px;
}
.fh-contact .fh-contact-line a { color: var(--fh-gold-light); text-decoration: none; }
.fh-contact .fh-contact-line a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .fh-inner { padding: 0 24px; }
  .fh-two-col,
  .fh-story-grid,
  .fh-winners-grid { grid-template-columns: 1fr; gap: 34px; }
  .fh-photo-spread,
  .fh-story-photos { grid-template-columns: 1fr; }
  .fh-split-spread { grid-template-columns: 1fr; }
  .fh-overlap-photo { margin-bottom: 40px; }
  .fh-overlap-photo .fh-spec-box { position: static; width: 100%; margin-top: -6px; }
  .fh-overlap-photo figcaption { position: static; text-align: left; color: var(--fh-text-dim); margin-top: 14px; max-width: none; text-shadow: none; }
  .fh-chapter-head { padding: 60px 0 34px; }
  .fh-chapter-head .fh-corner-icon { top: 60px; right: 24px; width: 34px; }
}

@media (max-width: 560px) {
  .fh-inner { padding: 0 18px; }
  .fh-heading { margin-bottom: 24px; }
  .fh-two-col, .fh-story-grid { padding-bottom: 50px; }
  .fh-spec-box { padding: 24px 22px; }
  .fh-callout { padding: 22px 22px; }
  .fh-portrait-row { flex-direction: column; align-items: flex-start; }
  .fh-portrait-row img { width: 100%; height: auto; }
  .fh-honors { padding: 60px 0 50px; }
  .fh-contact { padding: 60px 18px 70px; }
}
