/* =========================================================
   LIKE JESUS — Hoja de estilos principal
   Tipografías locales (Archivo / Inter) — sin peticiones externas
========================================================= */

@font-face{
  font-family:"Archivo";
  src:url("../fonts/archivo-700.woff2") format("woff2");
  font-weight:700; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"Archivo";
  src:url("../fonts/archivo-800.woff2") format("woff2");
  font-weight:800; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"Archivo";
  src:url("../fonts/archivo-900.woff2") format("woff2");
  font-weight:900; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"Inter";
  src:url("../fonts/inter-400.woff2") format("woff2");
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"Inter";
  src:url("../fonts/inter-500.woff2") format("woff2");
  font-weight:500; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"Inter";
  src:url("../fonts/inter-600.woff2") format("woff2");
  font-weight:600; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"Inter";
  src:url("../fonts/inter-700.woff2") format("woff2");
  font-weight:700; font-style:normal; font-display:swap;
}
@font-face{
  font-family:"Inter";
  src:url("../fonts/inter-800.woff2") format("woff2");
  font-weight:800; font-style:normal; font-display:swap;
}

/* ---------- Tokens ---------- */
:root{
  --ink:#111210;
  --ink-2:#1c1d19;
  --ink-line: rgba(255,255,255,.12);

  --green:#057545;
  --green-dark:#045c37;
  --green-bright:#4ade94;
  --green-soft: rgba(5,117,69,.10);
  --green-btn:#111210;
  --green-btn-dark:#000000;

  --paper:#ffffff;
  --offwhite:#f5f1e9;
  --offwhite-2:#efe8da;
  --line:#e5ddcc;

  --text:#16160f;
  --text-muted:#6f6b60;
  --text-on-dark:#f5f3ec;
  --text-on-dark-muted:#a9a59a;

  --font-display:"Archivo", "Inter", sans-serif;
  --font-body:"Inter", sans-serif;

  --container: 1280px;
  --radius: 20px;
  --radius-sm: 12px;

  --ease: cubic-bezier(.22,.68,0,1);
  --dur-fast: .25s;
  --dur: .5s;
  --dur-slow: .9s;

  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

/* ---------- Botón flotante de WhatsApp ---------- */
.whatsapp-float{
  position:fixed;
  right:20px; bottom:20px;
  z-index:140;
  width:58px; height:58px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 16px 32px -12px rgba(0,0,0,.45);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp-float:hover{ transform:scale(1.08) translateY(-3px); box-shadow: 0 20px 40px -12px rgba(0,0,0,.5); }
.whatsapp-float svg{ width:29px; height:29px; position:relative; z-index:1; }
.whatsapp-float::after{
  content:"";
  position:absolute; inset:0;
  border-radius:50%;
  border:2px solid #25D366;
  animation: waPulse 2.6s ease-out infinite;
  animation-delay: 2.7s;
}
@keyframes waFloatIn{
  to{ opacity:1; transform:scale(1) translateY(0); }
}
@keyframes waPulse{
  0%{ transform:scale(1); opacity:.65; }
  100%{ transform:scale(1.7); opacity:0; }
}
@media (max-width: 720px){
  .whatsapp-float{ right:16px; bottom:16px; width:52px; height:52px; }
  .whatsapp-float svg{ width:26px; height:26px; }
}
@media (prefers-reduced-motion: reduce){
  .whatsapp-float{ opacity:1; transform:none; animation:none; }
  .whatsapp-float::after{ display:none; }
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
button{ font:inherit; cursor:pointer; }
input,textarea,select{ font:inherit; }

:focus-visible{
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:32px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-body);
  font-weight:600;
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--text-muted);
}
.eyebrow.on-dark{ color:var(--text-on-dark-muted); }

/* ---------- Buttons ---------- */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.85rem;
  letter-spacing:0;
  text-transform:none;
  padding:13px 24px;
  border-radius:999px;
  border:1.5px solid transparent;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  white-space:nowrap;
}
.btn svg{ width:15px; height:15px; transition: transform var(--dur-fast) var(--ease); flex:none; }
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }

.btn-solid{
  background:var(--green-btn);
  color:#fff;
  border-color:var(--green-btn);
}
.btn-solid:hover{
  background:var(--green-btn-dark);
  border-color:var(--green-btn-dark);
  box-shadow: 0 10px 28px -8px rgba(0,0,0,.4);
}
.btn-solid:hover svg{ transform: translateX(4px); }

.btn-outline{
  background:transparent;
  color:var(--paper);
  border-color: rgba(255,255,255,.35);
}
.btn-outline:hover{
  background:#fff;
  color:var(--ink);
  border-color:#fff;
}
.btn-outline:hover svg{ transform: translateX(4px); }

.btn-ghost-green{
  background:transparent;
  color:var(--green-btn);
  border-color:var(--green-btn);
}
.btn-ghost-green:hover{
  background:var(--green-btn);
  color:#fff;
  border-color:var(--green-btn-dark);
}
.btn-ghost-green:hover svg{ transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.site-header::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:rgba(8,9,10,.94);
  transition: background var(--dur-fast) var(--ease);
}
.site-header.is-scrolled::before{
  background:rgba(8,9,10,.97);
}
.site-header.is-scrolled{
  border-bottom-color: rgba(255,255,255,.14);
  box-shadow: 0 8px 24px -18px rgba(0,0,0,.6);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:var(--header-h);
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  flex:none;
}
.brand img{
  width:38px; height:38px;
  transition: transform var(--dur) var(--ease);
}
.brand:hover img{ transform: rotate(90deg); }
.brand-word{
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.05rem;
  letter-spacing:.02em;
  color:#fff;
  line-height:1;
}

.main-nav{ flex:1; display:flex; justify-content:center; }
.main-nav ul{ display:flex; align-items:center; gap:36px; }
.main-nav a{
  position:relative;
  font-family:var(--font-body);
  font-weight:500;
  font-size:.92rem;
  letter-spacing:0;
  text-transform:none;
  color:#fff;
  padding-bottom:6px;
  transition: color var(--dur-fast) var(--ease);
}
.main-nav a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:100%; height:2px;
  background:var(--green-bright);
  transform:scaleX(0);
  transform-origin:left;
  transition: transform var(--dur-fast) var(--ease);
}
.main-nav a:hover{ color:var(--green-bright); }
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after{ transform:scaleX(1); }
.main-nav a[aria-current="page"]{ color:var(--green-bright); }

.header-cta{ flex:none; display:flex; align-items:center; gap:14px; }
.header-cta .btn{ padding:13px 22px; font-size:.75rem; }

.header-mobile-cta{ display:none; }

.nav-toggle{
  display:none;
  flex:none;
  width:44px; height:44px;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,.22);
  background:transparent;
  position:relative;
}
.nav-toggle span{
  display:block;
  position:absolute;
  left:12px; right:12px; top:21px;
  height:2px;
  background:#fff;
  transition: background var(--dur-fast) var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after{
  content:"";
  display:block;
  position:absolute;
  left:0; right:0;
  height:2px;
  background:#fff;
  transition: transform var(--dur-fast) var(--ease), top var(--dur-fast) var(--ease);
}
.nav-toggle span::before{ top:-7px; }
.nav-toggle span::after{ top:7px; }
.nav-toggle[aria-expanded="true"] span{ background:transparent; }
.nav-toggle[aria-expanded="true"] span::before{ top:0; transform:rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after{ top:0; transform:rotate(-45deg); }

/* ---------- Mobile nav panel ---------- */
@media (max-width: 940px){
  .main-nav{
    position:fixed;
    top:var(--header-h); right:0; bottom:0; left:0;
    z-index:150;
    background:var(--ink);
    display:block;
    justify-content:unset;
    padding: 20px 8vw 40px;
    transform: translateY(-8px);
    opacity:0;
    pointer-events:none;
    transition: opacity var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
    overflow-y:auto;
  }
  body.nav-open .main-nav{
    opacity:1; transform:translateY(0); pointer-events:auto;
  }
  .main-nav ul{ flex-direction:column; align-items:flex-start; gap:0; }
  .main-nav li{ width:100%; border-bottom:1px solid rgba(255,255,255,.1); }
  .main-nav a{ display:block; padding:18px 4px; font-size:.95rem; }
  .main-nav a::after{ display:none; }
  body.nav-open .main-nav li{
    animation: navItemIn .5s var(--ease) both;
  }
  body.nav-open .main-nav li:nth-child(1){ animation-delay:.05s; }
  body.nav-open .main-nav li:nth-child(2){ animation-delay:.1s; }
  body.nav-open .main-nav li:nth-child(3){ animation-delay:.15s; }
  body.nav-open .main-nav li:nth-child(4){ animation-delay:.2s; }
  body.nav-open .main-nav li:nth-child(5){ animation-delay:.25s; }
  .header-mobile-cta{ margin-top:22px; display:flex; }
  .header-cta .btn.hide-mobile{ display:none; }
  .nav-toggle{ display:block; }
}
@keyframes navItemIn{
  from{ opacity:0; transform:translateY(14px); }
  to{ opacity:1; transform:translateY(0); }
}

/* ---------- Reveal on scroll ----------
   El contenido SIEMPRE está visible por defecto — la clase .reveal ya no
   oculta nada. Sirve solo como marcador para el efecto de aparición
   escalonada en grupos de tarjetas (ver .reveal-group más abajo), que
   nunca esconde el contenido, solo desplaza levemente su entrada. */

/* =========================================================
   HOME — HERO
========================================================= */
.hero{
  position:relative;
  background:var(--ink);
  overflow:hidden;
  min-height:78vh;
  display:flex;
  align-items:center;
}
.hero-media{
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-media picture, .hero-media img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.06);
  animation: heroZoomOut 1.6s var(--ease) forwards;
}
@keyframes heroZoomOut{ to{ transform:scale(1); } }
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(2,3,4,.68) 0%, rgba(2,3,4,.7) 45%, rgba(2,3,4,.9) 100%),
    rgba(2,3,4,.22);
}

.hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  padding:40px 24px 120px;
  text-align:center;
}
.hero-copy{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:24px;
  max-width:800px;
  margin:0 auto;
}
.hero-title{
  font-family:var(--font-display);
  font-weight:800;
  line-height:1.04;
  letter-spacing:-.015em;
  color:#fff;
  font-size: clamp(2.3rem, 5.6vw, 4.6rem);
}
.hero-title em, .page-banner h1 em{
  font-style:normal;
  font-weight:900;
  color:var(--green-bright);
}
.hero-highlight{
  color:var(--text-on-dark-muted);
  font-weight:500;
  font-size:.92rem;
  letter-spacing:.05em;
  text-transform:uppercase;
  line-height:1.7;
  max-width:520px;
}
.hero-actions{
  display:flex; gap:16px; flex-wrap:wrap;
  justify-content:center;
  margin-top:6px;
}
@keyframes fadeUp{
  to{ opacity:1; transform:translateY(0); }
}

/* =========================================================
   HOME — "JESÚS, MI FORMA DE VIVIR" grid
========================================================= */
.section{ padding: 108px 0; }
.section-tight{ padding: 88px 0; }
.gallery-section{ background:var(--offwhite); }
.section-head{
  text-align:center;
  max-width:640px;
  margin: 0 auto 56px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}
.eyebrow-plain{
  color:var(--text-muted);
  font-weight:700;
}
.section-title{
  font-family:var(--font-display);
  font-weight:800;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  letter-spacing:-.015em;
  line-height:1.08;
  color:var(--ink);
}
.section-title em{
  font-style:normal;
  font-weight:900;
  color:var(--green);
}
.section-sub{
  color:var(--text-muted);
  font-size:1rem;
  line-height:1.7;
}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:26px;
}
.gallery-card{
  display:block;
  background:var(--paper);
  border-radius: var(--radius);
  overflow:hidden;
  padding:10px 10px 0;
  box-shadow: 0 1px 2px rgba(15,17,15,.04), 0 22px 40px -26px rgba(15,17,15,.22);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.gallery-card:hover{
  transform: translateY(-7px);
  box-shadow: 0 30px 50px -22px rgba(15,17,15,.26);
}
.gallery-figure{
  position:relative;
  aspect-ratio: 4 / 3;
  overflow:hidden;
  border-radius: calc(var(--radius) - 8px);
  background:var(--ink);
}
.gallery-figure img{
  width:100%; height:100%; object-fit:cover;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.01);
  transition: filter .6s var(--ease), transform .6s var(--ease);
}
.gallery-figure::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(200deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.4));
  opacity:0;
  transition: opacity .5s var(--ease);
}
.gallery-card:hover .gallery-figure img{
  filter: grayscale(0) contrast(1);
  transform: scale(1.08);
}
.gallery-card:hover .gallery-figure::after{ opacity:1; }
.gallery-mark{
  position:absolute; left:14px; bottom:14px;
  width:40px; height:40px;
  border-radius:12px;
  background:var(--ink);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 10px 20px -8px rgba(0,0,0,.5);
  transform: scale(.85);
  transition: transform .35s var(--ease);
}
.gallery-card:hover .gallery-mark{ transform: scale(1); }
.gallery-mark svg{ width:18px; height:18px; }

.gallery-cap{
  padding:18px 10px 22px;
}
.gallery-cap span{
  font-family:var(--font-display);
  font-weight:700;
  font-size:1rem;
  letter-spacing:-.01em;
  text-transform:none;
  color:var(--ink);
  line-height:1.3;
}

/* =========================================================
   HOME — Founders (dark)
========================================================= */
.founders{
  background:var(--ink);
  position:relative;
  overflow:hidden;
}
.founders-grid{
  display:grid;
  grid-template-columns: 1fr 0.86fr;
  align-items:center;
  gap:64px;
}
.founders-copy{ padding: 100px 0; }
.founders-title{
  font-family:var(--font-display);
  font-weight:700;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color:#fff;
  line-height:1.12;
  margin:18px 0 22px;
}
.founders-text{
  color:var(--text-on-dark-muted);
  font-size:1rem;
  line-height:1.75;
  max-width:480px;
  margin-bottom:34px;
}
.founders-media{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  min-height:1px;
}
.founders-media .beam{
  position:absolute;
  top:-8%;
  width:120px;
  height:116%;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.55) 45%, rgba(255,255,255,0) 100%);
  filter: blur(6px);
  transform: rotate(10deg);
  opacity:.35;
}
.founders-media .beam.b1{ left:0; }
.founders-media .beam.b2{ left:56%; width:70px; opacity:.2; }
.founders-photo{
  position:relative;
  z-index:1;
  width:100%;
  max-width:520px;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.7);
}
.founders-photo img{
  width:100%; height:100%; object-fit:cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter .8s var(--ease), transform 1.2s var(--ease);
}
.founders-media:hover .founders-photo img{ filter:grayscale(0); transform:scale(1.03); }
.founders-photo::before{
  content:"";
  position:absolute; inset:0;
  border:1px solid rgba(255,255,255,.14);
  border-radius:inherit;
  pointer-events:none;
}

/* =========================================================
   Footer
========================================================= */
.site-footer{ background:var(--offwhite); padding: 76px 0 28px; }
.footer-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:40px;
}
.footer-col{ display:flex; flex-direction:column; gap:14px; }
.footer-icon{
  width:38px; height:38px;
  border-radius:11px;
  background:var(--ink);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.footer-icon svg{ width:17px; height:17px; }
.footer-col:hover .footer-icon{ background:var(--green); color:#fff; transform:scale(1.08); }
.footer-heading{
  font-family:var(--font-display);
  font-weight:700;
  font-size:.75rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--ink);
}
.footer-col p, .footer-col a{
  color:var(--text-muted);
  font-size:.92rem;
  line-height:1.6;
}
.footer-col a{ transition: color var(--dur-fast) var(--ease); }
.footer-col a:hover{ color:var(--green); }
.footer-social{ display:flex; gap:10px; margin-top:2px; }
.footer-social a{
  width:38px; height:38px;
  border-radius:50%;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color:var(--text);
  transition: all var(--dur-fast) var(--ease);
}
.footer-social a:hover{
  background:var(--green); border-color:var(--green); color:#fff;
  transform: translateY(-3px);
}
.footer-social svg{ width:16px; height:16px; }
.footer-handle{ font-weight:600; color:var(--ink); }

.footer-bottom{
  margin-top:56px;
  padding-top:26px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}
.footer-bottom p{ font-size:.8rem; color:var(--text-muted); }
.footer-bottom-links{ display:flex; gap:20px; }
.footer-bottom-links a{ font-size:.8rem; color:var(--text-muted); }
.footer-bottom-links a:hover{ color:var(--green); }

/* =========================================================
   INNER PAGE — Banner header
========================================================= */
.page-banner{
  position:relative;
  background:var(--ink);
  min-height: 62vh;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}
.page-banner picture, .page-banner img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  filter: grayscale(1) contrast(1.05);
  transform: scale(1.08);
  animation: heroZoomOut 1.8s var(--ease) forwards;
}
.page-banner::after{
  content:"";
  position:absolute; inset:0;
  z-index:1;
  background:
    linear-gradient(180deg, rgba(2,3,4,.72) 0%, rgba(2,3,4,.76) 40%, rgba(2,3,4,.94) 100%),
    rgba(2,3,4,.28);
}
.page-banner-inner{
  position:relative; z-index:2;
  padding-bottom:64px;
  width:100%;
}
.page-banner .eyebrow{ margin-bottom:18px; }
.page-banner h1{
  font-family:var(--font-display);
  font-weight:800;
  font-size: clamp(2.3rem, 5.2vw, 3.8rem);
  color:#fff;
  letter-spacing:-.015em;
  line-height:1.05;
  max-width:720px;
}
.page-banner p{
  margin-top:18px;
  color:var(--text-on-dark-muted);
  max-width:560px;
  font-size:1.02rem;
  line-height:1.7;
}

.breadcrumb{
  position:relative; z-index:2;
  display:flex; align-items:center; gap:8px;
  padding: 20px 0 0;
  font-size:.8rem;
  color:var(--text-on-dark-muted);
}
.breadcrumb a:hover{ color:var(--green-bright); }
.breadcrumb span{ color:var(--green-bright); }

/* =========================================================
   Generic inner-page building blocks
========================================================= */
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:64px;
  align-items:center;
}
.prose p + p{ margin-top:16px; }
.prose p{
  color:var(--text-muted);
  font-size:1.02rem;
  line-height:1.8;
}
.prose h3{
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.2rem;
  color:var(--ink);
  margin-bottom:10px;
}

.rounded-photo{
  border-radius: var(--radius);
  overflow:hidden;
  position:relative;
}
.rounded-photo img{
  width:100%; height:100%; object-fit:cover;
  filter:grayscale(1) contrast(1.05);
  transition: filter .8s var(--ease), transform 1s var(--ease);
}
.rounded-photo:hover img{ filter:grayscale(0); transform:scale(1.04); }

/* ---------- Espacios (Nuestros Espacios) — tarjetas con foto + acordeón ---------- */
.space-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:26px;
}
.space-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  padding:10px 10px 0;
  transition: box-shadow .4s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
}
.space-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 34px 60px -30px rgba(0,0,0,.28);
  border-color: var(--ink);
}
.space-card-media{
  position:relative;
  aspect-ratio: 1/1;
  overflow:hidden;
  border-radius: calc(var(--radius) - 8px);
  background:var(--ink);
}
.space-card-media img{
  width:100%; height:100%; object-fit:cover;
  filter:grayscale(1) contrast(1.05);
  transform: scale(1.01);
  transition: filter .6s var(--ease), transform .6s var(--ease);
}
.space-card:hover .space-card-media img{ filter:grayscale(0); transform:scale(1.08); }
.space-card-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(200deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.4));
  opacity:0;
  transition: opacity .5s var(--ease);
}
.space-card:hover .space-card-media::after{ opacity:1; }
.space-card-num{
  position:absolute; left:12px; bottom:12px;
  background:var(--ink);
  color:#fff;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.8rem;
  letter-spacing:0;
  padding:8px 13px;
  border-radius:10px;
  transition: transform .4s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.space-card:hover .space-card-num{
  background:var(--green);
  color:#fff;
  transform: scale(1.06);
}

.space-card-toggle{
  all:unset;
  box-sizing:border-box;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  width:100%;
  cursor:pointer;
  padding:16px 18px;
}
.space-card-title{
  font-family:var(--font-display);
  font-weight:700;
  font-size:.98rem;
  color:var(--ink);
  letter-spacing:-.01em;
}
.space-card-plus{
  flex:none;
  width:28px; height:28px;
  border-radius:50%;
  border:1.5px solid var(--line);
  color:var(--ink);
  display:flex; align-items:center; justify-content:center;
  transition: transform .4s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.space-card-plus svg{ width:13px; height:13px; }
.space-card[data-open="true"] .space-card-plus{
  background:var(--green); border-color:var(--green); color:#fff;
  transform: rotate(135deg);
}
.space-card-panel{
  display:grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}
.space-card-panel-inner{ overflow:hidden; }
.space-card[data-open="true"] .space-card-panel{ grid-template-rows: 1fr; }
.space-card-panel-inner p{
  padding:0 18px 20px;
  color:var(--text-muted);
  font-size:.9rem;
  line-height:1.65;
}
.space-card-panel-inner p + p{ margin-top:8px; }
.space-card-panel-inner p strong{ color:var(--ink); font-weight:600; }

/* ---------- Generosidad — tarjetas de cuentas ---------- */
.give-legal{
  text-align:center;
  margin-bottom:48px;
}
.give-legal .eyebrow{ justify-content:center; margin-bottom:16px; }
.give-legal h3{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(1.3rem, 2.4vw, 1.7rem);
  color:#fff;
  letter-spacing:-.01em;
}
.give-legal p{
  margin-top:6px;
  font-family:var(--font-display);
  font-weight:700;
  letter-spacing:.06em;
  color:var(--text-on-dark-muted);
  font-size:.92rem;
}

.give-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:26px;
  max-width:820px;
  margin:0 auto 26px;
}
.give-card{
  background:var(--ink-2);
  border:1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding:30px 28px;
  transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.give-card:hover{
  border-color:var(--green-bright);
  transform: translateY(-5px);
  box-shadow: 0 30px 55px -28px rgba(74,222,148,.3);
}
.give-card-icon{
  width:44px; height:44px;
  border-radius:12px;
  background:var(--green-bright);
  color:var(--ink);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.15rem;
  margin-bottom:16px;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.give-card:hover .give-card-icon{ background:var(--green-bright); color:var(--ink); transform:rotate(-6deg) scale(1.05); }
.give-card-label{
  display:block;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--text-on-dark-muted);
  margin-bottom:14px;
}
.give-field{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding:12px 8px 12px 14px;
}
.give-field-value{
  font-family:var(--font-display);
  font-weight:700;
  font-size:.86rem;
  letter-spacing:.01em;
  color:#fff;
  word-break:break-all;
}
.give-copy{
  all:unset;
  box-sizing:border-box;
  flex:none;
  width:32px; height:32px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  color:var(--text-on-dark-muted);
  cursor:pointer;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.give-copy:hover{ background:rgba(255,255,255,.1); color:#fff; }
.give-copy:active{ transform:scale(.9); }
.give-copy svg{ width:15px; height:15px; transition: transform .3s var(--ease); }
.give-copy.is-copied{ color:var(--green-bright); }
.give-copy.is-copied svg{ transform:scale(1.15); }
.give-card-sub{
  margin-top:12px;
  font-size:.86rem;
  color:var(--text-on-dark-muted);
}
.give-card-sub strong{ color:#fff; font-weight:600; }

.give-extra{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:26px;
  max-width:820px;
  margin:0 auto;
}
.give-extra-item{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:22px 24px;
  background:var(--ink-2);
  border:1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  transition: border-color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.give-extra-item:hover{
  border-color:var(--green-bright);
  transform: translateY(-4px);
  box-shadow: 0 24px 46px -28px rgba(74,222,148,.28);
}
.give-extra-item .footer-icon{ background:rgba(74,222,148,.14); color:var(--green-bright); transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease); }
.give-extra-item:hover .footer-icon{ background:var(--green-bright); color:var(--ink); transform:scale(1.08); }
.give-extra-item h4{
  font-family:var(--font-display);
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--text-on-dark-muted);
  margin-bottom:6px;
}
.give-extra-item p, .give-extra-item a{
  font-family:var(--font-display);
  font-weight:700;
  font-size:1rem;
  color:#fff;
}
.give-extra-item a:hover{ color:var(--green-bright); }


/* Timeline (Sobre nosotros) — clic para desplegar, con efecto de luz */
.timeline{ position:relative; margin-top:12px; }
.timeline::before{
  content:""; position:absolute; left:29px; top:10px; bottom:10px;
  width:1.5px;
  background: var(--line);
}
.timeline-item{
  position:relative;
  margin-bottom:4px;
  border-radius: var(--radius);
  overflow:hidden;
  transition: background .4s var(--ease), transform .35s var(--ease), box-shadow .4s var(--ease);
}
.timeline-item::after{
  content:"";
  position:absolute; inset:0;
  border-radius:inherit;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(5,117,69,.16), transparent 72%);
  opacity:0;
  transition: opacity .5s var(--ease);
  pointer-events:none;
  z-index:0;
}
.timeline-item:hover,
.timeline-item.is-touched{
  background:var(--offwhite);
  transform: translateX(6px);
  box-shadow: 0 22px 46px -32px rgba(5,117,69,.4);
}
.timeline-item:hover::after,
.timeline-item.is-touched::after{ opacity:1; }

.timeline-item::before{
  content:"";
  position:absolute; left:22px; top:28px;
  width:15px; height:15px;
  border-radius:50%;
  background:var(--paper);
  border:2.5px solid var(--green);
  z-index:2;
  transition: background .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.timeline-item:hover::before,
.timeline-item.is-touched::before,
.timeline-item[data-open="true"]::before{
  background:var(--green);
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(5,117,69,.16), 0 0 22px 3px rgba(5,117,69,.55);
}

.timeline-toggle{
  all:unset;
  box-sizing:border-box;
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  gap:14px;
  width:100%;
  cursor:pointer;
  padding:20px 20px 20px 62px;
}
.timeline-toggle-text{ flex:1; min-width:0; }
.timeline-item b{
  display:block;
  font-family:var(--font-display);
  font-weight:700;
  color:var(--green);
  font-size:.8rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:6px;
  transition: color .35s var(--ease);
}
.timeline-item:hover b,
.timeline-item.is-touched b{ color:var(--green-dark); }
.timeline-item h4{
  font-family:var(--font-display);
  font-size:1.05rem;
  font-weight:700;
  color:var(--ink);
  line-height:1.4;
}
.timeline-plus{
  flex:none;
  width:30px; height:30px;
  border-radius:50%;
  border:1.5px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color:var(--ink);
  transition: transform .4s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.timeline-plus svg{ width:14px; height:14px; }
.timeline-item[data-open="true"] .timeline-plus{
  background:var(--green); border-color:var(--green); color:#fff;
  transform: rotate(135deg);
}
.timeline-panel{
  position:relative; z-index:1;
  display:grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}
.timeline-panel-inner{ overflow:hidden; }
.timeline-item[data-open="true"] .timeline-panel{ grid-template-rows: 1fr; }
.timeline-item p{
  color:var(--text-muted);
  font-size:.95rem;
  line-height:1.7;
  padding:0 20px 22px 62px;
}

/* Timeline sobre fondo oscuro (por si se reutiliza en una sección .section-dark) */
.section-dark .timeline::before{ background:rgba(255,255,255,.14); }
.section-dark .timeline-item:hover,
.section-dark .timeline-item.is-touched{ background:var(--ink-2); }
.section-dark .timeline-item::before{ background:var(--ink); border-color:var(--green-bright); }
.section-dark .timeline-item:hover::before,
.section-dark .timeline-item.is-touched::before,
.section-dark .timeline-item[data-open="true"]::before{ background:var(--green-bright); box-shadow:0 0 0 6px rgba(74,222,148,.16), 0 0 22px 3px rgba(74,222,148,.5); }
.section-dark .timeline-item h4{ color:#fff; }
.section-dark .timeline-item p{ color:var(--text-on-dark-muted); }
.section-dark .timeline-item b{ color:var(--green-bright); }
.section-dark .timeline-plus{ border-color:rgba(255,255,255,.25); color:#fff; }
.section-dark .timeline-item[data-open="true"] .timeline-plus{ background:var(--green-bright); border-color:var(--green-bright); color:var(--ink); }

/* ---------- Acordeón (Nuestros valores) ---------- */
.accordion{
  display:flex;
  flex-direction:column;
  max-width:820px;
  margin:0 auto;
  border-top:1px solid var(--line);
}
.accordion-item{
  border-bottom:1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: background .4s var(--ease), transform .35s var(--ease);
}
.accordion-item:hover{
  background: var(--offwhite);
  transform: translateX(6px);
}
.accordion-item:hover .accordion-icon{
  background:var(--green);
  color:#fff;
  transform: rotate(-6deg) scale(1.06);
}
.accordion-item:hover .accordion-title{ color:var(--green); }
.accordion-item:hover .accordion-plus{
  border-color:var(--green);
  color:var(--green);
}
.accordion-item[data-open="true"]:hover .accordion-plus{ color:#fff; }
.accordion-toggle{
  all:unset;
  box-sizing:border-box;
  display:flex;
  align-items:center;
  gap:18px;
  width:100%;
  cursor:pointer;
  padding:22px 16px;
}
.accordion-num{
  flex:none;
  width:26px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.82rem;
  color:var(--green);
}
.accordion-icon{
  flex:none;
  width:40px; height:40px;
  border-radius:11px;
  background:var(--ink);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.accordion-icon svg{ width:19px; height:19px; }
.accordion-title{
  flex:1;
  text-align:left;
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.04rem;
  color:var(--ink);
}
.accordion-plus{
  flex:none;
  width:30px; height:30px;
  border-radius:50%;
  border:1.5px solid var(--line);
  color:var(--ink);
  display:flex; align-items:center; justify-content:center;
  transition: transform .4s var(--ease), background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease);
}
.accordion-plus svg{ width:14px; height:14px; }
.accordion-item[data-open="true"] .accordion-icon{ background:var(--green); color:#fff; transform: rotate(-6deg); }
.accordion-item[data-open="true"] .accordion-plus{ background:var(--green); border-color:var(--green); color:#fff; transform: rotate(135deg); }
.accordion-panel{
  display:grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}
.accordion-panel-inner{ overflow:hidden; }
.accordion-item[data-open="true"] .accordion-panel{ grid-template-rows: 1fr; }
.accordion-panel-inner p{
  padding:0 16px 24px 96px;
  color:var(--text-muted);
  font-size:.95rem;
  line-height:1.7;
}

.section-dark .accordion{ border-top-color: rgba(255,255,255,.12); }
.section-dark .accordion-item{ border-bottom-color: rgba(255,255,255,.12); }
.section-dark .accordion-title{ color:#fff; }
.section-dark .accordion-icon{ background:rgba(74,222,148,.14); color:var(--green-bright); }
.section-dark .accordion-item[data-open="true"] .accordion-icon{ background:var(--green-bright); color:var(--ink); }
.section-dark .accordion-plus{ border-color:rgba(255,255,255,.25); color:#fff; }
.section-dark .accordion-item[data-open="true"] .accordion-plus{ background:var(--green-bright); border-color:var(--green-bright); color:var(--ink); }
.section-dark .accordion-num{ color:var(--green-bright); }
.section-dark .accordion-panel-inner p{ color:var(--text-on-dark-muted); }
.section-dark .accordion-item:hover{ background:var(--ink-2); }
.section-dark .accordion-item:hover .accordion-icon{ background:var(--green-bright); color:var(--ink); }
.section-dark .accordion-item:hover .accordion-title{ color:var(--green-bright); }
.section-dark .accordion-item:hover .accordion-plus{ border-color:var(--green-bright); color:var(--green-bright); }
.section-dark .accordion-item[data-open="true"]:hover .accordion-plus{ color:var(--ink); }

/* Value / belief cards */
.value-icon{
  width:48px; height:48px;
  border-radius:12px;
  background:var(--ink);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.value-icon svg{ width:22px; height:22px; fill:none; stroke:currentColor; }

/* Beliefs accordion-style list */
.belief-list{ display:flex; flex-direction:column; }
.belief-item{
  border-bottom:1px solid var(--line);
  padding:32px 0;
  display:grid;
  grid-template-columns: 90px 1fr;
  gap:28px;
  transition: padding-left var(--dur-fast) var(--ease);
}
.belief-item:hover{ padding-left:8px; }
.belief-item:first-child{ padding-top:0; }
.belief-num{
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.6rem;
  color:var(--line);
  transition: color var(--dur-fast) var(--ease);
}
.belief-item:hover .belief-num{ color:var(--green); }
.belief-item h3{
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.18rem;
  color:var(--ink);
  margin-bottom:10px;
}
.belief-item p{ color:var(--text-muted); font-size:.98rem; line-height:1.75; max-width:720px; }

/* ---------- Dark section scope ---------- */
.section-dark{ background:var(--ink); }
.section-dark .section-title{ color:#fff; }
.section-dark .section-sub{ color:var(--text-on-dark-muted); }

.section-dark .mv-card{
  background:var(--ink-2);
  border-color: rgba(255,255,255,.1);
}
.section-dark .mv-card:hover{
  border-color:var(--green-bright);
  box-shadow: 0 30px 60px -28px rgba(74,222,148,.28);
}
.section-dark .mv-card h3{ color:#fff; }
.section-dark .mv-card p{ color:var(--text-on-dark-muted); }
.section-dark .value-icon{ background:rgba(74,222,148,.14); color:var(--green-bright); }

.section-dark .belief-item{ border-color: rgba(255,255,255,.1); }
.section-dark .belief-item h3{ color:#fff; }
.section-dark .belief-item p{ color:var(--text-on-dark-muted); }
.section-dark .belief-num{ color: rgba(255,255,255,.16); }
.section-dark .belief-item:hover .belief-num{ color:var(--green-bright); }

.section-dark .intro-quote p{ color:#fff; }
.section-dark .intro-quote cite{ color:var(--green-bright); }

/* Small inline quote (light bg) used to introduce a personal story */
.intro-quote{
  max-width:640px;
  margin:0 auto;
  text-align:center;
}
.intro-quote p{
  font-family:var(--font-display);
  font-style:normal;
  font-weight:700;
  font-size:clamp(1.15rem, 2.2vw, 1.5rem);
  color:var(--ink);
  line-height:1.4;
}
.intro-quote cite{
  display:block;
  margin-top:14px;
  font-style:normal;
  font-family:var(--font-display);
  font-weight:700;
  font-size:.78rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--green);
}

/* Dark quote band ("Quiénes somos") */
.quote-band-inner{
  max-width:840px;
  margin:0 auto;
  text-align:center;
}
.quote-band-inner .eyebrow{ justify-content:center; margin-bottom:22px; }
.quote-band-inner p{
  font-family:var(--font-display);
  font-weight:700;
  font-size:clamp(1.1rem, 2.2vw, 1.35rem);
  color:var(--text-muted);
  line-height:1.75;
}
.quote-band-inner p strong{ color:var(--ink); font-weight:600; }
.section-dark .quote-band-inner p{ color:var(--text-on-dark-muted); }
.section-dark .quote-band-inner p strong{ color:#fff; }

/* Mission / Vision cards */
.mv-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:26px;
}
.mv-card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:38px 34px;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.mv-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(5,117,69,.3);
  border-color: var(--green);
}
.mv-card h3{
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.18rem;
  color:var(--ink);
  margin:18px 0 10px;
}
.mv-card p{ color:var(--text-muted); font-size:.97rem; line-height:1.75; }

/* Roadmap ("Hacia dónde vamos") */



/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1080px){
  .gallery-grid{ grid-template-columns: repeat(3,1fr); }
  .footer-grid{ grid-template-columns: repeat(2,1fr); row-gap:40px; }
  .space-grid{ grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 940px){
  .container{ padding-inline:24px; }
  .header-cta .btn.hide-mobile{ display:none; }

  .hero{ min-height:92vh; }
  .hero-inner{ padding:88px 0; }

  .two-col, .founders-grid{ grid-template-columns:1fr; gap:32px; }
  .space-grid{ grid-template-columns:1fr; gap:22px; }
  .give-grid, .give-extra{ grid-template-columns:1fr; }
  .founders-copy{ padding: 28px 0 64px; order:2; }
  .founders-media{ order:1; justify-content:center; padding-top:56px; }
  .founders-photo{ max-width:340px; margin-inline:auto; }

  .belief-item{ grid-template-columns: 50px 1fr; gap:16px; }
  .mv-grid{ grid-template-columns:1fr; }
}

@media (max-width: 720px){
  .section{ padding:72px 0; }
  .section-tight{ padding:60px 0; }
  .gallery-grid{ grid-template-columns: 1fr; gap:24px; }
  .gallery-card{ max-width:440px; margin-inline:auto; width:100%; }
  .gallery-figure{ aspect-ratio:4/3; }
  .gallery-mark{ width:44px; height:44px; }
  .gallery-mark svg{ width:20px; height:20px; }
  .gallery-cap{ padding:18px 14px 22px; }
  .gallery-cap span{ font-size:1.1rem; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .page-banner{ min-height:66vh; }

  .space-grid{ grid-template-columns:1fr; gap:28px; }
  .space-card{ max-width:440px; margin-inline:auto; width:100%; }
  .space-card-media{ aspect-ratio:4/3; }
  .space-card-num{ font-size:.86rem; padding:9px 14px; }
  .space-card-toggle{ padding:22px 20px; }
  .space-card-title{ font-size:1.12rem; }
  .space-card-plus{ width:34px; height:34px; }
  .space-card-plus svg{ width:15px; height:15px; }
  .space-card-panel-inner p{ font-size:1rem; padding:0 20px 24px; }
}

/* ---------- Teléfono: todo centrado ---------- */
@media (max-width: 720px){
  .hero-copy{
    align-items:center;
    text-align:center;
    margin-inline:auto;
  }
  .hero-highlight{
    font-size:.76rem;
    letter-spacing:.03em;
    line-height:1.6;
    max-width:300px;
  }
  .hero-actions{ justify-content:center; }

  .two-col{ text-align:center; }
  .two-col .prose{ margin-inline:auto; }
  .two-col .eyebrow{ justify-content:center; }
  .founders-copy{ text-align:center; }
  .founders-copy .eyebrow{ justify-content:center; }
  .founders-text{ margin-inline:auto; }

  .timeline{ max-width:420px; margin-inline:auto; }
  .timeline::before{ display:none; }
  .timeline-item{ padding-left:0; text-align:center; }
  .timeline-item::before{ display:none; }

  .belief-item{ grid-template-columns:1fr; text-align:center; gap:8px; }

  .page-banner-inner{ text-align:center; }
  .page-banner h1, .page-banner p{ margin-inline:auto; }
  .page-banner .eyebrow{ justify-content:center; }
  .breadcrumb{ justify-content:center; }

  .footer-col{ text-align:center; align-items:center; }
  .footer-icon{ margin-inline:auto; }
  .footer-social{ justify-content:center; }
  .footer-bottom{ flex-direction:column; text-align:center; justify-content:center; }

  .gallery-cap{ align-items:center; text-align:center; }

  .mv-card{ text-align:center; }
  .give-extra-item{ flex-direction:column; align-items:center; text-align:center; }
}

@media (max-width: 520px){
  .footer-grid{ grid-template-columns:1fr; }
  .hero-title{ font-size:2.1rem; max-width:100%; }
}
