/* Lic. Inés Amalia Valdez — v2 compact flyer */

:root {
  --bg: #F9F6F1;
  --text: #1A1A1A;
  --text-muted: #4A524E;
  --primary: #1A3C34;
  --primary-light: #2A5A4E;
  --accent: #C5A880;
  --accent-soft: rgba(197, 168, 128, 0.35);
  --hero-bg: #E8E2D8;
  --card-bg: #F5F2EC;
  --card-bg-alt: #FFFCF8;
  --card-bg-warm: #F0EBE3;
  --card-inner: #FFFCF8;
  --card-border: rgba(197, 168, 128, 0.42);
  --title-green: rgba(26, 60, 52, 0.07);
  --title-gold: rgba(197, 168, 128, 0.15);
  --title-cream: rgba(237, 232, 222, 0.75);
  --wa-green: #25D366;
  --wa-green-dark: #1EBE5A;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', system-ui, sans-serif;
  --page: min(420px, calc(100% - 1.5rem));
  --wa-bar-h: 4.75rem;
  --radius: 0.75rem;
  --space-xs: 0.35rem;
  --space-sm: 0.65rem;
  --space-md: 1rem;
  --space-lg: 1.35rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(var(--wa-bar-h) + env(safe-area-inset-bottom, 0px) + 0.5rem);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  fill: currentColor;
  flex-shrink: 0;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUpBar {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(1.25rem);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].is-visible .flyer-list li {
  animation: fadeUp 0.5s var(--ease-out) both;
}

[data-reveal].is-visible .flyer-list li:nth-child(1) { animation-delay: 0.05s; }
[data-reveal].is-visible .flyer-list li:nth-child(2) { animation-delay: 0.1s; }
[data-reveal].is-visible .flyer-list li:nth-child(3) { animation-delay: 0.15s; }
[data-reveal].is-visible .flyer-list li:nth-child(4) { animation-delay: 0.2s; }
[data-reveal].is-visible .flyer-list li:nth-child(5) { animation-delay: 0.25s; }
[data-reveal].is-visible .flyer-list li:nth-child(6) { animation-delay: 0.3s; }
[data-reveal].is-visible .flyer-list li:nth-child(7) { animation-delay: 0.35s; }
[data-reveal].is-visible .flyer-list li:nth-child(8) { animation-delay: 0.4s; }
[data-reveal].is-visible .flyer-list li:nth-child(9) { animation-delay: 0.45s; }
[data-reveal].is-visible .flyer-list li:nth-child(10) { animation-delay: 0.5s; }

/* Page */
.flyer {
  width: var(--page);
  max-width: 100%;
  margin: 0 auto;
  padding: 0.45rem 0 var(--space-md);
}

.flyer-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

/* Hero banner */
.flyer-hero-banner {
  position: relative;
  margin-bottom: var(--space-sm);
  overflow: hidden;
  background: var(--hero-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: none;
}

.flyer-hero-bg {
  display: none;
}

.flyer-hero-inner {
  position: relative;
  z-index: 1;
  padding: 0.65rem 0.75rem 0.75rem;
}

.flyer-hero-copy {
  text-align: center;
}

.flyer-hero-kicker {
  display: none;
}

.flyer-hero-trust {
  display: none;
  list-style: none;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.flyer-hero-trust li {
  padding: 0.45rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: 0.35rem;
}

.flyer-hero-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
  margin: var(--space-sm) 0 0;
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) - 0.1rem);
  animation: fadeUp 0.7s var(--ease-out) 0.18s both;
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.flyer-hero-profile:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 168, 128, 0.65);
  box-shadow: none;
}

.flyer-portrait-frame {
  display: contents;
}

.flyer-photo-hero {
  display: block;
}

.flyer-headline {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 5.8vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-sm);
  padding: 0.75rem 0.85rem;
  width: 100%;
  box-sizing: border-box;
  background: var(--title-green);
  border: 1px solid rgba(26, 60, 52, 0.08);
  border-radius: calc(var(--radius) - 0.05rem);
  animation: fadeUp 0.7s var(--ease-out) 0.05s both;
}

.flyer-headline::after {
  display: none;
}

.flyer-subheadline {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 4.5vw, 1.25rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
  margin: 0 0 var(--space-sm);
  animation: fadeUp 0.7s var(--ease-out) 0.1s both;
}

.flyer-photo {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 12%;
  border: 3px solid var(--accent);
  box-shadow: 0 4px 14px rgba(26, 60, 52, 0.15);
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-out);
}

.flyer-identity:hover .flyer-photo,
.flyer-hero-profile:hover .flyer-photo {
  transform: scale(1.04);
}

.flyer-name {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.flyer-role {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.12rem;
}

.flyer-ig {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid var(--accent);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.flyer-ig:hover {
  color: var(--primary-light);
  border-color: var(--primary);
}

.flyer-scope {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  margin: 0;
  padding: 0.45rem 0.6rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.45;
  text-align: center;
  background: var(--card-inner);
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) - 0.15rem);
  animation: fadeUp 0.7s var(--ease-out) 0.18s both;
}

.flyer-globe {
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0.1rem;
  fill: var(--accent);
  flex-shrink: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.5s both;
}

/* Content cards */
.flyer-card {
  --card-pad-x: var(--space-md);
  --card-pad-top: var(--space-md);
  padding: var(--card-pad-top) var(--card-pad-x) var(--space-lg);
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: none;
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.flyer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(197, 168, 128, 0.65);
  box-shadow: none;
}

.flyer-stack .flyer-card:nth-child(1) {
  background: var(--card-bg-alt);
}

.flyer-stack .flyer-card:nth-child(2) {
  background: var(--card-bg);
}

.flyer-stack .flyer-card:nth-child(3) {
  background: var(--card-bg-warm);
}

.flyer-stack .flyer-card:nth-child(4) {
  background: var(--card-bg-alt);
}

.flyer-card > :last-child {
  margin-bottom: 0;
}

.flyer-lead {
  font-family: var(--font-serif);
  font-size: clamp(0.98rem, 4vw, 1.08rem);
  font-weight: 500;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.45rem;
  padding: 0 0.15rem;
  letter-spacing: 0.01em;
}

.flyer-lead:last-of-type {
  margin-bottom: 0;
}

.flyer-card:has(.flyer-lead) .flyer-body {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(197, 168, 128, 0.32);
  max-width: none;
  width: 100%;
}

.flyer-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.02rem, 4.2vw, 1.15rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.35;
  margin: calc(-1 * var(--card-pad-top)) calc(-1 * var(--card-pad-x)) var(--space-md);
  padding: 0.65rem var(--card-pad-x);
  width: calc(100% + 2 * var(--card-pad-x));
  box-sizing: border-box;
  letter-spacing: -0.015em;
  background: var(--title-cream);
  border: none;
  border-bottom: 1px solid rgba(197, 168, 128, 0.22);
  border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
}

.flyer-stack .flyer-card:nth-child(2) .flyer-heading {
  background: var(--title-gold);
}

.flyer-stack .flyer-card:nth-child(3) .flyer-heading {
  background: var(--title-green);
  border-color: rgba(26, 60, 52, 0.1);
}

.flyer-stack .flyer-card:nth-child(4) .flyer-heading {
  background: var(--title-cream);
}

.flyer-heading::after {
  display: none;
}

.flyer-body {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-sm);
  max-width: 34em;
  margin-left: auto;
  margin-right: auto;
}

.flyer-body:last-child {
  margin-bottom: 0;
}

.flyer-card-list {
  padding-bottom: var(--space-md);
}

.flyer-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm) var(--space-md);
  width: 100%;
  text-align: left;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.48;
}

.flyer-list li {
  position: relative;
  padding: 0.2rem 0 0.2rem 0.85rem;
  min-height: 1.65rem;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: color 0.2s ease;
}

.flyer-list li:hover {
  color: var(--primary);
}

.flyer-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
}

.flyer-footer {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  text-align: center;
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.flyer-footer-name {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

.flyer-footer-meta {
  margin-top: 0.15rem;
}

.flyer-footer-links {
  display: none;
  gap: 1.25rem;
}

.flyer-footer-links a {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 1px solid var(--accent);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.flyer-footer-links a:hover {
  color: var(--primary-light);
  border-color: var(--primary);
}

/* Desktop top bar */
.site-topbar {
  display: none;
}

.flyer-hero-cta {
  display: none;
}

/* Barra fija WhatsApp */
.flyer-wa-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding:
    0.5rem max(0.75rem, env(safe-area-inset-right))
    max(0.6rem, env(safe-area-inset-bottom))
    max(0.75rem, env(safe-area-inset-left));
  background: rgba(249, 246, 241, 0.96);
  pointer-events: none;
  animation: slideUpBar 0.65s var(--ease-out) 0.5s both;
}

.flyer-wa-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: var(--page);
  margin: 0 auto;
  padding: 0.65rem 1rem 0.65rem 0.65rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  box-shadow: none;
  transition:
    transform 0.3s var(--ease-out),
    background 0.3s ease,
    color 0.3s ease;
  pointer-events: auto;
}

.flyer-wa-btn:hover,
.flyer-wa-btn:focus-visible {
  transform: translateY(-2px);
  background: var(--card-inner);
  color: var(--primary);
  box-shadow: none;
}

.flyer-wa-btn:hover .flyer-wa-badge,
.flyer-wa-btn:focus-visible .flyer-wa-badge {
  background: var(--primary);
}

.flyer-wa-btn:hover .flyer-wa-badge svg,
.flyer-wa-btn:focus-visible .flyer-wa-badge svg {
  fill: #fff;
}

.flyer-wa-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.45rem;
  background: var(--wa-green);
  box-shadow: none;
}

.flyer-wa-badge svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: #fff;
}

.flyer-wa-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  text-align: left;
  min-width: 0;
  flex: 1;
}

.flyer-wa-copy strong {
  font-family: var(--font-serif);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.25;
}

.flyer-wa-copy small {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.flyer-wa-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.3s var(--ease-out), border-color 0.3s ease;
}

.flyer-wa-btn:hover .flyer-wa-arrow {
  transform: translateX(2px);
  border-color: var(--accent);
}

/* Tablet / desktop */
@media (min-width: 768px) {
  :root {
    --page: min(560px, calc(100% - 3rem));
    --wa-bar-h: 5rem;
    --radius: 0.85rem;
  }

  body {
    background: var(--bg);
  }

  .flyer {
    padding: 0.65rem 0 1.5rem;
  }

  .flyer-stack {
    gap: 1.1rem;
  }

  .flyer-hero-inner {
    padding: 1.35rem 1.5rem 1.45rem;
  }

  .flyer-headline {
    font-size: 1.95rem;
    margin-bottom: 0.35rem;
  }

  .flyer-subheadline {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
  }

  .flyer-hero-profile {
    gap: 1.15rem;
  }

  .flyer-photo {
    width: 5rem;
    height: 5rem;
  }

  .flyer-name {
    font-size: 1.15rem;
  }

  .flyer-scope {
    font-size: 0.68rem;
  }

  .flyer-card {
    --card-pad-x: 1.5rem;
    --card-pad-top: 1.25rem;
    padding: 1.25rem 1.5rem 1.45rem;
  }

  .flyer-lead {
    font-size: 1.12rem;
  }

  .flyer-heading {
    font-size: 1.22rem;
  }

  .flyer-body {
    font-size: 0.88rem;
  }

  .flyer-list {
    font-size: 0.8rem;
    gap: 0.5rem 1.5rem;
  }

  .flyer-wa-copy strong {
    font-size: 0.92rem;
  }

  .flyer-wa-badge {
    width: 2.75rem;
    height: 2.75rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --page: min(980px, calc(100% - 4rem));
    --wa-bar-h: 5.25rem;
    --radius: 1rem;
  }

  body {
    font-size: 1rem;
    padding-bottom: calc(var(--wa-bar-h) + env(safe-area-inset-bottom, 0px) + 0.75rem);
    background: var(--bg);
  }

  .flyer {
    padding: 0 0 2.5rem;
  }

  .flyer-hero-banner {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 1.75rem;
    border: none;
    border-radius: 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    box-shadow: none;
  }

  .flyer-hero-bg {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .flyer-hero-bg-img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 68% 22%;
  }

  .flyer-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(249, 246, 241, 0.96);
  }

  .site-topbar-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    width: var(--page);
    max-width: calc(100% - 4rem);
    margin: 0 auto;
    padding: 1.15rem 0 0.5rem;
    border-bottom: 1px solid rgba(197, 168, 128, 0.28);
    background: transparent;
  }

  .site-brand {
    font-family: var(--font-serif);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--primary);
  }

  .site-topbar-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }

  .site-topbar-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.2s ease;
  }

  .site-topbar-link:hover {
    color: var(--primary);
  }

  .site-topbar-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 0.4rem;
    box-shadow: none;
    transition: transform 0.25s var(--ease-out), background 0.25s ease, color 0.25s ease;
  }

  .site-topbar-wa:hover {
    transform: translateY(-1px);
    background: var(--card-inner);
    color: var(--primary);
    box-shadow: none;
  }

  .flyer-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: 1.25rem 2rem;
    width: var(--page);
    max-width: calc(100% - 4rem);
    margin: 0 auto;
    padding: 0.85rem 0 1.35rem;
  }

  .flyer-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.55rem;
    text-align: left;
    padding: 1.15rem 1.5rem 1.2rem;
    background: var(--card-inner);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: none;
    animation: fadeUp 0.8s var(--ease-out) 0.1s both;
  }

  .flyer-hero-kicker {
    display: block;
    margin-bottom: 0;
    padding-top: 1.15rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
  }

  .flyer-headline {
    font-size: clamp(1.65rem, 2.2vw, 2rem);
    line-height: 1.22;
    margin: 0 0 0.15rem;
    padding: 0.85rem 1rem;
    width: 100%;
    max-width: none;
    border-radius: 0.55rem;
  }

  .flyer-subheadline {
    font-size: 1.28rem;
    margin-bottom: 0.35rem;
  }

  .flyer-scope {
    justify-content: flex-start;
    text-align: left;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    font-size: 0.68rem;
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--text-muted);
  }

  .flyer-hero-trust {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
  }

  .flyer-hero-trust li {
    font-size: 0.68rem;
    padding: 0.3rem 0.55rem;
    background: var(--card-inner);
    border-radius: 0.35rem;
  }

  .flyer-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    width: fit-content;
    margin-top: 0.35rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.84rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    box-shadow: none;
    transition: transform 0.3s var(--ease-out), background 0.3s ease, color 0.3s ease;
  }

  .flyer-hero-cta:hover {
    transform: translateY(-2px);
    background: var(--card-inner);
    color: var(--primary);
    box-shadow: none;
  }

  .flyer-hero-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 0.35rem;
    background: var(--wa-green);
  }

  .flyer-hero-cta-icon svg {
    fill: #fff;
  }

  .flyer-hero-profile {
    display: grid;
    grid-template-columns: 11.5rem 1fr;
    align-items: center;
    gap: 1rem 1.15rem;
    text-align: left;
    margin: 0;
    padding: 0.85rem 1rem;
    background: var(--card-inner);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: none;
    animation: fadeUp 0.8s var(--ease-out) 0.25s both;
  }

  .flyer-portrait-frame {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.35rem;
    background: #fff;
    border: 1px solid var(--accent);
    border-radius: 0.55rem;
    box-shadow: none;
    overflow: hidden;
  }

  .flyer-hero-profile .flyer-photo-hero {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: 11.5rem;
    max-width: none;
    border-radius: 0.4rem;
    border: none;
    object-fit: cover;
    object-position: center 12%;
  }

  .flyer-identity-text {
    flex-shrink: 0;
    align-self: center;
  }

  .flyer-name {
    font-size: 1.2rem;
  }

  .flyer-role {
    font-size: 0.72rem;
  }

  .flyer-ig {
    font-size: 0.76rem;
  }

  .flyer-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
  }

  .flyer-stack .flyer-card:nth-child(1) {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    row-gap: 0.35rem;
    --card-pad-x: 2.5rem;
    --card-pad-top: 1.75rem;
    padding: 1.75rem 2.5rem;
    text-align: left;
  }

  .flyer-stack .flyer-card:nth-child(1) .flyer-lead {
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 500;
    color: var(--text-muted);
    text-align: left;
  }

  .flyer-stack .flyer-card:nth-child(1) .flyer-body {
    grid-column: 1 / -1;
    max-width: none;
    font-size: 0.95rem;
    margin-top: 0.75rem;
    padding-top: 1rem;
  }

  .flyer-stack .flyer-card:nth-child(2),
  .flyer-stack .flyer-card:nth-child(3) {
    --card-pad-x: 1.75rem;
    --card-pad-top: 1.5rem;
    text-align: left;
    padding: 1.5rem 1.75rem 1.65rem;
  }

  .flyer-stack .flyer-card:nth-child(4) {
    grid-column: 1 / -1;
    --card-pad-x: 2.5rem;
    --card-pad-top: 1.75rem;
    padding: 1.75rem 2.5rem 1.5rem;
    text-align: left;
  }

  .flyer-heading {
    font-size: 1.35rem;
  }

  .flyer-body {
    font-size: 0.95rem;
    max-width: none;
    text-align: left;
  }

  .flyer-lead {
    font-size: 1.12rem;
  }

  .flyer-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem 2rem;
    font-size: 0.88rem;
  }

  .flyer-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem 0 0;
    text-align: left;
    border-top: 1px solid var(--card-border);
  }

  .flyer-footer-name {
    font-size: 1rem;
  }

  .flyer-footer-meta {
    font-size: 0.82rem;
    margin-top: 0.25rem;
  }

  .flyer-footer-links {
    display: flex;
    align-items: center;
  }

  .flyer-footer-links a {
    font-size: 0.85rem;
  }

  .flyer-wa-bar {
    padding:
      0.65rem max(1.5rem, env(safe-area-inset-right))
      max(0.75rem, env(safe-area-inset-bottom))
      max(1.5rem, env(safe-area-inset-left));
    background: rgba(249, 246, 241, 0.98);
    border-top: 1px solid rgba(197, 168, 128, 0.28);
    box-shadow: 0 -8px 24px rgba(26, 60, 52, 0.08);
  }

  .flyer-wa-btn {
    max-width: min(720px, 100%);
  }
}

@media (min-width: 1280px) {
  :root {
    --page: min(1080px, calc(100% - 5rem));
  }

  .flyer-hero-banner {
    min-height: 0;
  }

  .flyer-hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.5rem 2.5rem;
    padding-bottom: 1.5rem;
  }

  .flyer-headline {
    font-size: clamp(1.85rem, 2vw, 2.05rem);
    max-width: none;
  }

  .flyer-hero-profile {
    grid-template-columns: 12rem 1fr;
    padding: 0.9rem 1.15rem;
  }

  .flyer-hero-profile .flyer-photo-hero {
    max-height: 12rem;
  }

  .flyer-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .flyer-list li {
    opacity: 1;
  }

  .flyer-card:hover,
  .flyer-hero-profile:hover {
    transform: none;
  }
}
