/* =========================================================
   Felipe Bruno Gagliardi — Psicólogo
   Sistema visual: acolhedor e suave
   Azul marinho com tons claros e quentes, cantos arredondados,
   sensação calma, humana e convidativa. Mobile-first.
   ========================================================= */

:root {
  --navy: #26415e;
  --navy-deep: #1c3049;
  --navy-soft: #38567a;
  --blue: #4f7ca6;
  --blue-soft: #9fb9d3;
  --blue-tint: #e9f1f7;

  --warm: #e0906e;          /* terracota suave, decorativo */
  --warm-cta: #b85f40;      /* botões: branco por cima passa AA */
  --warm-cta-hover: #a4502f;
  --warm-text: #9c4a2c;     /* texto pequeno de destaque, AA sobre claro */
  --warm-tint: #f7e7dd;

  --bg: #fcf7f2;            /* off-white quente */
  --sand: #f5ece2;          /* fundo de seção quente */
  --surface: #ffffff;

  --text: #2e3d4e;
  --text-muted: #5d6a79;
  --on-dark: #f4ebe1;       /* texto creme sobre navy */
  --border: #ece2d6;
  --success: #3f7a5e;
  --error: #c0573e;

  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  --shadow-1: 0 2px 10px rgba(38, 65, 94, 0.05);
  --shadow-2: 0 12px 30px rgba(38, 65, 94, 0.08);
  --shadow-3: 0 22px 50px rgba(38, 65, 94, 0.12);
  --shadow-warm: 0 14px 34px rgba(184, 95, 64, 0.18);

  --container: 1180px;
  --nav-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.25vw + 0.96rem, 1.12rem);
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--warm-text);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover {
  color: var(--navy);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1.1em;
}
p:last-child {
  margin-bottom: 0;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: -60px;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1.3rem;
  border-radius: var(--r-pill);
  z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 12px;
  color: #fff;
}

/* ---------- layout ---------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.4rem;
}
.container--narrow {
  max-width: 820px;
}

.section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}
.section--alt {
  background: var(--sand);
}
.section--soft {
  background: var(--blue-tint);
}
.section--navy {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.section--navy .section__title,
.section--navy .overline {
  color: var(--on-dark);
}
.section--navy .overline {
  color: var(--warm);
}
.section--navy .section__rule {
  background: var(--warm);
}

section[id],
.article {
  scroll-margin-top: calc(var(--nav-h) + 14px);
}

/* ---------- helpers ---------- */

.overline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-text);
  margin-bottom: 0.9rem;
}

.lead {
  font-size: clamp(1.1rem, 0.5vw + 1rem, 1.3rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.section__head {
  max-width: 680px;
  margin: 0 auto clamp(2.2rem, 4vw, 3.4rem);
  text-align: center;
}
.section__title {
  font-size: clamp(1.9rem, 3vw + 0.7rem, 2.85rem);
  margin: 0;
}
.section__rule {
  display: block;
  width: 60px;
  height: 4px;
  border-radius: var(--r-pill);
  background: var(--warm);
  margin: 1.1rem auto 1.3rem;
}
.section__intro {
  color: var(--text-muted);
  margin: 0;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 0.95rem 1.9rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease),
    color 0.2s var(--ease), border-color 0.2s var(--ease);
  text-align: center;
  min-height: 48px;
}
.btn--lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}
.btn--block {
  width: 100%;
}
.btn--primary {
  background: var(--warm-cta);
  color: #fff;
  box-shadow: var(--shadow-warm);
}
.btn--primary:hover {
  background: var(--warm-cta-hover);
  transform: translateY(-2px);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--blue-soft);
}
.btn--ghost:hover {
  background: var(--blue-tint);
  border-color: var(--blue);
  color: var(--navy);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--warm-text);
  margin-top: auto;
}
.link-arrow::after {
  content: '→';
  transition: transform 0.2s var(--ease);
}
.link-arrow:hover {
  color: var(--navy);
}
.link-arrow:hover::after {
  transform: translateX(4px);
}

.badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--navy);
  background: var(--blue-tint);
  border: 1px solid var(--blue-soft);
  padding: 0.32rem 0.9rem;
  border-radius: var(--r-pill);
  margin-bottom: 0.9rem;
}

/* ---------- navbar ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav__brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav__brand-name {
  font-family: var(--font-head);
  font-size: 1.28rem;
  font-weight: 700;
  color: var(--navy);
}
.nav__brand-role {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.nav__link {
  position: relative;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--navy);
  padding: 0.3rem 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  border-radius: var(--r-pill);
  background: var(--warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}
.nav__link:hover::after {
  transform: scaleX(1);
}
.nav__cta {
  margin-left: 0.4rem;
  padding: 0.65rem 1.4rem;
  min-height: 0;
}
.nav.is-scrolled {
  background: rgba(252, 247, 242, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  box-shadow: var(--shadow-1);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  box-shadow: var(--shadow-1);
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav__toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.4rem 1.8rem;
  background: var(--navy);
  border-bottom-left-radius: var(--r-lg);
  border-bottom-right-radius: var(--r-lg);
}
.mobile-menu[hidden] {
  display: none;
}
.mobile-menu.is-open {
  display: flex;
}
.mobile-menu__link {
  color: var(--on-dark);
  font-weight: 600;
  font-family: var(--font-head);
  font-size: 1.05rem;
  padding: 0.8rem 0.4rem;
  border-bottom: 1px solid rgba(244, 235, 225, 0.12);
}
.mobile-menu__link:hover {
  color: var(--warm);
}
.mobile-menu__cta {
  margin-top: 1rem;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: linear-gradient(172deg, var(--blue-tint) 0%, var(--bg) 62%);
  padding-top: calc(var(--nav-h) + clamp(2.4rem, 5vw, 4rem));
  padding-bottom: clamp(2.8rem, 6vw, 4.5rem);
  overflow: hidden;
}
.hero__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__avatar {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.6rem;
  border: 5px solid var(--surface);
  box-shadow: 0 0 0 2px var(--warm-tint), var(--shadow-2);
}
.hero .overline {
  font-size: 1rem;
  letter-spacing: 0.13em;
  margin-bottom: 1rem;
}
.hero__title {
  font-size: clamp(1.9rem, 2.4vw + 1rem, 2.85rem);
  margin-bottom: 1.1rem;
  line-height: 1.2;
  max-width: 18ch;
}
.hero__subtitle {
  margin: 0 auto 2rem;
  max-width: 52ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- about ---------- */

.about__grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__media {
  position: relative;
  max-width: 260px;
}
.about__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-2);
}
.about__media::before {
  content: '';
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 60%;
  height: 60%;
  border-radius: var(--r-xl);
  background: var(--warm-tint);
  z-index: -1;
}
.about__creds {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.about__creds li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text);
}
.about__creds-dot {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: var(--warm-tint);
  position: relative;
}
.about__creds-dot::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--warm-text);
}

/* ---------- grids & cards ---------- */

.grid {
  display: grid;
  gap: 1.5rem;
}
.grid--cards {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
}
.card__title {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.card__text {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.specialty {
  align-items: flex-start;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.specialty:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.specialty__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--warm-tint);
  margin-bottom: 1.1rem;
  position: relative;
}
.specialty__mark::after {
  content: '';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--warm);
}

.service {
  align-items: flex-start;
}
.service__price {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--warm-text);
  margin-bottom: 1.1rem;
}

/* ---------- testimonials ---------- */

.testimonial {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(244, 235, 225, 0.18);
  position: relative;
  padding-top: 2.8rem;
}
.testimonial__quote-mark {
  position: absolute;
  top: 0.4rem;
  left: 1.6rem;
  font-family: var(--font-head);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--warm);
  opacity: 0.7;
}
.testimonial__text {
  margin: 0 0 1.2rem;
  color: var(--on-dark);
  font-size: 1.06rem;
  line-height: 1.7;
}
.testimonial__author {
  font-weight: 700;
  color: var(--warm);
  font-size: 0.95rem;
}

/* ---------- accordion / faq ---------- */

.accordion {
  display: grid;
  gap: 0.9rem;
}
.accordion__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
}
.accordion__icon {
  flex: none;
  width: 20px;
  height: 20px;
  position: relative;
}
.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--warm-text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease);
}
.accordion__icon::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}
.accordion__icon::after {
  left: 9px;
  top: 0;
  width: 2px;
  height: 20px;
}
.accordion__trigger[aria-expanded='true'] .accordion__icon::after {
  transform: scaleY(0);
}
.accordion__panel[hidden] {
  display: none;
}
.accordion__panel-inner {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-muted);
}

/* ---------- blog ---------- */

.post {
  padding: 0;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.post__cover img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.post__body {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post .card__title a {
  color: var(--navy);
}
.post .card__title a:hover {
  color: var(--warm-text);
}

/* ---------- contact ---------- */

.section--contact {
  background: var(--sand);
}
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.contact__left {
  display: grid;
  gap: 1rem;
}
.contact__option {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-1);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.contact__option:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.contact__option-icon {
  flex: none;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: var(--warm-tint);
  color: var(--warm-cta);
}
.contact__option-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact__option-body strong {
  color: var(--navy);
  font-size: 1.05rem;
  font-family: var(--font-head);
}
.contact__option-body span {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.contact__agenda-title,
.contact__form-title {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.contact__calendly iframe,
.contact__map-frame iframe {
  width: 100%;
  min-height: 560px;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.contact__map-frame iframe {
  min-height: 280px;
}
.contact__address {
  color: var(--text-muted);
  font-weight: 600;
}

.contact__form {
  padding: clamp(1.6rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-2);
  border-radius: var(--r-lg);
}
.contact__form-hint {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
}
.field {
  margin-bottom: 1.1rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.15s var(--ease);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--warm);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(224, 144, 110, 0.22);
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.contact__form-feedback {
  margin-top: 1rem;
  font-weight: 600;
  min-height: 1.2em;
}
.contact__form-feedback.is-success {
  color: var(--success);
}
.contact__form-feedback.is-error {
  color: var(--error);
}

/* ---------- footer ---------- */

.footer {
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--on-dark);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding: clamp(3rem, 6vw, 4.5rem) 1.4rem 2.5rem;
}
.footer__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--on-dark);
  display: block;
  margin-bottom: 0.8rem;
}
.footer__tagline {
  color: rgba(244, 235, 225, 0.72);
  max-width: 42ch;
  font-size: 0.98rem;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__col-title {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.footer__col a {
  color: rgba(244, 235, 225, 0.75);
  font-size: 0.96rem;
}
.footer__col a:hover {
  color: var(--warm);
}
.footer__bottom {
  border-top: 1px solid rgba(244, 235, 225, 0.14);
  padding: 1.3rem 0;
  font-size: 0.85rem;
  color: rgba(244, 235, 225, 0.6);
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- floating whatsapp ---------- */

.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-3);
  z-index: 90;
  transition: transform 0.2s var(--ease);
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  color: #fff;
}

/* ---------- article ---------- */

.article {
  padding: calc(var(--nav-h) + 3rem) 0 clamp(3rem, 6vw, 5rem);
}
.article__back {
  display: inline-block;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--warm-text);
}
.article__title {
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  margin-bottom: 1.5rem;
}
.article__cover {
  width: 100%;
  border-radius: var(--r-lg);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-2);
}
.article__body {
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--text);
}
.article__body p {
  margin-bottom: 1.4em;
}
.article__cta {
  margin-top: 3rem;
  text-align: center;
  background: var(--warm-tint);
  border-color: var(--warm);
}
.article__cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

/* ---------- reveal animation ---------- */

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
body.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
  .hero__avatar {
    width: 112px;
    height: 112px;
  }
  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__media {
    max-width: 260px;
    margin: 0 auto;
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 1.2rem;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .btn--lg {
    width: 100%;
  }
  .hero__actions {
    flex-direction: column;
  }
  .card {
    padding: 1.6rem;
  }
  .testimonial__quote-mark {
    font-size: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  body.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
