:root {
  --ivory: #f7f4ef;
  --beige: #efe8dd;
  --dark: #141414;
  --gold: #b88a4a;
  --text: #1b1b1b;
  --muted: #666666;
  --line: rgba(27, 27, 27, 0.13);
  --dark-line: rgba(247, 244, 239, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 76px);
  background: transparent;
  backdrop-filter: blur(0);
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease, padding 300ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(247, 244, 239, 0.86);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(27, 27, 27, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-logo {
  display: block;
  width: 168px;
  height: auto;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 15px;
  letter-spacing: 0.04em;
}

nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 38px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

nav a {
  position: relative;
  padding: 8px 0;
  transition: color 220ms ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

nav a:hover {
  color: var(--text);
}

nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(27, 27, 27, 0.24);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.header-cta:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--ivory);
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  align-items: center;
  gap: clamp(36px, 6vw, 96px);
  padding: 112px clamp(20px, 5vw, 76px) 76px;
  background: var(--ivory);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  font-size: 72px;
  line-height: 1;
}

h2 {
  font-size: 40px;
  line-height: 1.08;
}

h3 {
  font-size: 34px;
  line-height: 1.08;
}

p {
  color: var(--muted);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 34px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button,
.session-form button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid var(--text);
  font-weight: 700;
  transition: transform 260ms ease, background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.button.primary,
.session-form button {
  background: var(--text);
  color: var(--ivory);
}

.button.quiet {
  background: transparent;
  color: var(--text);
}

.button:hover,
.session-form button:hover {
  transform: translateY(-2px);
}

.button.quiet:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: 660px;
  margin-top: 26px;
  color: rgba(27, 27, 27, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero-trust-strip span:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

.hero-image {
  position: relative;
  margin: 0;
}

.image-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(20, 20, 20, 0.14), rgba(184, 138, 74, 0.08)),
    var(--beige);
  transition: transform 800ms ease, filter 800ms ease;
}

.editorial-photo {
  background:
    radial-gradient(circle at 72% 22%, rgba(184, 138, 74, 0.22), transparent 26%),
    linear-gradient(135deg, rgba(27, 27, 27, 0.2), rgba(184, 138, 74, 0.08)),
    linear-gradient(90deg, #dfd4c6, #f2ece3 48%, #cbbca7);
}

.editorial-photo img,
.trust-image img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-photo img {
  object-position: center;
  filter: saturate(0.9) contrast(0.98) brightness(0.94);
}

.editorial-photo::after {
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.02), rgba(20, 20, 20, 0.16));
  background-size: auto;
  opacity: 1;
}

.image-placeholder::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(27, 27, 27, 0.14);
}

.image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(27, 27, 27, 0.06) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 0 49%, rgba(27, 27, 27, 0.05) 49% 51%, transparent 51%);
  background-size: 240px 240px;
  opacity: 0.55;
}

.image-placeholder span {
  position: relative;
  z-index: 1;
  color: rgba(27, 27, 27, 0.44);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
}

.hero-image:hover .image-placeholder,
.content-image:hover .image-placeholder,
.trust-statement:hover .trust-image,
.story:hover .story-image {
  transform: scale(1.012);
}

.floating-metrics {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(390px, calc(100% - 56px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(247, 244, 239, 0.86);
}

.floating-metrics span {
  padding: 18px 16px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.floating-metrics span:first-child {
  border-left: 0;
}

.floating-metrics strong {
  display: block;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 31px;
  line-height: 1;
}

.section {
  padding: 100px clamp(20px, 5vw, 76px);
}

.light {
  background: var(--ivory);
}

.beige {
  background: var(--beige);
}

.dark {
  background: var(--dark);
  color: var(--ivory);
}

.dark p,
.dark li,
.dark span,
.dark dd {
  color: rgba(247, 244, 239, 0.68);
}

.dark .brand-mark {
  color: var(--gold);
}

.editorial-heading {
  max-width: 1080px;
  margin: 0 auto 52px;
  text-align: center;
}

.editorial-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 18px;
}

.manifesto-section {
  border-top: 1px solid rgba(27, 27, 27, 0.06);
}

.manifesto-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-copy h2 {
  max-width: 840px;
  margin: 0 auto;
}

.manifesto-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px auto 0;
  font-size: 18px;
}

.growth-ingredients,
.systems-list {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.growth-ingredients p,
.systems-list span {
  min-height: 120px;
  display: flex;
  align-items: end;
  margin: 0;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.department-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--dark-line);
  border-left: 1px solid var(--dark-line);
  gap: 0;
}

.department-grid article {
  min-height: 460px;
  padding: 38px 36px;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.department-grid h3 {
  margin-bottom: 32px;
}

.department-grid ul,
.department-grid li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.department-grid li {
  padding: 12px 0;
  border-top: 1px solid var(--dark-line);
  font-size: 15px;
}

.journey-section {
  background: var(--ivory);
}

.journey-timeline {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  counter-reset: journey;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.journey-timeline span {
  position: relative;
  min-height: 138px;
  display: flex;
  align-items: end;
  padding: 62px 20px 20px;
  border: 1px solid var(--line);
  border-top: 0;
  border-left: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  transition: color 220ms ease, transform 220ms ease;
  background: rgba(239, 232, 221, 0.28);
}

.journey-timeline span::before {
  counter-increment: journey;
  content: counter(journey, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--ivory);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.journey-timeline span:not(:last-child)::after {
  content: none;
}

.journey-timeline span:hover {
  color: var(--gold);
  transform: translateY(-4px);
}

.journey-timeline span:hover::before {
  background: var(--gold);
  color: var(--ivory);
  transform: scale(1.04);
}

.number-wall {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 34px 28px;
}

.number-wall div {
  grid-column: span 2;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.number-wall div:nth-child(4),
.number-wall div:nth-child(5) {
  grid-column: span 3;
}

.number-wall strong {
  display: block;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 0.92;
  margin-bottom: 16px;
}

.number-wall strong em {
  display: block;
  font-style: normal;
}

.number-wall span {
  color: var(--muted);
}

.results-screens {
  max-width: 1260px;
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.results-screens figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--beige);
}

.results-screens img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(0.95);
}

.logo-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.logo-grid div {
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(247, 244, 239, 0.36);
  text-align: center;
  transition: border-color 240ms ease, background 240ms ease, transform 240ms ease;
}

.logo-grid div:hover {
  border-color: rgba(184, 138, 74, 0.42);
  background: rgba(247, 244, 239, 0.52);
  transform: translateY(-2px);
}

.logo-grid img {
  display: block;
  max-width: 68%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(0.92) brightness(0.78);
  opacity: 0.82;
}

.story-stack {
  display: grid;
  gap: 92px;
}

.story {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(36px, 7vw, 108px);
  align-items: center;
}

.story.reverse .story-image {
  order: 2;
}

.story-image {
  min-height: 440px;
  background:
    linear-gradient(135deg, rgba(247, 244, 239, 0.12), rgba(184, 138, 74, 0.12)),
    #202020;
}

.media-proof {
  overflow: hidden;
  border: 1px solid var(--dark-line);
  background: #202020;
}

.media-proof img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(0.96);
}

.story-image::before {
  border-color: rgba(247, 244, 239, 0.16);
}

.story-image span {
  color: rgba(247, 244, 239, 0.38);
}

.story-copy {
  max-width: 620px;
}

.story-copy p:not(.eyebrow) {
  margin: 16px 0;
}

.story-copy strong {
  display: block;
  color: var(--ivory);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 40px;
  line-height: 1.05;
  margin: 6px 0 20px;
}

.story-result {
  color: var(--gold) !important;
  font-weight: 700;
}

.story-copy a {
  color: var(--gold);
  font-weight: 700;
}

.content-section {
  display: grid;
  gap: 52px;
}

.content-image {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

.wide-placeholder {
  min-height: 520px;
}

.content-copy {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.content-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 30px auto 0;
  font-size: 19px;
}

.video-frame {
  min-height: 620px;
  text-align: center;
  color: var(--text);
  align-content: center;
  padding: 56px;
}

.video-frame img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(0.9) brightness(0.78);
}

.video-frame::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.72), rgba(20, 20, 20, 0.36) 48%, rgba(20, 20, 20, 0.72)),
    linear-gradient(180deg, rgba(20, 20, 20, 0.42), rgba(20, 20, 20, 0.68));
  background-size: auto;
  opacity: 1;
}

.video-frame strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 26px;
  padding: 0 20px;
  border: 1px solid rgba(247, 244, 239, 0.58);
  background: rgba(247, 244, 239, 0.9);
  color: var(--text);
  font-size: 13px;
}

.video-frame span {
  color: rgba(247, 244, 239, 0.92);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
  max-width: 760px;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.96;
}

.video-frame p {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 20px auto 0;
  color: rgba(247, 244, 239, 0.84);
  font-size: 18px;
}

.production-list {
  max-width: 900px;
  margin: 38px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  text-align: left;
}

.production-list span {
  min-height: 82px;
  display: flex;
  align-items: end;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1;
}

.systems-list {
  border-color: var(--line);
}

.systems-list span {
  min-height: 124px;
  position: relative;
  padding-top: 48px;
}

.systems-list span::before {
  content: attr(data-icon);
  position: absolute;
  top: 22px;
  left: 24px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 138, 74, 0.44);
  color: var(--gold);
  font-family: Inter, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.trust-statement {
  display: grid;
  gap: 52px;
  text-align: center;
}

.trust-copy {
  max-width: 900px;
  margin: 0 auto;
}

.trust-copy h2 {
  font-size: 54px;
  line-height: 0.96;
}

.trust-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 20px auto 0;
  color: rgba(247, 244, 239, 0.68);
  font-size: 18px;
}

.trust-image {
  max-width: 1160px;
  width: 100%;
  min-height: 500px;
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(247, 244, 239, 0.08), rgba(184, 138, 74, 0.14)),
    #202020;
}

.trust-image img {
  object-position: center;
  filter: saturate(0.88) contrast(0.98) brightness(0.82);
}

.trust-image::after {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.56), rgba(20, 20, 20, 0.08) 42%, rgba(20, 20, 20, 0.5)),
    linear-gradient(180deg, rgba(20, 20, 20, 0.06), rgba(20, 20, 20, 0.42));
  background-size: auto;
  opacity: 1;
}

.trust-image::before {
  border-color: rgba(247, 244, 239, 0.16);
}

.trust-image span {
  color: rgba(247, 244, 239, 0.92);
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.44);
}

.testimonial {
  max-width: 1120px;
  margin: 0 auto;
}

blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 0.96;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 44px;
}

.avatar-placeholder {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--beige);
  border: 1px solid var(--dark-line);
}

.testimonial-meta p {
  margin: 0;
}

.testimonial-meta strong {
  color: var(--ivory);
}

.session-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 7vw, 112px);
  align-items: start;
}

.session-copy {
  max-width: 760px;
}

.session-logo {
  display: block;
  width: 240px;
  height: auto;
  margin: 0 0 34px;
}

.session-copy p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 22px;
  font-size: 18px;
}

.session-form {
  display: grid;
  gap: 22px;
  padding-top: 10px;
}

.session-form label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.session-form input {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  outline: none;
}

.session-form input:focus {
  border-bottom-color: var(--gold);
}

.session-form button {
  width: fit-content;
  margin-top: 18px;
  cursor: pointer;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 5vw, 76px);
  background: var(--dark);
  color: var(--ivory);
}

.footer p {
  max-width: 460px;
  margin: 0;
  color: rgba(247, 244, 239, 0.62);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms ease, transform 900ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  nav {
    display: none;
  }

  .hero,
  .story,
  .session-section {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  p,
  .hero-copy > p:not(.eyebrow),
  .editorial-heading p:not(.eyebrow) {
    font-size: 17px;
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .story.reverse .story-image {
    order: 0;
  }

  .department-grid,
  .growth-ingredients,
  .systems-list,
  .journey-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .number-wall,
  .logo-grid,
  .results-screens {
    grid-template-columns: repeat(2, 1fr);
  }

  .number-wall div,
  .number-wall div:nth-child(4),
  .number-wall div:nth-child(5) {
    grid-column: span 1;
  }
}

@media (max-width: 660px) {
  .site-header {
    padding: 16px;
  }

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 28px;
  }

  p,
  .hero-copy > p:not(.eyebrow),
  .editorial-heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .image-placeholder,
  .story-image,
  .wide-placeholder {
    min-height: 360px;
  }

  .video-frame {
    min-height: 430px;
    padding: 28px;
  }

  .video-frame p {
    font-size: 15px;
  }

  .floating-metrics,
  .department-grid,
  .growth-ingredients,
  .systems-list,
  .number-wall,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .floating-metrics {
    position: static;
    width: 100%;
  }

  .floating-metrics span {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .department-grid article {
    min-height: auto;
    padding: 28px;
  }

  .footer {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 138px;
  }

  .journey-timeline span {
    min-height: 64px;
    padding: 54px 18px 18px;
    font-size: 24px;
  }

  .number-wall strong,
  .trust-copy h2 {
    font-size: 42px;
  }

  blockquote {
    font-size: 32px;
  }

  .production-list {
    grid-template-columns: 1fr;
  }

  .results-screens {
    grid-template-columns: 1fr;
  }

  .results-screens img,
  .media-proof img {
    height: 260px;
  }

  .session-logo {
    width: 190px;
  }
}
