/* ============================================================
   FELIPE TEC — Segurança Eletrônica
   V2 · Vermelho impactante: preto + vermelho, alto contraste

   >>> PARA TROCAR AS CORES DO SITE, edite apenas as variáveis
   >>> abaixo (:root). Todo o site usa essas cores.
   ============================================================ */

:root {
  --red: #d92629;        /* Vermelho principal (botões, faixas, destaques) */
  --red-light: #ff4b52;  /* Vermelho claro (hovers, textos em destaque) */
  --red-dark: #a8181c;   /* Vermelho escuro (gradientes) */
  --black: #0c0c0f;      /* Fundo principal do site */
  --dark: #141419;       /* Fundo das seções alternadas (Sobre, Contato) */
  --panel: #1b1b22;      /* Fundo dos cards e formulário */
  --line: rgba(255, 255, 255, .09); /* Bordas e divisórias */
  --white: #ffffff;      /* Títulos e textos principais */
  --gray: #a7abb7;       /* Textos secundários */
  --font-title: 'Archivo', Arial, sans-serif;
  --font-body: 'Inter', Arial, sans-serif;
  --maxw: 1140px;
  --t: .25s ease;
  --shadow-red: 0 10px 30px rgba(217, 38, 41, .35);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  color: var(--gray);
  background: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: min(var(--maxw), calc(100% - 2.5rem)); margin-inline: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--white);
  line-height: 1.12;
  letter-spacing: .01em;
}

.kicker {
  font-family: var(--font-title);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .22em;
  color: var(--red-light);
  margin-bottom: 1rem;
}

.text-red { color: var(--red-light); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .06em;
  padding: .78rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
}

.btn--red { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.btn--red:hover { background: var(--red-light); transform: translateY(-3px); box-shadow: 0 16px 38px rgba(217, 38, 41, .5); }

.btn--ghost { border-color: rgba(255, 255, 255, .4); color: var(--white); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, .08); transform: translateY(-3px); }

.btn--black { background: var(--black); color: var(--white); }
.btn--black:hover { background: #000; transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0, 0, 0, .45); }

.btn--xl { padding: 1rem 2rem; font-size: .95rem; }
.btn--full { width: 100%; }

/* ============================================================
   BARRA SUPERIOR + CABEÇALHO
   ============================================================ */
.topbar {
  background: var(--red);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem 0;
}
.topbar__inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar a:hover { text-decoration: underline; }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 12, 15, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t);
}
.header.scrolled { box-shadow: 0 8px 28px rgba(0, 0, 0, .55); }

.header__inner { display: flex; align-items: center; gap: 1.5rem; padding: .65rem 0; }

/* Marca — logo original sem caixa */
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand__logo { width: 50px; height: auto; transition: transform var(--t); }
.brand:hover .brand__logo { transform: scale(1.06) rotate(-3deg); }
.brand__name { line-height: 1.1; }
.brand__name strong {
  display: block;
  font-family: var(--font-title);
  font-size: 1.18rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: .04em;
}
.brand__name strong em { font-style: normal; color: var(--red-light); }
.brand__name small {
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .24em;
  color: var(--gray);
}

.nav { display: flex; gap: 1.4rem; }
.nav__link {
  position: relative;
  font-size: .92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  padding: .35rem 0;
  transition: color var(--t);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t);
}
.nav__link:hover, .nav__link.active { color: var(--white); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); transform-origin: left; }

.header__cta { white-space: nowrap; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  width: 25px; height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0 6rem;
}

/* >>> TROCAR IMAGEM DE FUNDO DO HERO (topo do site):
   substitua a URL dentro de url('...') abaixo pela sua foto.
   Ex.: url('fotos/fachada.jpg')
   Dica: use foto horizontal grande (mínimo 1600px de largura).
   "center 30%" controla o enquadramento (horizontal vertical). */
.hero__bg {
  position: absolute; inset: 0;
  background: url('https://images.pexels.com/photos/11384993/pexels-photo-11384993.jpeg?auto=compress%2Cformat&cs=tinysrgb&w=1600') center 30% / cover no-repeat;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 12, 15, .96) 30%, rgba(12, 12, 15, .72) 60%, rgba(168, 24, 28, .45)),
    linear-gradient(to top, var(--black) 0%, transparent 30%);
}

.hero__inner { position: relative; z-index: 2; max-width: 780px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-title);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, .35);
  padding: .45rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.6rem;
}

.rec-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--red-light);
  animation: recBlink 1.1s steps(1) infinite;
}
@keyframes recBlink { 50% { opacity: .15; } }

.hero h1 {
  font-size: clamp(2.2rem, 5.6vw, 4rem);
  font-weight: 900;
  letter-spacing: .01em;
  margin-bottom: 1.4rem;
}

.hero h1 .stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.hero h1 .mark {
  color: var(--white);
  background: var(--red);
  padding: 0 .18em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero__text { font-size: 1.1rem; max-width: 56ch; margin-bottom: 2.2rem; color: #cfd2da; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 1.6rem; }

.hero__note { font-size: .85rem; color: var(--gray); }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.hero__scroll span {
  width: 4px; height: 9px;
  border-radius: 4px;
  background: var(--red-light);
  animation: scrollHint 1.6s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============================================================
   NÚMEROS (faixa vermelha)
   ============================================================ */
.numbers {
  background: linear-gradient(100deg, var(--red-dark), var(--red) 55%, var(--red-dark));
  padding: 3rem 0;
  clip-path: polygon(0 0, 100% 2.2rem, 100% 100%, 0 calc(100% - 2.2rem));
  margin-top: -2.2rem;
  position: relative;
  z-index: 3;
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.4rem 0;
}

.numbers__item { text-align: center; }
.numbers__value {
  display: block;
  font-family: var(--font-title);
  font-size: 2.7rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.numbers__label {
  display: block;
  margin-top: .35rem;
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ============================================================
   SEÇÕES
   ============================================================ */
.section { padding: 5.5rem 0; }
.section--dark { background: var(--dark); }

.section__head { margin-bottom: 3.2rem; }
.section__head h2, .split__content h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 900;
}

/* ---------- Serviços ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.9rem 1.5rem;
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.card:hover { transform: translateY(-8px); border-color: rgba(217, 38, 41, .5); box-shadow: 0 18px 40px rgba(0, 0, 0, .45); }
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 56px; height: 56px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: var(--red-light);
  border: 2px solid rgba(217, 38, 41, .5);
  margin-bottom: 1.2rem;
  transition: background var(--t), color var(--t), transform var(--t);
}
.card__icon svg { width: 26px; height: 26px; }
.card:hover .card__icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(-6deg) scale(1.08);
}

.card h3 { font-size: 1.02rem; font-weight: 800; margin-bottom: .55rem; }
.card p { font-size: .88rem; }

/* ============================================================
   FAIXA ANIMADA
   ============================================================ */
.marquee {
  background: var(--red);
  overflow: hidden;
  padding: .85rem 0;
  transform: rotate(-1.2deg) scale(1.02);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee__track span {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: .95rem;
  letter-spacing: .12em;
  color: var(--white);
  white-space: nowrap;
}
.marquee__track i { font-style: normal; color: rgba(255, 255, 255, .7); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SOBRE
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.split__media { position: relative; }
.split__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
  filter: saturate(.85) contrast(1.05);
}
.split__frame {
  position: absolute;
  inset: -16px auto auto -16px;
  width: 100%; height: 100%;
  border: 2px solid var(--red);
  border-radius: 10px;
}

.split__content h2 { margin-bottom: 1.2rem; }
.split__content p { margin-bottom: 1rem; }
.split__content p strong { color: var(--white); }

.checklist { margin: 1.5rem 0 2.2rem; display: grid; gap: .7rem; }
.checklist li {
  position: relative;
  padding-left: 1.8rem;
  font-weight: 500;
  color: #d6d9e0;
  font-size: .97rem;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--red-light);
  font-weight: 800;
}

/* Missão / Visão / Valores */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-top: 4.5rem;
}
.values__item {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 10px;
  padding: 1.8rem 1.6rem;
  transition: transform var(--t), border-color var(--t);
}
.values__item:hover { transform: translateY(-6px); border-color: rgba(217, 38, 41, .45); }
.values__num {
  position: absolute;
  top: 1rem; right: 1.2rem;
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, .07);
}
.values__item h3 { font-size: .95rem; font-weight: 800; letter-spacing: .14em; color: var(--red-light); margin-bottom: .6rem; }
.values__item p { font-size: .9rem; }

/* ============================================================
   INSTALAÇÕES
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}

.gallery__item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.8);
  transition: transform .45s ease, filter .45s ease;
}
.gallery__item:hover img { transform: scale(1.06); filter: saturate(1.05); }

.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1.3rem 1.2rem;
  background: linear-gradient(to top, rgba(12, 12, 15, .95), transparent);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .1em;
  color: var(--white);
}
.gallery__item figcaption small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .8rem;
  letter-spacing: 0;
  color: var(--gray);
  margin-top: .15rem;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(217, 38, 41, .18);
  opacity: 1;
  transition: opacity var(--t);
  pointer-events: none;
}
.gallery__item:hover::after { opacity: 0; }

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  background: linear-gradient(110deg, var(--red-dark), var(--red) 60%, var(--red-light));
  padding: 5rem 0;
  overflow: hidden;
  text-align: center;
  clip-path: polygon(0 2.2rem, 100% 0, 100% 100%, 0 100%);
}

.cta__shine {
  position: absolute;
  top: 0; left: -60%;
  width: 35%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .25), transparent);
  transform: skewX(-20deg);
  animation: shine 5.5s ease-in-out infinite;
}
@keyframes shine {
  0% { left: -60%; }
  60%, 100% { left: 140%; }
}

.cta__inner { position: relative; }
.cta h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); font-weight: 900; margin-bottom: .8rem; }
.cta p { color: rgba(255, 255, 255, .85); margin-bottom: 2rem; }

/* ============================================================
   CONTATO
   ============================================================ */
.contact {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.contact__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--line);
}
a.contact__row:hover .contact__value { color: var(--red-light); }
.contact__label {
  font-family: var(--font-title);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--gray);
  padding-top: .2rem;
}
.contact__value { font-weight: 600; color: var(--white); transition: color var(--t); text-align: right; }
.contact__hint { margin-top: 1.4rem; font-size: .88rem; }

/* Formulário */
.form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 10px;
  padding: 2rem;
}

.form__group { margin-bottom: 1.2rem; }
.form__group label {
  display: block;
  font-family: var(--font-title);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: .45rem;
}
.form__group label span { font-weight: 400; color: var(--gray); letter-spacing: 0; }

.form__group input,
.form__group select,
.form__group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--white);
  background: var(--black);
  border: 1.5px solid var(--line);
  border-radius: 6px;
  padding: .75rem .9rem;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  resize: vertical;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: #5d6270; }
.form__group select:invalid { color: #5d6270; }
.form__group select option { color: var(--white); background: var(--panel); }

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(217, 38, 41, .18);
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer { background: #08080a; padding-top: 3.8rem; }

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

.footer__brand img { width: 76px; height: auto; margin-bottom: 1rem; }
.footer__brand p { font-size: .9rem; max-width: 260px; }

.footer__col { display: grid; gap: .5rem; align-content: start; }
.footer__col h4 {
  color: var(--white);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: .5rem;
}
.footer__col a, .footer__col span { font-size: .9rem; transition: color var(--t); }
.footer__col a:hover { color: var(--red-light); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 1.3rem 0;
  font-size: .8rem;
  text-align: center;
}

/* ============================================================
   FLUTUANTES
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 999;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #22c15e;
  color: var(--white);
  box-shadow: 0 8px 22px rgba(34, 193, 94, .4);
  transition: transform var(--t);
  animation: waPulse 2.4s ease-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes waPulse {
  0%   { box-shadow: 0 8px 22px rgba(34, 193, 94, .4), 0 0 0 0 rgba(34, 193, 94, .45); }
  70%  { box-shadow: 0 8px 22px rgba(34, 193, 94, .4), 0 0 0 18px rgba(34, 193, 94, 0); }
  100% { box-shadow: 0 8px 22px rgba(34, 193, 94, .4), 0 0 0 0 rgba(34, 193, 94, 0); }
}

.back-to-top {
  position: fixed;
  right: 24px; bottom: 90px;
  z-index: 999;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  cursor: pointer;
  display: grid; place-items: center;
  background: var(--panel);
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t), transform var(--t), visibility var(--t), background var(--t);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--red); }

/* ============================================================
   ANIMAÇÕES DE ENTRADA
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s cubic-bezier(.22, .61, .36, 1), transform .65s cubic-bezier(.22, .61, .36, 1);
}
.reveal.visible { opacity: 1; transform: none; }

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1020px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split__media { max-width: 480px; }
  .values { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item img { aspect-ratio: 16 / 10; }
  .contact { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .topbar__inner { justify-content: center; text-align: center; }
  .hamburger { display: flex; }
  .header__cta { display: none; }

  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav.open { max-height: 330px; }
  .nav__link { padding: .95rem 1.25rem; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }

  .hero { min-height: auto; padding: 4rem 0 6rem; }
  .section { padding: 4rem 0; }
  .cta { clip-path: polygon(0 1.2rem, 100% 0, 100% 100%, 0 100%); }
  .numbers { clip-path: polygon(0 0, 100% 1.2rem, 100% 100%, 0 calc(100% - 1.2rem)); margin-top: -1.2rem; }
}

@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
  .numbers__grid { grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; }
  .numbers__value { font-size: 2.1rem; }
  .form { padding: 1.4rem 1.1rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .btn--xl { width: 100%; }
  .contact__row { flex-direction: column; gap: .1rem; }
  .contact__value { text-align: left; }
  .split__frame { display: none; }
}
