:root {
  --gold: #c9a24b;
  --gold-soft: #e4c98a;
  --ink: #05100a;
  --emerald: #061a10;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--gold-soft);
  font-family: 'Jost', sans-serif;
  overflow-x: hidden;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 6vw 4rem;
}

.hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: saturate(0.9) brightness(0.75);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 10, 6, 0.55) 0%, rgba(3, 10, 6, 0.25) 30%, rgba(3, 10, 6, 0.45) 70%, rgba(2, 8, 5, 0.9) 100%),
    radial-gradient(ellipse at center, rgba(4, 12, 8, 0.15) 0%, rgba(2, 8, 5, 0.65) 100%);
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.8rem 4vw;
  opacity: 0;
  animation: fade-in-down 1.4s ease forwards;
  animation-delay: 0.4s;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.nav.is-scrolled {
  background: rgba(2, 8, 5, 0.88);
  backdrop-filter: blur(10px);
  padding: 1.1rem 4vw;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(201, 162, 75, 0.15);
}

.nav__links {
  display: flex;
  gap: 2.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.35s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.nav a:hover {
  color: var(--gold);
}

.nav a:hover::after {
  width: 100%;
}

.nav a.is-active {
  color: var(--gold);
}

.nav a.is-active::after {
  width: 100%;
}

/* ---------- Hero content ---------- */

.hero__content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
}

.hero__logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero__logo {
  width: clamp(195px, 19.5vw, 273px);
  height: auto;
  opacity: 0;
  transform: scale(0.92);
  filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.55));
  animation: logo-reveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 3s;
}

.hero__logo-line {
  opacity: 0;
  animation: fade-in-up 1s ease forwards;
}

.hero__logo-line--sub {
  position: relative;
  margin-top: 0.9rem;
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.85rem, 1.6vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  animation-delay: 3.3s;
}

.hero__logo-line--sub::before,
.hero__logo-line--sub::after {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.hero__logo-line--tagline {
  margin-top: 0.5rem;
  font-family: 'Jost', sans-serif;
  font-size: clamp(0.68rem, 1.1vw, 0.8rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(228, 201, 138, 0.75);
  animation-delay: 3.5s;
}

.hero__heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  line-height: 1.2;
  color: var(--gold-soft);
  margin-top: 1.6rem;
  opacity: 0;
  animation: fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 3.6s;
}

.hero__heading span {
  display: block;
  color: var(--gold);
  font-size: 0.6em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.hero__icons {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  max-width: 900px;
  opacity: 0;
  animation: fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 3.9s;
}

.hero__icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 0 0.9rem;
  color: var(--gold);
}

.hero__icon + .hero__icon::before {
  content: '';
  position: absolute;
  left: -0.1rem;
  top: 2px;
  width: 1px;
  height: 34px;
  background: rgba(201, 162, 75, 0.35);
}

.hero__icon svg {
  width: 32px;
  height: 32px;
}

.hero__icon span {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(228, 201, 138, 0.8);
  font-weight: 500;
  white-space: nowrap;
}

.hero__subheading {
  margin-top: 1.6rem;
  max-width: 560px;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(228, 201, 138, 0.85);
  opacity: 0;
  animation: fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 4.2s;
}

.hero__cta {
  display: flex;
  gap: 1.4rem;
  margin-top: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 4.6s;
}

.hero__badges {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.8rem;
  opacity: 0;
  animation: fade-in-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 5s;
}

.hero__badges li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.hero__badges strong {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.hero__badges span {
  font-size: 0.88rem;
  color: rgba(228, 201, 138, 0.7);
  font-weight: 400;
}

@keyframes fade-in-up {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes logo-reveal {
  0% {
    opacity: 0;
    transform: scale(0.92);
    filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.55)) blur(4px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.55)) blur(0px);
  }
}

@keyframes fade-in-down {
  0% { opacity: 0; transform: translateY(-14px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ---------- Scroll cue ---------- */

.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 1px;
  height: 46px;
  background: rgba(228, 201, 138, 0.25);
  opacity: 0;
  animation: fade-in-down 1.2s ease forwards;
  animation-delay: 5.4s;
}

.hero__scroll span {
  position: absolute;
  top: 0;
  left: -2.5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: scroll-dot 2.2s ease-in-out infinite;
  animation-delay: 5.8s;
}

@keyframes scroll-dot {
  0% { top: 0; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 46px; opacity: 0; }
}

/* ---------- Page body ---------- */

.page {
  position: relative;
  min-height: 60vh;
  background: url('../assets/img/bg.png') center top / cover no-repeat fixed;
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 6vw;
}

.container--narrow {
  max-width: 760px;
}

.center {
  text-align: center;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.section__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  color: var(--gold-soft);
  line-height: 1.2;
}

.rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 1.6rem auto 2.2rem;
}

.section .rule { margin-left: auto; margin-right: auto; }
.center .rule { margin: 1.6rem auto 2.2rem; }

.lead {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(228, 201, 138, 0.82);
  margin-bottom: 1.8rem;
}

.section {
  padding: 6.5rem 0;
}

.section--dark {
  background: rgba(2, 8, 5, 0.35);
  border-top: 1px solid rgba(201, 162, 75, 0.15);
  border-bottom: 1px solid rgba(201, 162, 75, 0.15);
}

/* ---------- Services video background ---------- */

.section--services {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.services__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.5);
}

.services__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(2, 8, 5, 0.82) 0%, rgba(2, 8, 5, 0.55) 35%, rgba(2, 8, 5, 0.6) 65%, rgba(2, 8, 5, 0.85) 100%);
}

.section--services .card {
  background: rgba(4, 16, 10, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.4);
}

.section--services .card:hover {
  background: rgba(4, 16, 10, 0.62);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.5);
}

/* ---------- Contact video background ---------- */

.section--contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.contact__video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.5);
}

.contact__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3, 20, 12, 0.88) 0%, rgba(6, 38, 22, 0.62) 35%, rgba(6, 38, 22, 0.68) 65%, rgba(3, 20, 12, 0.9) 100%);
}

.section--contact .contact-info,
.section--contact .contact-form {
  background: rgba(4, 16, 10, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 162, 75, 0.25);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.4);
  padding: 2.4rem;
}

.section--cta {
  padding: 7rem 0;
}

.text-link {
  display: inline-block;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201, 162, 75, 0.4);
  padding-bottom: 6px;
  margin-top: 1rem;
  transition: border-color 0.35s ease, color 0.35s ease;
}

.text-link:hover {
  color: var(--gold-soft);
  border-color: var(--gold-soft);
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.2rem;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--ink);
  font-weight: 500;
}

.btn--gold:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn--ghost {
  border-color: rgba(228, 201, 138, 0.4);
  color: var(--gold-soft);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- Grids and cards ---------- */

.grid {
  display: grid;
  gap: 2.2rem;
  margin: 3rem 0;
}

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

.card {
  background: rgba(6, 26, 16, 0.5);
  border: 1px solid rgba(201, 162, 75, 0.18);
  padding: 2.4rem 2rem;
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.card:hover {
  border-color: rgba(201, 162, 75, 0.55);
  transform: translateY(-4px);
}

.card__index {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--gold-soft);
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(228, 201, 138, 0.72);
}

/* ---------- Check list ---------- */

.list-check {
  list-style: none;
}

.list-check li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 2rem;
}

.list-check li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.list-check h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--gold-soft);
  margin-bottom: 0.3rem;
}

.list-check p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(228, 201, 138, 0.7);
  line-height: 1.6;
}

/* ---------- Process ---------- */

.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.6rem;
  counter-reset: step;
  position: relative;
}

.process::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(201, 162, 75, 0.25);
}

.process li {
  position: relative;
  text-align: center;
  padding-top: 0;
}

.process__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.process h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}

.process p {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(228, 201, 138, 0.68);
  line-height: 1.55;
}

/* ---------- Section anchor offset ---------- */

section[id] {
  scroll-margin-top: 90px;
}

/* ---------- Service icon cards ---------- */

.card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201, 162, 75, 0.5);
  border-radius: 50%;
  margin-bottom: 1.4rem;
  color: var(--gold);
}

.card__icon svg {
  width: 30px;
  height: 30px;
}

/* ---------- Portfolio gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin: 3.5rem 0 0;
}

.gallery__item {
  position: relative;
  display: block;
  padding-top: 75%;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 75, 0.35);
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  filter: saturate(0.92) brightness(0.92);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 6, 0.35);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1;
}

.gallery__item:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.gallery__item:hover img {
  transform: scale(1.08);
  filter: saturate(1) brightness(0.7);
}

.gallery__item:hover::after {
  opacity: 1;
}

.gallery__item:hover .gallery__icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(201, 162, 75, 0.2);
  padding: 4.5rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__brand img {
  height: 90px;
  width: auto;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.8rem;
  color: rgba(228, 201, 138, 0.6);
  font-weight: 300;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer__col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.footer__col a,
.footer__col span {
  color: rgba(228, 201, 138, 0.75);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer__col a:hover {
  color: var(--gold);
}

.footer__response {
  color: var(--gold) !important;
  font-weight: 400 !important;
}

.footer__bottom {
  border-top: 1px solid rgba(201, 162, 75, 0.12);
  padding: 1.6rem 6vw;
  text-align: center;
  font-size: 0.76rem;
  color: rgba(228, 201, 138, 0.45);
  font-weight: 300;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(5, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3,
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--gold-soft);
}

.contact-info dl {
  margin-top: 1.5rem;
}

.contact-info dt {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.4rem;
}

.contact-info dd {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(228, 201, 138, 0.85);
}

.contact-info dd a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info dd a:hover {
  color: var(--gold);
}

.contact-info dd.gold {
  color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(228, 201, 138, 0.7);
  margin-top: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(4, 16, 10, 0.55);
  border: 1px solid rgba(201, 162, 75, 0.3);
  color: var(--gold-soft);
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  border-radius: 2px;
  transition: border-color 0.3s ease;
}

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

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 2rem;
  cursor: pointer;
  align-self: flex-start;
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gold);
  min-height: 1.2rem;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { padding: 1.2rem 5vw; }
  .nav.is-scrolled { padding: 0.9rem 5vw; }
  .nav__links { gap: 1.1rem; }
  .nav a { font-size: 0.7rem; letter-spacing: 0.08em; }
  .hero { padding: 6rem 6vw 3.5rem; }
  .hero__badges { gap: 1.6rem; }
  .hero__icons { gap: 0; row-gap: 1.4rem; }
  .hero__icon { padding: 0 1rem; width: 33.33%; }
  .hero__icon + .hero__icon::before { display: none; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; gap: 2.4rem; }
  .process::before { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .section { padding: 4.5rem 0; }
}
