/* ──────────────────────────────────────────────────
   Rony Shamaev — Realtor site
   Modern, editorial, Colorado-toned.
   ────────────────────────────────────────────────── */

:root {
  --bg: #f7f4ee;
  --bg-elev: #ffffff;
  --ink: #0b1320;
  --ink-2: #2a3447;
  --muted: #6b7385;
  --line: #e7e1d4;

  --navy: #0b1320;
  --navy-2: #121b2e;
  --navy-3: #1b2740;

  --gold: #d49a4b;
  --gold-2: #b87f33;
  --gold-soft: #f0d9a8;

  --cream: #faf7f0;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(11, 19, 32, .06);
  --shadow-md: 0 12px 36px rgba(11, 19, 32, .08);
  --shadow-lg: 0 24px 60px rgba(11, 19, 32, .14);

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --max: 1200px;
  --gut: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

::selection { background: var(--gold-soft); color: var(--navy); }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.01em; }
em { font-style: italic; color: var(--gold-2); }
p { margin: 0 0 1em; }
.lead { font-size: 1.15rem; color: var(--ink-2); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin: 0 0 1rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { background: var(--gold-2); transform: translateY(-2px); }
.btn--ghost {
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); }
.btn--link {
  padding: 14px 6px;
  color: var(--ink);
  border-radius: 0;
  border-bottom: 1px solid var(--ink);
}
.btn--link:hover { color: var(--gold-2); border-color: var(--gold-2); gap: 14px; }
.btn--block { width: 100%; justify-content: center; }

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px var(--gut);
  color: #fff;
  transition: background .35s ease, color .35s ease, border-color .35s ease, padding .35s ease, box-shadow .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(247,244,238,.92);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: saturate(160%) blur(14px);
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: var(--shadow-sm);
}
.nav.is-scrolled .btn--ghost {
  border-color: rgba(11,19,32,.18);
  color: var(--ink);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav__mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  flex-shrink: 0;
}
.nav__mark svg { width: 22px; height: 22px; }
.nav__links {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  opacity: .9;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { font-size: 0.9rem; padding: 10px 18px; }
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__burger span {
  width: 22px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px var(--gut) 100px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 70% 0%, #1c2a45 0%, #0b1320 60%, #060b14 100%);
  z-index: -2;
}
.hero__mountains {
  position: absolute; left: 0; right: 0; bottom: 0;
  width: 100%; height: 70%;
}
.hero__glow {
  position: absolute;
  top: 12%; right: -10%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(212,154,75,.35), transparent 65%);
  filter: blur(40px);
  z-index: -1;
}
.hero__grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.05) 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  opacity: .6;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}
.hero__inner .eyebrow {
  color: var(--gold-soft);
  opacity: .9;
}
.hero__title {
  font-weight: 400;
  margin: 0 0 28px;
  max-width: 14ch;
}
.hero__title em {
  color: var(--gold);
  font-weight: 400;
}
.hero__lede {
  max-width: 56ch;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
}
.hero__lede strong { color: #fff; font-weight: 600; }
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 70px;
}
.hero__cta .btn--link { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.4); }
.hero__cta .btn--link:hover { color: var(--gold); border-color: var(--gold); }
.hero__stats {
  display: flex;
  gap: clamp(28px, 6vw, 80px);
  flex-wrap: wrap;
  list-style: none;
  padding: 28px 0 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero__stats li { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.stat__lbl {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.hero__scroll span {
  width: 2px; height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%, 100% { transform: translateY(-6px); opacity: 0; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ─── Sections ─── */
.section {
  padding: clamp(80px, 10vw, 140px) var(--gut);
  max-width: var(--max);
  margin: 0 auto;
}
.section__head {
  max-width: 760px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

/* ─── About ─── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.about__portrait {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
}
.portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-3), var(--navy));
  color: rgba(240,217,168,.6);
  box-shadow: var(--shadow-lg);
}
.portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.portrait__fallback {
  display: none;
  position: absolute; inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 20px;
}
.portrait__fallback svg { width: 96px; height: 96px; }
.portrait__fallback span { font-size: 0.85rem; letter-spacing: 0.06em; }
.portrait__fallback code {
  background: rgba(255,255,255,.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
}
.portrait__badge {
  display: inline-flex;
  flex-direction: column;
  padding: 14px 20px;
  background: var(--bg-elev);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  width: max-content;
  margin-top: -50px;
  margin-left: 18px;
  position: relative;
  z-index: 2;
}
.portrait__badgeNum {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-2);
}
.portrait__badgeLbl {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.about__copy .lead { margin-bottom: 18px; }
.about__copy p { color: var(--ink-2); }
.pillars {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.pillars li {
  padding: 22px;
  background: var(--bg-elev);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pillars li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.pillars__icon {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-soft), #fff);
  color: var(--gold-2);
  margin-bottom: 14px;
}
.pillars__icon svg { width: 22px; height: 22px; }
.pillars h3 { font-size: 1.1rem; margin-bottom: 6px; }
.pillars p { font-size: 0.95rem; color: var(--muted); margin: 0; line-height: 1.55; }

/* ─── Services ─── */
.services {
  background: var(--cream);
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services .section__head,
.services .services__grid { max-width: var(--max); margin-left: auto; margin-right: auto; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.svc-card {
  background: var(--bg-elev);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.svc-card__num {
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  color: var(--gold-2);
  font-weight: 600;
}
.svc-card__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--cream);
  color: var(--navy);
  border: 1px solid var(--line);
}
.svc-card__icon svg { width: 22px; height: 22px; }
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 22px; }
.svc-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: gap .3s ease, color .3s ease, border-color .3s ease;
}
.svc-card__more:hover { gap: 12px; color: var(--gold-2); border-color: var(--gold-2); }

/* ─── Banner ─── */
.banner {
  background:
    radial-gradient(80% 100% at 0% 50%, rgba(212,154,75,.18), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: clamp(60px, 8vw, 100px) var(--gut);
}
.banner__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.banner h2 {
  font-weight: 400;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
}
.banner em { color: var(--gold); }

/* ─── Areas ─── */
.areas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.area {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--r-xl);
  overflow: hidden;
  isolation: isolate;
  cursor: default;
  transition: transform .4s ease;
}
.area:hover { transform: translateY(-4px); }
.area__bg {
  position: absolute; inset: 0;
  z-index: -2;
}
.area__bg svg { width: 100%; height: 100%; }
.area::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.55) 100%);
  z-index: -1;
}
.area__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  color: #fff;
}
.area__content h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin-bottom: 10px;
}
.area__content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,.85);
  margin: 0;
  line-height: 1.5;
}

/* ─── Testimonials ─── */
.testimonials {
  background: linear-gradient(180deg, var(--bg) 0%, var(--cream) 100%);
  max-width: none;
}
.testimonials .section__head,
.testimonials .testimonials__grid { max-width: var(--max); margin-left: auto; margin-right: auto; }
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
}
.quote {
  background: var(--bg-elev);
  padding: 30px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: "“";
  position: absolute;
  top: -20px; right: 20px;
  font-family: var(--serif);
  font-size: 8rem;
  color: var(--gold-soft);
  opacity: .35;
  line-height: 1;
  pointer-events: none;
}
.quote--feature {
  grid-row: span 2;
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}
.quote--feature::before { color: var(--gold); opacity: .25; }
.quote__stars {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 1rem;
}
.quote blockquote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.45;
  margin: 0;
  flex: 1;
}
.quote--feature blockquote { font-size: 1.4rem; line-height: 1.4; }
.quote figcaption {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.quote--feature figcaption { color: rgba(255,255,255,.7); }

/* ─── Contact ─── */
.contact {
  max-width: none;
  background: var(--ink);
  color: #fff;
  padding: clamp(80px, 10vw, 140px) var(--gut);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,154,75,.18), transparent 60%);
  filter: blur(40px);
}
.contact__inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.contact .eyebrow { color: var(--gold-soft); }
.contact h2 { color: #fff; margin-bottom: 18px; }
.contact .lead { color: rgba(255,255,255,.78); }
.contact__list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 22px;
}
.contact__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact__icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(212,154,75,.14);
  color: var(--gold);
  flex-shrink: 0;
}
.contact__icon svg { width: 20px; height: 20px; }
.contact__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 2px;
}
.contact__list a:hover { color: var(--gold); }

.contact__form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 40px);
  backdrop-filter: blur(8px);
}
.contact__form h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.contact__form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact__form label {
  display: block;
  margin-bottom: 14px;
}
.contact__form label > span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 8px;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color .25s ease, background .25s ease;
}
.contact__form input::placeholder,
.contact__form textarea::placeholder { color: rgba(255,255,255,.35); }
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.08);
}
.contact__form select option { background: var(--ink); color: #fff; }
.contact__form textarea { resize: vertical; min-height: 100px; }
.contact__form .btn--primary {
  margin-top: 8px;
  background: var(--gold);
  color: var(--navy);
}
.contact__form .btn--primary:hover { background: var(--gold-soft); }
.contact__note {
  margin-top: 18px;
  text-align: center;
  color: var(--gold-soft);
  font-size: 0.95rem;
}

/* ─── Footer ─── */
.footer {
  background: #060b14;
  color: rgba(255,255,255,.7);
  padding: 60px var(--gut) 30px;
}
.footer__inner {
  max-width: var(--max);
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__brand strong {
  display: block;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}
.footer__brand span {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer__cols h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
  font-weight: 600;
}
.footer__cols div { display: flex; flex-direction: column; gap: 6px; font-size: 0.92rem; }
.footer__cols a:hover { color: var(--gold); }
.footer__base {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.menu-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-elev);
    color: var(--ink);
    padding: 20px var(--gut);
    gap: 16px;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__portrait { position: static; max-width: 380px; }
  .pillars { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .quote--feature { grid-row: auto; grid-column: span 2; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero { padding-top: 110px; padding-bottom: 60px; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__stats { gap: 20px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .quote--feature { grid-column: auto; }
  .contact__form .row { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__base { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
