:root {
  --bg: #f7f8fb;
  --card: #ffffff;
  --ink: #172033;
  --muted: #687386;
  --line: #dde3ee;
  --brand: #1f6feb;
  --brand-dark: #174ea6;
  --warn: #b42318;
  --shadow: 0 18px 45px rgba(23, 32, 51, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.site-header, .site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  color: var(--ink);
  font-weight: 800;
  font-size: 1.05rem;
}

nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

nav a { color: var(--muted); font-weight: 700; }

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 22px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: center;
  min-height: 430px;
}

h1, h2, h3 { line-height: 1.1; margin: 0 0 12px; }
h1 { font-size: clamp(2.2rem, 7vw, 5rem); letter-spacing: -0.06em; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
p { margin: 0 0 14px; }

.lead {
  color: var(--muted);
  font-size: 1.25rem;
  max-width: 690px;
}

.eyebrow {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 800;
  padding: 10px 18px;
  cursor: pointer;
}

.button:hover { background: var(--brand-dark); text-decoration: none; }
.button.secondary { background: #e9eef8; color: var(--ink); }
.button.small { min-height: 34px; padding: 7px 12px; font-size: 0.86rem; }

.hero-actions, .quick-actions, .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-card, .card, .panel, .metric, .price-card, .timeline-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-card { padding: 28px; }
.card, .metric, .price-card, .timeline-item { padding: 20px; }
.panel { padding: clamp(20px, 4vw, 34px); margin: 22px 0; }
.narrow { max-width: 720px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }

.grid {
  display: grid;
  gap: 16px;
}

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

.metric span, .price-card span, .muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.metric strong {
  display: block;
  font-size: 1.7rem;
  margin-top: 8px;
}

.price-card strong {
  display: block;
  font-size: 3rem;
}

.form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 700;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}

textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checks { display: flex; gap: 16px; flex-wrap: wrap; }
.checks label { display: flex; align-items: center; font-weight: 600; }
.checks input { width: auto; }

.dashboard-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 16px;
  display: grid;
  gap: 8px;
  background: #111827;
  border-radius: 22px;
  padding: 18px;
}

.sidebar h2 { color: white; font-size: 1.1rem; }
.sidebar a, .link-button { color: #ffffff; font-weight: 800; }
.link-button { background: none; border: 0; padding: 0; cursor: pointer; font: inherit; }

.dashboard-content { min-width: 0; }
.section-heading { margin-bottom: 18px; }
.row-heading { display: flex; justify-content: space-between; gap: 16px; align-items: center; }

.funnel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.funnel div {
  border-radius: 16px;
  background: #f2f6ff;
  padding: 14px;
}

.funnel span { display: block; color: var(--muted); }
.funnel strong { font-size: 1.8rem; }

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; min-width: 720px; }
th, td { border-bottom: 1px solid var(--line); padding: 12px; text-align: left; vertical-align: top; }
th { color: var(--muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }

.tabs a {
  background: #e9eef8;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 800;
}

.inline-form { display: block; }
.alert { color: var(--warn); font-weight: 800; }
.timeline { display: grid; gap: 12px; }
.timeline-item strong, .timeline-item span { display: block; }

@media (max-width: 850px) {
  .hero, .dashboard-shell, .grid.three, .grid.four, .funnel {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-header, .row-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Figma public site translation */
:root {
  --bg: #ffffff;
  --card: #ffffff;
  --ink: #111111;
  --muted: #555555;
  --line: #111111;
  --brand: #111111;
  --brand-dark: #333333;
  --soft: #f5f5f5;
}

body {
  background: var(--bg);
  color: var(--ink);
}

main {
  width: 100%;
  padding: 0;
}

.site-header {
  width: 100%;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  padding: 14px 5%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--ink);
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

nav a {
  color: var(--ink);
  font-weight: 600;
}

.button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--ink);
  color: #ffffff;
  padding: 12px 24px;
  font-weight: 700;
}

.button:hover {
  background: #333333;
}

.button.secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.button.inverse {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ink);
}

.button.ghost-light {
  border-color: #ffffff;
  background: transparent;
  color: #ffffff;
}

.nav-cta {
  min-height: 42px;
  padding: 8px 18px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  justify-items: center;
  min-height: min(760px, calc(100vh - 72px));
  overflow: hidden;
}

.subhero {
  min-height: 430px;
}

.figma-hero {
  min-height: min(820px, calc(100vh - 72px));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.56);
}

.hero-media img,
.image-panel img,
.media-card img,
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kyle-field-bg {
  background-image:
    url("/site-photos/Kyle_Field_Panorama.jpg"),
    url("https://d22po4pjz3o32e.cloudfront.net/placeholder-image.svg");
}

.chilifest-stage-bg {
  background-image:
    url("/site-photos/Big%20Chili%20Fest%20Stage.jfif"),
    url("https://d22po4pjz3o32e.cloudfront.net/placeholder-image.svg");
  background-position: center;
}

.midnight-yell-bg {
  background-image:
    url("/site-photos/Midnight%20Yell.jpg"),
    url("https://d22po4pjz3o32e.cloudfront.net/placeholder-image.svg");
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  grid-column: 1;
  width: min(860px, 90%);
  margin-inline: auto;
  padding: 96px 0;
  color: #ffffff;
  text-align: center;
}

.center {
  text-align: center;
}

.center-actions {
  justify-content: center;
}

h1, h2, h3 {
  color: inherit;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.25rem, 10vw, 7.5rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.35rem, 2.5vw, 2.1rem);
}

.lead {
  max-width: 720px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.light {
  color: #ffffff;
}

.eyebrow {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow.light {
  color: #ffffff;
}

.section {
  width: min(1180px, 90%);
  margin: 0 auto;
  padding: clamp(64px, 9vw, 112px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 680px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(32px, 7vw, 80px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
}

.image-panel {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.image-panel img {
  position: absolute;
  inset: 0;
  display: block;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "✓";
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
}

.feature-mosaic {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
  transition: grid-template-columns 220ms ease;
}

.media-card {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 28px;
  color: #ffffff;
  border: 1px solid var(--line);
  transition: transform 220ms ease;
}

.media-card.large {
  min-height: 520px;
}

.media-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.52);
}

.media-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.media-card img.event-photo-contain {
  background: #080808;
  object-fit: contain;
  padding: 12px;
}

.media-card > div {
  position: relative;
  z-index: 1;
}

@media (min-width: 981px) {
  .feature-mosaic:has(.media-card:nth-child(1):hover) {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .feature-mosaic:has(.media-card:nth-child(2):hover) {
    grid-template-columns: 1fr 1.5fr 1fr;
  }

  .feature-mosaic:has(.media-card:nth-child(3):hover) {
    grid-template-columns: 1fr 1fr 1.5fr;
  }

  .media-card:hover {
    transform: translateY(-4px);
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.pricing-grid.compact {
  gap: 18px;
}

.pricing-card,
.service-card,
.panel.bordered,
.quote-form,
.contact-cards article,
.faq-list details {
  border: 1px solid var(--line);
  background: #ffffff;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: clamp(24px, 4vw, 36px);
  text-align: center;
}

.pricing-card strong {
  display: block;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.pricing-card .button {
  margin-top: auto;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  margin-top: 0;
  padding: clamp(64px, 9vw, 104px) 5%;
  background: var(--ink);
  color: #ffffff;
}

.cta-band .eyebrow,
.cta-band p {
  color: #ffffff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.service-card {
  padding: clamp(24px, 4vw, 36px);
}

.icon-dot {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  background: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-grid figure {
  aspect-ratio: 1;
  margin: 0;
  border: 1px solid var(--line);
  overflow: hidden;
}

.quote-card blockquote {
  margin: 0 0 22px;
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(32px, 7vw, 80px);
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

.contact-cards article {
  padding: 24px;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 40px);
}

label {
  color: var(--ink);
}

input, textarea, select {
  border-color: var(--line);
  border-radius: 0;
  min-height: 48px;
}

.faq {
  max-width: 820px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 18px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 800;
}

.faq-list p {
  color: var(--muted);
  margin: 14px 0 0;
}

.narrow {
  width: min(760px, 90%);
}

.dashboard-shell {
  width: min(1180px, 90%);
  margin: 28px auto 56px;
}

.dashboard-shell .panel,
.dashboard-shell .metric,
.dashboard-shell .card,
.dashboard-shell .timeline-item {
  border-color: #dde3ee;
  border-radius: 16px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  width: 100%;
  border-top: 1px solid var(--line);
  padding: 48px 5%;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 22px;
}

.footer-contact {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-cta {
    width: 100%;
  }

  .split,
  .split.reverse,
  .feature-mosaic,
  .pricing-grid,
  .service-grid,
  .gallery-grid,
  .contact-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .feature-mosaic {
    gap: 18px;
  }

  .media-card,
  .media-card.large,
  .image-panel {
    min-height: 320px;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .hero-content {
    width: min(92%, 620px);
    padding: 72px 0;
  }

  .hero-actions,
  .quick-actions,
  .tabs {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .text-link {
    width: 100%;
  }
}

/* Screenshot-inspired visual direction */
:root {
  --bg: #050505;
  --card: #f8f7f5;
  --ink: #111111;
  --muted: #d6d0cb;
  --line: rgba(255, 255, 255, 0.14);
  --brand: #7c0a02;
  --brand-dark: #4b0703;
  --cream: #f2d2c2;
  --soft: #f4f1ee;
  --nav: #340603;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --radius: 18px;
}

body {
  background: var(--bg);
  color: #ffffff;
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
.brand,
.button,
.pricing-card strong {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

h1,
h2,
h3 {
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

p {
  color: inherit;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--nav);
  color: #ffffff;
  padding: 10px 5%;
}

.brand,
nav a {
  color: #ffffff;
}

.brand {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  text-transform: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-color: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: var(--nav);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 900;
}

nav {
  gap: 26px;
}

nav a {
  font-size: 0.95rem;
  font-weight: 600;
}

.button {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: var(--brand);
  color: #ffffff;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.22), 0 10px 24px rgba(124, 10, 2, 0.24);
  text-transform: none;
}

.button:hover {
  background: #9a1208;
}

.button.secondary {
  background: var(--soft);
  color: var(--ink);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.button.inverse {
  background: #ffffff;
  color: var(--ink);
  border-color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.button.ghost-light {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
}

.nav-cta {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(52, 6, 3, 0.2)),
    rgba(0, 0, 0, 0.42);
}

.hero-content {
  width: min(820px, 90%);
}

.figma-hero {
  min-height: 720px;
}

.subhero {
  min-height: 420px;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.9rem);
  line-height: 0.98;
}

.lead {
  color: rgba(255, 255, 255, 0.9);
}

.eyebrow {
  color: var(--cream);
  font-weight: 700;
}

.section {
  width: min(1120px, 88%);
}

.dark-section,
.event-section,
.steps-section {
  width: 100%;
  padding-left: 6.25%;
  padding-right: 6.25%;
  background: #050505;
  color: #ffffff;
}

.dark-section .section-copy,
.event-section .section-heading p,
.steps-section .section-heading p {
  color: rgba(255, 255, 255, 0.82);
}

.dark-section .check-list li::before {
  content: "•";
  color: #ffffff;
}

.image-panel,
.media-card,
.gallery-grid figure,
.pricing-card,
.service-card,
.panel.bordered,
.quote-form,
.contact-cards article,
.faq-list details,
.step-card {
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.image-panel {
  background: #171717;
}

.media-card {
  border: 0;
  border-radius: var(--radius);
}

.media-card::after {
  background: linear-gradient(135deg, rgba(52, 6, 3, 0.55), rgba(0, 0, 0, 0.38));
}

.media-card h3 {
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.light-link {
  color: #ffffff;
}

.dark-button {
  background: #252525;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
}

.warm-section {
  width: 100%;
  padding-left: 6.25%;
  padding-right: 6.25%;
  background: #f6eee9;
  color: var(--ink);
}

.warm-section .section-heading p,
.pricing-card p,
.pricing-card li {
  color: #4e4540;
}

.services-use-cases .section-copy,
.services-use-cases .check-list li {
  color: var(--ink);
}

.pricing-card {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
}

.pricing-card strong {
  color: var(--brand);
}

.pricing-card .button {
  width: 100%;
}

.steps-section {
  background: var(--nav);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.step-card {
  background: #420904;
  color: #ffffff;
}

.step-card img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.step-card div {
  padding: 28px;
}

.step-card p {
  font-weight: 800;
}

.step-card h3 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.cta-band {
  background: var(--brand-dark);
}

.site-footer {
  background: #050505;
  color: #ffffff;
}

.footer-contact,
.site-footer {
  border-color: rgba(255, 255, 255, 0.12);
}

.footer-links a,
.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-form,
.contact-cards article,
.faq-list details,
.service-card {
  background: #ffffff;
  color: var(--ink);
  border-color: rgba(17, 17, 17, 0.08);
}

.contact-layout > div > .eyebrow {
  color: var(--ink);
}

.contact-layout > div > .section-copy {
  color: #2f2f2f;
}

input,
textarea,
select {
  border-color: rgba(17, 17, 17, 0.16);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
}

.contact-layout,
.faq,
.testimonials,
.gallery-grid,
.service-grid {
  color: var(--ink);
}

body:has(.contact-layout),
body:has(.gallery-grid),
body:has(.service-grid),
body:has(.pricing-grid) {
  background: #f6eee9;
}

.dashboard-shell {
  color: var(--ink);
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.85rem);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 6.1rem);
}

.section-copy,
.pricing-card p,
.pricing-card li,
.contact-cards p,
.faq-list p,
.site-footer p,
.footer-links a {
  color: #2f2f2f;
}

.dark-section .section-copy,
.event-section .section-heading p,
.steps-section .section-heading p,
.cta-band p,
.site-footer p,
.footer-links a {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 980px) {
  .figma-hero {
    min-height: 620px;
  }

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