/* =====================================================================
   Everett Back-to-School Giveaway — campaign stylesheet
   Built from the Everett Auto Team design system tokens.

   NOTE: the design system's green (#93d50a / #4ba209) is deliberately
   excluded from this campaign — accents use yellow, blue, or the deal red.
   ===================================================================== */

/* ---------------------------------------------------------------- tokens */
:root {
  /* Brand */
  --ev-blue: #1a8ccb;
  --ev-blue-2: #0b65d7;
  --ev-blue-light: #3db8ec;
  --ev-ink: #272927;
  --ev-grey: #848484;
  --ev-yellow: #ffe15c;
  --deal-color: #cc2b2b;
  --deal-color-hover: #a82323;

  /* Neutral ramp */
  --ev-n-0: #ffffff;
  --ev-n-25: #f7f9fa;
  --ev-n-50: #eef1f3;
  --ev-n-75: #f2f5f7;
  --ev-n-100: #e2e6e9;
  --ev-n-200: #cdd3d8;
  --ev-n-300: #aab0b6;
  --ev-n-400: #848484;
  --ev-n-500: #5f6461;
  --ev-n-700: #33362f;
  --ev-n-800: #272927;

  /* Semantic */
  --text-strong: var(--ev-ink);
  --text-body: var(--ev-n-700);
  --text-muted: var(--ev-grey);
  --text-link: var(--ev-blue-2);
  --text-link-hover: var(--ev-blue);
  --surface-card: #ffffff;
  --surface-sunken: var(--ev-n-25);
  --border-subtle: var(--ev-n-100);
  --border-default: var(--ev-n-200);
  --border-strong: var(--ev-n-300);

  /* Type */
  --font-display: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;
  --fs-base: 1rem;
  --fs-sm: 0.875rem;
  --fs-xs: 0.75rem;

  /* Effects */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --shadow-card: 0 1px 3px rgba(19, 22, 19, .1);
  --shadow-card-hover: 0 12px 30px rgba(19, 22, 19, .14);
  --shadow-lift: 0 12px 30px rgba(19, 22, 19, .14);
  --shadow-float: 0 20px 60px rgba(0, 0, 0, .38);
  --focus-ring: 0 0 0 3px rgba(11, 101, 215, .35);
  --ease-standard: cubic-bezier(.2, .6, .2, 1);
  --dur-fast: 120ms;
  --dur-med: 200ms;
  --speed-cut: polygon(0 0, 100% 0, calc(100% - 14px) 100%, 0 100%);

  /* Control heights */
  --control-h-sm: 34px;
  --control-h-md: 44px;
  --control-h-lg: 54px;

  /* Layout */
  --band-x: clamp(20px, 4.5vw, 96px);
}

/* ------------------------------------------------------------------ base */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--text-body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); color: var(--text-strong); }
p { margin: 0; text-wrap: pretty; }
img { max-width: 100%; display: block; }

a { color: var(--text-link); text-decoration: none; transition: color var(--dur-fast) var(--ease-standard); }
a:hover { color: var(--text-link-hover); }

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}

::selection { background: var(--ev-blue); color: #fff; }

[hidden] { display: none !important; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Shared horizontal band padding */
.band { padding-inline: var(--band-x); }

/* Anchor targets clear the scroll by the same 40px the prototype used */
[id] { scroll-margin-top: 40px; }

/* ------------------------------------------------------------- typography */
.eyebrow {
  font-size: 12px;
  font-weight: var(--fw-extrabold);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ev-blue);
}

.eyebrow--tight { letter-spacing: .14em; }
.eyebrow--on-dark { color: var(--ev-blue-light); }

.display {
  font-weight: var(--fw-black);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1.02;
}

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background var(--dur-fast) var(--ease-standard),
    color var(--dur-fast) var(--ease-standard),
    border-color var(--dur-fast) var(--ease-standard),
    transform var(--dur-fast) var(--ease-standard),
    box-shadow var(--dur-fast) var(--ease-standard);
}

.btn:active { transform: translateY(1px); }
.btn:hover { text-decoration: none; }

.btn--sm { height: var(--control-h-sm); padding: 0 1rem; font-size: var(--fs-xs); }
.btn--md { height: var(--control-h-md); padding: 0 1.5rem; font-size: var(--fs-sm); }
.btn--lg { height: var(--control-h-lg); padding: 0 2rem; font-size: var(--fs-base); }

.btn--primary { background: var(--ev-blue); color: #fff; border-color: var(--ev-blue); }
.btn--primary:hover { background: var(--ev-blue-2); border-color: var(--ev-blue-2); color: #fff; }

.btn--accent { background: var(--ev-yellow); color: var(--ev-ink); border-color: var(--ev-yellow); }
.btn--accent:hover { background: #eccb17; border-color: #eccb17; color: var(--ev-ink); }

.btn--deal { background: var(--deal-color); color: #fff; border-color: var(--deal-color); }
.btn--deal:hover { background: var(--deal-color-hover); border-color: var(--deal-color-hover); color: #fff; }

.btn--outline { background: transparent; color: var(--ev-blue-2); border-color: var(--border-strong); }
.btn--outline:hover { border-color: var(--ev-blue-2); color: var(--ev-blue); }

.btn--ghost { background: transparent; color: var(--ev-ink); border-color: transparent; }
.btn--ghost:hover { background: var(--ev-n-50); color: var(--ev-ink); }

/* Outline sitting on a dark photographic background */
.btn--on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .08);
}
.btn--on-dark:hover {
  color: #fff;
  border-color: #fff;
  background: rgba(255, 255, 255, .18);
}

.btn--block { display: flex; width: 100%; }

/* ------------------------------------------------------------ form fields */
.field { display: flex; flex-direction: column; gap: 6px; }

.field > label {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text-strong);
}

.field input,
.field select {
  width: 100%;
  height: var(--control-h-md);
  font: inherit;
  font-size: var(--fs-base);
  color: var(--text-body);
  background: var(--surface-card);
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  outline: none;
  transition:
    border-color var(--dur-fast) var(--ease-standard),
    box-shadow var(--dur-fast) var(--ease-standard);
}

.field input::placeholder { color: var(--text-muted); }

.field input:focus,
.field select:focus {
  border-color: var(--ev-blue-2);
  box-shadow: var(--focus-ring);
}

/* Block-level so the chevron positions against the control box itself, and so
   the select leaves no inline-baseline gap under it. */
.select { position: relative; display: block; }

.select select {
  display: block;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
  cursor: pointer;
}

/* Placeholder state — the design system greys the control until a model is chosen */
.select select:required:invalid { color: var(--text-muted); }

.select::after {
  content: "\25BC";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
  font-size: 12px;
}

.honeypot { display: none; }

/* --------------------------------------------------------------- header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
  background: #fff;
  border-bottom: 1px solid var(--border-subtle);
}

.site-header__logo { height: 42px; width: auto; }

.site-header__meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header__address {
  font-size: 13px;
  font-weight: var(--fw-semibold);
  color: var(--ev-n-500);
}

.site-header__phone {
  font-size: 15px;
  font-weight: var(--fw-extrabold);
  color: var(--ev-ink);
  letter-spacing: -.01em;
}
.site-header__phone:hover { color: var(--ev-blue-2); }

/* ----------------------------------------------------------------- hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ev-ink);
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
  filter: contrast(1.12) saturate(.8);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(20, 22, 19, .94) 0%,
    rgba(20, 22, 19, .78) 46%,
    rgba(11, 101, 215, .55) 100%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(0, 420px);
  gap: clamp(16px, 3vw, 48px);
  align-items: start;
  padding-block: 64px 72px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-width: 0;
}

.hero__flag {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  height: 34px;
  padding: 0 26px 0 16px;
  background: var(--ev-yellow);
  clip-path: var(--speed-cut);
  font-size: 12px;
  font-weight: var(--fw-black);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ev-ink);
}

.hero__title {
  font-size: clamp(44px, 5.4vw, 96px);
  line-height: .96;
  font-weight: var(--fw-black);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.025em;
  color: #fff;
  text-wrap: balance;
}

.hero__title em { font-style: inherit; color: var(--ev-blue-light); }

.hero__lede {
  font-size: 19px;
  line-height: 1.55;
  font-weight: var(--fw-medium);
  color: var(--ev-n-100);
}

.hero__lede strong { color: #fff; }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 6px;
  flex-wrap: wrap;
}

/* ------------------------------------------------- gift picker (page A) */
.gift {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  padding-top: 26px;
}

.gift__title {
  font-size: clamp(30px, 3vw, 52px);
  line-height: 1.02;
  font-weight: var(--fw-black);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: #fff;
}

.gift__note {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(226, 230, 233, .82);
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 14px;
}

.gift-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(20px, 2.2vw, 32px);
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition:
    box-shadow var(--dur-med) var(--ease-standard),
    transform var(--dur-med) var(--ease-standard);
}

.gift-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.gift-card__icon {
  width: 44px;
  height: 44px;
  flex: none;
  stroke: var(--ev-blue);
}

.gift-card__body { display: flex; flex-direction: column; gap: 8px; }

.gift-card__name {
  font-size: 24px;
  font-weight: var(--fw-black);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--ev-ink);
}

.gift-card__desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ev-n-500);
}

/* Selected ring + flag */
.gift-card__ring {
  position: absolute;
  inset: -1px;
  border: 3px solid var(--ev-blue);
  border-radius: var(--radius-md);
  background: rgba(26, 140, 203, .06);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-standard);
}

.gift-card__flag {
  position: absolute;
  top: -12px;
  right: 16px;
  display: flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  background: var(--ev-yellow);
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: var(--fw-black);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ev-ink);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-standard);
}

.gift-card[aria-pressed="true"] .gift-card__ring,
.gift-card[aria-pressed="true"] .gift-card__flag { opacity: 1; }

/* ------------------------------------------------------------ lead form */
.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 28px 22px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  width: 100%;
}

.lead-form__head { display: flex; flex-direction: column; gap: 2px; }

.lead-form__eyebrow {
  font-size: 11px;
  font-weight: var(--fw-extrabold);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ev-blue);
}

.lead-form__title {
  font-size: 22px;
  font-weight: var(--fw-black);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--ev-ink);
}

.gift-readout {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 14px;
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--ev-yellow);
  border-radius: var(--radius-sm);
  background: var(--surface-sunken);
}

.gift-readout__label {
  font-size: 10px;
  font-weight: var(--fw-extrabold);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ev-grey);
}

.gift-readout__value {
  font-size: 15px;
  font-weight: var(--fw-extrabold);
  color: var(--ev-ink);
}

.lead-form__submit {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: var(--deal-color);
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: var(--fw-black);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .06em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease-standard);
}

.lead-form__submit:hover { background: var(--deal-color-hover); }
.lead-form__submit:active { transform: translateY(1px); }

.lead-form__legal {
  font-size: 11px;
  line-height: 1.5;
  color: var(--ev-grey);
}

.form-error {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border: 1px solid #f3c6c6;
  border-left: 3px solid var(--deal-color);
  border-radius: var(--radius-sm);
  background: #fdeaea;
  font-size: 13px;
  line-height: 1.5;
  color: #8f1f1f;
}

/* ------------------------------------------------------- qualifier strip */
.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface-sunken);
  border-bottom: 1px solid var(--border-subtle);
}

.strip__cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px var(--band-x);
  border-right: 1px solid var(--border-subtle);
}

.strip__cell:last-child { border-right: 0; }

.strip__value {
  font-size: 17px;
  font-weight: var(--fw-bold);
  color: var(--ev-ink);
}

/* -------------------------------------------------------- vehicle models */
.models {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-block: 72px;
}

.models__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.models__heading { display: flex; flex-direction: column; gap: 12px; }

.models__title {
  font-size: clamp(30px, 3vw, 52px);
  line-height: 1.02;
  font-weight: var(--fw-black);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--ev-ink);
}

.models__note {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--ev-grey);
  white-space: nowrap;
}

.models__groups { display: flex; flex-direction: column; gap: 32px; }

.make { display: flex; flex-direction: column; gap: 16px; }

.make__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ev-blue);
}

.make__name {
  font-size: 13px;
  font-weight: var(--fw-black);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ev-blue);
}

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

.vcard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.vcard__media {
  position: relative;
  height: 220px;
  background: var(--ev-n-75);
}

.vcard__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.vcard__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px;
  border-top: 3px solid var(--ev-blue-2);
}

.vcard__badge {
  font-size: 11px;
  font-weight: var(--fw-extrabold);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ev-blue-2);
}

.vcard__name {
  font-size: 19px;
  font-weight: var(--fw-extrabold);
  color: var(--ev-ink);
}

/* Buick cards carry the primary blue rule and a neutral badge */
.vcard--buick .vcard__meta { border-top-color: var(--ev-blue); }
.vcard--buick .vcard__badge { color: var(--ev-grey); }

/* --------------------------------------------------------- finance band */
.finance {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding-block: 52px;
  background: linear-gradient(100deg, #272927 0%, #0d2d58 50%, #0b65d7 100%);
}

.finance__copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 620px;
}

.finance__title {
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.02;
  font-weight: var(--fw-black);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: #fff;
}

.finance__text {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .88);
}

.finance__cta { flex: none; }

/* ---------------------------------------------------------------- footer */
.site-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-block: 44px;
  background: var(--ev-ink);
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.site-footer__logo {
  height: 58px;
  width: auto;
  background: rgba(255, 255, 255, .94);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.site-footer__contacts { display: flex; gap: 56px; flex-wrap: wrap; }

.site-footer__group { display: flex; flex-direction: column; gap: 6px; }

.site-footer__label {
  font-size: 11px;
  font-weight: var(--fw-extrabold);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ev-grey);
}

.site-footer__value {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: #fff;
}

a.site-footer__value:hover { color: var(--ev-yellow); }

.site-footer__legal {
  max-width: 900px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ev-n-300);
}

.site-footer__tags {
  font-size: 12px;
  font-weight: var(--fw-bold);
  letter-spacing: .1em;
  color: var(--ev-n-500);
}

/* =====================================================================
   Thank-you page
   ===================================================================== */
.page { display: flex; flex-direction: column; min-height: 100vh; }

.thanks-hero { position: relative; overflow: hidden; background: var(--ev-ink); }

.thanks-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .34;
  filter: contrast(1.12) saturate(.8);
}

.thanks-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(20, 22, 19, .94) 0%,
    rgba(20, 22, 19, .8) 46%,
    rgba(11, 101, 215, .6) 100%);
}

.thanks-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-block: 72px 76px;
  max-width: 860px;
}

.thanks-hero__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--ev-yellow);
}

.thanks-hero__check svg { width: 32px; height: 32px; stroke: var(--ev-ink); }

.thanks-hero__title {
  font-size: clamp(44px, 6vw, 76px);
  line-height: .96;
  font-weight: var(--fw-black);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.025em;
  color: #fff;
  text-wrap: balance;
}

.thanks-hero__text {
  max-width: 620px;
  font-size: 21px;
  line-height: 1.5;
  font-weight: var(--fw-medium);
  color: var(--ev-n-100);
}

.thanks-hero__text strong { color: #fff; }

.thanks-hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 6px;
  flex-wrap: wrap;
}

.thanks-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px var(--band-x);
  background: #fdeaea;
  border-bottom: 1px solid #f3c6c6;
  font-size: 15px;
  line-height: 1.5;
  color: #8f1f1f;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface-sunken);
  border-bottom: 1px solid var(--border-subtle);
}

.steps__cell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 34px var(--band-x);
  border-right: 1px solid var(--border-subtle);
}

.steps__cell:last-child { border-right: 0; }

.steps__title {
  font-size: 19px;
  font-weight: var(--fw-extrabold);
  color: var(--ev-ink);
  letter-spacing: -.01em;
}

.steps__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ev-n-500);
}

.callback {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-block: 56px;
}

.callback__copy { display: flex; flex-direction: column; gap: 10px; }

.callback__label {
  font-size: 12px;
  font-weight: var(--fw-extrabold);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ev-grey);
}

.callback__phone {
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: var(--fw-black);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.02em;
  color: var(--ev-ink);
}

.callback__hours { font-size: 15px; color: var(--ev-n-500); }

.callback__slogan {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: right;
}

.callback__slogan span {
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: var(--fw-black);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--ev-ink);
}

.callback__slogan span + span { color: var(--ev-blue); }

.site-footer--thanks { margin-top: auto; padding-block: 40px; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1180px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__form { max-width: 560px; width: 100%; }
  .make__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 940px) {
  .finance { flex-direction: column; align-items: flex-start; gap: 28px; }
  .site-footer__top { flex-direction: column; gap: 28px; }
  .callback { flex-direction: column; align-items: flex-start; gap: 24px; }
  .callback__slogan { text-align: left; }
}

@media (max-width: 820px) {
  .site-header { flex-wrap: wrap; }
  .site-header__address { display: none; }
  .gift-grid { grid-template-columns: 1fr; }
  .strip,
  .steps { grid-template-columns: 1fr; }
  .strip__cell,
  .steps__cell {
    border-right: 0;
    border-bottom: 1px solid var(--border-subtle);
  }
  .strip__cell:last-child,
  .steps__cell:last-child { border-bottom: 0; }
  .models__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .models__note { white-space: normal; }
  .hero__inner { padding-block: 48px 56px; }
  .models { padding-block: 56px; }
}

@media (max-width: 620px) {
  .make__grid,
  .hero__actions .btn,
  .thanks-hero__actions .btn { width: 100%; }
  .hero__actions,
  .thanks-hero__actions { align-items: stretch; }
  .thanks-hero__actions a { width: 100%; }
  .site-footer__contacts { gap: 24px; flex-direction: column; }
  .lead-form { padding: 22px 20px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .gift-card:hover { transform: none; }
}

@media print {
  .site-header,
  .hero__actions,
  .finance,
  .lead-form__submit { display: none; }
}
