:root {
  --ink: #171717;
  --paper: #f3efe6;
  --cream: #fbf8f1;
  --red: #c83b2d;
  --gold: #d6a43b;
  --green: #214a3d;
  --blue: #264d66;
  --line: rgba(23, 23, 23, 0.16);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(251, 248, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--red);
  color: white;
  font: 18px/1 "Archivo Black", sans-serif;
  transform: rotate(-2deg);
}
.brand-text {
  font: 17px/1 "Archivo Black", sans-serif;
  letter-spacing: 0.04em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}
.nav-cta {
  padding: 10px 16px;
  color: white;
  background: var(--ink);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(18,18,18,.96) 0%, rgba(18,18,18,.83) 48%, rgba(18,18,18,.2) 100%),
    radial-gradient(circle at 80% 28%, rgba(214,164,59,.36), transparent 30%),
    linear-gradient(135deg, #3a3732 0%, #171717 70%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 50%;
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .45;
}
.film-grain {
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, 92%);
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  padding: 96px 0;
}
.eyebrow {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow.dark { color: var(--red); }
.hero h1,
.section-heading h2,
.about-section h2,
.newsletter-section h2 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  line-height: .98;
  letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(52px, 7vw, 96px); }
.hero h1 span { color: var(--gold); }
.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 800;
}
.button-primary { background: var(--red); color: white; }
.button-secondary { border: 1px solid rgba(255,255,255,.35); color: white; }
.button-dark { background: var(--ink); color: white; }
.hero-stamp {
  position: absolute;
  z-index: 2;
  right: 7vw;
  bottom: 70px;
  width: 170px;
  height: 170px;
  display: grid;
  place-content: center;
  text-align: center;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 50%;
  transform: rotate(-8deg);
  letter-spacing: .12em;
}
.hero-stamp strong { font: 20px "Archivo Black", sans-serif; }
.hero-stamp span { font-size: 10px; }

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.featured-section,
.latest-section,
.about-section { padding: 100px 0; }
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}
.section-heading h2,
.about-section h2,
.newsletter-section h2 {
  font-size: clamp(40px, 5vw, 70px);
}
.section-heading > p {
  max-width: 420px;
  margin: 0 0 8px;
  color: #65615a;
}
.featured-card {
  display: grid;
  grid-template-columns: 1.55fr .75fr;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(0,0,0,.08);
}
.video-placeholder {
  position: relative;
  min-height: 470px;
  background-color: #202425;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08) 28%, rgba(0,0,0,.82) 100%);
  pointer-events: none;
}
.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .25s ease;
  pointer-events: none;
}
.video-placeholder:hover::after {
  background: rgba(0,0,0,.1);
}
.video-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 8px 12px;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}
.play-button {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  transition: transform .2s ease, background .2s ease;
}
.play-button:hover,
.play-button:focus-visible {
  transform: translate(-50%, -50%) scale(1.07);
  background: white;
}
.play-button span {
  display: block;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--ink);
}
.video-title-overlay {
  position: absolute;
  left: 28px;
  bottom: 24px;
  color: white;
}
.video-title-overlay span {
  display: block;
  font-size: 11px;
  letter-spacing: .16em;
  font-weight: 800;
  color: var(--gold);
}
.video-title-overlay strong {
  display: block;
  margin-top: 6px;
  font: 30px/1.1 "Archivo Black", sans-serif;
}
.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}
.meta {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.featured-copy h3,
.card-copy h3 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  line-height: 1.1;
}
.featured-copy h3 { font-size: 36px; }
.featured-copy p:not(.meta) { color: #5f5a53; }
.text-link,
.card-copy a {
  font-weight: 800;
  text-decoration: none;
}

.series-section {
  padding: 100px 0;
  color: white;
  background: var(--ink);
}
.section-heading.light > p { color: rgba(255,255,255,.6); }
.series-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.series-card {
  min-height: 300px;
  display: flex;
  align-items: center;
  padding: 42px 38px;
  text-decoration: none;
  transition: transform .25s ease, filter .25s ease;
}
.series-card:hover { transform: translateY(-5px); filter: brightness(1.06); }
.series-layout {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  width: 100%;
}
.series-content {
  width: 100%;
  max-width: 560px;
}
.series-card p {
  margin: 0 0 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
}
.series-card h3 {
  margin: 0 0 24px;
  max-width: 540px;
  font: 42px/1.03 "Archivo Black", sans-serif;
}
.series-card span:not(.series-number) {
  display: block;
  max-width: 620px;
  color: rgba(255,255,255,.8);
  font-size: 18px;
  line-height: 1.55;
}
.series-number {
  display: block;
  margin-top: -2px;
  font: 52px/1 "Archivo Black", sans-serif;
  opacity: .38;
}

.series-history { background: var(--blue); }
.series-fake { background: var(--red); }
.series-lives { background: var(--green); }
.series-made { background: #6d5433; }

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.filter-button {
  padding: 9px 13px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}
.filter-button.active,
.filter-button:hover {
  color: white;
  background: var(--ink);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.video-card {
  background: white;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 46px rgba(0,0,0,.09);
}
.video-card.hidden { display: none; }
.thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,.72)),
    linear-gradient(135deg, #999, #333);
}
.thumb::after {
  content: "";
  position: absolute;
  inset: 12% 12%;
  border: 1px solid rgba(255,255,255,.28);
}
.thumb span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 4px 7px;
  color: white;
  background: rgba(0,0,0,.78);
  font-size: 11px;
}
.thumb-one { background-color: #5b6871; background-image: linear-gradient(160deg, #75828b, #20262b); }
.thumb-two { background-color: #755947; background-image: linear-gradient(160deg, #8b7965, #352b25); }
.thumb-three { background-color: #6f5b45; background-image: linear-gradient(160deg, #907759, #2b231c); }
.thumb-four { background-color: #4a5960; background-image: linear-gradient(160deg, #708088, #253036); }
.thumb-five { background-color: #665847; background-image: linear-gradient(160deg, #897661, #312a23); }
.thumb-six { background-color: #725b4e; background-image: linear-gradient(160deg, #92796a, #302723); }
.card-copy { padding: 24px; }
.card-copy h3 { font-size: 24px; }
.card-copy p:not(.meta) { min-height: 76px; color: #686158; }

.quote-section {
  padding: 110px 0;
  color: white;
  background: var(--red);
}
.quote-inner { text-align: center; }
blockquote {
  max-width: 940px;
  margin: 0 auto 20px;
  font: clamp(34px, 5vw, 68px)/1.05 "Archivo Black", sans-serif;
  letter-spacing: -.03em;
}
.quote-inner > span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
}
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 100px;
  align-items: start;
}
.about-copy { font-size: 19px; color: #575149; }
.about-copy p:first-child { margin-top: 0; }
.about-copy .button { margin-top: 18px; }

.newsletter-section {
  padding: 84px 0;
  color: white;
  background: var(--blue);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 70px;
  align-items: center;
}
.newsletter-inner p { color: rgba(255,255,255,.72); }
.newsletter-form {
  display: flex;
  padding: 8px;
  background: white;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 0 16px;
  border: 0;
  outline: none;
}
.newsletter-form button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  color: white;
  background: var(--red);
  font-weight: 800;
  cursor: pointer;
}

.site-footer {
  padding: 54px max(20px, calc((100vw - var(--max)) / 2));
  color: rgba(255,255,255,.72);
  background: #111;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 40px;
}
.footer-brand {
  color: white;
  font: 21px "Archivo Black", sans-serif;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a { text-decoration: none; }
.footer-meta { text-align: right; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
}
.modal.open { display: grid; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.86);
}
.modal-dialog {
  position: relative;
  z-index: 2;
  width: min(960px, 92vw);
}
.modal-video {
  aspect-ratio: 16 / 9;
  background: black;
}
.modal-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.modal-close {
  position: absolute;
  right: 0;
  top: -48px;
  border: 0;
  background: transparent;
  color: white;
  font-size: 38px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero { min-height: 600px; }
  .hero-stamp { display: none; }
  .featured-card,
  .about-grid,
  .newsletter-inner { grid-template-columns: 1fr; }
  .series-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .filter-controls { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .site-nav {
    position: absolute;
    top: 79px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero h1 { font-size: 48px; }
  .hero-inner { margin-left: 22px; padding-right: 22px; }
  .featured-section,
  .latest-section,
  .about-section,
  .series-section { padding: 72px 0; }
  .video-placeholder { min-height: 310px; }
  .featured-copy { padding: 30px; }
  .featured-copy h3 { font-size: 30px; }
  .video-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 34px; }
  .newsletter-form { flex-direction: column; gap: 8px; }
  .newsletter-form input { min-height: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
}

/* Real video catalogue additions */
.real-feature {
  background-size: cover;
  background-position: center;
}
.series-grid-five .series-nextdoor {
  grid-column: 1 / -1;
  min-height: 250px;
  background: #705476;
}
.thumb-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #222;
}
.thumb-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, opacity .35s ease;
}
.thumb-link:hover img { transform: scale(1.035); opacity: .88; }
.duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  padding: 4px 7px;
  color: #fff;
  background: rgba(0,0,0,.8);
  font-size: 11px;
  font-weight: 700;
}
.card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding-left: 4px;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .25s ease;
}
.thumb-link:hover .card-play { opacity: 1; }
.card-copy p:not(.meta) { min-height: 78px; }
body.modal-open { overflow: hidden; }
@media (max-width: 900px) {
  .series-grid-five .series-nextdoor { grid-column: auto; }
  .card-play { opacity: .9; width: 46px; height: 46px; }
}

.series-nextdoor { background: #75512f; }
.thumb { display:block; background-size:cover; background-position:center; text-decoration:none; overflow:hidden; }
.thumb::before { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 45%,rgba(0,0,0,.52)); }
.thumb-play { position:absolute; left:50%; top:50%; width:58px; height:58px; border-radius:50%; background:rgba(255,255,255,.94); transform:translate(-50%,-50%); box-shadow:0 8px 24px rgba(0,0,0,.25); }
.thumb-play::after { content:""; position:absolute; left:23px; top:17px; border-top:12px solid transparent; border-bottom:12px solid transparent; border-left:18px solid #171717; }
.card-actions { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.preview-link { border:0; padding:0; background:transparent; font-weight:800; text-decoration:underline; cursor:pointer; color:#686158; }
.modal-open { overflow:hidden; }

/* Inline card player */
button.thumb {
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}
button.thumb:hover .thumb-play,
button.thumb:focus-visible .thumb-play {
  transform: translate(-50%, -50%) scale(1.08);
}
button.thumb:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.inline-video-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}


/* Simple inline YouTube player — matches the proven working embed method */
.inline-video-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}

.featured-card > .inline-video-frame {
  min-height: 470px;
  height: 100%;
}

@media (max-width: 900px) {
  .featured-card > .inline-video-frame {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .featured-card > .inline-video-frame {
    min-height: 310px;
  }
}


/* Archive additions */
.case-file-link {
  font-weight: 800 !important;
  color: #a43128 !important;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

@media (max-width: 680px) {
  }


.collection-archive-action {
  display: flex;
  justify-content: center;
  padding-top: 34px;
}

.collection-archive-action .button {
  min-width: 250px;
  text-align: center;
}


@media (max-width: 700px) {
  .series-card {
    min-height: 205px;
    padding: 26px;
  }

  .series-title-row {
    gap: 12px;
  }

  .series-card h3 {
    font-size: 28px;
  }

  .series-number {
    font-size: 22px;
  }

  .video-placeholder {
    min-height: 330px;
  }

  .play-button {
    width: 70px;
    height: 70px;
  }
}


@media (max-width: 700px) {
  .series-card {
    min-height: 250px;
    padding: 30px 24px;
  }

  .series-layout {
    gap: 14px;
  }

  .series-card p {
    margin-bottom: 20px;
    font-size: 11px;
  }

  .series-card h3 {
    margin-bottom: 18px;
    font-size: 31px;
  }

  .series-card span:not(.series-number) {
    font-size: 16px;
  }

  .series-number {
    font-size: 38px;
  }
}


.card-year {
  min-height: 0 !important;
  margin: -4px 0 14px;
  color: #8a8379 !important;
  font-size: 12px;
  font-weight: 700;
}


/* Consistent video-card alignment on homepage and Archive */
.video-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-card .thumb {
  flex: 0 0 auto;
}

.card-copy {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.card-copy .card-year {
  margin-top: auto;
}

.card-copy .card-actions {
  margin-top: 0;
}


.catalogue-loading,
.catalogue-error {
  grid-column: 1 / -1;
  margin: 0;
  padding: 34px;
  text-align: center;
  color: #716b62;
  background: rgba(255,255,255,.45);
}

.catalogue-error {
  color: #8f3237;
  font-weight: 700;
}

/* Aug18 refinements */
.series-card .series-layout{transform:translateY(-30px);}
.thumb{position:relative;overflow:hidden;background:#000!important;background-image:none!important;}
.thumb-image{display:block;width:100%;height:100%;object-fit:contain;background:#000;}
.thumb-play-button{position:absolute;inset:0;width:100%;height:100%;padding:0;border:0;background:transparent;cursor:pointer;}

/* Latest card fixes */
.series-card .series-layout{transform:none!important;align-items:flex-start!important;position:absolute!important;top:58px!important;left:0;right:0;}
.thumb{position:relative;overflow:hidden;background:#000!important;background-image:none!important;}
.thumb::before,.thumb::after{display:none!important;content:none!important;}
.thumb-image{display:block;width:100%;height:100%;object-fit:contain;background:#000;border:0!important;box-shadow:none!important;}
.thumb-image.landscape-16x9{object-fit:cover;background:transparent;}
.thumb-play-button{position:absolute;inset:0;width:100%;height:100%;padding:0;border:0;background:transparent;cursor:pointer;z-index:2;}


/* === Repair: collection cards === */
.series-card {
  position: relative;
  display: flex !important;
  align-items: flex-start !important;
  min-height: 300px;
  padding: 58px 38px 42px !important;
}

.series-card .series-layout {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  transform: none !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start !important;
  gap: 18px;
  width: 100%;
  opacity: 1 !important;
  visibility: visible !important;
}

.series-card .series-content,
.series-card .series-number,
.series-card .series-content p,
.series-card .series-content h3,
.series-card .series-content span {
  opacity: 1 !important;
  visibility: visible !important;
}

/* === Repair: video thumbnails === */
.thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000 !important;
  background-image: none !important;
}

.thumb::before,
.thumb::after {
  display: none !important;
  content: none !important;
}

.thumb-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  border: 0 !important;
  box-shadow: none !important;
  background: #000;
}

/* hqdefault fallback is 4:3, so contain it rather than crop it. */
.thumb-image.hq-fallback {
  object-fit: contain !important;
}

.thumb-play-button {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent !important;
  cursor: pointer;
}

.input--hidden {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.newsletter-status {
  margin: 14px 0 0;
  font-size: 0.95rem;
  line-height: 1.45;
}
.newsletter-status.is-success {
  font-weight: 700;
}
.newsletter-status.is-error {
  font-weight: 700;
}

.newsletter-privacy {
  margin: 10px 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: 0.72;
}
.newsletter-privacy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}


.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 10px 0 0;
  font-size: 0.76rem;
  line-height: 1.35;
  text-align: left;
}

.newsletter-consent input {
  flex: 0 0 auto;
  width: auto;
  margin: 2px 0 0;
}

.footer-legal {
  margin: 8px 0 0;
  font-size: 0.78rem;
  opacity: .7;
}

.footer-legal a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-hero {
  padding: 86px 0 48px;
  color: #fff;
  background: #171717;
}

.privacy-shell {
  max-width: 860px;
}

.privacy-hero h1 {
  margin: 8px 0 10px;
  font: clamp(42px, 7vw, 78px)/.98 "Archivo Black", sans-serif;
}

.privacy-updated {
  margin: 0;
  color: rgba(255,255,255,.65);
}

.privacy-content {
  padding-top: 64px;
  padding-bottom: 90px;
}

.privacy-content section + section {
  margin-top: 48px;
  padding-top: 4px;
}

.privacy-content h2 {
  margin: 0 0 14px;
  font: 26px/1.1 "Archivo Black", sans-serif;
}

.privacy-content p {
  margin: 0 0 14px;
  color: #575149;
  font-size: 17px;
  line-height: 1.7;
}

.privacy-content a {
  color: inherit;
  font-weight: 700;
  text-underline-offset: 2px;
}




/* Final newsletter signup layout */
.newsletter-signup {
  width: 100%;
}

.newsletter-form {
  display: flex !important;
  align-items: stretch !important;
  gap: 0 !important;
  padding: 8px !important;
  background: #fff !important;
}

.newsletter-form input[type="email"] {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  width: auto !important;
  border: 0 !important;
  background: transparent !important;
  color: #171717 !important;
}

.newsletter-form button[type="submit"] {
  flex: 0 0 auto !important;
}

.newsletter-consent {
  display: flex !important;
  align-items: flex-start !important;
  gap: 9px !important;
  margin: 12px 0 0 !important;
  color: rgba(255,255,255,.88) !important;
  font-size: .82rem !important;
  line-height: 1.4 !important;
  text-align: left !important;
}

.newsletter-consent input[type="checkbox"] {
  position: static !important;
  display: block !important;
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  opacity: 1 !important;
  appearance: auto !important;
}

.newsletter-consent span {
  display: block !important;
  color: inherit !important;
}

.newsletter-privacy {
  margin: 8px 0 0 !important;
  color: rgba(255,255,255,.62) !important;
  font-size: .76rem !important;
  line-height: 1.4 !important;
}

.newsletter-privacy a {
  color: inherit !important;
}

@media (max-width: 620px) {
  .newsletter-form {
    flex-direction: column !important;
    gap: 8px !important;
  }

  .newsletter-form button[type="submit"] {
    width: 100% !important;
  }
}


/* =========================================================
   Site-wide footer
   ========================================================= */
.site-footer {
  margin-top: 0;
  padding: 64px 0 0;
  color: #fff;
  background: #171717;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(150px, .72fr));
  gap: 56px;
  align-items: start;
}

.site-footer-brand {
  min-width: 0;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}

.footer-brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: #bf4636;
  font: 20px/1 "Archivo Black", sans-serif;
  transform: rotate(-3deg);
}

.footer-brand-text {
  font: 18px/1 "Archivo Black", sans-serif;
  letter-spacing: .055em;
}

.footer-tagline {
  max-width: 390px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.55;
}

.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-socials a:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-column h2 {
  margin: 2px 0 18px;
  color: #fff;
  font: 15px/1 "Archivo Black", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 0 0 12px;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.45;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-column a:hover {
  color: #fff;
}

.site-footer-bottom {
  margin-top: 56px;
  padding-top: 20px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
}

.site-footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.52);
  font-size: 13px;
}

/* Prevent legacy footer rules overriding the new footer */
.site-footer .footer-brand-link,
.site-footer .footer-column a,
.site-footer .footer-socials a {
  text-decoration: none;
}

@media (max-width: 950px) {
  .site-footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .site-footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }
}

@media (max-width: 680px) {
  .site-footer {
    padding-top: 48px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 38px 28px;
  }

  .site-footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .site-footer-bottom {
    margin-top: 42px;
  }
}

@media (max-width: 430px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }
}
