/* ============================================
   MILA — Made in Latin America
   Brand Website Styles (2026)
   ============================================ */

/* --- Neue Haas Grotesk Display Pro --- */
@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('fonts/NHaasGrotesk/NHaasGroteskDSPro-55Rg.woff2') format('woff2'),
       url('fonts/NHaasGrotesk/NHaasGroteskDSPro-55Rg.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('fonts/NHaasGrotesk/NHaasGroteskDSPro-56It.woff2') format('woff2'),
       url('fonts/NHaasGrotesk/NHaasGroteskDSPro-56It.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('fonts/NHaasGrotesk/NHaasGroteskDSPro-65Md.woff2') format('woff2'),
       url('fonts/NHaasGrotesk/NHaasGroteskDSPro-65Md.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('fonts/NHaasGrotesk/NHaasGroteskDSPro-66MdIt.woff2') format('woff2'),
       url('fonts/NHaasGrotesk/NHaasGroteskDSPro-66MdIt.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Neue Haas Grotesk';
  src: url('fonts/NHaasGrotesk/NHaasGroteskDSPro-95Blk.woff2') format('woff2'),
       url('fonts/NHaasGrotesk/NHaasGroteskDSPro-95Blk.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* --- Freight Display Compressed Pro --- */
@font-face {
  font-family: 'Freight Display';
  src: url('fonts/FreightDisplay/FreightDisplayCompressed-Light.woff2') format('woff2'),
       url('fonts/FreightDisplay/FreightDisplayCompressed-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Freight Display';
  src: url('fonts/FreightDisplay/FreightDisplayCompressed-LightItalic.woff2') format('woff2'),
       url('fonts/FreightDisplay/FreightDisplayCompressed-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Freight Display';
  src: url('fonts/FreightDisplay/FreightDisplayCompressed-Book.woff2') format('woff2'),
       url('fonts/FreightDisplay/FreightDisplayCompressed-Book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Freight Display';
  src: url('fonts/FreightDisplay/FreightDisplayCompressed-BookItalic.woff2') format('woff2'),
       url('fonts/FreightDisplay/FreightDisplayCompressed-BookItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Freight Display';
  src: url('fonts/FreightDisplay/FreightDisplayCompressed-Medium.woff2') format('woff2'),
       url('fonts/FreightDisplay/FreightDisplayCompressed-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Freight Display';
  src: url('fonts/FreightDisplay/FreightDisplayCompressed-MediumItalic.woff2') format('woff2'),
       url('fonts/FreightDisplay/FreightDisplayCompressed-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

:root {
  --yellow: #FFFEAC;
  --pink: #F48BB3;
  --cream: #F1EDE4;
  --black: #000000;
  --burgundy: #4E1717;
  --brown: #593622;
  --green: #3A6A53;
  --blue: #638DB8;
  --gray: #605F5B;
  --lavender: #9582B8;
  --font-sans: 'Neue Haas Grotesk', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-serif: 'Freight Display', Georgia, 'Times New Roman', serif;
  --pad: 32px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: #fff;
  line-height: 1.4;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
img.nav__logo-img,
img.footer__logo-img { max-width: none; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--pad);
  border-bottom: 1px solid var(--black);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

.nav--dark {
  background: var(--black);
  border-bottom-color: rgba(255,255,255,0.15);
}

.nav--dark .nav__links a,
.nav--dark .logo-text,
.nav--dark .logo-clover { color: #fff; }

.nav__links {
  display: flex;
  gap: clamp(12px, 3vw, 48px);
  list-style: none;
}

.nav__links a {
  font-family: var(--font-sans);
  font-size: clamp(9px, 1.2vw, 13px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.nav__links a:hover { opacity: 0.6; }

.nav__links a.active {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: clamp(18px, 2.5vw, 28px);
  width: auto;
}

/* ============================================
   HOMEPAGE HERO
   ============================================ */
.hero-tagline {
  margin: 0;
  padding: 8px var(--pad) 4px;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  width: 100%;
  display: block;
}

.hero {
  margin: 0;
  position: relative;
  background: #4C2015;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__clover-img {
  height: 130%;
  width: auto;
  object-fit: contain;
  animation: clover-spin 30s linear infinite;
}

@keyframes clover-spin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}

.hero__label {
  position: absolute;
  font-family: var(--font-sans);
  font-size: clamp(11px, 2.4vw, 36px);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
}

.hero__label--left { top: 50%; left: var(--pad); transform: translateY(-50%); }
.hero__label--right { top: 50%; right: var(--pad); transform: translateY(-50%); }

/* ============================================
   SECTION DIVIDERS & TITLES
   ============================================ */
.divider-line {
  display: none;
}

.section-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 14px var(--pad) 8px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-title::before,
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--black);
}

/* ============================================
   ARCHIVO GRID (homepage)
   ============================================ */
.archivo {
  padding: 4px var(--pad) 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.archivo__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
}

.archivo__card:hover { opacity: 0.8; }

.archivo__card-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0;
  background: var(--cream);
}

.archivo__card-img--editorial {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 50%, #f5f0e8 50%, #f5f0e8 100%);
}
.archivo__card-img--zut {
  background: linear-gradient(180deg, #c4a035 0%, #8a7020 100%);
}
.archivo__card-img--sunset {
  background: linear-gradient(135deg, #e8a090 0%, #d45040 50%, #f5e0d0 100%);
}

.archivo__card-category {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pink);
  margin-top: 2px;
}

.archivo__card-title {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.35;
}

/* ============================================
   CALENDARIO SECTION (homepage)
   ============================================ */
.calendario-section {
  background: var(--yellow);
  padding: 0 var(--pad) 24px;
}

.calendario {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.calendario__poster {
  padding: 16px 20px 16px 0;
  color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.calendario__poster-script {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 300;
  line-height: 0.9;
}

.calendario__poster-location {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.1;
  margin-top: 2px;
}

.calendario__poster-dates {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(14px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 2px;
}

.calendario__poster-venue {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(10px, 1.2vw, 16px);
  font-weight: 300;
  margin-top: 1px;
}

.calendario__poster-venue small {
  font-size: 0.8em;
  opacity: 0.7;
}

.calendario__poster-brands-small {
  font-family: var(--font-sans);
  font-size: 7px;
  line-height: 1.5;
  margin-top: 20px;
  opacity: 0.6;
}

.calendario__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 0 0 20px;
  border-left: 1px solid rgba(0,0,0,0.1);
}

.calendario__info-header {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.calendario__brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px 24px;
}

.calendario__brands span {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ============================================
   FOOTER (black bar)
   ============================================ */
.footer-black {
  background: var(--black);
  color: #fff;
  padding: 16px var(--pad) 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.footer-black__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-black__label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.footer-black__socials {
  display: flex;
  gap: 14px;
  list-style: none;
}

.footer-black__socials a {
  font-size: 16px;
  color: #fff;
  transition: opacity 0.2s;
}

.footer-black__socials a:hover { opacity: 0.6; }

.footer-black__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: #fff;
}

.footer-logo {
  display: inline-flex;
  align-items: flex-start;
}

.footer__logo-img {
  height: clamp(20px, 3vw, 32px);
  width: auto;
}

.footer-black__tagline {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}

/* Standalone footer for inner pages */
.footer.footer--standalone {
  margin-top: 60px;
  padding: 24px var(--pad) 28px;
  background: var(--black);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.footer__socials {
  display: flex;
  gap: 14px;
  list-style: none;
}

.footer__socials a {
  font-size: 16px;
  color: #fff;
  transition: opacity 0.2s;
}

.footer__socials a:hover { opacity: 0.6; }

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: #fff;
}

.footer__right .footer-logo .logo-text { font-size: 24px; color: inherit; }
.footer__right .footer-logo .logo-clover { color: inherit; }

.footer__right > span:last-child {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================
   PAGE HERO (for inner pages)
   ============================================ */
.page-hero {
  padding: 60px var(--pad) 48px;
  border-bottom: 1px solid var(--black);
}

.page-hero--dark {
  background: var(--black);
  color: #fff;
  border-bottom: none;
}

.page-hero--burgundy {
  background: var(--burgundy);
  color: var(--yellow);
  border-bottom: none;
}

.page-hero__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.page-hero__title em {
  font-style: italic;
  font-weight: 300;
}

.page-hero__title strong {
  font-family: var(--font-sans);
  font-weight: 900;
  font-style: normal;
}

.page-hero__subtitle {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 560px;
  margin-top: 24px;
  opacity: 0.85;
}

/* ============================================
   ARTICLE GRID (Culture / Fashion)
   ============================================ */
.article-grid {
  padding: 32px var(--pad) 0;
}

.article-grid__featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.article-grid__featured-img {
  aspect-ratio: 4 / 5;
  background: var(--cream);
  border-radius: 2px;
}

.article-grid__featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.article-grid__featured-cat {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--burgundy);
}

.article-grid__featured-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.article-grid__featured-excerpt {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray);
  max-width: 440px;
}

.article-grid__featured-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--black);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.article-grid__featured-link:hover { opacity: 0.6; }

.article-grid__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.article-card:hover { opacity: 0.8; }

.article-card__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 2px;
  background: var(--cream);
}

.article-card__cat {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--burgundy);
}

.article-card__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.article-card__excerpt {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.5;
  color: var(--gray);
}

/* ============================================
   EVENTS (RSVP page)
   ============================================ */
.events-section {
  padding: 0 var(--pad);
}

.event-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.event-featured__poster {
  background: var(--burgundy);
  border-radius: 4px;
  padding: 40px 32px;
  color: var(--yellow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.event-featured__poster-clover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  opacity: 0.3;
}

.event-featured__poster-clover div {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  filter: blur(12px);
}

.event-featured__poster-clover div:nth-child(1) {
  background: #7BA8D4; top: 0; left: 50%; transform: translateX(-50%);
}
.event-featured__poster-clover div:nth-child(2) {
  background: #8BC49A; top: 50%; left: 0; transform: translateY(-50%);
}
.event-featured__poster-clover div:nth-child(3) {
  background: #7BA8D4; top: 50%; right: 0; transform: translateY(-50%);
}
.event-featured__poster-clover div:nth-child(4) {
  background: #D4E87B; bottom: 0; left: 50%; transform: translateX(-50%);
}

.event-featured__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.event-featured__date {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--burgundy);
}

.event-featured__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
}

.event-featured__location {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray);
}

.event-featured__brands-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.event-featured__brands-list {
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.8;
  color: var(--gray);
}

.rsvp-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--black);
  color: var(--yellow);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s;
  align-self: flex-start;
}

.rsvp-btn:hover { opacity: 0.8; }

.events-list {
  padding: 48px 0;
}

.events-list__title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--black);
}

.event-row {
  display: grid;
  grid-template-columns: 200px 1fr 200px 120px;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: background 0.15s;
}

.event-row:hover { background: rgba(0,0,0,0.02); }

.event-row__date {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--burgundy);
}

.event-row__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
}

.event-row__location {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--gray);
}

.event-row__cta {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: right;
}

/* Conversatorios */
.conversatorios {
  padding: 48px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.conversatorios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.conversatorio-card {
  padding: 32px 24px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 2px;
}

.conversatorio-card__brand {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--burgundy);
  margin-bottom: 8px;
}

.conversatorio-card__title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.conversatorio-card__desc {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.5;
  color: var(--gray);
}

/* ============================================
   STUDIO PAGE
   ============================================ */
.studio-intro {
  padding: 48px var(--pad);
  max-width: 680px;
}

.studio-intro p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

.collab-grid {
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.collab-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  min-height: 400px;
}

.collab-card:nth-child(even) .collab-card__img { order: 2; }
.collab-card:nth-child(even) .collab-card__content { order: 1; }

.collab-card__img {
  background: var(--cream);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collab-card__img-inner {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  font-style: italic;
  text-align: center;
  padding: 40px;
  line-height: 1.2;
  color: var(--black);
  opacity: 0.4;
}

.collab-card__content {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.collab-card__label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--burgundy);
}

.collab-card__title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.collab-card__title em { font-style: italic; font-weight: 300; }

.collab-card__brands {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.collab-card__desc {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray);
  max-width: 400px;
}

.collab-card__link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--black);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.collab-card__link:hover { opacity: 0.6; }

/* Color variant backgrounds for collab cards */
.collab-card__img--pink { background: var(--pink); }
.collab-card__img--yellow { background: var(--yellow); }
.collab-card__img--burgundy { background: var(--burgundy); }
.collab-card__img--burgundy .collab-card__img-inner { color: var(--yellow); opacity: 0.5; }
.collab-card__img--green { background: var(--green); }
.collab-card__img--green .collab-card__img-inner { color: var(--yellow); opacity: 0.5; }

/* ============================================
   MOTION & ANIMATION
   ============================================ */
html { scroll-behavior: smooth; }

/* Scroll reveal: elements start invisible, animate in when visible */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children within a grid */
.reveal-stagger > .reveal { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.40s; }

/* Hero text reveal — lines clip in from below */
.hero-reveal {
  overflow: hidden;
}

.hero-reveal > * {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-reveal.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-reveal.is-visible > *:nth-child(1) { transition-delay: 0.1s; }
.hero-reveal.is-visible > *:nth-child(2) { transition-delay: 0.25s; }
.hero-reveal.is-visible > *:nth-child(3) { transition-delay: 0.4s; }

/* Enhanced card hovers — scale + shadow lift */
.archivo__card {
  transition: opacity 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.archivo__card:hover {
  opacity: 1;
  transform: translateY(-4px);
}

.article-card {
  transition: opacity 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover {
  opacity: 1;
  transform: translateY(-6px);
}

.article-card__img,
.archivo__card-img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.article-card:hover .article-card__img,
.archivo__card:hover .archivo__card-img {
  transform: scale(1.03);
}

.collab-card__img {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collab-card:hover .collab-card__img {
  transform: scale(1.02);
}

.conversatorio-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}

.conversatorio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.event-row {
  transition: background 0.15s, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-row:hover {
  transform: translateX(4px);
}

/* Page transition — simple fade */
body {
  transition: opacity 0.3s ease;
}

body.is-navigating {
  opacity: 0;
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-reveal > * { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
/* ============================================
   TABLET (≤768px)
   ============================================ */
@media (max-width: 768px) {
  :root { --pad: 20px; }

  .nav { padding: 10px var(--pad); }
  .nav__links { gap: 20px; }
  .nav__links a { font-size: 10px; }

  .hero { aspect-ratio: 16 / 9; }

  .archivo {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .article-grid__featured { grid-template-columns: 1fr; }
  .article-grid__items { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .calendario { grid-template-columns: 1fr 1fr; }

  .event-featured { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 1fr 1fr; gap: 8px; }
  .conversatorios__grid { grid-template-columns: 1fr; }

  .collab-card { grid-template-columns: 1fr; }
  .collab-card__img { min-height: 240px; }
  .collab-card:nth-child(even) .collab-card__img { order: 0; }
  .collab-card:nth-child(even) .collab-card__content { order: 0; }

  .footer.footer--standalone {
    flex-direction: row;
    align-items: flex-end;
  }
}

/* ============================================
   MOBILE (≤480px)
   ============================================ */
@media (max-width: 480px) {
  :root { --pad: 14px; }

  .nav { padding: 8px var(--pad); }
  .nav__logo-img { height: 18px; }
  .nav__links { gap: 12px; }
  .nav__links a { font-size: 9px; font-weight: 500; }

  .hero { aspect-ratio: 4 / 3; }
  .hero__clover-img { height: 110%; }

  .section-title { font-size: 10px; margin: 10px var(--pad) 6px; gap: 10px; }

  .archivo { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .archivo__card-category { font-size: 7px; }
  .archivo__card-title { font-size: 8px; }

  .calendario { grid-template-columns: 1fr !important; }
  .calendario__info { padding: 16px 0 0; border-left: none; border-top: 1px solid rgba(0,0,0,0.1); }
  .calendario__poster { min-height: auto; padding: 12px 0; }
  .calendario__poster-script { font-size: 32px; }
  .calendario__poster-location { font-size: 20px; }
  .calendario__poster-dates { font-size: 14px; }
  .calendario__poster-venue { font-size: 10px; }
  .calendario__poster-brands-small { font-size: 6px; }
  .calendario__info-header { font-size: 9px; }
  .calendario__brands span { font-size: 8px; }

  .footer-black { padding: 14px var(--pad) 16px; }
  .footer-black__socials { gap: 10px; }
  .footer-black__socials a { font-size: 14px; }
  .footer-black__label { font-size: 8px; }
  .footer-black__tagline { font-size: 7px; }

  .footer.footer--standalone {
    flex-direction: row;
    align-items: flex-end;
    padding: 14px var(--pad) 16px;
  }
  .footer__label { font-size: 8px; }
  .footer__socials a { font-size: 14px; }
  .footer__right > span:last-child { font-size: 7px; }

  .article-grid__items { grid-template-columns: 1fr; }
  .article-grid__featured-title { font-size: 24px; }

  .event-featured { gap: 20px; }
  .event-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .event-row__cta { text-align: left; }

  .collab-card__content { padding: 24px var(--pad); }

  .page-hero { padding: 32px var(--pad) 24px; }
  .page-hero__title { font-size: 32px; }
  .page-hero__subtitle { font-size: 13px; }
  .page-hero__label { font-size: 9px; }
}
