/* Growth Affiliate Network — Landing Page Styles */

:root {
  --color-bg: #0a0f14;
  --color-bg-alt: #111820;
  --color-bg-light: #f4f7fb;
  --color-bg-light-alt: #eef2f7;
  --color-surface: #161e28;
  --color-surface-light: #ffffff;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-light: rgba(15, 23, 42, 0.1);
  --color-text: #e8edf2;
  --color-text-muted: #8b9aab;
  --color-text-dark: #0f172a;
  --color-text-dark-muted: #64748b;
  --color-accent: #22c57e;
  --color-accent-dim: rgba(34, 197, 126, 0.15);
  --color-accent-glow: rgba(34, 197, 126, 0.4);
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --header-height: 88px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Light sections */

.section-light {
  background: var(--color-bg-light);
  color: var(--color-text-dark);
}

.section-light .section-label {
  color: var(--color-accent);
}

.section-light h2 {
  color: var(--color-text-dark);
}

.section-light .section-intro,
.section-light .split-text p,
.section-light .story-highlights li,
.section-light .step p,
.section-light .cta-form-wrap > p {
  color: var(--color-text-dark-muted);
}

.section-light .step {
  border-bottom-color: var(--color-border-light);
}

.section-light .step h3 {
  color: var(--color-text-dark);
}

.section-light .story-quote-card {
  background: var(--color-surface-light);
  border-color: var(--color-border-light);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.section-light .story-quote-card blockquote {
  color: var(--color-text-dark);
}

.section-light .story-quote-card cite {
  color: var(--color-text-dark-muted);
}

.section-light .story-image-secondary {
  border-color: var(--color-bg-light);
}

.section-light .work-img--overlay {
  border-color: var(--color-bg-light);
}

.section-light .review {
  background: var(--color-surface-light);
  border-color: var(--color-border-light);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.section-light .review blockquote {
  color: var(--color-text-dark-muted);
}

.section-light .review strong {
  color: var(--color-text-dark);
}

.section-light .review span {
  color: var(--color-text-dark-muted);
}

.section-light .review figcaption {
  border-top-color: var(--color-border-light);
}

.section-light .form-row label {
  color: var(--color-text-dark-muted);
}

.section-light .form-row input {
  background: var(--color-surface-light);
  border-color: var(--color-border-light);
  color: var(--color-text-dark);
}

.section-light .form-row input::placeholder {
  color: rgba(100, 116, 139, 0.6);
}

.section-light .footer-copy,
.section-light .footer-links a {
  color: var(--color-text-dark-muted);
}

.section-light .footer-links a:hover {
  color: var(--color-text-dark);
}

.section-light.site-footer {
  border-top-color: var(--color-border-light);
}

.section-light.gallery-strip {
  border-color: var(--color-border-light);
}

.section-light .gallery-item {
  border-color: var(--color-border-light);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

/* Header & Navigation */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(10, 15, 20, 0.55);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1120px, 92vw);
  margin-inline: auto;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.logo:hover {
  transform: scale(1.04);
}

.logo img {
  height: 64px;
  width: 64px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
}

.nav-links a {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-pill);
  transition: color var(--transition), background var(--transition), box-shadow var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.nav-cta {
  flex-shrink: 0;
  padding: 0.65rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px var(--color-accent-glow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--color-accent-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Hero — full-screen image with text overlay */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10, 15, 20, 0.72) 0%, rgba(10, 15, 20, 0.35) 50%, rgba(10, 15, 20, 0.15) 100%),
    linear-gradient(to top, rgba(10, 15, 20, 0.5) 0%, transparent 45%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  width: min(1120px, 92vw);
  margin-inline: auto;
  padding-block: calc(var(--header-height) + 2rem) 4rem;
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem;
  background: rgba(34, 197, 126, 0.15);
  border-radius: var(--radius-pill);
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 14ch;
  margin-bottom: 1.25rem;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero h1 .text-accent,
.text-accent {
  color: var(--color-accent);
}

.hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}

.hero-lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  max-width: 50ch;
  margin-bottom: 2rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

/* Buttons — pill-shaped */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 4px 20px var(--color-accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--color-accent-glow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.section-light .btn-secondary {
  background: #fff;
  color: var(--color-text-dark);
  border-color: var(--color-border-light);
}

.section-light .btn-secondary:hover {
  background: var(--color-bg-light-alt);
  border-color: rgba(15, 23, 42, 0.2);
}

.btn-full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats dt {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
}

.hero-stats dd {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.2rem;
}

/* Gallery strip */

.gallery-strip {
  border-block: 1px solid var(--color-border);
  overflow: hidden;
}

.gallery-strip-track {
  overflow: hidden;
  padding-block: 1.25rem;
}

.gallery-strip-inner {
  display: flex;
  gap: 1rem;
  padding-inline: 1.25rem;
  width: max-content;
  animation: scroll-gallery 45s linear infinite;
}

.gallery-strip:hover .gallery-strip-inner {
  animation-play-state: paused;
}

@keyframes scroll-gallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.5rem)); }
}

.gallery-item {
  flex-shrink: 0;
  width: 260px;
  height: 170px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* Sections */

.section {
  padding-block: 6rem;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 2.5rem;
  max-width: 22ch;
}

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin-bottom: 0;
}

.section-intro {
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 42ch;
  justify-self: end;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-text p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.story-highlights {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.story-highlights li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.925rem;
  color: var(--color-text-muted);
}

.story-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Story images */

.story-images {
  position: relative;
  min-height: 480px;
}

.story-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

.story-image-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.story-image-secondary {
  position: absolute;
  top: -20px;
  right: -16px;
  width: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--color-bg-light);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.story-image-secondary img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.story-quote-card {
  position: absolute;
  bottom: -24px;
  left: -20px;
  right: 40px;
  background: var(--color-surface-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.story-quote-card blockquote {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.story-quote-card cite {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--color-text-dark-muted);
}

/* Cards with images */

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: rgba(34, 197, 126, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.card-image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem 1.75rem 1.75rem;
}

.card-icon {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.card p {
  font-size: 0.925rem;
  color: var(--color-text-muted);
}

/* How we work */

.work-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.work-content h2 {
  margin-bottom: 2rem;
}

.work-visual {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.work-image-stack {
  position: relative;
}

.work-img--main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.work-img--overlay {
  position: absolute;
  bottom: -24px;
  right: -20px;
  width: 220px;
  height: 165px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--color-bg-light);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.15);
}

.steps {
  list-style: none;
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid var(--color-border-light);
}

.step:last-child {
  border-bottom: none;
}

.step-num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: var(--color-accent-dim);
  color: var(--color-accent);
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.step p {
  font-size: 0.925rem;
  color: var(--color-text-dark-muted);
}

/* Results with banner */

.results-section {
  position: relative;
  padding-top: 0;
  overflow: hidden;
  background: var(--color-bg);
}

.results-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.results-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.results-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--color-bg-light) 0%,
    rgba(244, 247, 251, 0.5) 30%,
    rgba(10, 15, 20, 0.85) 100%
  );
}

.results-content {
  position: relative;
  margin-top: -6rem;
  z-index: 1;
}

.results-content h2 {
  max-width: none;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  color: #fff;
}

.results-content .section-label {
  text-align: center;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.result-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.result-item:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.result-value {
  display: block;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
}

/* Reviews */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review {
  background: var(--color-surface-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.review:hover {
  border-color: rgba(34, 197, 126, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
}

.review-stars {
  color: var(--color-accent);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.review blockquote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text-dark-muted);
  flex: 1;
}

.review figcaption {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-border-light);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent-dim);
  flex-shrink: 0;
}

.review strong {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-dark);
}

.review span {
  font-size: 0.8rem;
  color: var(--color-text-dark-muted);
}

/* CTA / Contact */

.cta-section {
  background: linear-gradient(180deg, var(--color-bg-light) 0%, var(--color-bg-light-alt) 100%);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cta-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

.cta-visual > img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.cta-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-dark-muted);
  border-top: 1px solid var(--color-border-light);
}

.cta-form-wrap h2 {
  max-width: none;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-row input {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-dim);
}

/* Footer */

.site-footer {
  padding-block: 2.5rem;
  border-top: 1px solid var(--color-border-light);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-footer img {
  height: 44px;
  width: 44px;
}

.footer-copy {
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  transition: color var(--transition), background var(--transition);
}

.footer-links a:hover {
  background: rgba(15, 23, 42, 0.06);
}

/* Mobile Navigation */

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(10, 15, 20, 0.97);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem;
    gap: 0.35rem;
  }

  .nav.open .nav-links a {
    display: block;
    padding: 0.75rem 1.15rem;
  }

  .nav.open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: calc(var(--header-height) + 280px);
    left: 1rem;
    right: 1rem;
    justify-content: center;
  }

  .nav.open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav.open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .split,
  .section-header,
  .card-grid,
  .work-layout,
  .results-grid,
  .reviews-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .story-images {
    min-height: auto;
    margin-bottom: 3rem;
  }

  .story-image-secondary,
  .story-quote-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .section-intro {
    justify-self: start;
  }

  .work-visual {
    position: static;
    order: -1;
  }

  .work-img--main {
    height: 360px;
  }

  .work-img--overlay {
    right: 12px;
    bottom: -16px;
    width: 160px;
    height: 120px;
  }

  .results-content {
    margin-top: -4rem;
  }

  .results-banner {
    height: 220px;
  }

  .gallery-strip-inner {
    animation: none;
    width: auto;
    flex-wrap: wrap;
    justify-content: center;
  }

  .gallery-item {
    width: calc(50% - 0.5rem);
    height: 140px;
  }
}

@media (max-width: 600px) {
  .logo img {
    height: 56px;
    width: 56px;
  }

  .section {
    padding-block: 4rem;
  }

  .gallery-item {
    width: 100%;
  }

  .hero h1 {
    max-width: none;
  }
}
