:root {
  --blush: #FADADD;
  --petal: #F2B8C0;
  --rose: #D98895;
  --deep: #B5606E;
  --cream: #FFF7F5;
  --ivory: #FAF0EC;
  --ink: #1C0A0E;
  --muted: #8C6068;
  --soft: #E8C8CC;
  --white: #FFFFFF;
  --radius: 2px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

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

button {
  cursor: none;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input {
  font-family: var(--font-body);
}


#cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}

#cursor-dot {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  background: var(--rose);
  border-radius: 50%;
  transition: transform 0.15s ease, opacity 0.3s ease;
}

#cursor-ring {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--rose);
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0.6;
}

body:hover #cursor-dot {
  opacity: 1;
}

a:hover~#cursor #cursor-ring,
button:hover~#cursor #cursor-ring {
  transform: scale(1.5);
}


body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.9s var(--transition), transform 0.9s var(--transition);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.45s;
}

.delay-5 {
  transition-delay: 0.6s;
}


nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 72px;
  background: rgba(255, 247, 245, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 136, 149, 0.18);
  transition: all 0.4s ease;
}

nav.scrolled {
  height: 58px;
  background: rgba(255, 247, 245, 0.97);
  box-shadow: 0 1px 30px rgba(183, 90, 110, 0.08);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
  color: var(--deep);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--rose);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-subscribe-btn {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  background: var(--deep);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius);
  transition: all 0.35s ease;
}

.nav-subscribe-btn:hover {
  background: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(183, 90, 110, 0.3);
}


.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ink);
  transition: all 0.35s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.05em;
}


.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  overflow: hidden;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 3rem 6rem 5rem;
  position: relative;
}

.hero-overline {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-overline::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--rose);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.hero-headline em {
  font-style: italic;
  color: var(--deep);
}

.hero-headline .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(80px);
  animation: wordUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-headline .word:nth-child(1) {
  animation-delay: 0.3s;
}

.hero-headline .word:nth-child(2) {
  animation-delay: 0.45s;
}

.hero-headline .word:nth-child(3) {
  animation-delay: 0.6s;
}

.hero-headline .word:nth-child(4) {
  animation-delay: 0.75s;
}

.hero-headline .word:nth-child(5) {
  animation-delay: 0.9s;
}

@keyframes wordUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-sub {
  font-size: 0.88rem;
  line-height: 1.85;
  color: var(--muted);
  max-width: 360px;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.2s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  animation: fadeIn 1s 1.4s ease forwards;
}

.btn-primary {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  background: var(--deep);
  padding: 1rem 2.4rem;
  border-radius: var(--radius);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  box-shadow: 0 12px 35px rgba(183, 90, 110, 0.35);
  transform: translateY(-2px);
}

.btn-ghost {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: color 0.3s ease;
}

.btn-ghost:hover {
  color: var(--deep);
}

.btn-ghost svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-ghost:hover svg {
  transform: translateX(6px);
}


.hero-visual {
  position: relative;
  overflow: hidden;
  background: var(--blush);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  opacity: 0;
  animation: heroImgIn 1.4s 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroImgIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(250, 218, 221, 0.35) 0%, transparent 60%);
}

.hero-badge {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(217, 136, 149, 0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 247, 245, 0.85);
  backdrop-filter: blur(10px);
  opacity: 0;
  animation: fadeIn 1s 1.6s ease forwards;
}

.hero-badge span:first-child {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--deep);
}

.hero-badge span:last-child {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-issue-label {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  opacity: 0;
  animation: fadeIn 1s 1.8s ease forwards;
}


.hero-text::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--petal), transparent);
}


.ticker {
  background: var(--ink);
  padding: 0.9rem 0;
  overflow: hidden;
  display: flex;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  font-weight: 400;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.ticker-item::after {
  content: '✦';
  font-size: 0.45rem;
  color: var(--rose);
}


.section {
  padding: 7rem 5rem;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--deep);
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--soft), transparent);
  margin: 0 3rem 0.5rem;
}

.view-all {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  padding-bottom: 0.5rem;
  position: relative;
  transition: color 0.3s;
}

.view-all::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.view-all:hover {
  color: var(--deep);
}

.view-all:hover::after {
  transform: scaleX(1);
}


.featured-article {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  margin-bottom: 6rem;
  background: var(--ivory);
  overflow: hidden;
  border: 1px solid var(--soft);
  transition: box-shadow 0.5s ease;
}

.featured-article:hover {
  box-shadow: 0 20px 60px rgba(183, 90, 110, 0.12);
}

.featured-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.featured-img-wrap img {
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-article:hover .featured-img-wrap img {
  transform: scale(1.04);
}

.featured-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-category {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rose);
  margin-bottom: 1.2rem;
}

.featured-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.article-excerpt {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--deep);
  margin-top: 2rem;
  transition: gap 0.35s ease, color 0.3s;
}

.read-link:hover {
  gap: 1.4rem;
  color: var(--ink);
}


.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.article-card {
  display: flex;
  flex-direction: column;
  cursor: none;
}

.article-card-img {
  overflow: hidden;
  aspect-ratio: 3/2;
  margin-bottom: 1.6rem;
  position: relative;
}

.article-card-img img {
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-card:hover .article-card-img img {
  transform: scale(1.06);
}

.article-card-img .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(183, 90, 110, 0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.article-card:hover .card-overlay {
  opacity: 1;
}

.article-card-category {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rose);
  margin-bottom: 0.7rem;
}

.article-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.9rem;
  transition: color 0.3s;
}

.article-card:hover .article-card-title {
  color: var(--deep);
}

.article-card-excerpt {
  font-size: 0.8rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 1.2rem;
  flex: 1;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--soft);
  padding-top: 1rem;
}

.article-card-meta .dot {
  width: 3px;
  height: 3px;
  background: var(--petal);
  border-radius: 50%;
}


.divider-editorial {
  padding: 5rem;
  display: flex;
  align-items: center;
  background: var(--blush);
  overflow: hidden;
  position: relative;
}

.divider-editorial::before {
  content: 'RUNWAY';
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(217, 136, 149, 0.12);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  right: -2%;
}

.divider-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--ink);
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.divider-quote::before {
  content: '"';
  font-size: 6rem;
  line-height: 0.4;
  font-family: var(--font-display);
  color: var(--rose);
  display: block;
  margin-bottom: 1rem;
}


.subscribe-section {
  padding: 8rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.subscribe-section::after {
  content: '';
  position: absolute;
  right: -20%;
  top: -30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(242, 184, 192, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.subscribe-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.subscribe-text h2 em {
  font-style: italic;
  color: var(--deep);
}

.subscribe-text p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--muted);
  max-width: 380px;
  margin-bottom: 2rem;
}

.subscribe-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.subscribe-perks li {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: 0.05em;
}

.subscribe-perks li::before {
  content: '✦';
  font-size: 0.45rem;
  color: var(--rose);
}

.subscribe-form-wrap {
  position: relative;
  z-index: 1;
}

.subscribe-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--deep);
  margin-bottom: 2.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.form-group input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--soft);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(217, 136, 149, 0.12);
}

.form-group input::placeholder {
  color: var(--soft);
}

.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--soft);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--ink);
  font-family: var(--font-body);
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(217, 136, 149, 0.12);
}

.form-group textarea::placeholder {
  color: var(--soft);
}

.form-select-group {
  margin-bottom: 2rem;
}

.form-select-group label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.interest-tag {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--soft);
  border-radius: 20px;
  color: var(--muted);
  transition: all 0.3s ease;
  cursor: none;
}

.interest-tag.active,
.interest-tag:hover {
  background: var(--blush);
  border-color: var(--rose);
  color: var(--deep);
}

.btn-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--deep);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-submit span {
  position: relative;
  z-index: 1;
}

.btn-submit:hover::before {
  transform: translateX(0);
}

.btn-submit:hover {
  box-shadow: 0 10px 30px rgba(183, 90, 110, 0.3);
  transform: translateY(-1px);
}

.form-note {
  text-align: center;
  font-size: 0.62rem;
  color: var(--muted);
  margin-top: 1rem;
  letter-spacing: 0.05em;
}


.subscribe-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.subscribe-success.show {
  display: block;
}

.success-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.subscribe-success h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--deep);
  margin-bottom: 1rem;
}

.subscribe-success p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.8;
}


footer {
  background: var(--ink);
  padding: 5rem 5rem 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--blush);
  margin-bottom: 1.2rem;
}

.footer-tagline {
  font-size: 0.8rem;
  line-height: 1.85;
  color: rgba(250, 218, 221, 0.45);
  max-width: 280px;
  margin-bottom: 2.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(250, 218, 221, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250, 218, 221, 0.6);
  transition: all 0.4s ease;
}

.social-icon:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(217, 136, 149, 0.35);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-col h5 {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blush);
  margin-bottom: 1.8rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-col ul li a {
  font-size: 0.8rem;
  color: rgba(250, 218, 221, 0.45);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--blush);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 2.5rem;
}

.footer-copy {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgba(250, 218, 221, 0.3);
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(250, 218, 221, 0.3);
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--blush);
}


@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-subscribe-btn {
    display: none;
  }

  nav {
    padding: 0 1.8rem;
  }

  .nav-logo {
    font-size: 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-text {
    padding: 4rem 1.8rem 3rem;
  }

  .hero-text::after {
    display: none;
  }

  .hero-visual {
    aspect-ratio: 4/3;
  }

  .hero-badge {
    width: 72px;
    height: 72px;
    top: 1.5rem;
    right: 1.5rem;
  }

  .section {
    padding: 4rem 1.8rem;
  }

  .section-header {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .section-line {
    display: none;
  }

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-img-wrap {
    aspect-ratio: 16/9;
  }

  .featured-content {
    padding: 2rem 1.8rem;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .divider-editorial {
    padding: 4rem 1.8rem;
  }

  .subscribe-section {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 1.8rem;
  }

  footer {
    padding: 4rem 1.8rem 2.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .hero-headline {
    font-size: 2.8rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}


.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.img-placeholder-1 {
  background: linear-gradient(135deg, #F2B8C0 0%, #FADADD 40%, #E8C8CC 100%);
}

.img-placeholder-2 {
  background: linear-gradient(135deg, #D98895 0%, #F4C2CA 50%, #FAE0E4 100%);
}

.img-placeholder-3 {
  background: linear-gradient(135deg, #FAE4E6 0%, #D98895 60%, #B5606E 100%);
}

.img-placeholder-4 {
  background: linear-gradient(135deg, #FADADD 0%, #E8A0B0 50%, #D98895 100%);
}

.img-placeholder-5 {
  background: linear-gradient(135deg, #F9C0C7 0%, #FADADD 50%, #D98895 100%);
}

.img-placeholder-6 {
  background: linear-gradient(135deg, #E8B4BC 0%, #FAE0E4 50%, #B5606E 100%);
}

.img-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  position: absolute;
}


.article-header {
  padding: 10rem 5rem 3rem;
  text-align: center;
}

.article-header .category {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: block;
}

.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto 1.5rem;
}

.article-header .meta {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.article-hero-img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  margin-bottom: 4rem;
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
  font-size: 1.1rem;
  line-height: 2;
  color: var(--ink);
}

.article-body p {
  margin-bottom: 2rem;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  margin: 3rem 0 1.5rem;
}

.article-body em {
  color: var(--deep);
}

@media (max-width: 900px) {
  .article-header {
    padding: 8rem 1.8rem 2rem;
  }

  .article-hero-img {
    height: 50vh;
  }
}


.about-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.about-image-col {
  flex: 0 0 40%;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img:hover {
  transform: scale(1.02);
}

.about-text-col {
  flex: 1;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.about-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--deep);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2.5rem;
}

.about-desc {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--ink);
  opacity: 0.85;
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 3rem;
  }

  .about-image-col,
  .about-text-col {
    flex: 100%;
    width: 100%;
  }
}

@media (pointer: coarse), (hover: none) {
  *, body, a, button, .article-card, .interest-tag {
    cursor: auto !important;
  }
  #cursor {
    display: none !important;
  }
}