:root {
  --bg: #faf7f0;
  --bg-soft: #f2ecdf;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-warm: #fcf8f1;
  --text: #222222;
  --muted: rgba(34, 34, 34, 0.72);
  --line: rgba(0, 24, 22, 0.12);
  --brand-green: #001816;
  --brand-green-soft: #2f5138;
  --brand-olive: #1f3113;
  --brand-gold: #b0640e;
  --brand-orange: #ed8f2c;
  --brand-fire: #df5318;
  --brand-cream: #eee6d9;
  --brand-charcoal: #222222;
  --primary: var(--brand-orange);
  --primary-strong: var(--brand-gold);
  --shadow: 0 24px 60px rgba(34, 34, 34, 0.08);
  --shadow-strong: 0 34px 90px rgba(0, 24, 22, 0.2);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --header-height: 70px;
  --section-space: clamp(4.5rem, 12vw, 7rem);
  --container: min(calc(100vw - 1.25rem), 1180px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 88% 10%, rgba(237, 143, 44, 0.13), transparent 22%),
    radial-gradient(circle at 10% 12%, rgba(47, 81, 56, 0.14), transparent 26%),
    linear-gradient(180deg, #fcfaf5 0%, #f7f2e8 42%, #faf7f0 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 12%, rgba(237, 143, 44, 0.12), transparent 20%),
    radial-gradient(circle at 14% 18%, rgba(0, 24, 22, 0.08), transparent 24%);
  z-index: -2;
}

.skip-link {
  position: fixed;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 60;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-green);
  font-family: "Questrial", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 40px rgba(34, 34, 34, 0.12);
  transform: translateY(-140%);
  transition: transform 220ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 213, 111, 0.95);
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: rgba(34, 34, 34, 0.08);
  z-index: 40;
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--brand-green), var(--brand-orange), var(--brand-fire));
  box-shadow: 0 0 18px rgba(237, 143, 44, 0.45);
}

.ambient {
  position: fixed;
  pointer-events: none;
  filter: blur(24px);
  opacity: 0.3;
  z-index: -1;
}

.ambient--left {
  left: -10vw;
  top: 18vh;
  width: 28vw;
  height: 28vw;
  background: radial-gradient(circle, rgba(47, 81, 56, 0.34), transparent 70%);
}

.ambient--right {
  right: -6vw;
  top: 5vh;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(237, 143, 44, 0.28), transparent 72%);
}

.ambient--center {
  left: 50%;
  top: 62%;
  width: 26vw;
  height: 26vw;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(238, 230, 217, 0.44), transparent 70%);
}

.site-header {
  position: fixed;
  top: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  width: var(--container);
  height: calc(var(--header-height) - 1rem);
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(0, 24, 22, 0.12);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 45px rgba(34, 34, 34, 0.09);
  z-index: -1;
}

.site-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.55rem;
  min-width: 0;
}

.site-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0.12rem 0.2rem;
  border-radius: 8px;
  transform: none;
}

.site-brand img {
  display: block;
  width: auto;
  height: clamp(2.45rem, 8vw, 2.85rem);
  max-width: none;
}

.site-nav__toggle {
  display: none;
  position: absolute;
  top: 50%;
  right: 0.25rem;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-green), #0a2a20);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 24, 22, 0.18);
  transform: translateY(-50%);
}

.site-nav__toggle-box {
  display: grid;
  gap: 0.28rem;
}

.site-nav__toggle-box span {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-nav.is-open .site-nav__toggle-box span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-nav.is-open .site-nav__toggle-box span:nth-child(2) {
  opacity: 0;
}

.site-nav.is-open .site-nav__toggle-box span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav__links {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.25rem;
  overflow: visible;
}

.site-nav__links a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  color: rgba(34, 34, 34, 0.74);
  font-family: "Questrial", sans-serif;
  font-size: clamp(0.66rem, 2vw, 0.84rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.site-nav__links a:hover,
.site-nav__links a.is-active,
.site-nav__links a[aria-current="location"] {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand-green), #0a2a20);
  box-shadow: 0 10px 26px rgba(0, 24, 22, 0.2);
}

.site-nav__links[hidden] {
  display: none !important;
}

.panel {
  position: relative;
  overflow: clip;
}

[data-section] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.panel__content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding-top: calc(var(--header-height) + 2.4rem);
  padding-bottom: var(--section-space);
}

.hero {
  min-height: 100vh;
  min-height: 100svh;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 10%, rgba(237, 143, 44, 0.92), transparent 20%),
    radial-gradient(circle at 14% 22%, rgba(47, 81, 56, 0.4), transparent 32%),
    linear-gradient(145deg, #0f260e 0%, #163f14 38%, #463a1c 74%, #8f530f 100%);
}

.hero::before,
.section--alt::after,
.about-photo::after {
  content: "";
  position: absolute;
  background: rgba(238, 230, 217, 0.18);
  clip-path: polygon(39% 0, 100% 0, 62% 45%, 88% 45%, 33% 100%, 46% 62%, 14% 62%);
}

.hero::before {
  left: -8vw;
  bottom: -30vh;
  width: min(44vw, 560px);
  height: min(130vh, 1100px);
  transform: rotate(9deg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: min(48vw, 620px);
  height: min(48vw, 620px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 143, 44, 0.22), transparent 70%);
  filter: blur(18px);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + clamp(0.9rem, 2.6vh, 1.65rem));
  padding-bottom: clamp(2rem, 5vh, 3.5rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(1.4rem, 4.6vw, 3.45rem);
}

.hero__copy,
.hero__visual,
.hero-card {
  min-width: 0;
}

.hero__copy,
.hero__visual {
  padding-top: clamp(1rem, 2.4vh, 1.75rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  max-width: 100%;
  color: var(--brand-green);
  font-family: "Questrial", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-gold), var(--brand-green));
}

.hero__eyebrow,
.hero .eyebrow,
.differential-quote .eyebrow,
.cta-banner .eyebrow,
.footer .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

.hero__eyebrow {
  font-size: 0.8rem;
}

.hero__eyebrow::before,
.hero .eyebrow::before,
.differential-quote .eyebrow::before,
.cta-banner .eyebrow::before,
.footer .eyebrow::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent);
}

.hero h1,
.section-heading h2,
.cta-banner h2,
.footer h2 {
  margin: 0.8rem 0 0;
  font-family: "Questrial", sans-serif;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: none;
  font-size: clamp(2.7rem, 12vw, 5.45rem);
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  color: var(--brand-cream);
}

.hero p,
.about-card p,
.service-card p,
.testimonial-card p,
.differential-card p,
.differential-quote p,
.authority-card p,
.cta-banner p,
.footer__intro p,
.footer-card p {
  line-height: 1.78;
  font-size: 1rem;
}

.hero__copy > p {
  max-width: 40rem;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 4.8vw, 1.38rem);
  line-height: 1.62;
}

.hero__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.86rem;
  margin-top: 1.84rem;
}

.hero .button {
  min-height: 3.68rem;
  padding: 0 1.45rem;
  font-size: 1.01rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  width: 100%;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Questrial", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: var(--brand-charcoal);
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-gold));
  box-shadow: 0 14px 34px rgba(176, 100, 14, 0.28);
}

.button--primary:hover {
  box-shadow: 0 18px 38px rgba(176, 100, 14, 0.34);
}

.button--ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 23rem;
  padding-top: 0.6rem;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-card__glow {
  position: absolute;
}

.hero-card__glow {
  inset: auto 8% -5% 8%;
  height: 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 124, 68, 0.42), transparent 68%);
  filter: blur(24px);
}

.hero-card__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: clamp(31rem, 84vw, 36rem);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(1.25rem, 3vw, 1.65rem);
  border-radius: 30px;
  border: 1px solid rgba(185, 225, 188, 0.16);
  background:
    linear-gradient(180deg, #173d1d 0%, #102f16 58%, #0a1d0d 100%);
  box-shadow: 0 32px 74px rgba(4, 20, 7, 0.34);
}

.hero-card__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(16, 47, 22, 0.08) 0%, rgba(16, 47, 22, 0.12) 42%, rgba(8, 24, 11, 0.26) 100%);
}

.hero-card__panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(
    180deg,
    rgba(8, 24, 11, 0) 0%,
    rgba(8, 24, 11, 0.14) 26%,
    rgba(8, 24, 11, 0.7) 68%,
    rgba(8, 24, 11, 0.94) 100%
  );
  z-index: 2;
}

.hero-card__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  image-rendering: auto;
  filter:
    saturate(0.98)
    contrast(1.02);
}

.hero-card__body {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: auto;
  display: grid;
  gap: 0.18rem;
  transform: none;
}

.hero-card__name {
  display: grid;
  gap: 0.02rem;
  margin: 0;
  font-family: "Questrial", sans-serif;
  font-style: italic;
  line-height: 1.02;
}

.hero-card__first-name,
.hero-card__last-name {
  display: block;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  letter-spacing: 0.01em;
}

.hero-card__first-name {
  color: rgba(255, 255, 255, 0.96);
}

.hero-card__last-name {
  color: #d69d4c;
}

.hero-card__rule {
  display: block;
  width: min(100%, 15.5rem);
  height: 2px;
  margin: 0.18rem 0 0.1rem;
  background: linear-gradient(90deg, #d69d4c, rgba(214, 157, 76, 0.34));
}

.hero-card__title {
  margin: 0;
  max-width: 18ch;
  color: rgba(242, 247, 251, 0.84);
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.8rem, 1.6vw, 0.94rem);
  font-weight: 600;
  line-height: 1.15;
}

.hero-card::before {
  display: none;
}

.section {
  min-height: auto;
}

.section--alt {
  background:
    linear-gradient(180deg, rgba(0, 24, 22, 0.03), rgba(237, 143, 44, 0.04)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
}

.section--alt::before {
  content: "";
  position: absolute;
  inset: auto auto 12% -8%;
  width: min(32vw, 420px);
  height: min(32vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 24, 22, 0.08), transparent 70%);
  filter: blur(14px);
}

.section--alt::after {
  right: -8%;
  top: 10%;
  width: min(24vw, 320px);
  height: min(54vw, 700px);
  opacity: 0.5;
}

.section-heading,
.footer__content {
  position: relative;
}

.section-heading {
  display: block;
  max-width: 920px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-heading--plain {
  max-width: 760px;
}

.section-heading__index {
  display: none;
}

.section-heading h2,
.footer h2 {
  max-width: 15ch;
  font-size: clamp(2.4rem, 5.8vw, 4.8rem);
  color: var(--brand-charcoal);
}

.about-layout,
.differential-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2.6vw, 2rem);
  align-items: stretch;
}

.testimonials-grid,
.footer__grid,
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

.about-card,
.about-photo,
.service-card,
.testimonial-card,
.differential-card,
.differential-quote,
.process-step,
.authority-card,
.cta-banner,
.footer-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 24, 22, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88)),
    linear-gradient(140deg, rgba(0, 24, 22, 0.03), rgba(237, 143, 44, 0.06));
  box-shadow: var(--shadow);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.about-card:hover,
.about-photo:hover,
.service-card:hover,
.testimonial-card:hover,
.differential-card:hover,
.differential-quote:hover,
.process-step:hover,
.authority-card:hover,
.cta-banner:hover,
.footer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 24, 22, 0.14);
  box-shadow: 0 26px 70px rgba(34, 34, 34, 0.1);
}

.about-card::before,
.about-photo::before,
.service-card::before,
.testimonial-card::before,
.differential-card::before,
.differential-quote::before,
.process-step::before,
.authority-card::before,
.cta-banner::before,
.footer-card::before,
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: translateX(-100%);
  transition: transform 700ms ease;
}

.about-card:hover::before,
.about-photo:hover::before,
.service-card:hover::before,
.testimonial-card:hover::before,
.differential-card:hover::before,
.differential-quote:hover::before,
.process-step:hover::before,
.authority-card:hover::before,
.cta-banner:hover::before,
.footer-card:hover::before,
.hero-card:hover::before {
  transform: translateX(100%);
}

.about-card {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.55rem, 3vw, 2.7rem);
  background:
    radial-gradient(circle at 92% 10%, rgba(176, 100, 14, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 248, 241, 0.98));
}

.about-card p,
.differential-card p,
.authority-card p,
.cta-banner p {
  margin: 0;
  color: var(--muted);
}

.about-card__lead {
  color: #102a20;
  font-size: clamp(1.18rem, 1.7vw, 1.5rem);
  font-weight: 700;
  line-height: 1.6;
}

.about-card__statement {
  display: grid;
  gap: 0.7rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.about-card__statement span {
  color: rgba(0, 24, 22, 0.72);
  font-family: "Questrial", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-card__statement strong {
  color: var(--brand-green);
  font-family: "Questrial", sans-serif;
  font-size: clamp(2.15rem, 3.3vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.about-card__closing {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: rgba(0, 24, 22, 0.88);
  font-size: clamp(1rem, 1.38vw, 1.16rem);
  font-weight: 600;
}

.about-photo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: clamp(320px, 72vw, 500px);
  padding: clamp(1.4rem, 2vw, 2rem);
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 14%, rgba(237, 143, 44, 0.9), transparent 20%),
    linear-gradient(145deg, #0f260e 0%, #163f14 42%, #3b3419 78%, #9d6012 100%);
  box-shadow: var(--shadow-strong);
}

.about-photo__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 30%;
  transform: scale(1.02);
  transform-origin: center top;
  z-index: 0;
}

.about-photo::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 24, 22, 0.06), transparent 34%),
    linear-gradient(0deg, rgba(0, 24, 22, 0.72), rgba(0, 24, 22, 0.08) 46%, transparent 78%);
  transform: none;
  transition: opacity 260ms ease;
}

.about-photo:hover::before {
  transform: none;
}

.about-photo::after {
  z-index: 1;
  right: -10%;
  top: 5%;
  width: min(24vw, 320px);
  height: min(54vw, 700px);
}

.services-carousel {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.services-carousel__viewport {
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(min(84vw, 320px), 1fr);
  gap: 1.15rem;
  overflow-x: auto;
  padding: 0 clamp(3.7rem, 6vw, 5.4rem) 0.2rem;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.services-grid::-webkit-scrollbar {
  display: none;
}

.services-carousel__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid rgba(0, 24, 22, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-green);
  font-family: "Questrial", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  box-shadow: 0 16px 36px rgba(34, 34, 34, 0.08);
  cursor: pointer;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease,
    background-color 220ms ease;
  transform: translateY(-50%);
}

.services-carousel__arrow--prev {
  left: clamp(0.4rem, 1.4vw, 1rem);
}

.services-carousel__arrow--next {
  right: clamp(0.4rem, 1.4vw, 1rem);
}

.services-carousel__arrow:hover {
  transform: translateY(calc(-50% - 2px));
  box-shadow: 0 20px 40px rgba(34, 34, 34, 0.12);
}

.services-carousel__arrow:disabled {
  opacity: 0.42;
  cursor: default;
  transform: translateY(-50%);
  box-shadow: none;
}

.service-card {
  --accent: var(--brand-gold);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.55rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 241, 0.96));
  scroll-snap-align: start;
}

.service-card:nth-child(3n + 1) {
  --accent: var(--brand-gold);
  background:
    radial-gradient(circle at 92% 12%, rgba(176, 100, 14, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 241, 0.96));
}

.service-card:nth-child(3n + 2) {
  --accent: var(--brand-green);
  background:
    radial-gradient(circle at 92% 12%, rgba(0, 24, 22, 0.11), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 241, 0.96));
}

.service-card:nth-child(3n + 3) {
  --accent: var(--brand-orange);
  background:
    radial-gradient(circle at 92% 12%, rgba(237, 143, 44, 0.13), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 241, 0.96));
}

.service-card::after {
  content: "";
  position: absolute;
  left: 1.55rem;
  top: 1.4rem;
  width: 3.1rem;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(0, 24, 22, 0.08);
  box-shadow: 0 12px 28px rgba(34, 34, 34, 0.08);
  font-size: 1.35rem;
}

.service-card h3,
.process-step h3 {
  margin: 0;
  font-family: "Questrial", sans-serif;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.03em;
}

.service-card h3 {
  padding-top: 0.25rem;
  font-size: clamp(1.2rem, 1.8vw, 1.48rem);
  line-height: 1.18;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.testimonial-card {
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 24, 22, 0.06), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 233, 0.96));
}

.testimonial-card p {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 1.7rem;
  color: var(--brand-green);
  font-family: "Questrial", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-card span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(34, 34, 34, 0.58);
  font-size: 0.92rem;
}

.testimonials-section .section-heading h2 {
  max-width: none;
  font-size: clamp(2rem, 4vw, 3rem);
}

.authority-card,
.cta-banner {
  padding: clamp(1.6rem, 3vw, 2.8rem);
}

.differential-layout {
  position: relative;
  gap: clamp(1.4rem, 3vw, 2.4rem);
}

.differential-layout::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(4rem, 9vw, 5.6rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 24, 22, 0.12), transparent);
}

.differential-intro,
.differential-values,
.differential-quote {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.differential-intro:hover,
.differential-values:hover,
.differential-quote:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.differential-intro::before,
.differential-values::before,
.differential-quote::before {
  display: none;
}

.differential-intro {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.differential-kicker,
.differential-values__label,
.authority-card__label {
  color: rgba(0, 24, 22, 0.64);
  font-family: "Questrial", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.differential-card__lead {
  margin: 0;
  max-width: 9ch;
  color: var(--brand-green);
  font-family: "Questrial", sans-serif;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.differential-values {
  display: grid;
  gap: 1.05rem;
  align-content: start;
  padding-top: 0.2rem;
}

.differential-values__label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.differential-values__label::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-gold), transparent);
}

.differential-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 1.15rem;
  margin: 0;
  padding: 0;
}

.differential-list li {
  position: relative;
  padding: 0 0 0 1.2rem;
  border: 0;
  border-radius: 0;
  background: none;
  color: rgba(34, 34, 34, 0.82);
  font-family: "Questrial", sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.32;
  letter-spacing: 0;
}

.differential-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold), var(--brand-orange));
  box-shadow: 0 0 0 0.36rem rgba(176, 100, 14, 0.12);
}

.differential-quote {
  display: grid;
  gap: 1rem;
  align-content: end;
  padding-left: clamp(0.9rem, 2vw, 1.5rem);
  border-left: 1px solid rgba(0, 24, 22, 0.14);
}

.differential-quote::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1rem;
  width: min(34vw, 220px);
  height: min(34vw, 220px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176, 100, 14, 0.2), transparent 72%);
  filter: blur(18px);
  z-index: -1;
}

.differential-quote .eyebrow {
  color: rgba(0, 24, 22, 0.62);
}

.differential-quote .eyebrow::before {
  background: linear-gradient(90deg, rgba(0, 24, 22, 0.56), transparent);
}

.differential-quote p {
  margin: 0;
  max-width: 11ch;
  color: var(--brand-charcoal);
  font-family: "Questrial", sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

#processo {
  color: #f7efe0;
  background:
    radial-gradient(circle at 12% 16%, rgba(237, 143, 44, 0.18), transparent 18%),
    radial-gradient(circle at 84% 14%, rgba(255, 245, 219, 0.08), transparent 20%),
    linear-gradient(145deg, #061715 0%, #0a221f 42%, #123228 100%);
}

#processo .panel__content {
  padding-top: calc(var(--header-height) + 1.7rem);
  padding-bottom: clamp(3.2rem, 7vw, 4.6rem);
}

#processo .section-heading {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

#processo .eyebrow {
  color: rgba(247, 239, 224, 0.74);
}

#processo .section-heading h2 {
  color: #fff8ee;
}

.process-grid {
  --process-progress: 0%;
  position: relative;
  display: grid;
  gap: 1.35rem;
  padding: 1rem 0 0;
}

.process-grid::before,
.process-grid::after {
  content: "";
  position: absolute;
  left: 2.35rem;
  top: 1.4rem;
  bottom: 1.4rem;
  width: 2px;
  border-radius: 999px;
  pointer-events: none;
}

.process-grid::before {
  background: rgba(231, 197, 119, 0.18);
}

.process-grid::after {
  top: 1.4rem;
  bottom: auto;
  height: var(--process-progress);
  background: linear-gradient(180deg, #ffe3a6, #f4bd56 48%, #bb7416 100%);
  box-shadow: 0 0 28px rgba(244, 189, 86, 0.3);
}

.process-step {
  position: relative;
  min-height: 100%;
  margin: 0;
  padding: 0 0 0 5.2rem;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.process-step:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.process-step::before {
  display: none;
}

.process-step__number {
  position: absolute;
  left: 0.45rem;
  top: 0.18rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.85rem;
  height: 2.55rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(233, 196, 114, 0.28);
  background: rgba(5, 26, 23, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  color: #f6e9cf;
  font-family: "Questrial", sans-serif;
  font-size: 0.92rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  text-transform: uppercase;
  z-index: 2;
  transition:
    color 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.process-step__number::before,
.process-step__number::after {
  content: none;
}

.process-step h3 {
  position: relative;
  margin: 0;
  display: flex;
  align-items: flex-start;
  min-height: 7.8rem;
  padding: 1.2rem 1.15rem;
  border: 1px solid rgba(233, 196, 114, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(249, 243, 229, 0.98), rgba(237, 228, 210, 0.96)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(237, 143, 44, 0.06));
  box-shadow: 0 18px 40px rgba(2, 12, 11, 0.24);
  font-size: clamp(1.02rem, 2.5vw, 1.18rem);
  line-height: 1.3;
  color: #143029;
  letter-spacing: 0;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease,
    color 260ms ease;
}

.process-step h3::after {
  content: none;
}

.process-step:hover h3 {
  transform: translateY(-4px);
  border-color: rgba(244, 189, 86, 0.42);
  box-shadow: 0 22px 46px rgba(2, 12, 11, 0.3);
}

.process-step.is-active h3 {
  border-color: rgba(244, 189, 86, 0.62);
  box-shadow: 0 22px 52px rgba(2, 12, 11, 0.32);
  color: #0d2722;
}

.process-step.is-active .process-step__number {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #184237, #b97719 72%, #ffcd72 100%);
  box-shadow:
    0 0 0 4px rgba(244, 189, 86, 0.14),
    0 16px 30px rgba(0, 0, 0, 0.28);
}

.process-step.is-current h3 {
  box-shadow: 0 24px 56px rgba(2, 12, 11, 0.36);
}

.authority-card {
  display: grid;
  gap: 1rem;
  background:
    radial-gradient(circle at 92% 14%, rgba(237, 143, 44, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 241, 233, 0.96));
}

.authority-card p {
  max-width: 46rem;
  color: var(--text);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.72;
}

.cta-banner {
  display: grid;
  gap: 1.6rem;
  align-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 14%, rgba(237, 143, 44, 0.86), transparent 22%),
    linear-gradient(145deg, #0f260e 0%, #163f14 40%, #3b3419 78%, #9d6012 100%);
  box-shadow: var(--shadow-strong);
}

.cta-banner h2 {
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.cta-banner p {
  margin-top: 1.15rem;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.82);
}

.cta-banner__action {
  justify-self: start;
}

.footer {
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 12%, rgba(237, 143, 44, 0.86), transparent 18%),
    linear-gradient(145deg, #0b180a 0%, #0f260e 36%, #322c18 70%, #8b510f 100%);
}

.footer__content {
  padding-bottom: 3rem;
}

.footer h2 {
  color: #ffffff;
}

.footer__intro p {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer__grid {
  margin-top: 2rem;
}

.footer-card {
  padding: 1.45rem;
  border-radius: var(--radius-lg);
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.footer-card strong {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
  color: var(--brand-cream);
  font-family: "Questrial", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  color: var(--brand-cream);
  flex: 0 0 auto;
}

.footer-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-card a,
.footer-card p {
  display: block;
  margin: 0.3rem 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-card a:hover {
  color: #ffffff;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.9rem;
  padding-top: 1.35rem;
  padding-bottom: 0.35rem;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-family: "Questrial", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: none;
  text-align: center;
}

.footer__bottom-copy,
.footer__bottom-credit {
  display: block;
}

.whatsapp-float {
  position: fixed;
  right: max(0.95rem, env(safe-area-inset-right));
  bottom: max(0.95rem, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #25d366, #128c45);
  box-shadow:
    0 18px 35px rgba(34, 34, 34, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.24);
  z-index: 35;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 22px 42px rgba(34, 34, 34, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.28);
}

.whatsapp-float__ring {
  position: absolute;
  inset: -0.42rem;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, 0.34);
  animation: whatsappPulse 2.4s ease-out infinite;
}

.whatsapp-float__icon {
  width: 1.38rem;
  height: 1.38rem;
  display: block;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--delay, 0ms);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-ready .process-step.is-visible {
  opacity: 0.56;
}

.js-ready .process-step.is-visible.is-active {
  opacity: 1;
}

.js-ready .process-step.is-visible.is-current h3 {
  transform: translateY(-4px);
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.82;
    transform: scale(0.88);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@media (min-width: 561px) {
  :root {
    --container: min(calc(100vw - 1.8rem), 1180px);
  }

  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, auto));
    justify-content: start;
  }

  .button {
    width: auto;
    padding: 0 1.35rem;
  }
}

@media (max-width: 860px) {
  .js-enabled .site-nav__toggle {
    display: inline-flex;
  }

  .js-enabled .site-nav__links {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0;
    right: 0;
    display: grid;
    gap: 0.35rem;
    padding: 0.65rem;
    border: 1px solid rgba(0, 24, 22, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 52px rgba(34, 34, 34, 0.12);
  }

  .js-enabled .site-nav__links a {
    width: 100%;
    justify-content: flex-start;
    padding: 0.95rem 1rem;
  }
}

@media (min-width: 720px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .differential-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 861px) {
  :root {
    --header-height: 88px;
    --section-space: clamp(6rem, 10vw, 8rem);
    --container: min(calc(100vw - 2rem), 1180px);
  }

  .site-header {
    top: 0.65rem;
  }

  .site-nav {
    gap: 0.75rem;
    padding: 0 0.35rem;
  }

  .site-brand {
    transform: translateX(10%);
  }

  .site-brand img {
    height: 3.15rem;
  }

  .site-nav__toggle {
    display: none !important;
  }

  .site-nav__links {
    gap: 0.4rem;
    flex-wrap: nowrap;
  }

  .site-nav__links a {
    padding: 0.86rem 1rem;
  }

  .panel__content {
    padding-top: calc(var(--header-height) + 2.8rem);
  }

  .hero__content {
    padding-top: calc(var(--header-height) + 1rem);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
    gap: clamp(1.6rem, 4vw, 3.25rem);
  }

  .hero__copy,
  .hero__visual {
    padding-top: 1.35rem;
  }

  .hero__eyebrow {
    font-size: 0.86rem;
  }

  .hero h1 {
    font-size: clamp(3.9rem, 6vw, 5.8rem);
  }

  .hero__copy > p {
    font-size: clamp(1.22rem, 1.55vw, 1.5rem);
  }

  .hero__visual {
    justify-content: flex-end;
  }

  .hero-card {
    max-width: 24.75rem;
    padding-top: 0.85rem;
  }

  .hero-card__panel {
    min-height: clamp(33rem, 44vw, 38rem);
    padding: 1.6rem 1.55rem 1.75rem;
  }

  .hero-card__photo {
    height: 100%;
    max-width: none;
    object-position: center center;
  }

  .hero-card__title {
    font-size: clamp(0.84rem, 0.95vw, 0.98rem);
  }

  #processo .panel__content {
    padding-top: calc(var(--header-height) + 2rem);
    padding-bottom: clamp(4rem, 6vw, 5.2rem);
  }

  .cta-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
  }
}

@media (min-width: 981px) {
  .about-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  }

  .differential-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    grid-template-areas:
      "intro quote"
      "values quote";
    align-items: start;
    column-gap: clamp(2rem, 4vw, 4rem);
    row-gap: 1.3rem;
  }

  .differential-intro {
    grid-area: intro;
  }

  .differential-values {
    grid-area: values;
  }

  .differential-quote {
    grid-area: quote;
    align-self: stretch;
    padding-left: clamp(1.5rem, 2vw, 2.1rem);
  }

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

@media (min-width: 1120px) {
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.9rem;
    min-height: 30rem;
    padding: 1.75rem 0 1rem;
  }

  .process-grid::before,
  .process-grid::after {
    left: 4%;
    right: 4%;
    top: 50%;
    bottom: auto;
    width: auto;
    height: 2px;
    transform: translateY(-50%);
  }

  .process-grid::after {
    right: auto;
    width: var(--process-progress);
  }

  .process-step {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto minmax(0, 1fr);
    justify-items: center;
    align-items: center;
    min-height: 30rem;
    padding: 0;
  }

  .process-step h3 {
    grid-row: 1;
    align-self: end;
    width: min(100%, 12.9rem);
    min-height: 8.2rem;
    padding: 1.35rem 1.2rem;
  }

  .process-step:nth-child(even) h3 {
    grid-row: 3;
    align-self: start;
  }

  .process-step h3::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 1px;
    height: 4rem;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255, 221, 153, 0.52), rgba(255, 221, 153, 0.06));
  }

  .process-step:nth-child(odd) h3::after {
    top: 100%;
  }

  .process-step:nth-child(even) h3::after {
    top: auto;
    bottom: 100%;
  }

  .process-step__number {
    position: relative;
    left: auto;
    top: auto;
    grid-row: 2;
    min-width: 4.35rem;
    height: 2.7rem;
    padding: 0 1rem;
    font-size: 0.94rem;
    letter-spacing: 0.1em;
    transform: translateY(-46%);
  }

  .process-step__number::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 1px;
    height: 1rem;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(255, 221, 153, 0.46), rgba(255, 221, 153, 0));
  }

  .process-step__number::after {
    content: "";
    position: absolute;
    left: 50%;
    top: calc(100% + 0.7rem);
    width: 0.88rem;
    height: 0.88rem;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, #fff3c2 0%, #ffd56f 48%, #cf8612 100%);
    box-shadow:
      0 0 0 10px rgba(244, 189, 86, 0.12),
      0 0 18px rgba(255, 213, 111, 0.46);
  }

  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .footer__bottom-credit {
    text-align: right;
  }

  .whatsapp-float {
    right: clamp(1rem, 2vw, 1.6rem);
    bottom: clamp(1rem, 2vw, 1.6rem);
  }
}

@media (min-width: 861px) and (max-height: 820px) {
  .hero__content {
    padding-top: calc(var(--header-height) + 0.65rem);
    padding-bottom: 1.4rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 5.4vw, 4.5rem);
  }

  .hero-card {
    max-width: 20.5rem;
  }

  .hero-card__panel {
    min-height: clamp(29rem, 50vh, 33rem);
  }

  .hero-card__photo {
    height: 100%;
  }

  .hero-card__title {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js-enabled [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
