/* VarejArte Landing — pure CSS */
:root {
  --navy: #0b1e3a;
  --navy-3: #0a1830;
  --red: #c8102e;
  --red-2: #e11d3a;
  --text: #111827;
  --muted: #5b6577;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --border: #e6e9ef;
  --shadow: 0 10px 30px rgba(11, 30, 58, .08);
  --shadow-lg: 0 25px 60px rgba(11, 30, 58, .18);
  --max: 1180px;
  --nav-offset: 96px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-offset)
}

#sobre {
  scroll-margin-top: -75px;
}

#equipe {
  scroll-margin-top: -50px;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased
}

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

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

h1,
h2,
h3,
h4 {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  letter-spacing: .5px;
  line-height: 1.05;
  margin: 0 0 .5em;
  color: var(--navy)
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase
}

h3 {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase
}

p {
  margin: 0 0 1em
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px
}

img.ph {
  background:
    linear-gradient(135deg, #e9edf5 25%, transparent 25%) -10px 0,
    linear-gradient(225deg, #e9edf5 25%, transparent 25%) -10px 0,
    linear-gradient(315deg, #e9edf5 25%, transparent 25%),
    linear-gradient(45deg, #e9edf5 25%, #f5f7fb 25%);
  background-size: 20px 20px;
  background-color: #f5f7fb;
  min-height: 180px
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s
}

.nav.is-scrolled {
  box-shadow: 0 6px 20px rgba(11, 30, 58, .06)
}

.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px 24px
}

.nav__inner > .brand {
  justify-self: start
}

.nav__inner > .btn {
  justify-self: end
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800
}

.brand__logo {
  display: block;
  width: 225px;
  object-fit: contain
}

.nav__links {
  display: flex;
  gap: 22px;
  font-weight: 500;
  font-size: .95rem;
  padding: 15px;
  justify-content: space-between;
}

.nav__links a {
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  font-size: 1.1rem;
  transition: color .25s ease, transform .25s ease
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform .25s ease
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--red);
  transform: translateY(-2px)
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: translateX(-50%) scaleX(1)
}

.nav__links a:focus-visible {
  outline: none
}

.nav__burger {
  display: none;
  background: none;
  border: 0;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto
}

.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s;
  cursor: pointer;
  border: 0;
  text-align: center
}

.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(200, 16, 46, .35)
}

.btn--primary:hover {
  background: var(--red-2);
  transform: translateY(-2px)
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy)
}

.btn--ghost:hover {
  background: var(--navy);
  color: #fff
}

.btn--sm {
  padding: 12px;
  font-size: 0.95rem;
}

.btn--lg {
  padding: 16px 28px;
  font-size: 1rem
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 52px;
  background: var(--navy);
  color: #fff;
  min-height: calc(100vh - var(--nav-offset));
  display: flex;
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: rgba(2, 2, 56, 0.43);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%)
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: clamp(42px, 5vw, 78px);
  align-items: center;
}

.hero__content {
  position: relative;
  padding-bottom: 48px;
  width: 100%;
  max-width: 760px;
}

.hero__content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(100%, 560px);
  height: 1px;
  background: rgba(255, 255, 255, .16)
}

.hero__content h1 {
  color: #fff;
  margin: 0;
  width:  120%;
  font-size: clamp(2.85rem, 4vw, 4.05rem);
  line-height: 1;
}

.hero__content .hl {
  position: relative;
  display: inline-block;
  color: var(--red-2);
  padding-right: .05em
}

.hero__content .hl::after {
  content: "";
  position: absolute;
  left: 0;
  right: .08em;
  bottom: .03em;
  height: 3px;
  background: currentColor;
  opacity: .9
}

.lead {
  color: rgba(255, 255, 255, .85);
  font-size: 1.16rem;
  max-width: 46ch;
  margin-top: 28px;
  line-height: 1.62;
}

.hero__cta {
  display: flex;
  gap: 14px;
  margin: 30px 0 0;
  flex-wrap: wrap
}

.hero__cta .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .4)
}

.hero__cta .btn--ghost:hover {
  background: #fff;
  color: var(--navy)
}

.hero__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: 0;
  transform: translateX(56px)
}

.hero__brand img {
  display: block;
  width: min(48vw, 590px);
  max-width: none;
  height: auto;
  opacity: .92;
  transform: none;
  transform-origin: center;
  filter: drop-shadow(0 30px 58px rgba(0, 0, 0, .2));
}

.hero__media {
  position: relative
}

.hero__media img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%
}

.hero__badge {
  position: absolute;
  left: -24px;
  bottom: -24px;
  background: #fff;
  color: var(--navy);
  padding: 16px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 280px
}

.hero__badge::before {
  content: "";
  display: block;
  width: 8px;
  height: 44px;
  background: var(--red);
  border-radius: 4px
}

.hero__badge strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px
}

.hero__badge span {
  font-size: .8rem;
  color: var(--muted)
}

.parallax-stats {
  position: relative;
  isolation: isolate;
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 80px 0;
  background-image: linear-gradient(rgba(5, 20, 37, .58), rgba(5, 20, 37, .72)), url("./parallax.jpg");
  background-position: center 100px;
  background-size: cover;
  background-attachment: fixed
}

.parallax-stats__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #fff
}

.parallax-stats__list li {
  display: flex;
  flex-direction: column;
  align-items: center
}

.parallax-stats__list strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: .9;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .4)
}

.parallax-stats__list span {
  margin-top: 14px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9)
}

/* SECTIONS */
.section {
  padding: 90px 0
}

.section--muted {
  background: var(--bg-soft)
}

.section--dark {
  background: var(--navy);
  color: #fff
}

.section--dark h2 {
  color: #fff
}

.section--dark p {
  color: rgba(255, 255, 255, .8)
}

.section__head {
  max-width: 720px;
  margin-bottom: 50px
}

.section__head--center {
  margin: 0 auto 60px;
  text-align: center
}

.section__head p {
  color: var(--muted);
  font-size: 1.05rem
}

.section--dark .section__head p {
  color: rgba(255, 255, 255, .75)
}

.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.two-col--contact {
  align-items: start
}

.location-photo {
  position: relative;
  isolation: isolate;
  width: min(110%, 920px);
  aspect-ratio: 3/3.5;
  margin: 18px auto 0;
  padding: 18px;
  border-radius: 36px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 26px 58px rgba(17, 24, 39, .16)
}

.location-photo::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(11, 30, 58, .08);
  border-radius: 44px;
  z-index: -1
}

.location-photo img {
  position: absolute;
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: 26px;
  background-color: var(--bg-soft);
  box-shadow: 0 14px 28px rgba(17, 24, 39, .16)
}

.about-slideshow {
  overflow: hidden;
  background: #fff
}

.about-slideshow img {
  animation: aboutSlideFade 48s ease-in-out infinite;
  opacity: 0;
  will-change: opacity
}

.about-slideshow img:not(:first-child) {
  position: absolute
}

.about-slideshow img:nth-child(2) {
  animation-delay: 6s
}

.about-slideshow img:nth-child(3) {
  animation-delay: 12s
}

.about-slideshow img:nth-child(4) {
  animation-delay: 18s
}

.about-slideshow img:nth-child(5) {
  animation-delay: 24s
}

.about-slideshow img:nth-child(6) {
  animation-delay: 30s
}

.about-slideshow img:nth-child(7) {
  animation-delay: 36s
}

.about-slideshow img:nth-child(8) {
  animation-delay: 42s
}

@keyframes aboutSlideFade {
  0% {
    opacity: 0
  }

  4%,
  14% {
    opacity: 1
  }

  18%,
  100% {
    opacity: 0
  }
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px
}

.pill {
  background: #fff;
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--navy)
}

.section--muted .pill {
  background: #fff
}

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

.card {
  background: #fff;
  color: var(--text);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s
}

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

.card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eee
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s
}

.card:hover .card__img img {
  transform: scale(1.05)
}

.card__body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1
}

.card__body h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 4px
}

.card__body p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0
}

.card--cta {
  background: linear-gradient(160deg, var(--red), #8a0a20);
  color: #fff;
  justify-content: center;
  align-items: flex-start;
  padding: 6px
}

.card--cta h3,
.card--cta p {
  color: #fff
}

.card--cta .btn {
  margin-top: 14px;
  background: #fff;
  color: var(--red);
  box-shadow: none
}

.card--cta .btn:hover {
  background: var(--navy);
  color: #fff
}

/* STEPS */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step
}

.steps li {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: var(--shadow)
}

.steps__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  display: block;
  margin-bottom: 8px
}

.steps li h3 {
  font-size: 1.15rem;
  color: var(--navy)
}

.steps li p {
  color: var(--muted);
  font-size: .92rem;
  margin: 0
}

.steps li::after {
  content: "";
  position: absolute;
  top: 56px;
  right: -16px;
  width: 32px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--red) 0 6px, transparent 6px 12px)
}

.steps li:last-child::after {
  display: none
}

/* TEAM */
.team {
  display: grid;
  gap: 22px;
  margin-bottom: 34px
}

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

.team__intro article {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 26px
}

.team__intro h3 {
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 1.5rem
}

.team__intro span {
  display: block;
  color: var(--red);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px
}

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

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

.team__highlights span {
  background: var(--navy);
  color: rgba(255, 255, 255, .82);
  border-radius: 14px;
  padding: 18px 20px;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.35
}

.team__highlights strong {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: .5px
}

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

.staff__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  min-height: 148px
}

.staff__item strong {
  display: block;
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem;
  letter-spacing: .5px;
  text-transform: uppercase
}

.staff__item span {
  display: block;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.55;
  margin-top: 8px
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--red) 0%, #8a0a20 100%);
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 100% 0%, rgba(255, 255, 255, .15), transparent 60%)
}

.cta-band__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 0 8px
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, .9)
}

.cta-band .btn--primary {
  background: #fff;
  color: var(--red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
}

.cta-band .btn--primary:hover {
  background: var(--navy);
  color: #fff
}

/* CONTACT */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .9)
}

.contact-list a {
  color: #fff;
  font-weight: 500
}

.contact-list a:hover {
  color: var(--red-2)
}

.contact-list span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  border-radius: 8px
}

.contact-list i {
  font-size: 16px;
  padding: 10px;
}

.form {
  background: #fff;
  color: var(--text);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 14px
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

.form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: .85rem;
  color: var(--navy);
  gap: 6px
}

.form input,
.form textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: #fbfcfe;
  color: var(--text);
  transition: border-color .2s
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--red)
}

.form textarea {
  resize: vertical
}

.form .btn {
  align-self: flex-start;
  margin-top: 6px
}

.form__status {
  margin: 0;
  font-size: .9rem;
  color: var(--muted)
}

.form__status.is-ok {
  color: #0a7a3f
}

.form__status.is-err {
  color: var(--red)
}

/* FOOTER */
.footer {
  background: var(--navy-3);
  color: rgba(255, 255, 255, .75);
  padding: 60px 0 20px;
  margin-top: 0
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px
}

.footer h4 {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 14px
}

.footer a {
  display: block;
  padding: 4px 0;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem
}

.footer a:hover {
  color: var(--red-2)
}

.brand--footer {
  color: #fff;
  justify-content: center
}

.footer__about {
  text-align: center
}

.footer__logo {
  display: block;
  width: 50%;
  margin: 0 auto 15px
}

.footer__about p {
  margin: 0 auto;
  max-width: 32ch
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .85rem;
  text-align: center
}

/* WhatsApp float */
.whats {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .4);
  z-index: 60;
  transition: transform .2s
}

.whats i {
  color: #fff;
  font-size: 2rem
}

.whats:hover {
  transform: scale(1.08)
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

@media (hover: hover) and (pointer: fine) {
  .card.reveal.is-visible:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(11, 30, 58, .2)
  }

  .card:hover .card__img img {
    transform: scale(1.08)
  }

  .card__body h3 {
    transition: color .3s ease
  }

  .card:hover .card__body h3 {
    color: var(--red)
  }

  .card--cta.reveal.is-visible:hover {
    transform: none;
    box-shadow: var(--shadow)
  }

  .card--cta:hover .card__body h3 {
    color: #fff
  }

  .steps li,
  .staff__item,
  .team__intro article,
  .pill {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background-color .3s ease
  }

  .steps li.reveal.is-visible:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 16, 46, .35);
    box-shadow: 0 20px 42px rgba(11, 30, 58, .14)
  }

  .steps__num {
    transition: transform .3s ease, color .3s ease
  }

  .steps li:hover .steps__num {
    color: var(--navy);
    transform: translateY(-3px)
  }

  .team__intro article:hover {
    transform: translateX(8px);
    border-color: var(--navy)
  }

  .staff__item.reveal.is-visible:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 16, 46, .35);
    box-shadow: 0 16px 32px rgba(11, 30, 58, .12)
  }

  .pill:hover {
    transform: translateY(-3px);
    color: #fff;
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 8px 18px rgba(11, 30, 58, .16)
  }

}

@media (prefers-reduced-motion: reduce) {
  .nav__links a,
  .nav__links a::after,
  .card,
  .card__img img,
  .steps li,
  .steps__num,
  .staff__item,
  .team__intro article,
  .pill,
  .about-slideshow img {
    transition: none
  }

  .about-slideshow img {
    animation: none;
    opacity: 1
  }

  .about-slideshow img:not(:first-child) {
    display: none
  }
}

/* Responsive */
@media (max-width:960px) {
  :root {
    --nav-offset: 88px
  }

  .nav__inner {
    display: flex
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow)
  }

  .nav__links.is-open {
    display: flex
  }

  .nav__burger {
    display: flex
  }

  .nav .btn {
    display: none
  }

  .hero__grid,
  .two-col,
  .team {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .location-photo {
    width: 100%;
    max-width: 760px
  }

  .hero {
    min-height: auto;
    padding: 68px 0 56px
  }

  .hero__content h1 {
    max-width: 20ch;
    font-size: clamp(2.45rem, 7vw, 3.7rem)
  }

  .hero__content {
    padding-bottom: 34px;
    max-width: 100%
  }

  .hero__brand {
    min-height: auto;
    justify-content: flex-start;
    padding: 0;
    transform: none
  }

  .hero__brand img {
    width: min(82vw, 520px);
    transform: none
  }

  .team__intro {
    grid-template-columns: 1fr
  }

  .team__highlights {
    grid-template-columns: 1fr
  }

  .hero__media img {
    aspect-ratio: 4/3
  }

  .cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps li::after {
    display: none
  }

  .staff {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px
  }

  .cta-band__inner {
    grid-template-columns: 1fr;
    text-align: center
  }

  .cta-band .btn {
    justify-self: center
  }

  .section {
    padding: 64px 0
  }

}

@media (max-width:560px) {
  :root {
    --nav-offset: 76px
  }

  .brand__logo {
    width: 165px;
    height: 42px
  }

  .hero {
    padding: 44px 0 48px
  }

  .hero__content h1 {
    max-width: 16ch;
    font-size: clamp(2.05rem, 8.6vw, 2.9rem);
    line-height: 1
  }

  .hero__content {
    padding-bottom: 28px
  }

  .lead {
    font-size: 1rem;
    line-height: 1.65;
    margin-top: 24px
  }

  .hero__brand img {
    width: min(88vw, 380px);
    transform: none
  }

  .cards,
  .steps,
  .staff,
  .form__row,
  .footer__inner {
    grid-template-columns: 1fr
  }

  .hero__badge {
    left: 0;
    right: 0;
    bottom: -16px;
    max-width: none
  }

  .parallax-stats {
    min-height: calc(100svh - var(--nav-offset));
    padding: 56px 0;
    background-attachment: scroll;
    background-position: center center
  }

  .parallax-stats__list {
    grid-template-columns: 1fr;
    gap: clamp(34px, 8vh, 48px)
  }

  .parallax-stats__list strong {
    font-size: clamp(3.1rem, 14vw, 4.15rem)
  }

  .parallax-stats__list span {
    margin-top: 10px;
    font-size: .95rem
  }
}
