/* ═══════════════════════════════════════════════════════════════
   GALERIE PORTRAITS — about.css
   About / Sobre la Galería page
   Version: 1.0.0
═══════════════════════════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────────────────────────── */
:root {
  --gpa-obsidian:       #0d0d0b;
  --gpa-obsidian-2:     #141412;
  --gpa-obsidian-3:     #1a1a18;
  --gpa-white:          #ffffff;
  --gpa-off-white:      #f9f7f4;
  --gpa-cream:          #f2ede5;
  --gpa-champagne:      #c9a96e;
  --gpa-champagne-pale: #e8d5b0;
  --gpa-muted:          #888880;
  --gpa-border:         #e2ddd6;
  --gpa-display:        'Playfair Display', Georgia, serif;
  --gpa-sans:           'DM Sans', system-ui, sans-serif;
  --gpa-ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ──────────────────────────────────────────────────── */
.gpa-about *,
.gpa-about *::before,
.gpa-about *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.gpa-about {
  font-family: var(--gpa-sans);
  color: var(--gpa-obsidian);
  -webkit-font-smoothing: antialiased;
  background: var(--gpa-white);
}

.gpa-about a { text-decoration: none; }
.gpa-about img { display: block; max-width: 100%; }

/* ── INNER / LAYOUT ─────────────────────────────────────────── */
.gpa-about-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

.gpa-about-section { padding: 96px 0; }
.gpa-about-section-light  { background: var(--gpa-off-white); }
.gpa-about-section-dark   { background: var(--gpa-obsidian); }
.gpa-about-section-cream  { background: var(--gpa-cream); }
.gpa-about-section-white  { background: var(--gpa-white); }

/* ── SHARED: LABEL ──────────────────────────────────────────── */
.gpa-about-label {
  font-family: var(--gpa-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gpa-champagne);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.gpa-about-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.gpa-about-label.light { color: #8a7a60; }

/* ── SHARED: HEADINGS ───────────────────────────────────────── */
.gpa-about-h2 {
  font-family: var(--gpa-display);
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.025em;
  margin-top: 8px;
}
.gpa-about-h2 em { font-style: italic; }
.gpa-about-h2.dark  { color: var(--gpa-obsidian); }
.gpa-about-h2.light { color: var(--gpa-white); }

/* ── SHARED: BODY TEXT ──────────────────────────────────────── */
.gpa-about-body-text {
  font-family: var(--gpa-sans);
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.92;
  color: #4a4844;
  margin-bottom: 24px;
}
.gpa-about-body-text.muted { color: rgba(255,255,255,0.48); }
.gpa-about-body-text:last-child { margin-bottom: 0; }

/* ── SHARED: BUTTONS ────────────────────────────────────────── */
.gpa-about-btn {
  display: inline-block;
  font-family: var(--gpa-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 17px 44px;
  transition: background .28s var(--gpa-ease), color .28s, transform .2s;
}
.gpa-about-btn-gold {
  background: var(--gpa-champagne);
  color: var(--gpa-obsidian) !important;
}
.gpa-about-btn-gold:hover { background: var(--gpa-champagne-pale); transform: translateY(-1px); }

.gpa-about-btn-outline {
  background: transparent;
  color: rgba(255,255,255,.65) !important;
  border: 1px solid rgba(255,255,255,.28);
}
.gpa-about-btn-outline:hover { color: var(--gpa-white) !important; border-color: rgba(255,255,255,.5); }

.gpa-about-btn-dark {
  background: var(--gpa-obsidian);
  color: var(--gpa-white) !important;
}
.gpa-about-btn-dark:hover { background: #2a2a28; transform: translateY(-1px); }

/* ── SHARED: TEXT LINKS ─────────────────────────────────────── */
.gpa-about-text-link {
  font-family: var(--gpa-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gpa-champagne) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
  margin-right: 28px;
}
.gpa-about-text-link:hover { border-color: var(--gpa-champagne); }

/* ── SHARED: IMAGE PLACEHOLDER ─────────────────────────────── */
.gpa-about-img-ph {
  width: 100%;
  height: 100%;
  background: #1c1814;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}
.gpa-about-img-ph span {
  font-family: var(--gpa-sans);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201,169,110,0.35);
  line-height: 1.7;
}
.gpa-about-img-ph-hero { min-height: 100%; }

/* ══════════════════════════════════════════════════════════════
   1. HERO
══════════════════════════════════════════════════════════════ */
.gpa-about-hero {
  background: var(--gpa-obsidian);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 94vh;
  position: relative;
  overflow: hidden;
}

.gpa-about-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 64px 80px 56px;
  position: relative;
  z-index: 2;
}

/* Subtle radial glow */
.gpa-about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 65% at 72% 45%, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.gpa-about-hero-content { max-width: 560px; }

.gpa-about-hero-h1 {
  font-family: var(--gpa-display);
  font-size: clamp(1.5rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--gpa-white);
  margin: 0 0 28px;
}
.gpa-about-hero-h1 em { font-style: italic; color: var(--gpa-champagne-pale); }

.gpa-about-hero-p {
  font-family: var(--gpa-sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.88;
  max-width: 480px;
  margin-bottom: 40px;
}

.gpa-about-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.gpa-about-hero-right {
  position: relative;
  overflow: hidden;
}

.gpa-about-hero-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.gpa-about-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--gpa-ease);
}
.gpa-about-hero-img-wrap:hover img { transform: scale(1.03); }

.gpa-about-hero-caption {
  position: absolute;
  bottom: 1.4rem;
  left: 1.4rem;
  font-family: var(--gpa-sans);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ══════════════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════════════ */
.gpa-about-ticker {
  background: var(--gpa-champagne);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.gpa-about-ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: gpa-about-tick 38s linear infinite;
}
.gpa-about-ticker-item {
  font-family: var(--gpa-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gpa-obsidian);
  flex-shrink: 0;
}
.gpa-about-ticker-dot { color: rgba(13,13,11,0.28); flex-shrink: 0; }
@keyframes gpa-about-tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   2. PHILOSOPHY
══════════════════════════════════════════════════════════════ */
.gpa-about-philosophy-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 96px;
  align-items: start;
}

.gpa-about-philosophy-left { position: sticky; top: 100px; }

.gpa-about-philosophy-pull {
  font-family: var(--gpa-display);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gpa-obsidian);
  line-height: 1.45;
  margin-top: 32px;
  padding-left: 20px;
  border-left: 2px solid var(--gpa-champagne);
}

.gpa-about-philosophy-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--gpa-border);
  flex-wrap: wrap;
}
.gpa-about-stat { display: flex; flex-direction: column; gap: 5px; }
.gpa-about-stat-n {
  font-family: var(--gpa-display);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--gpa-obsidian);
  line-height: 1;
}
.gpa-about-stat-l {
  font-family: var(--gpa-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gpa-muted);
}

/* ══════════════════════════════════════════════════════════════
   3. FOUNDER
══════════════════════════════════════════════════════════════ */
.gpa-about-founder-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: 80vh;
}

.gpa-about-founder-img-col {
  position: relative;
  overflow: hidden;
  background: #1a1410;
}

.gpa-about-founder-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
}
.gpa-about-founder-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--gpa-ease);
}
.gpa-about-founder-img-wrap:hover img { transform: scale(1.03); }

.gpa-about-founder-img-caption {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  font-family: var(--gpa-sans);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.gpa-about-founder-text-col {
  padding: 80px 64px 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gpa-about-founder-role {
  font-family: var(--gpa-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 16px 0 36px;
}

.gpa-about-founder-quote {
  font-family: var(--gpa-display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gpa-champagne-pale);
  line-height: 1.5;
  margin: 32px 0;
  padding-left: 20px;
  border-left: 2px solid var(--gpa-champagne);
}

.gpa-about-founder-links {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════
   4. WHAT WE OFFER
══════════════════════════════════════════════════════════════ */
.gpa-about-offers-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.gpa-about-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #d4cfc7;
}

.gpa-about-offer-card {
  background: var(--gpa-cream);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background .28s var(--gpa-ease);
}
.gpa-about-offer-card:hover { background: #ebe5dc; }

.gpa-about-offer-n {
  font-family: var(--gpa-display);
  font-size: 2rem;
  font-style: italic;
  color: var(--gpa-champagne);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.gpa-about-offer-title {
  font-family: var(--gpa-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--gpa-obsidian);
  margin-bottom: 12px;
  line-height: 1.2;
}

.gpa-about-offer-body {
  font-family: var(--gpa-sans);
  font-size: 13px;
  font-weight: 300;
  color: #5a5650;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 20px;
}

.gpa-about-offer-link {
  font-family: var(--gpa-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gpa-champagne) !important;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  display: inline-block;
  transition: border-color .25s;
  margin-top: auto;
}
.gpa-about-offer-link:hover { border-color: var(--gpa-champagne); }

/* ══════════════════════════════════════════════════════════════
   5. PRODUCTION
══════════════════════════════════════════════════════════════ */
.gpa-about-production-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 96px;
  align-items: start;
}

.gpa-about-production-left { position: sticky; top: 100px; }

.gpa-about-production-right {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.05);
}

.gpa-about-production-item {
  background: rgba(255,255,255,0.025);
  padding: 28px 32px;
  border-left: 2px solid transparent;
  transition: border-color .28s, background .28s;
}
.gpa-about-production-item:hover {
  border-left-color: var(--gpa-champagne);
  background: rgba(201,169,110,0.05);
}

.gpa-about-production-title {
  font-family: var(--gpa-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gpa-white);
  margin-bottom: 8px;
}

.gpa-about-production-body {
  font-family: var(--gpa-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  line-height: 1.72;
}

/* ══════════════════════════════════════════════════════════════
   6. COLLECTOR EXPERIENCE
══════════════════════════════════════════════════════════════ */
.gpa-about-collector-header {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.gpa-about-collector-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 56px;
}

.gpa-about-collector-text {}

.gpa-about-collector-services {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--gpa-border);
}

.gpa-about-service-item {
  background: var(--gpa-off-white);
  padding: 24px 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border-left: 2px solid transparent;
  transition: border-color .28s, background .28s;
}
.gpa-about-service-item:hover {
  border-left-color: var(--gpa-champagne);
  background: #f2ece2;
}

.gpa-about-service-n {
  font-family: var(--gpa-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gpa-champagne);
  line-height: 1.4;
  flex-shrink: 0;
  width: 28px;
}

.gpa-about-service-title {
  font-family: var(--gpa-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gpa-obsidian);
  display: block;
  margin-bottom: 6px;
}

.gpa-about-service-body {
  font-family: var(--gpa-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--gpa-muted);
  line-height: 1.7;
  display: block;
}

.gpa-about-collector-cta { text-align: center; }

/* ══════════════════════════════════════════════════════════════
   7. PRESENCE
══════════════════════════════════════════════════════════════ */
.gpa-about-presence-header {
  max-width: 1280px;
  margin: 0 auto 56px;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 80px;
  align-items: end;
}

.gpa-about-presence-list {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.04);
}

.gpa-about-presence-item {
  background: rgba(255,255,255,0.02);
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 56px 1fr 2fr;
  gap: 32px;
  align-items: baseline;
  border-left: 2px solid transparent;
  transition: border-color .28s, background .28s;
}
.gpa-about-presence-item:hover {
  border-left-color: var(--gpa-champagne);
  background: rgba(201,169,110,0.04);
}

.gpa-about-presence-n {
  font-family: var(--gpa-display);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(201,169,110,0.35);
}

.gpa-about-presence-place {
  font-family: var(--gpa-display);
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gpa-white);
}

.gpa-about-presence-detail {
  font-family: var(--gpa-sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   8. MANIFESTO
══════════════════════════════════════════════════════════════ */
.gpa-about-manifesto {
  background: var(--gpa-obsidian-2);
  padding: 112px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gpa-about-manifesto-deco {
  position: absolute;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--gpa-display);
  font-size: 28rem;
  color: rgba(201,169,110,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.gpa-about-manifesto-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gpa-about-manifesto-quote {
  font-family: var(--gpa-display);
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--gpa-white);
  line-height: 1.45;
  margin-bottom: 28px;
}

.gpa-about-manifesto-attr {
  font-family: var(--gpa-sans);
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gpa-champagne);
  font-style: normal;
}

/* ══════════════════════════════════════════════════════════════
   9. FINAL CTA
══════════════════════════════════════════════════════════════ */
.gpa-about-final-cta {
  background: var(--gpa-champagne);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gpa-about-final-cta-left {
  padding: 80px 64px 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gpa-about-final-h2 {
  font-family: var(--gpa-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--gpa-obsidian);
  margin: 12px 0 20px;
}
.gpa-about-final-h2 em { font-style: italic; }

.gpa-about-final-p {
  font-family: var(--gpa-sans);
  font-size: 0.94rem;
  font-weight: 300;
  color: rgba(13,13,11,0.6);
  line-height: 1.85;
  max-width: 400px;
}

.gpa-about-final-cta-right {
  background: var(--gpa-obsidian);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
}

.gpa-about-final-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: rgba(255,255,255,0.03);
  border-left: 2px solid transparent;
  transition: border-color .28s, background .28s;
  gap: 16px;
}
.gpa-about-final-btn:hover {
  border-left-color: var(--gpa-champagne);
  background: rgba(201,169,110,0.06);
}

.gpa-about-final-btn-label {
  font-family: var(--gpa-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gpa-white);
}

.gpa-about-final-btn-arrow {
  font-size: 1.1rem;
  color: var(--gpa-champagne);
  flex-shrink: 0;
  transition: transform .28s;
}
.gpa-about-final-btn:hover .gpa-about-final-btn-arrow { transform: translateX(4px); }

.gpa-about-final-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px 28px 0;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.gpa-about-final-contact a {
  font-family: var(--gpa-sans);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4) !important;
  letter-spacing: 0.5px;
  transition: color .25s;
}
.gpa-about-final-contact a:hover { color: var(--gpa-champagne) !important; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .gpa-about-offers-grid  { grid-template-columns: repeat(2, 1fr); }
  .gpa-about-presence-item { grid-template-columns: 48px 1fr; }
  .gpa-about-presence-detail { display: none; }
}

@media (max-width: 960px) {
  .gpa-about-inner             { padding: 0 24px; }
  .gpa-about-section           { padding: 64px 0; }

  /* Hero */
  .gpa-about-hero              { grid-template-columns: 1fr; min-height: auto; }
  .gpa-about-hero-left         { padding: 56px 24px 48px; }
  .gpa-about-hero-right        { height: 65vw; }
  .gpa-about-hero-btns         { flex-direction: column; align-items: flex-start; }

  /* Philosophy */
  .gpa-about-philosophy-grid   { grid-template-columns: 1fr; gap: 40px; }
  .gpa-about-philosophy-left   { position: static; }

  /* Founder */
  .gpa-about-founder-grid      { grid-template-columns: 1fr; }
  .gpa-about-founder-img-col   { height: 70vw; }
  .gpa-about-founder-img-wrap  { min-height: 100%; }
  .gpa-about-founder-text-col  { padding: 48px 24px; }

  /* Offers */
  .gpa-about-offers-header     { grid-template-columns: 1fr; gap: 24px; }
  .gpa-about-offers-grid       { grid-template-columns: 1fr; }

  /* Production */
  .gpa-about-production-grid   { grid-template-columns: 1fr; gap: 40px; }
  .gpa-about-production-left   { position: static; }

  /* Collector */
  .gpa-about-collector-header  { grid-template-columns: 1fr; gap: 24px; }
  .gpa-about-collector-grid    { grid-template-columns: 1fr; gap: 40px; }

  /* Presence */
  .gpa-about-presence-header   { grid-template-columns: 1fr; gap: 24px; padding: 0 24px; margin-bottom: 32px; }
  .gpa-about-presence-list     { padding: 0 24px; }
  .gpa-about-presence-item     { grid-template-columns: 1fr; gap: 8px; }
  .gpa-about-presence-n        { display: none; }

  /* Manifesto */
  .gpa-about-manifesto         { padding: 72px 24px; }

  /* Final CTA */
  .gpa-about-final-cta         { grid-template-columns: 1fr; }
  .gpa-about-final-cta-left    { padding: 56px 24px; }
  .gpa-about-final-cta-right   { padding: 48px 24px; }
}

@media (max-width: 640px) {
  .gpa-about-hero-h1           { font-size: 2.5rem; }
  .gpa-about-h2                { font-size: 2rem; }
  .gpa-about-philosophy-stats  { flex-direction: column; gap: 24px; }
  .gpa-about-offers-grid       { grid-template-columns: 1fr; }
  .gpa-about-presence-detail   { display: none; }
}@media (max-width: 960px) {
  .gpa-about-hero-right {
    height: auto !important;
  }

  .gpa-about-hero-img-wrap {
    height: auto !important;
  }

  .gpa-about-hero-img-wrap img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center top !important;
  }
}
@media (max-width: 960px) {
  .gpa-about-founder-img-col {
    height: auto !important;
  }

  .gpa-about-founder-img-wrap {
    height: auto !important;
    min-height: 0 !important;
  }

  .gpa-about-founder-img-wrap img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center top !important;
  }
}

