:root {
  --bg-main: #f5f0e4;
  --bg-soft: #efe7d6;
  --bg-dark: #0c1c0c;
  --bg-card: rgba(255, 255, 255, 0.86);
  --text-main: #122117;
  --text-light: #f6f3ec;
  --muted: #516153;
  --line: rgba(13, 37, 15, 0.12);
  --green: #0f6b24;
  --green-strong: #12802c;
  --green-soft: #dff0d9;
  --earth: #8c6b33;
  --shadow-lg: 0 24px 70px rgba(12, 28, 12, 0.16);
  --shadow-md: 0 18px 40px rgba(12, 28, 12, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background:
    linear-gradient(135deg, rgba(15, 107, 36, 0.08) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, #f6f1e7 0%, #eff2e8 48%, #f7f3ea 100%);
  color: var(--text-main);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 84%, rgba(15, 107, 36, 0.05) 84% 85%, transparent 85%),
    linear-gradient(0deg, transparent 0 88%, rgba(140, 107, 51, 0.06) 88% 89%, transparent 89%);
  background-size: 180px 180px, 220px 220px;
  opacity: 0.72;
}

img {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0;
  line-height: 1.65;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.announcement-bar {
  background: linear-gradient(90deg, #061206, #0f6b24 55%, #061206);
  color: var(--text-light);
  text-align: center;
  padding: 12px 16px;
  font-size: 0.95rem;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--green-strong), #39a14a);
  color: var(--text-light);
  box-shadow: 0 16px 38px rgba(18, 128, 44, 0.28);
}

.button-primary:hover {
  box-shadow: 0 20px 44px rgba(18, 128, 44, 0.34);
}

.button-secondary,
.button-outline {
  border: 1px solid rgba(12, 28, 12, 0.14);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text-main);
}

.button-secondary:hover,
.button-outline:hover {
  background: #ffffff;
}

.hero-section .button-secondary {
  border-color: rgba(237, 243, 234, 0.18);
  background: rgba(237, 243, 234, 0.08);
  color: var(--text-light);
}

.hero-section .button-secondary:hover {
  background: rgba(237, 243, 234, 0.14);
}

.button-full {
  width: 100%;
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding: 18px 0 52px;
  background:
    radial-gradient(circle at 15% 8%, rgba(79, 184, 101, 0.16), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(57, 161, 74, 0.12), transparent 28%),
    linear-gradient(180deg, #12351a 0%, #0b2110 46%, #071207 100%);
  color: var(--text-light);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(237, 243, 234, 0.045) 0 1px, transparent 1px 42px),
    linear-gradient(180deg, transparent 0%, rgba(5, 12, 6, 0.2) 100%);
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  text-align: center;
  max-width: 100%;
}

.hero-copy,
.split-copy,
.final-offer {
  text-align: center;
}

.hero-brandmark {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.hero-brandmark img {
  width: clamp(210px, 58vw, 280px);
  height: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  justify-content: center;
}

.hero-section .eyebrow {
  color: #7ad58a;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.audience-box h2,
.final-offer h2 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin-inline: auto;
  color: var(--text-light);
  font-size: clamp(2rem, 10vw, 3.05rem);
  overflow-wrap: break-word;
}

.hero-copy h1 span {
  display: block;
}

.hero-lead {
  width: 100%;
  min-width: 0;
  max-width: 64ch;
  margin: 8px auto 0;
  color: rgba(237, 243, 234, 0.82);
  font-size: 0.98rem;
}

.hero-video {
  width: 100%;
  min-width: 0;
  margin-top: 18px;
}

.hero-microproof {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 8px 0 6px;
}

.hero-microproof > span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(107, 199, 125, 0.2);
  border-radius: 999px;
  background: rgba(79, 184, 101, 0.13);
  color: rgba(246, 243, 236, 0.94);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
}

.hero-bullets,
.check-list {
  display: grid;
  gap: 12px;
}

.hero-bullets {
  width: 100%;
  min-width: 0;
}

.hero-bullets li,
.check-list li {
  position: relative;
  padding-left: 28px;
  text-align: left;
}

.hero-bullets li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

.hero-bullets li::before {
  content: "•";
  color: #7ad58a;
  font-size: 1.4rem;
  line-height: 1;
}

.check-list li::before {
  content: "✓";
}

.hero-actions {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 10px;
}

.hero-actions .button {
  width: 100%;
}

.video-card,
.price-panel {
  border: 1px solid rgba(12, 28, 12, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 240, 228, 0.9)),
    var(--bg-card);
  box-shadow: var(--shadow-lg);
}

.video-card {
  padding: 22px;
}

.hero-section .video-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.video-eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-section .video-eyebrow {
  color: #7ad58a;
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(12, 28, 12, 0.18);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(8, 20, 8, 0.86), rgba(16, 47, 19, 0.94)),
    #0b160b;
  color: var(--text-light);
  text-align: center;
}

.video-placeholder > div {
  display: grid;
  max-width: 46ch;
  gap: 10px;
  justify-items: center;
  min-width: 0;
}

.video-placeholder strong,
.video-placeholder p,
.announcement-bar p {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.play-mark {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.play-mark::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--text-light);
}

.video-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-section .video-note {
  color: rgba(237, 243, 234, 0.72);
}

.section {
  padding: 68px 0;
}

.section-cream {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(239, 231, 214, 0.18));
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(57, 161, 74, 0.1) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, #081408, #102710);
  color: var(--text-light);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.audience-box h2,
.final-offer h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  overflow-wrap: anywhere;
}

.section-heading p {
  margin-top: 18px;
  color: var(--muted);
}

.section-dark .section-heading p,
.section-dark .split-copy p,
.section-dark .benefit-card p,
.section-dark .benefit-card h3,
.section-dark .offer-item span,
.section-dark .offer-item strong,
.section-dark .eyebrow {
  color: rgba(246, 243, 236, 0.88);
}

.section-dark .info-card {
  border-color: rgba(246, 243, 236, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(6, 20, 8, 0.74);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.section-dark .info-card h3 {
  color: var(--text-light);
}

.section-dark .info-card p {
  color: rgba(246, 243, 236, 0.78);
}

.section-dark .info-card .info-number {
  background: rgba(107, 199, 125, 0.18);
  color: #9be5a7;
}

.content-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
}

.benefit-list,
.grid-three,
.feedback-grid,
.offer-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.info-card,
.benefit-card,
.audience-box,
.feedback-shot,
.offer-item,
.faq-list details {
  border-radius: var(--radius-lg);
  text-align: left;
}

.info-card,
.audience-box,
.feedback-shot,
.faq-list details {
  border: 1px solid rgba(12, 28, 12, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(12, 28, 12, 0.06);
}

.benefit-card,
.offer-item {
  border: 1px solid rgba(246, 243, 236, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.section-cream .offer-item {
  border-color: rgba(12, 28, 12, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(12, 28, 12, 0.06);
}

.info-card,
.benefit-card,
.audience-box,
.offer-item {
  padding: 28px;
}

.info-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(15, 107, 36, 0.1);
  color: var(--green);
  font-weight: 800;
}

.info-card h3,
.benefit-card h3,
.offer-item strong {
  display: block;
  margin: 0 0 12px;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.4rem;
}

.info-card p,
.audience-box p,
.faq-list p {
  color: var(--muted);
}

.feedback-shot {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(239, 231, 214, 0.52)),
    rgba(255, 255, 255, 0.76);
}

.feedback-shot img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 720px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(12, 28, 12, 0.14);
}

.feedback-shot-wide {
  min-height: 300px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.audience-box-secondary {
  background:
    linear-gradient(180deg, rgba(15, 107, 36, 0.06), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.84);
}

.audience-box .button {
  margin-top: 24px;
}

.offer-item {
  display: grid;
  gap: 4px;
}

.offer-item span {
  line-height: 1.6;
}

.final-offer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}

.final-offer p {
  margin-top: 18px;
  color: var(--muted);
}

.price-panel {
  padding: 28px;
  color: var(--text-main);
  text-align: center;
}

.price-kicker {
  color: var(--green);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.price-value {
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 0.95;
}

.price-installments,
.price-footnote {
  color: var(--muted);
}

.price-footnote {
  margin-bottom: 18px;
}

.faq-section {
  padding-top: 24px;
}

.faq-list {
  display: grid;
  max-width: 920px;
  gap: 18px;
  margin: 0 auto;
}

.faq-list details {
  padding: 26px 28px;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.4;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 14px;
  font-size: 1.02rem;
}

.site-footer {
  padding: 32px 0 104px;
  background: #081408;
  color: rgba(246, 243, 236, 0.88);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-bottom: 18px;
  text-align: center;
}

.footer-logo {
  width: 132px;
  margin: 0 auto 12px;
}

.footer-copy {
  margin: 0;
  color: rgba(246, 243, 236, 0.58);
  font-size: 0.95rem;
  text-align: center;
}

.site-footer .button-outline {
  border-color: rgba(246, 243, 236, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 40;
  display: flex;
  width: calc(100% - 16px);
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(246, 243, 236, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(17, 39, 20, 0.96), rgba(7, 15, 9, 0.94)),
    rgba(8, 20, 8, 0.92);
  box-shadow: 0 16px 44px rgba(8, 20, 8, 0.34);
  color: var(--text-light);
  transform: translateX(-50%);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease,
    visibility 0.24s ease;
}

.sticky-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 24px));
}

.sticky-cta-copy {
  display: grid;
  min-width: 0;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.sticky-cta-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(246, 243, 236, 0.92);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sticky-cta-title {
  display: block;
  font-size: 0.96rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.sticky-cta-note {
  display: block;
  color: rgba(246, 243, 236, 0.76);
  font-size: 0.76rem;
  line-height: 1.35;
}

.sticky-cta a {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-strong), #39a14a);
  box-shadow: 0 12px 28px rgba(22, 130, 49, 0.28);
  color: var(--text-light);
  font-weight: 800;
  text-align: center;
  overflow-wrap: anywhere;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@media (max-width: 560px) {
  .announcement-bar {
    padding: 10px 14px;
    font-size: 0.88rem;
  }

  .hero-section {
    padding-top: 14px;
  }

  .hero-copy h1 {
    max-width: min(100%, 360px);
    font-size: clamp(2.12rem, 10.6vw, 2.78rem);
    line-height: 1.04;
  }

  .hero-brandmark img {
    width: clamp(198px, 58vw, 228px);
  }

  .hero-lead {
    max-width: 300px;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .video-card {
    padding: 12px;
  }

  .video-eyebrow {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .video-note {
    display: none;
  }

  .video-placeholder {
    padding: 16px;
  }

  .play-mark {
    width: 46px;
    height: 46px;
  }

  .hero-microproof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 312px;
    margin-inline: auto;
  }

  .hero-microproof > span {
    width: 100%;
    min-height: 36px;
    padding: 8px 11px;
    font-size: 0.85rem;
  }

  .hero-microproof > span:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: min(100%, 180px);
    justify-self: center;
  }

  .section-heading h2,
  .split-copy h2,
  .audience-box h2,
  .final-offer h2 {
    font-size: clamp(1.8rem, 8vw, 2.25rem);
  }

  .hero-bullets li,
  .check-list li {
    padding-left: 24px;
  }

  .hero-bullets,
  .split-copy,
  .section-heading {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .video-card,
  .price-panel {
    border-radius: 22px;
  }

  .video-frame {
    border-radius: 18px;
  }

  .feedback-shot {
    min-height: 0;
    padding: 10px;
  }

  .feedback-shot img {
    max-height: none;
  }

  .faq-list summary {
    font-size: 1.08rem;
  }
}

@media (min-width: 761px) {
  .hero-section {
    padding: 40px 0 74px;
  }

  .section {
    padding: 92px 0;
  }

  .hero-copy,
  .split-copy,
  .final-offer {
    text-align: left;
  }

  .hero-copy {
    display: block;
  }

  .hero-brandmark,
  .hero-microproof,
  .hero-actions {
    justify-content: flex-start;
  }

  .hero-brandmark {
    margin-bottom: 14px;
  }

  .hero-copy .eyebrow {
    justify-content: flex-start;
    margin-bottom: 18px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 11vw, 4.8rem);
  }

  .hero-lead {
    margin-inline: 0;
    margin-top: 24px;
    font-size: 1.08rem;
  }

  .hero-microproof {
    margin: 26px 0 18px;
  }

  .hero-actions {
    flex-direction: row;
    margin-top: 30px;
  }

  .hero-actions .button {
    width: auto;
  }

  .benefit-list,
  .offer-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feedback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .info-card,
  .benefit-card,
  .audience-box,
  .offer-item,
  .faq-list details {
    height: 100%;
    padding: 28px;
  }

  .sticky-cta {
    width: min(calc(100% - 24px), 760px);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border-radius: 999px;
  }

  .sticky-cta-copy {
    flex: 1;
  }

  .sticky-cta a {
    min-width: 190px;
  }
}

@media (min-width: 1081px) {
  .hero-section {
    padding: 54px 0 118px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(460px, 0.98fr);
    gap: 18px 72px;
    align-items: center;
  }

  .hero-brandmark img {
    width: clamp(250px, 21vw, 315px);
  }

  .hero-brandmark,
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-lead {
    grid-column: 1;
  }

  .hero-bullets {
    grid-column: 1 / -1;
    grid-row: 7;
  }

  .hero-microproof,
  .hero-actions {
    grid-column: 2;
  }

  .hero-video {
    grid-column: 2;
    grid-row: 2 / span 3;
    width: 100%;
    max-width: 640px;
    margin-top: 0;
    justify-self: end;
    align-self: center;
  }

  .hero-section .video-note {
    display: none;
  }

  .hero-copy h1 {
    max-width: 10.8ch;
    font-size: clamp(3.1rem, 4.7vw, 4.15rem);
  }

  .hero-lead {
    max-width: 52ch;
  }

  .hero-microproof {
    grid-row: 5;
    justify-content: flex-start;
    margin-top: 22px;
  }

  .hero-bullets {
    max-width: 920px;
    margin: 18px auto 0;
  }

  .hero-actions {
    grid-row: 6;
    justify-content: flex-start;
    margin-top: 12px;
  }

  .hero-actions .button {
    min-height: 52px;
  }

  .content-split {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 34px;
  }

  .audience-grid,
  .final-offer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .footer-logo {
    margin-inline: 0;
  }
}

@media (min-width: 1181px) {
  .feedback-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feedback-shot-wide {
    grid-column: span 2;
  }
}
