:root {
  --ink: #151311;
  --coal: #080807;
  --paper: #f5efe3;
  --paper-strong: #fff8ea;
  --muted: #4d4338;
  --amber: #e69d2f;
  --amber-dark: #b96f17;
  --green: #2f6d33;
  --line: rgba(21, 19, 17, 0.16);
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ffd27c;
  outline-offset: 3px;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 7, 0.92);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
  padding-top: 12px;
  padding-bottom: 12px;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-grid;
  gap: 1px;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
}

.brand-small,
.brand-place {
  font-size: 0.66rem;
  font-weight: 800;
}

.brand-main {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  font-weight: 800;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  gap: clamp(18px, 2.8vw, 36px);
  font-size: 0.93rem;
  font-weight: 700;
}

.desktop-nav a {
  opacity: 1;
}

.desktop-nav a:hover {
  color: var(--amber);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: #150f07;
  background: linear-gradient(180deg, #f5bd54, var(--amber));
  box-shadow: 0 14px 30px rgba(230, 157, 47, 0.22);
}

.button.secondary {
  color: var(--white);
  border-color: var(--amber);
  background: rgba(0, 0, 0, 0.24);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.mobile-nav {
  position: fixed;
  z-index: 19;
  top: 72px;
  left: 16px;
  right: 16px;
  display: none;
  padding: 14px;
  color: var(--white);
  background: rgba(8, 8, 7, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.mobile-nav.is-open {
  display: grid;
  gap: 6px;
}

.mobile-nav a {
  padding: 13px 10px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 860px;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(560px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 5vw, 82px);
  padding: 118px clamp(28px, 5vw, 86px) 82px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 34%, rgba(230, 157, 47, 0.22), transparent 32%),
    linear-gradient(90deg, rgba(8, 8, 7, 0.98) 0%, rgba(8, 8, 7, 0.88) 46%, rgba(8, 8, 7, 0.56) 100%),
    #090806;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 46px;
  background: var(--paper);
  clip-path: polygon(0 62%, 10% 70%, 22% 52%, 37% 70%, 52% 48%, 69% 64%, 83% 50%, 100% 67%, 100% 100%, 0 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.25rem, 5vw, 5.45rem);
  line-height: 1.03;
}

h1 span {
  display: inline;
  color: var(--amber);
}

.hero-copy p {
  max-width: 560px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  line-height: 1.68;
}

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

.hero-visual {
  position: relative;
  z-index: 1;
  height: clamp(460px, 47vw, 640px);
  margin-right: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
}

.audiences {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 52px clamp(20px, 8vw, 120px) 62px;
  background: var(--paper);
}

.audiences article {
  min-height: 190px;
  padding: 0 clamp(20px, 4vw, 54px);
  border-right: 1px solid var(--line);
}

.audiences article:last-child {
  border-right: 0;
}

.line-icon {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 2.2rem;
}

.audiences h2,
.audiences h3,
.coupon-grid h3,
.steps h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.audiences p,
.steps p,
.coupon-grid p,
.partner-grid span,
.model p,
.contact p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.steps-section {
  padding: 70px clamp(20px, 5vw, 80px) 78px;
  color: var(--white);
  background:
    linear-gradient(rgba(8, 8, 7, 0.94), rgba(8, 8, 7, 0.96)),
    radial-gradient(circle at 20% 10%, rgba(230, 157, 47, 0.28), transparent 32%),
    #11100e;
}

.section-heading {
  max-width: 600px;
  margin-bottom: 36px;
}

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

.section-heading h2,
.model h2,
.contact h2 {
  font-size: clamp(2.4rem, 4.8vw, 4.35rem);
}

.section-heading p {
  margin: 14px 0 0;
  color: inherit;
  opacity: 0.96;
  font-size: 1.04rem;
  line-height: 1.72;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1140px;
  margin: 0 auto;
}

.steps article {
  position: relative;
  padding: 22px 10px 0;
  text-align: center;
}

.steps article + article::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50px;
  width: 26px;
  height: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
  border-right: 1px solid rgba(255, 255, 255, 0.38);
  transform: rotate(45deg);
}

.steps span {
  display: block;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 900;
}

.steps h3 {
  color: var(--white);
  text-transform: none;
}

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

.partners,
.coupons,
.contact {
  padding: 78px clamp(20px, 5vw, 80px);
}

.partner-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1.15fr);
  gap: 42px;
  align-items: stretch;
}

.benefits-list {
  display: grid;
  gap: 18px;
}

.benefits-list article {
  position: relative;
  padding-left: 42px;
}

.benefits-list article::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.benefits-list strong {
  display: block;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.dashboard-card {
  min-height: 430px;
  padding: 28px;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 234, 0.92)),
    url("assets/hero-guia-cervejeiro.png");
  background-size: cover;
  background-position: 72% 58%;
  border: 1px solid rgba(21, 19, 17, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(21, 19, 17, 0.14);
}

.dashboard-top,
.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-top {
  margin-bottom: 22px;
  font-weight: 800;
}

.metric-row {
  margin-bottom: 28px;
}

.metric-row div {
  flex: 1;
  padding: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 19, 17, 0.12);
  border-radius: 6px;
}

.metric-row strong {
  display: block;
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
}

.metric-row span {
  display: block;
  margin-top: 5px;
  font-size: 0.78rem;
}

.chart {
  height: 185px;
  display: flex;
  align-items: end;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(21, 19, 17, 0.12);
  border-radius: 6px;
}

.chart span {
  flex: 1;
  min-width: 12px;
  background: linear-gradient(180deg, var(--amber), var(--green));
  border-radius: 8px 8px 0 0;
}

.coupons {
  background: var(--paper-strong);
}

.coupon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.coupon-grid article {
  padding: 28px;
  min-height: 240px;
  background: var(--white);
  border: 1px solid rgba(21, 19, 17, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(21, 19, 17, 0.08);
}

.coupon-grid span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 30px;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 1.35rem;
}

.model {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(240px, 0.8fr) minmax(240px, 0.8fr);
  gap: 34px;
  padding: 78px clamp(20px, 5vw, 80px);
  color: var(--white);
  background: #11100e;
}

.price-panel,
.club-panel {
  padding: 28px;
  border: 1px solid rgba(230, 157, 47, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.price-panel span,
.club-panel span {
  display: block;
  color: var(--amber);
  font-weight: 800;
}

.price-panel strong,
.club-panel strong {
  display: block;
  margin: 14px 0;
  color: var(--amber);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.price-panel small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.price-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.price-panel li::before {
  content: "✓";
  margin-right: 8px;
  color: #71a95f;
  font-weight: 900;
}

.club-panel p,
.model p {
  color: rgba(255, 255, 255, 0.9);
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(360px, 1.2fr);
  gap: 42px;
  align-items: start;
  background: linear-gradient(90deg, var(--paper), var(--paper-strong));
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #42382d;
  font-size: 0.84rem;
  font-weight: 800;
}

.lead-form .wide {
  grid-column: span 2;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 19, 17, 0.3);
  border-radius: 3px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.lead-form button {
  justify-self: start;
}

.form-status {
  align-self: center;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 26px clamp(20px, 5vw, 80px);
  color: var(--white);
  background: #070706;
}

.site-footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.65;
}

.site-footer div {
  display: grid;
  gap: 6px;
  justify-items: end;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
}

.utility-page {
  min-height: 100vh;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-strong) 100%);
}

.utility-page .site-header {
  background: rgba(8, 8, 7, 0.96);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.utility-main {
  padding: 118px clamp(20px, 5vw, 80px) 84px;
}

.utility-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding: clamp(30px, 4vw, 46px);
  margin-bottom: 54px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(230, 157, 47, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(8, 8, 7, 0.98) 0%, rgba(18, 15, 11, 0.98) 100%);
  border-radius: 14px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.2);
}

.utility-copy {
  color: var(--white);
}

.utility-copy h1,
.utility-copy h2 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 4.6vw, 4.8rem);
  line-height: 1.02;
}

.utility-copy p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.04rem;
  line-height: 1.72;
}

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

.utility-panel {
  padding: clamp(24px, 3vw, 34px);
  color: var(--white);
  background: rgba(255, 248, 234, 0.08);
  border: 1px solid rgba(255, 248, 234, 0.18);
  border-radius: 10px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.utility-panel h2,
.utility-panel h3 {
  margin: 0 0 10px;
}

.utility-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.72;
}

.calculator-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.94fr) minmax(280px, 0.78fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
}

.calculator-card,
.calculator-results,
.calculator-note {
  background: var(--white);
  border: 1px solid rgba(21, 19, 17, 0.12);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(21, 19, 17, 0.08);
}

.calculator-card,
.calculator-results {
  padding: clamp(22px, 3vw, 34px);
}

.calculator-card h2,
.calculator-results h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.7rem);
  line-height: 1.06;
}

.calculator-card p,
.calculator-results p,
.calculator-note p,
.calculator-list li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.calculator-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.calculator-form label {
  display: grid;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.calculator-form input {
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 6px;
  background: #fcfaf4;
  font-size: 1.02rem;
}

.calculator-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.button.ghost {
  color: var(--ink);
  background: rgba(21, 19, 17, 0.06);
  border-color: rgba(21, 19, 17, 0.14);
}

.calculator-results {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 20px;
}

.result-highlight {
  padding: 22px 24px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(245, 189, 84, 0.24), transparent 32%),
    linear-gradient(135deg, #0f0d0b 0%, #20160e 100%);
  border-radius: 10px;
}

.result-highlight span {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.result-highlight strong {
  display: block;
  margin-top: 10px;
  color: var(--amber);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.result-box {
  padding: 18px;
  background: #fcfaf4;
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 8px;
}

.result-box span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.result-box strong {
  display: block;
  margin-top: 10px;
  font-size: 1.36rem;
  line-height: 1.2;
  color: var(--ink);
}

.result-box-wide {
  grid-column: 1 / -1;
}

.result-box-wide strong {
  font-size: 1.12rem;
  line-height: 1.45;
}

.calculator-note {
  margin-top: 22px;
  padding: 20px 22px;
}

.calculator-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.calculator-list li::before {
  content: "•";
  margin-right: 8px;
  color: var(--green);
  font-weight: 900;
}

.helper-text {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.active-link {
  color: var(--amber) !important;
}

.is-hidden {
  display: none !important;
}

.portal-main {
  display: grid;
  gap: 34px;
}

.portal-hero {
  margin-bottom: 0;
}

.portal-highlights {
  align-self: stretch;
}

.portal-highlight-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.portal-highlight-list li {
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.7;
}

.portal-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.85fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.auth-card,
.member-card,
.portal-feature-card,
.portal-content-card {
  background: var(--white);
  border: 1px solid rgba(21, 19, 17, 0.12);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(21, 19, 17, 0.08);
}

.auth-card,
.member-card,
.portal-feature-card {
  padding: clamp(24px, 3vw, 34px);
}

.auth-card-header {
  margin-bottom: 22px;
}

.auth-card-header h2,
.member-header h2 {
  font-size: clamp(2rem, 2.5vw, 2.9rem);
  line-height: 1.02;
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-form + .auth-form {
  margin-top: 16px;
}

.auth-form label {
  display: grid;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.auth-form input {
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 6px;
  background: #fcfaf4;
  font-size: 1.02rem;
}

.auth-inline,
.member-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.auth-feedback {
  margin-top: 18px;
  padding: 15px 16px;
  border-radius: 8px;
  background: rgba(21, 19, 17, 0.05);
  color: #302821;
  font-size: 0.98rem;
  line-height: 1.65;
}

.auth-feedback[data-tone="success"] {
  background: rgba(47, 109, 51, 0.12);
  color: #1f4b22;
}

.auth-feedback[data-tone="warning"] {
  background: rgba(230, 157, 47, 0.16);
  color: #6f460c;
}

.auth-feedback[data-tone="error"] {
  background: rgba(148, 34, 34, 0.12);
  color: #7d2222;
}

.auth-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 19, 17, 0.12);
}

.auth-note strong,
.portal-feature-list strong,
.portal-content-card h3 {
  display: block;
  margin-bottom: 6px;
}

.auth-note p,
.portal-feature-list p,
.portal-content-card p,
.auth-timer {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.portal-side {
  display: grid;
  gap: 22px;
}

.member-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}

.member-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(21, 19, 17, 0.06);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.member-body {
  display: grid;
  gap: 14px;
  margin: 20px 0 22px;
}

.member-row {
  padding: 16px 18px;
  background: #fcfaf4;
  border: 1px solid rgba(21, 19, 17, 0.08);
  border-radius: 8px;
}

.member-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.member-row strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.4;
}

.portal-feature-list,
.portal-content-grid {
  display: grid;
  gap: 18px;
}

.portal-content {
  display: grid;
  gap: 26px;
}

.portal-content-grid {
  grid-template-columns: repeat(3, 1fr);
}

.portal-content-card {
  padding: 28px;
}

.portal-content.is-locked {
  opacity: 0.72;
}

.portal-content.is-locked .portal-content-card {
  filter: saturate(0.82);
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 112px;
    gap: 28px;
  }

  .hero-visual {
    height: 420px;
    margin: 8px -20px 0;
    border-radius: 0;
  }

  .hero-visual img {
    object-position: 60% 50%;
  }

  .audiences,
  .steps,
  .coupon-grid,
  .model,
  .partner-grid,
  .utility-hero,
  .portal-grid,
  .portal-content-grid,
  .calculator-shell,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .audiences article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 26px 0;
  }

  .steps article + article::before {
    display: none;
  }

  .metric-row {
    flex-direction: column;
  }

  .site-footer div {
    justify-items: start;
  }

  .utility-main {
    padding-top: 136px;
  }
}

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

  h1 {
    font-size: 2.7rem;
  }

  .utility-copy h1,
  .utility-copy h2,
  .section-heading h2,
  .model h2,
  .contact h2 {
    font-size: 2.5rem;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

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

  .lead-form .wide {
    grid-column: auto;
  }

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