:root {
  --cream: #F6F2EA;
  --cream-deep: #EFE9DD;
  --charcoal: #2B2724;
  --charcoal-soft: #4A443E;
  --accent: #56808F;
  --accent-soft: #A3C2CF;
  --sand: #D8CDBB;
  --stone: #B9AC97;
  --white: #FDFCF9;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'DM Sans', -apple-system, Helvetica, Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--charcoal-soft);
}
.label--light { color: rgba(253,252,249,0.85); }

/* ---------- Fotos ---------- */
.photo { position: relative; overflow: hidden; background: var(--sand); }
.photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- Header ---------- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  color: var(--white);
}
header.scrolled, header.solid {
  background: rgba(246,242,234,0.96);
  backdrop-filter: blur(8px);
  color: var(--charcoal);
  padding: 14px 48px;
  box-shadow: 0 1px 0 rgba(43,39,36,0.07);
}
.logo {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.logo span { font-style: italic; text-transform: none; letter-spacing: 0.02em; }
nav.main-nav { display: flex; gap: 36px; align-items: center; }
nav.main-nav > a, .has-drop > a {
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400;
  position: relative; padding-bottom: 3px;
}
nav.main-nav > a::after, .has-drop > a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: currentColor; transition: width 0.3s ease;
}
nav.main-nav > a:hover::after, .has-drop > a:hover::after { width: 100%; }
.btn {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 400;
  padding: 13px 30px;
  border: 1px solid currentColor;
  cursor: pointer;
  background: transparent;
  font-family: var(--sans);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.btn--solid { background: var(--charcoal); border-color: var(--charcoal); color: var(--white); }
.btn--solid:hover { background: var(--accent); border-color: var(--accent); }

/* ---------- Dropdown Servicios ---------- */
.has-drop { position: relative; }
.has-drop > a .caret { font-size: 8px; vertical-align: middle; margin-left: 6px; opacity: 0.7; }
.drop {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  min-width: 230px; padding: 18px 0;
  background: var(--white); color: var(--charcoal);
  box-shadow: 0 14px 40px rgba(43,39,36,0.14);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}
.has-drop::before {
  content: ''; position: absolute; left: -20px; right: -20px; top: 100%; height: 16px;
}
.has-drop:hover .drop, .has-drop:focus-within .drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 12px);
}
.drop a {
  display: block; padding: 11px 28px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  white-space: nowrap; transition: background 0.2s ease, color 0.2s ease;
}
.drop a:hover { background: var(--cream-deep); color: var(--accent); }
.drop .drop-num { font-family: var(--serif); font-style: italic; color: var(--accent); margin-right: 10px; text-transform: none; letter-spacing: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; height: 100vh; min-height: 640px; }
.hero .photo { position: absolute; inset: 0; }
.hero .photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(43,39,36,0.32), rgba(43,39,36,0.46));
}
.hero-content {
  position: relative; z-index: 3; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--white); padding: 0 24px;
}
.hero-content .label--light { margin-bottom: 28px; }
.hero-content h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.15; max-width: 17ch;
}
.hero-content h1 em { font-style: italic; }
.hero-content p.sub {
  margin-top: 26px; max-width: 52ch; font-size: 15px; font-weight: 300;
  color: rgba(253,252,249,0.9); letter-spacing: 0.02em;
}
.hero-content .btn { margin-top: 40px; color: var(--white); }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(253,252,249,0.8); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
}

/* ---------- Hero sin foto (colores de la paleta) ---------- */
.hero--plain {
  height: 100vh; min-height: 640px;
  background:
    linear-gradient(rgba(43,39,36,0.30), rgba(43,39,36,0.42)),
    radial-gradient(120% 90% at 25% 15%, rgba(253,252,249,0.25), transparent 55%),
    linear-gradient(155deg, #8E8271 0%, #6E6355 55%, #55493D 100%);
}
.hero--plain .hero-content { color: var(--white); }
.hero--plain .hero-label { color: rgba(253,252,249,0.85); margin-bottom: 28px; }
.hero--plain .hero-content p.sub { color: rgba(253,252,249,0.9); }
.hero--plain .hero-content .btn { color: var(--white); }
.hero--plain .hero-scroll { color: rgba(253,252,249,0.8); }

/* ---------- Announcement ---------- */
.announce {
  background: var(--charcoal); color: var(--cream);
  text-align: center; padding: 16px 24px;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
}
.announce a { border-bottom: 1px solid var(--accent-soft); padding-bottom: 2px; color: var(--accent-soft); margin-left: 12px; }

/* ---------- Section shells ---------- */
section { padding: 110px 48px; }
.narrow { max-width: 820px; margin: 0 auto; text-align: center; }
.wide { max-width: 1280px; margin: 0 auto; }
h2.display {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 3.6vw, 46px); line-height: 1.2;
}
h2.display em { font-style: italic; }
.narrow .label { display: block; margin-bottom: 26px; }
.narrow p.body {
  margin-top: 28px; font-size: 16px; color: var(--charcoal-soft); max-width: 60ch;
  margin-left: auto; margin-right: auto;
}
.rule {
  width: 56px; height: 1px; background: var(--accent); border: 0;
  margin: 34px auto 0;
}

/* ---------- Quote band ---------- */
.quote-band { background: var(--cream-deep); }
.quote-band blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(24px, 3vw, 38px); line-height: 1.35; max-width: 26ch; margin: 0 auto;
}
.quote-band figcaption { margin-top: 30px; }

/* ---------- Logos clientes ---------- */
.logos-band { background: var(--white); padding: 72px 48px; }
.logos-band .label { display: block; text-align: center; margin-bottom: 40px; }
.logos {
  max-width: 1080px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 48px 64px;
  align-items: center; justify-content: center;
}
.logos img {
  height: 46px; width: auto; object-fit: contain;
  opacity: 0.65; filter: grayscale(1);
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.logos img:hover { opacity: 1; filter: grayscale(0); }

/* ---------- Portfolio ---------- */
.portfolio-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 56px; gap: 24px;
}
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.project { cursor: pointer; }
.project .frame { overflow: hidden; }
.project .photo { aspect-ratio: 4/5; }
.project .photo img { transition: transform 0.8s cubic-bezier(.2,.6,.2,1); }
.project .photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(43,39,36,0) 55%, rgba(43,39,36,0.55) 100%);
  z-index: 1;
}
.project:hover .photo img { transform: scale(1.04); }
.project .pcap { position: absolute; left: 26px; right: 26px; bottom: 22px; z-index: 2; }
.project .pcat {
  display: block; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(253,252,249,0.8); margin-bottom: 8px;
}
.project .pname {
  font-family: var(--serif); font-weight: 400; font-size: 22px; letter-spacing: 0.02em;
  color: var(--white); line-height: 1.25;
}
.portfolio-cta { text-align: center; margin-top: 72px; }

/* ---------- Services resumen (bloques) ---------- */
.services { background: var(--white); }
.svc-rows { max-width: 1180px; margin: 88px auto 0; display: flex; flex-direction: column; gap: 110px; }
.svc { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; }
.svc:nth-child(even) .svc-media { order: 2; }
.svc-media .photo { aspect-ratio: 4/3.2; }
.svc .num { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--accent); }
.svc h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(26px, 3vw, 38px); margin-top: 14px; line-height: 1.2; }
.svc h3 em { font-style: italic; }
.svc p { margin-top: 20px; font-size: 15.5px; color: var(--charcoal-soft); max-width: 48ch; }
.svc .svc-note { margin-top: 14px; font-size: 13px; color: var(--stone); }
.svc .btn { margin-top: 32px; color: var(--charcoal); }

/* ---------- Galería proyectos virtuales ---------- */
.vp-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.vp-grid .photo.vp { aspect-ratio: 4/3; }

/* ---------- Diferenciadores ---------- */
.diff-strip {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center;
}
.diff h4 { font-family: var(--serif); font-weight: 400; font-size: 18px; }
.diff p { margin-top: 10px; font-size: 13.5px; color: var(--charcoal-soft); }
.diff .label { display: block; margin-bottom: 14px; color: var(--accent); }

/* ---------- Historia ---------- */
.historia { background: var(--cream-deep); }
.historia-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start;
}
.historia-intro h2 {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: clamp(30px, 3.4vw, 44px); line-height: 1.2;
}
.historia-intro p { margin-top: 30px; font-size: 15.5px; color: var(--charcoal-soft); }
.founders { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.founder .photo, .founder .ph { aspect-ratio: 4/4.6; }
.founder .photo img { object-position: center 12%; }
.founder h3 { font-family: var(--serif); font-weight: 400; font-size: 22px; margin-top: 24px; }
.founder .role { margin-top: 6px; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); }
.founder p { margin-top: 16px; font-size: 14px; color: var(--charcoal-soft); }

/* Placeholder elegante (retratos pendientes) */
.ph {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(253,252,249,0.35), transparent 55%),
    linear-gradient(155deg, var(--sand) 0%, var(--stone) 52%, #A0937E 100%);
}
.ph .ph-tag {
  position: relative; z-index: 2;
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(43,39,36,0.55);
  border: 1px solid rgba(43,39,36,0.25);
  padding: 8px 16px;
  background: rgba(253,252,249,0.4);
}

/* ---------- Split método ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; max-width: 1280px; margin: 0 auto; gap: 72px; align-items: center; }
.split .photo { aspect-ratio: 4/4.6; }
.split-copy .label { display: block; margin-bottom: 24px; }
.split-copy p { margin-top: 24px; font-size: 15.5px; color: var(--charcoal-soft); max-width: 50ch; }
.split-copy .btn { margin-top: 36px; color: var(--charcoal); }

/* ---------- CTA final ---------- */
.cta-final { background: var(--cream-deep); text-align: center; }
.cta-final .formats { margin-top: 30px; display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; }
.cta-final .fmt { font-size: 13px; color: var(--charcoal-soft); }
.cta-final .fmt strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 19px; color: var(--charcoal); margin-bottom: 4px; }
.cta-final .btn { margin-top: 44px; }

/* ---------- Páginas de servicio ---------- */
.sp-hero { position: relative; height: 64vh; min-height: 460px; }
.sp-hero .photo { position: absolute; inset: 0; }
.sp-hero .photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(43,39,36,0.34), rgba(43,39,36,0.48));
}
.sp-hero-content {
  position: relative; z-index: 3; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: var(--white); padding: 80px 24px 0;
}
.sp-hero-content h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(32px, 4.4vw, 54px); line-height: 1.15; max-width: 18ch;
}
.sp-hero-content h1 em { font-style: italic; }
.sp-hero-content p { margin-top: 20px; max-width: 50ch; font-size: 15px; color: rgba(253,252,249,0.9); }

.steps {
  max-width: 1180px; margin: 72px auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px 40px;
}
.steps.three { grid-template-columns: repeat(3, 1fr); max-width: 940px; }
.steps.five { grid-template-columns: repeat(5, 1fr); gap: 40px 28px; }
.step .snum { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--accent); }
.step h4 {
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 400;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--sand);
}
.step p { margin-top: 12px; font-size: 14px; color: var(--charcoal-soft); }

.inc-grid {
  max-width: 1180px; margin: 64px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 56px; text-align: left;
}
.inc h4 { font-family: var(--serif); font-weight: 400; font-size: 19px; }
.inc p { margin-top: 10px; font-size: 14px; color: var(--charcoal-soft); }
.inc::before { content: ''; display: block; width: 34px; height: 1px; background: var(--accent); margin-bottom: 18px; }

.cross { background: var(--cream-deep); text-align: center; }
.cross h3 { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(24px, 2.8vw, 34px); }
.cross p { margin-top: 16px; font-size: 15px; color: var(--charcoal-soft); max-width: 52ch; margin-left: auto; margin-right: auto; }
.cross .btn { margin-top: 30px; color: var(--charcoal); }

.form-sec { background: var(--white); }
.form-wrap { max-width: 760px; margin: 0 auto; }
.form-wrap .narrow { margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 40px; margin-top: 48px; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--charcoal-soft); margin-bottom: 10px; }
.field input, .field select, .field textarea {
  background: transparent; border: 0; border-bottom: 1px solid var(--sand);
  padding: 10px 2px; font-family: var(--sans); font-size: 15px; color: var(--charcoal); outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--accent); }
.field textarea { resize: vertical; min-height: 90px; }
.form-send { text-align: center; margin-top: 52px; }

.back-home { text-align: center; padding: 0 24px 40px; background: var(--white); }
.back-home a { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--charcoal-soft); border-bottom: 1px solid var(--sand); padding-bottom: 3px; }

/* ---------- WhatsApp flotante ---------- */
.wsp {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--charcoal); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(43,39,36,0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}
.wsp:hover { background: var(--accent); transform: translateY(-2px); }
.wsp svg { width: 24px; height: 24px; fill: currentColor; }

/* ---------- Footer ---------- */
footer { background: var(--charcoal); color: rgba(246,242,234,0.8); padding: 80px 48px 36px; }
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 48px;
}
footer .logo { color: var(--cream); font-size: 18px; }
footer .tag { margin-top: 16px; font-size: 13px; max-width: 30ch; color: rgba(246,242,234,0.6); }
footer h5 { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 400; color: var(--accent-soft); margin-bottom: 20px; }
footer ul { list-style: none; }
footer li { margin-bottom: 10px; font-size: 13.5px; }
footer li a:hover { color: var(--cream); }
.news input {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(246,242,234,0.35);
  padding: 10px 2px; color: var(--cream); font-family: var(--sans); font-size: 13.5px; outline: none;
}
.news .btn { margin-top: 18px; color: var(--cream); }
.footer-bottom {
  max-width: 1280px; margin: 64px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(246,242,234,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 11.5px; color: rgba(246,242,234,0.45);
}


/* ---------- Página de proyecto ---------- */
.pr-hero { position: relative; height: 78vh; min-height: 520px; }
.pr-hero .photo { position: absolute; inset: 0; }
.pr-hero .photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(43,39,36,0.20), rgba(43,39,36,0.50));
}
.pr-hero-content {
  position: relative; z-index: 3; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  text-align: center; color: var(--white); padding: 0 24px 72px;
}
.pr-hero-content .label--light { margin-bottom: 18px; }
.pr-hero-content h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(34px, 5vw, 60px); line-height: 1.1;
}
.pr-hero-content h1 em { font-style: italic; }

.pr-intro {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: start;
}
.pr-intro-copy .label { display: block; margin-bottom: 24px; }
.pr-intro-copy p { margin-top: 24px; font-size: 16px; color: var(--charcoal-soft); max-width: 58ch; }
.pr-facts { border-top: 1px solid var(--sand); padding-top: 26px; }
.pr-facts > div { margin-bottom: 24px; }
.pr-facts dt { font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.pr-facts dd { font-size: 15px; color: var(--charcoal); }

.pr-gallery { max-width: 1280px; margin: 0 auto; padding: 0 48px 110px; }
.pr-full .photo { aspect-ratio: 16/10; }
.pr-wide .photo { aspect-ratio: 16/9; }
.pr-cap { margin-top: 16px; font-size: 13px; color: var(--stone); text-align: center; }
.pr-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pr-duo .photo { aspect-ratio: 4/3.4; }
.pr-note .label { display: block; margin-bottom: 20px; }
.pr-note p { font-size: 15.5px; color: var(--charcoal-soft); max-width: 46ch; }

.pr-split {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: center;
}
.pr-split--rev .pr-split-media { order: -1; }
.pr-split-copy .label { display: block; margin-bottom: 24px; }
.pr-split-copy p { margin-top: 22px; font-size: 15.5px; color: var(--charcoal-soft); max-width: 52ch; }
.pr-split-copy p em { font-style: italic; }
.pr-split-media .photo { aspect-ratio: 4/4.6; }

/* ---------- Gracias ---------- */
.thanks { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 140px 24px 80px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  header, header.scrolled, header.solid { padding-left: 22px; padding-right: 22px; }
  nav.main-nav { display: none; }
  section { padding: 72px 22px; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 20px; }
  .project .pcap { left: 20px; right: 20px; bottom: 18px; }
  .project .pname { font-size: 20px; }
  .svc-rows { gap: 72px; margin-top: 56px; }
  .svc { grid-template-columns: 1fr; gap: 32px; }
  .svc:nth-child(even) .svc-media { order: 0; }
  .historia-grid { grid-template-columns: 1fr; gap: 48px; }
  .founders { gap: 28px; }
  .diff-strip { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps, .steps.three, .steps.five { grid-template-columns: 1fr 1fr; }
  .inc-grid { grid-template-columns: 1fr; gap: 36px; }
  .vp-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .pr-intro { grid-template-columns: 1fr; gap: 40px; }
  .pr-gallery { padding: 0 22px 72px; }
  .pr-full .photo, .pr-wide .photo { aspect-ratio: 4/3; }
  .pr-duo { grid-template-columns: 1fr; gap: 32px; }
  .pr-split { grid-template-columns: 1fr; gap: 36px; }
  .pr-split--rev .pr-split-media { order: 0; }
  .pr-split-media .photo { aspect-ratio: 4/4; }
  .logos { gap: 32px 40px; }
  .logos img { height: 36px; }
}
