/* ===========================================================
   Sheila & Raícha Mamad — Harmonização Facial · Lisboa
   Design system: luxo sóbrio escuro (charcoal · marfim · bronze)
   PT-PT
   =========================================================== */

:root {
  /* Paleta */
  --bg: #faf7f3;          /* marfim quente */
  --bg-alt: #f2ebe2;      /* osso */
  --ink: #221c1a;         /* castanho-preto */
  --muted: #7c7167;       /* texto secundário */
  --primary: #9c6650;     /* cobre suave */
  --primary-dark: #7b4d3b;
  --gold: #c8a566;        /* bronze/champanhe */
  --gold-soft: #eadbbc;
  --line: #e8dcd0;
  --white: #ffffff;
  --dark: #171213;        /* estúdio escuro (fotos) */

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow: 0 22px 60px -28px rgba(23, 18, 19, .5);
  --shadow-soft: 0 10px 30px -18px rgba(23, 18, 19, .38);
  --radius: 18px;
  --radius-lg: 26px;
  --max: 1160px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.12; color: var(--ink); overflow-wrap: break-word; }
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }

.serif-accent { font-family: var(--serif); font-style: italic; color: var(--gold); }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: #efe7df; }
.section--dark h2, .section--dark h3 { color: #fff; }

.eyebrow {
  display: inline-block;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}
.section--dark .eyebrow { color: var(--gold); }

.lead { color: var(--muted); font-size: 1.08rem; max-width: 58ch; }
.section--dark .lead { color: #cec2b8; }

.head { max-width: 640px; margin-bottom: 52px; }
.head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600; font-size: .98rem;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.btn--ghost-light { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #221c1a; }
.btn--gold:hover { background: #b58f50; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn svg { width: 19px; height: 19px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(23, 18, 19, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: 0 6px 24px -14px rgba(0,0,0,.65); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-size: 1.22rem; font-weight: 500; color: #fff; }
.brand__tag { font-size: .58rem; text-transform: uppercase; letter-spacing: .3em; color: var(--gold); font-weight: 600; margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: .92rem; font-weight: 500; color: #e8ddd4; position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .3s ease;
}
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: #fff; }
.header__cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .3s; }

/* ---------- Hero (home, escuro com spotlight) ---------- */
.hero {
  position: relative; background: var(--dark); color: #efe7df;
  padding: clamp(70px, 10vw, 120px) 0 clamp(60px, 9vw, 110px); overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(46% 62% at 72% 42%, rgba(236, 226, 214, .14), transparent 70%),
    radial-gradient(30% 40% at 18% 85%, rgba(200, 165, 102, .10), transparent 70%);
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero p { margin-bottom: 32px; color: #cec2b8; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__micro { margin-top: 22px; font-size: .9rem; color: #a3968b; display: flex; align-items: center; gap: 8px; }
.hero__micro .dot { width: 7px; height: 7px; border-radius: 50%; background: #56b15f; box-shadow: 0 0 0 4px rgba(86,177,95,.18); }

.hero__visual {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: radial-gradient(circle at 50% 38%, #d9d2c9 0%, #6e6660 38%, #232021 78%);
  box-shadow: var(--shadow);
  overflow: hidden; display: flex; align-items: flex-end; padding: 30px;
}
.hero__visual::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(to top, rgba(23,18,19,.5), transparent 40%), url("../img/equipa/duo.jpg");
  background-size: cover; background-position: center top;
}
.hero__badge {
  position: relative; z-index: 2; background: rgba(250,247,243,.93); border-radius: 16px;
  padding: 16px 20px; backdrop-filter: blur(6px); box-shadow: var(--shadow-soft); max-width: 270px;
  color: var(--ink);
}
.hero__badge strong { font-family: var(--serif); display: block; font-size: 1.02rem; }
.hero__badge span { font-size: .84rem; color: var(--muted); }

/* ---------- Page hero (páginas interiores) ---------- */
.page-hero {
  position: relative; background: var(--dark); color: #efe7df;
  padding: clamp(54px, 8vw, 96px) 0; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(50% 80% at 80% 30%, rgba(236,226,214,.10), transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.3rem); margin-bottom: 14px; }
.page-hero .lead { color: #cec2b8; }
.breadcrumb { font-size: .82rem; color: #a3968b; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Linha dourada decorativa ---------- */
.rule { width: 64px; height: 1.5px; background: var(--gold); border: 0; margin: 0 0 22px; }
.head--center .rule { margin-left: auto; margin-right: auto; }

/* ---------- Diferenciais ---------- */
.feats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feat {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .3s ease, box-shadow .3s ease;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.feat__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(156,102,80,.12), rgba(200,165,102,.18));
  color: var(--primary); margin-bottom: 18px;
}
.feat__icon svg { width: 26px; height: 26px; }
.feat h3 { font-size: 1.16rem; margin-bottom: 8px; }
.feat p { font-size: .95rem; color: var(--muted); }

/* ---------- Duo (as fundadoras, na home) ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.duo-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow-soft); background: var(--bg-alt);
  display: flex; align-items: flex-end;
}
.duo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.duo-card:hover img { transform: scale(1.04); }
.duo-card__overlay {
  position: relative; z-index: 2; width: 100%; padding: 26px;
  background: linear-gradient(to top, rgba(23,18,19,.82), transparent);
  color: #fff;
}
.duo-card__overlay h3 { color: #fff; margin-bottom: 4px; }
.duo-card__overlay span { font-size: .86rem; color: var(--gold-soft); }
.duo-card__overlay .card__link { color: var(--gold); margin-top: 10px; display: inline-flex; }

/* ---------- Tratamentos / cards ---------- */
.treatments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.card__top { padding: 26px 26px 0; display: flex; align-items: center; justify-content: space-between; }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(200,165,102,.18), rgba(156,102,80,.12)); color: var(--primary);
}
.card__icon svg { width: 25px; height: 25px; }
.card__tag { font-size: .7rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; color: var(--gold); }
.card__body { padding: 18px 26px 0; flex: 1; }
.card__body h3 { margin-bottom: 8px; }
.card__body p { font-size: .94rem; color: var(--muted); margin-bottom: 14px; }
.card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 6px; }
.chip {
  font-size: .76rem; padding: 5px 11px; border-radius: 999px;
  background: var(--bg-alt); color: var(--primary-dark); font-weight: 600;
}
.card__foot {
  margin-top: auto; padding: 20px 26px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.card__price { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }
.card__price small { font-family: var(--sans); font-size: .78rem; color: var(--muted); font-weight: 500; }
.card__link { font-size: .9rem; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.card__link:hover { gap: 10px; }

/* ---------- Perfil (páginas das doutoras) ---------- */
.profile { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.profile__visual {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  background: var(--bg-alt); background-size: cover; background-position: center top;
  position: sticky; top: 100px;
}
.profile h2 { margin-bottom: 18px; }
.profile p { color: var(--muted); margin-bottom: 16px; }
.profile__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.profile__gallery .tile {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-soft);
}
.profile__gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.profile__gallery .tile:hover img { transform: scale(1.05); }
.focus-list { margin-top: 26px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.focus-list li { display: flex; align-items: center; gap: 10px; font-size: .96rem; }
.focus-list svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ---------- Valores / lista com ícone ---------- */
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin-top: 26px; }
.value { display: flex; gap: 12px; align-items: flex-start; }
.value svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.value strong { display: block; font-size: .98rem; }
.value span { font-size: .86rem; color: var(--muted); }

/* ---------- Galeria / Antes & Depois ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery__item {
  position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  aspect-ratio: 4/5; background: var(--bg-alt); box-shadow: var(--shadow-soft);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__label {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  background: rgba(23,18,19,.72); color: #fff; font-size: .78rem; font-weight: 600;
  padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.gallery__item.is-video::after { content: ""; position: absolute; inset: 0; background: rgba(23,18,19,.25); }
.gallery__play { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; pointer-events: none; }
.gallery__play span {
  width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,.92);
  display: grid; place-items: center; box-shadow: var(--shadow-soft);
}
.gallery__play span::before {
  content: ""; border-style: solid; border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--primary); margin-left: 3px;
}
.gallery__cta { text-align: center; margin-top: 40px; }
.ba-note { margin-top: 28px; text-align: center; font-size: .85rem; color: var(--muted); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(15,12,13,.93);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox__media { max-width: min(92vw, 620px); max-height: 88vh; border-radius: 14px; overflow: hidden; }
.lightbox__media img, .lightbox__media video { width: 100%; max-height: 88vh; object-fit: contain; display: block; }
.lightbox__close {
  position: absolute; top: 22px; right: 26px; background: none; border: 0; color: #fff;
  font-size: 2.4rem; cursor: pointer; line-height: 1;
}
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.14);
  border: 0; color: #fff; width: 48px; height: 48px; border-radius: 50%; font-size: 1.6rem; cursor: pointer;
}
.lightbox__nav:hover { background: rgba(255,255,255,.28); }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }

/* ---------- Mentoria ---------- */
.mentoria-hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.video-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  background: #000; aspect-ratio: 9/16; max-width: 360px; margin: 0 auto;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  position: relative;
}
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--serif); font-size: 2rem; color: var(--gold); display: block; margin-bottom: 12px;
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: .94rem; color: var(--muted); }

/* ---------- Procedimentos (lista) ---------- */
.proc-list { display: flex; flex-direction: column; gap: 18px; }
.proc {
  display: grid; grid-template-columns: 1.2fr 2fr auto; gap: 24px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 30px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.proc:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--gold-soft); }
.proc h3 { font-size: 1.25rem; }
.proc .proc__zone { font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold); font-weight: 700; display: block; margin-bottom: 6px; }
.proc p { font-size: .94rem; color: var(--muted); }
.proc__cta { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.proc__price { font-size: .82rem; color: var(--muted); white-space: nowrap; }

/* ---------- Contacto ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
}
.contact-card h3 { margin-bottom: 10px; }
.contact-card p { font-size: .95rem; color: var(--muted); margin-bottom: 16px; }
.contact-card .big { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); margin-bottom: 6px; }
.map-placeholder {
  margin-top: 26px; border-radius: var(--radius-lg); border: 1.5px dashed var(--line);
  background: var(--bg-alt); padding: 60px 30px; text-align: center; color: var(--muted);
}
.map-placeholder strong { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); display: block; margin-bottom: 6px; }

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--serif); font-size: 1.15rem; color: var(--ink);
  padding: 22px 40px 22px 0; position: relative;
}
.faq-q::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.5rem; color: var(--primary); transition: transform .3s ease;
}
.faq-item.open .faq-q::after { content: "–"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 40px 22px 0; color: var(--muted); font-size: .98rem; }

/* ---------- CTA final ---------- */
.cta-final { text-align: center; }
.cta-final h2 { margin-bottom: 18px; max-width: 18ch; margin-left: auto; margin-right: auto; }
.cta-final p { margin: 0 auto 30px; max-width: 52ch; }
.cta-final .btn { margin: 0 6px 12px; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #c5b9b0; padding: 70px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 18px; }
.footer a { color: #c5b9b0; font-size: .95rem; }
.footer a:hover { color: var(--gold); }
.footer li { margin-bottom: 10px; }
.footer__brand .brand__name { color: #fff; font-size: 1.4rem; }
.footer__brand p { font-size: .92rem; margin-top: 12px; max-width: 30ch; color: #a3968b; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 50px; padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .82rem; color: #8d8178;
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: grid; place-items: center; box-shadow: 0 10px 30px -8px rgba(37,211,102,.6);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .hero__grid, .mentoria-hero { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 440px; }
  .feats { grid-template-columns: 1fr 1fr; }
  .treatments { grid-template-columns: 1fr 1fr; }
  .profile { grid-template-columns: 1fr; gap: 36px; }
  .profile__visual { position: static; max-width: 440px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .proc { grid-template-columns: 1fr; gap: 14px; }
  .proc__cta { align-items: flex-start; flex-direction: row; flex-wrap: wrap; align-items: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 640px) {
  .nav, .header__cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: absolute; top: 78px; left: 0; right: 0; background: var(--dark);
    padding: 24px; border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .feats, .treatments, .values, .duo, .focus-list, .footer__grid, .profile__gallery { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; gap: 12px; }
  body { font-size: 16px; }

  /* Espaçamento mobile afinado */
  .section { padding: 52px 0; }
  .hero { padding: 40px 0 48px; }
  .hero__grid { gap: 26px; }
  .head { margin-bottom: 30px; }
  .profile { gap: 26px; }
  h1 { font-size: 2.05rem; line-height: 1.15; }
  h2 { font-size: 1.7rem; }
  .lead { font-size: 1rem; }
  .feat { padding: 24px 22px; }
  .proc { padding: 22px; }
  .btn--lg { padding: .95rem 1.6rem; font-size: 1rem; }
  .footer { padding: 52px 0 28px; }
  .footer__bottom { margin-top: 34px; }
}
