/* ============================================================
   SPACE GLASS — Landing Page
   Preto + dourado champagne + off-white. Editorial premium.
   ============================================================ */

:root {
  --black: #0E0E0D;
  --black-2: #141412;
  --panel: #1a1917;
  --panel-2: #201e1a;
  --line: #302e28;
  --line-soft: #26241f;
  --gold: #E0B880;
  --gold-bright: #EFD6AC;
  --gold-deep: #A98B5E;
  --gold-ghost: rgba(224, 184, 128, .12);
  --text: #ECE8DF;
  --text-soft: #A7A197;
  --text-dim: #6E6960;
  --wa: #25D366;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --maxw: 1640px;
  --ease: cubic-bezier(.16, .84, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 122px;
  /* native bar hidden — replaced by the custom gold trail indicator */
  scrollbar-width: none;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* custom scroll progress — thin trail + gold dot, grows bottom→top */
.scroll-progress {
  position: fixed;
  right: 16px;
  top: 120px;
  bottom: 120px;
  width: 2px;
  z-index: 80;
  background: rgba(255, 255, 255, .08);
  border-radius: 2px;
  pointer-events: none;
}

.sp-fill {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  border-radius: 2px;
}

.sp-dot {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-bright);
  transform: translate(-50%, 50%);
  box-shadow: 0 0 10px 1px rgba(224, 184, 128, .7);
}

@media (max-width: 760px) {
  .scroll-progress {
    display: none;
  }
}

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

::selection {
  background: var(--gold);
  color: #161512;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(24px, 4.6vw, 96px);
}

/* content sections read at a narrower measure; hero + header stay full-width */
.section > .wrap,
.site-footer .wrap {
  max-width: 1360px;
}

/* ---------- shared type ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-bottom: 22px;
  max-width: 100%;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold-deep);
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(40px, 6.2vw, 76px);
  letter-spacing: .01em;
}

h2 {
  font-size: clamp(30px, 4.4vw, 50px);
}

h3 {
  font-size: 22px;
}

.section-lead {
  color: var(--text-soft);
  font-size: 18px;
  max-width: 52ch;
  margin-top: 18px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
  padding: 15px 30px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .35s var(--ease);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #171410;
}

.btn-gold:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -12px rgba(224, 184, 128, .6);
}

.btn-line {
  border-color: var(--line);
  color: var(--text);
}

.btn-line:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.btn-ghost {
  border-color: var(--gold-deep);
  color: var(--gold-bright);
  padding: 11px 22px;
  font-size: 13px;
}

.btn-ghost:hover {
  background: var(--gold-ghost);
}

.btn-block {
  width: 100%;
  padding: 17px;
}

.ico-wa {
  width: 19px;
  height: 19px;
}

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: .4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(14, 14, 13, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 112px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--gold);
}

.logo-tower {
  height: 50px;
  width: auto;
  display: block;
  flex: none;
}

.logo-word {
  height: 40px;
  width: auto;
  display: block;
  flex: none;
}

.lt-serv {
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-soft);
  line-height: 1.7;
}

/* services line sits beside the official logo, divided by a hairline */
.logo-serv {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

.nav {
  display: flex;
  gap: 42px;
  margin-left: auto;
}

.nav a {
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: .16em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: .3s;
}

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

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

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

.header-cta {
  flex: none;
  padding: 14px 30px;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

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

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: .3s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 70px;
  overflow: hidden;
  background: var(--black);
}

/* right-side photo (swap assets/HeroSection.png for the client's real photo) */
.hero-photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 22%;
  z-index: 0;
  background: #0c0b0a url("assets/HeroSection.png") center 32%/cover no-repeat;
  /* the photo dissolves its own left edge into the black — no hard cut */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .35) 26%, #000 50%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .35) 26%, #000 50%);
}

/* gentle darkening for text contrast + bottom fade (kept soft to avoid banding) */
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--black) 26%, rgba(14, 14, 13, .5) 42%, rgba(14, 14, 13, .12) 60%, transparent 74%),
    linear-gradient(180deg, transparent 56%, rgba(14, 14, 13, .5) 100%);
}

/* brand tower (Art-Déco spire) as a tall decoration over the photo */
.hero-tower {
  position: absolute;
  right: 4%;
  top: 11%;
  height: 76%;
  width: min(420px, 30vw);
  z-index: 2;
  pointer-events: none;
  color: var(--gold-bright);
  opacity: .62;
  -webkit-mask-image: linear-gradient(180deg, transparent 1%, #000 12%, #000 92%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 1%, #000 12%, #000 92%, transparent 100%);
}

.hero-tower svg {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, .9)) 
  drop-shadow(0 0 9px rgba(224, 184, 128, .22));
}

.hero-grid {
  position: relative;
  z-index: 3;
  width: 100%;
  min-width: 0;
  flex: 1;
}

.hero-copy {
  max-width: 840px;
  text-align: left;
}

.hero .eyebrow {
  color: var(--gold);
  margin-bottom: 26px;
}

.hero .eyebrow::before {
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.06;
  margin: 0;
  text-shadow: 0 2px 26px rgba(0, 0, 0, .45);
}

.hero h1 .hl {
  color: var(--gold);
}

.hero-sub {
  color: var(--text-soft);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 42ch;
  margin: 30px 0 0;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 40px 0 0;
}

.hero-cta .btn {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  padding: 17px 32px;
}

.hero-cta .arr {
  font-size: 15px;
  line-height: 0;
}

/* numbered steps row */
.hero-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin: 66px 0 0;
  max-width: 730px;
}

.hero-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding-left: 22px;
  position: relative;
}

.hero-steps li+li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: var(--line);
}

.hero-steps li:first-child {
  padding-left: 0;
}

.st-n {
  font-family: var(--serif);
  font-size: 29px;
  color: var(--gold-deep);
  line-height: 1;
}

.st-b {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.st-t {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text);
}

.st-d {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-soft);
}

/* SCROLL label + animated gold line that fills bottom→top */
.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 104px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--text-soft);
  transition: .3s;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .6);
}

.scroll-word {
  writing-mode: vertical-rl;
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.scroll-track {
  position: relative;
  width: 2px;
  height: 70px;
  background: rgba(255, 255, 255, .18);
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(0, 0, 0, .5);
}

.scroll-fill {
  position: absolute;
  inset: 0;
  transform-origin: bottom;
  transform: scaleY(0);
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  animation: scrollFill 2.4s cubic-bezier(.4, 0, .2, 1) infinite;
}

@keyframes scrollFill {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  62% {
    transform: scaleY(1);
    opacity: 1;
  }

  86% {
    transform: scaleY(1);
    opacity: 0;
  }

  100% {
    transform: scaleY(0);
    opacity: 0;
  }
}

.hero-scroll:hover {
  color: var(--gold);
}

/* ============ SECTIONS ============ */
.section {
  padding: clamp(80px, 11vw, 140px) 0;
  position: relative;
}

.section-alt {
  background: var(--black-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.section-head {
  margin-bottom: 60px;
  max-width: 60ch;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.center .eyebrow {
  justify-content: center;
}

/* ---- serviços ---- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 34px 28px 32px;
  transition: .4s var(--ease);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: .45s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-deep);
  background: var(--panel-2);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-ico {
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--gold);
}

.card-ico svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linejoin: round;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--text-soft);
  font-size: 15px;
}

/* ---- portfólio ---- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 16px;
}

.tile {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(224, 184, 128, .10), transparent 55%),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, .025) 0 2px, transparent 2px 26px),
    linear-gradient(160deg, #211f1b, #141210);
  display: flex;
  align-items: flex-end;
}

.tile-lg {
  grid-column: span 2;
}

/* real photo layer inside a tile */
.tile-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s var(--ease);
}

.tile.has-photo figcaption {
  z-index: 2;
  background: linear-gradient(0deg, rgba(8, 8, 7, .94), rgba(8, 8, 7, .2) 58%, transparent);
}

.tile.has-photo:hover .tile-img {
  transform: scale(1.05);
}

.tile::after {
  content: attr(data-cat);
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 13px;
  background: rgba(14, 14, 13, .5);
  backdrop-filter: blur(4px);
}

.tile figcaption {
  padding: 20px 22px;
  font-family: var(--serif);
  font-size: 21px;
  color: var(--text);
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(0deg, rgba(10, 10, 9, .85), transparent);
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--gold);
  opacity: 0;
  transition: .4s var(--ease);
  mix-blend-mode: overlay;
}

.tile:hover::before {
  opacity: .14;
}

.tile:hover {
  border-color: var(--gold-deep);
}

/* ---- diferenciais ---- */
.dif-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: start;
}

.dif-intro .btn {
  margin-top: 32px;
}

.dif-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.dif-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line-soft);
}

.dif-list li:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.dif-n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--gold-deep);
  line-height: 1;
}

.dif-list h3 {
  margin-bottom: 6px;
}

.dif-list p {
  color: var(--text-soft);
  font-size: 15.5px;
}

/* ---- depoimentos ---- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quotes blockquote {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 28px;
}

.quotes blockquote::before {
  content: "\201C";
  font-family: var(--serif);
  font-size: 60px;
  color: var(--gold-deep);
  line-height: .4;
  display: block;
  margin-bottom: 10px;
}

.quotes p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--text);
}

.quotes footer {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.quotes-note {
  text-align: center;
  margin-top: 26px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ---- contato ---- */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contato-links {
  display: flex;
  flex-direction: column;
  margin-top: 38px;
}

.contato-line {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  transition: .3s;
}

.contato-line:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.contato-line:hover {
  padding-left: 8px;
}

.contato-line .ci {
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.contato-line .cv {
  font-size: 19px;
  font-family: var(--serif);
  color: var(--text);
}

.contato-line:hover .cv {
  color: var(--gold-bright);
}

.contato-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.field input,
.field select,
.field textarea {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  padding: 13px 15px;
  transition: .3s;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-dim);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-ghost);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23A98B5E' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 38px;
  cursor: pointer;
}

.form-status {
  font-size: 14px;
  margin-top: 2px;
  min-height: 1.2em;
}

.form-status.ok {
  color: var(--wa);
}

.form-status.err {
  color: #e0928a;
}

/* honeypot — visually hidden, off-screen, non-focusable */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--line-soft);
  padding: 70px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-soft);
}

.footer-logo-img {
  height: 128px;
  width: auto;
  display: block;
  margin-left: -6px;
}

.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--text-soft);
  margin-top: 16px;
  font-size: 18px;
}

.footer-serv {
  margin-top: 10px;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: var(--text-soft);
  align-content: start;
}

.footer-contact a {
  transition: .3s;
  width: fit-content;
}

.footer-contact a:hover {
  color: var(--gold-bright);
}

.footer-contact span {
  color: var(--text-dim);
  font-size: 13px;
}

.footer-base {
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--text-dim);
}

/* ============ FLOAT WA ============ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, .6);
  transition: .35s var(--ease);
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
}

/* ============ REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: .8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============ RESPONSIVE ============ */
@media(max-width:960px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .dif-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contato-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  /* photo becomes a full backdrop; heavier veil keeps copy legible */
  .hero-photo {
    left: 0;
    background-position: center;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-veil {
    background:
      linear-gradient(90deg, var(--black) 20%, rgba(14, 14, 13, .78) 52%, rgba(14, 14, 13, .5) 100%),
      linear-gradient(0deg, var(--black) 6%, rgba(14, 14, 13, .4) 26%, transparent 52%);
  }

  .hero-tower {
    display: none;
  }
}

@media(max-width:760px) {

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 112px;
    left: 0;
    right: 0;
    background: rgba(14, 14, 13, .97);
    backdrop-filter: blur(14px);
    padding: 24px 32px 30px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    margin-left: 0;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero .eyebrow {
    font-size: 10.5px;
    letter-spacing: .16em;
  }

  .hero h1 {
    font-size: clamp(29px, 7.6vw, 40px);
  }

  .hero-steps {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 340px;
  }

  .hero-steps li {
    padding-left: 0;
  }

  .hero-steps li+li::before {
    display: none;
  }

  .hero-scroll {
    display: none;
  }
}

@media(max-width:520px) {
  .wrap {
    padding: 0 22px;
  }

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

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .tile-lg {
    grid-column: span 1;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}