:root {
  --fucsia: #ff1493;
  --fucsia-dark: #c2185b;
  --negro: #0a0a0a;
  --blanco: #ffffff;
  --crema: #fff5f8;
  --gris: #6b6560;
  --gris-oscuro: #2a2a2a;
  --borde: rgba(10, 10, 10, 0.08);
  --sombra: 0 18px 50px rgba(10, 10, 10, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--crema);
  color: var(--gris-oscuro);
  line-height: 1.75;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 245, 248, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 64px;
  height: auto;
  flex-shrink: 0;
}

.brand span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  color: var(--gris);
}

.brand strong {
  font-size: 15px;
  color: var(--negro);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--gris);
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--fucsia);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 20, 147, 0.2);
  border-radius: 999px;
  background: rgba(255, 20, 147, 0.08);
  color: var(--fucsia);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.home-hero {
  padding: 72px 0 40px;
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: 30px;
  align-items: start;
  margin-bottom: 32px;
}

.hero-main-copy {
  min-width: 0;
}

.hero-side-photo {
  width: 100%;
  max-width: 300px;
  justify-self: end;
  margin: 0;
  padding: 12px;
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(255, 20, 147, 0.16);
  border-radius: 30px;
  box-shadow: var(--sombra);
}

.hero-side-photo img {
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.hero-welcome-note {
  max-width: 760px;
  padding: 22px 24px;
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: 22px;
  box-shadow: var(--sombra);
}

.hero-welcome-note p {
  margin: 14px 0 0;
  font-size: 16px;
  color: var(--gris);
}

.hero-welcome-note .btn-secondary {
  margin-top: 16px;
}

.home-hero h1,
.section-heading h2,
.cta-band h2,
.article-hero h1,
.article-content h2,
.tip-card h3 {
  font-family: 'Playfair Display', serif;
}

.home-hero h1 {
  font-size: clamp(40px, 6vw, 70px);
  line-height: 1.05;
  margin: 24px 0 18px;
  max-width: 860px;
}

.home-hero h1 span {
  color: var(--fucsia);
  font-style: italic;
}

.hero-lead,
.section-copy,
.cta-band p,
.article-hero p,
.article-content p,
.article-figure figcaption,
.callout,
.tip-card p,
.check-list li {
  color: var(--gris-oscuro);
}

.hero-lead {
  font-size: 18px;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 42px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: var(--fucsia);
  color: var(--blanco);
  box-shadow: 0 10px 28px rgba(255, 20, 147, 0.22);
}

.btn-primary:hover {
  background: var(--fucsia-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--negro);
  border: 1px solid rgba(10, 10, 10, 0.12);
}

.btn-secondary:hover {
  border-color: rgba(255, 20, 147, 0.35);
  color: var(--fucsia);
}

.btn-secondary.light {
  color: var(--blanco);
  border-color: rgba(255, 255, 255, 0.2);
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  background: var(--negro);
  color: var(--blanco);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(10, 10, 10, 0.18);
}


.featured-copy {
  padding: 44px;
}

.featured-copy h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  margin: 16px 0;
}

.featured-copy p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.featured-media img,
.post-card img,
.article-hero-media img,
.article-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.post-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 20, 147, 0.12);
  color: var(--fucsia);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.post-tag.soft {
  background: rgba(10, 10, 10, 0.05);
}

.posts-section {
  padding: 42px 0 72px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading h2,
.cta-band h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  margin-top: 16px;
}

.section-copy {
  font-size: 15px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.post-card {
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(10, 10, 10, 0.12);
}

.post-card img {
  aspect-ratio: 3 / 2;
  height: auto;
}

.post-card-body {
  padding: 22px;
}

.post-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.15;
  margin: 16px 0 12px;
  color: var(--negro);
}

.post-card-body p {
  font-size: 15px;
  color: var(--gris);
}

.post-card .meta-row {
  color: var(--gris);
}

.cta-band {
  padding: 0 0 80px;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px;
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.07), rgba(255, 20, 147, 0.02));
  border: 1px solid rgba(255, 20, 147, 0.15);
  border-radius: 26px;
}

.site-footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(10, 10, 10, 0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--gris);
  font-size: 13px;
}

.article-page .meta-row {
  color: rgba(255, 255, 255, 0.58);
}

.article-hero {
  padding: 58px 0 28px;
}

.article-shell {
  width: min(840px, calc(100% - 32px));
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--fucsia);
  font-size: 14px;
  font-weight: 700;
}

.article-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  background: var(--negro);
  color: var(--blanco);
  border-radius: 28px;
  overflow: hidden;
}

.article-hero-copy {
  padding: 42px 42px 34px;
}

.article-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  margin: 18px 0 14px;
}

.article-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
}

.article-hero-media {
  height: 420px;
}

.article-content {
  padding: 42px 0 78px;
}

.article-content h2 {
  font-size: 34px;
  line-height: 1.18;
  margin: 44px 0 14px;
  color: var(--negro);
}

.article-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  line-height: 1.22;
  margin: 34px 0 12px;
  color: var(--negro);
}

.article-content p {
  font-size: 18px;
  margin-bottom: 22px;
}

.callout {
  margin: 34px 0;
  padding: 24px 26px;
  background: rgba(255, 20, 147, 0.06);
  border: 1px solid rgba(255, 20, 147, 0.12);
  border-left: 4px solid var(--fucsia);
  border-radius: 18px;
  font-size: 16px;
}

.story-box {
  position: relative;
  margin: 10px 0 34px;
  padding: 30px 28px 24px 34px;
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-left: 4px solid var(--fucsia);
  border-radius: 0 20px 20px 0;
  box-shadow: var(--sombra);
}

.story-box::before {
  content: '“';
  position: absolute;
  top: 2px;
  left: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 70px;
  line-height: 1;
  color: rgba(255, 20, 147, 0.12);
}

.story-box p {
  font-style: italic;
  color: var(--gris);
  margin-bottom: 14px;
}

.story-signature {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--fucsia-dark);
}

.story-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 28px;
  align-items: start;
  margin: 10px 0 34px;
}

.story-intro .story-box {
  margin: 0;
}

.story-photo {
  margin: 0;
  width: 100%;
  max-width: 360px;
  justify-self: end;
}

.story-photo img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--sombra);
}

.story-photo figcaption {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gris);
}

.placeholder-block,
.article-hero-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed rgba(255, 20, 147, 0.18);
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.05), rgba(255, 20, 147, 0.02));
  color: var(--gris);
}

.article-hero-placeholder {
  height: 100%;
  padding: 32px;
}

.article-hero-placeholder strong,
.placeholder-block strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--negro);
  margin-bottom: 8px;
}

.article-hero-placeholder span,
.placeholder-block p {
  font-size: 14px;
  line-height: 1.6;
}

.placeholder-block {
  flex-direction: column;
  gap: 6px;
  border-radius: 22px;
  padding: 34px 26px;
  margin: 34px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin: 24px 0 14px;
}

.stack-grid {
  display: grid;
  gap: 18px;
  margin: 24px 0 14px;
}

.info-card {
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--sombra);
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 16px;
  font-size: 24px;
  background: rgba(255, 20, 147, 0.1);
  border: 1px solid rgba(255, 20, 147, 0.18);
  box-shadow: 0 12px 30px rgba(255, 20, 147, 0.08);
}

.info-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  line-height: 1.25;
  color: var(--negro);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 15px;
  color: var(--gris);
  margin-bottom: 0;
}

.number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 20, 147, 0.1);
  color: var(--fucsia-dark);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.quote-band {
  margin: 40px 0;
  padding: 36px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 20, 147, 0.18);
  border-bottom: 1px solid rgba(255, 20, 147, 0.18);
}

.quote-band p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.45;
  font-style: italic;
  color: var(--negro);
  margin-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  margin: 26px 0 18px;
}

.stat-box {
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--sombra);
}

.stat-value {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  line-height: 1;
  color: var(--fucsia-dark);
}

.stat-suffix {
  font-size: 20px;
  color: var(--fucsia);
}

.stat-label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--gris);
  line-height: 1.45;
}

.week-grid {
  display: grid;
  gap: 14px;
  margin: 24px 0 14px;
}

.week-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: 18px;
  box-shadow: var(--sombra);
}

.week-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--fucsia), var(--fucsia-dark));
  color: var(--blanco);
}

.week-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  line-height: 1.25;
  color: var(--negro);
  margin-bottom: 6px;
}

.week-content p {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--gris);
}

.related-links {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.related-links h3 {
  margin-top: 0;
}

.related-links a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  color: var(--fucsia-dark);
  font-weight: 700;
}

.related-links a span {
  color: var(--gris);
  font-weight: 500;
}

.article-figure {
  margin: 34px 0;
}

.article-figure img {
  border-radius: 22px;
  max-height: 620px;
}

.article-figure figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--gris);
  text-align: center;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 22px 0 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 17px;
}

.check-list li::before {
  content: '•';
  position: absolute;
  left: 10px;
  top: 0;
  color: var(--fucsia);
  font-weight: 700;
}

.tip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 10px;
}

.tip-card {
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--sombra);
}

.tip-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--negro);
}

.tip-card p {
  font-size: 15px;
  color: var(--gris);
  margin-bottom: 0;
}

.article-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

@media (max-width: 980px) {
  .hero-intro,
  .featured-card,
  .section-heading,
  .posts-grid,
  .tip-grid {
    grid-template-columns: 1fr;
  }

  .story-intro {
    grid-template-columns: 1fr;
  }

  .story-photo {
    justify-self: center;
  }

  .featured-media {
    min-height: 320px;
  }

  .hero-side-photo {
    justify-self: center;
  }

  .hero-side-photo img {
    max-height: 520px;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero {
    padding-top: 46px;
  }

  .featured-copy,
  .article-hero-copy,
  .cta-band-inner {
    padding: 28px;
  }

  .article-hero-media {
    height: 280px;
  }

  .post-card img {
    aspect-ratio: 3 / 2;
    height: auto;
  }

  .article-content p,
  .check-list li {
    font-size: 17px;
  }

  .story-box,
  .callout,
  .placeholder-block {
    padding: 24px 20px;
  }

  .story-photo {
    max-width: 320px;
  }

  .article-content h3 {
    font-size: 23px;
  }
}
