/* ============================================================
   MIMI CROSS — Home Page Styles
   ============================================================ */

/* ---- Hero ---- */
.hero {
  min-height: 100svh;
  background: var(--navy);
  padding-top: 64px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 60% 50%, rgba(184,147,74,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,160,160,0.06) 0%, transparent 60%);
  pointer-events: none;
}
/* Subtle ink-wash texture */
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent 40%, rgba(201,160,160,0.04) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  width: 100%;
}
.hero-text {
  color: var(--ivory);
}
.hero-text .section-label {
  margin-bottom: 1rem;
}
.hero-text h1 {
  color: var(--ivory);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero-text h1 em {
  color: var(--gold);
  font-style: italic;
}
.hero-text p {
  color: rgba(245,240,232,0.7);
  font-size: 1.05rem;
  max-width: 38ch;
  margin-bottom: 2rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-portrait {
  display: flex;
  justify-content: center;
}
.portrait-frame {
  position: relative;
  max-width: 420px;
  width: 100%;
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(184,147,74,0.25);
  border-radius: 2px;
  pointer-events: none;
}
.portrait-frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  filter: brightness(0.92) contrast(1.05);
}

/* ---- Updates ---- */
.updates {
  background: var(--off-white);
}
.updates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}
.update-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.update-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.update-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,147,74,0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
  align-self: flex-start;
}
.update-card h2 {
  font-size: 1.5rem;
  color: var(--navy);
}
.update-card p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 0;
}
.update-cover {
  margin: 0.5rem 0;
}
.update-cover img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
  transition: opacity var(--transition);
}
.update-cover img:hover { opacity: 0.9; }
.update-card .btn { align-self: flex-start; margin-top: 0.5rem; }

/* ---- Press Strip ---- */
.press-strip {
  background: var(--charcoal);
  padding: clamp(3rem, 7vw, 5rem) 0;
}
.press-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.press-inner blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--ivory);
  line-height: 1.55;
}
.press-inner cite {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.75rem;
  font-style: normal;
}
.press-divider {
  width: 2rem;
  height: 1px;
  background: rgba(184,147,74,0.4);
  margin: 2rem auto;
}

/* ---- About Teaser ---- */
.about-teaser {
  background: var(--ivory);
}
.about-teaser-inner {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.about-teaser-text h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}
.about-teaser-text p {
  color: var(--slate);
  margin-bottom: 1.5rem;
}
.about-teaser-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  align-self: start;
}
.teaser-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition);
}
.teaser-link:last-child { border-bottom: none; }
.teaser-link:hover {
  background: var(--navy);
  color: var(--ivory);
}
.teaser-link-arrow {
  color: var(--gold);
  font-size: 1rem;
  transition: transform var(--transition);
}
.teaser-link:hover .teaser-link-arrow { transform: translateX(3px); }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-portrait { order: -1; }
  .portrait-frame { max-width: 280px; }
  .portrait-frame img { aspect-ratio: 1/1; }
  .updates-grid { grid-template-columns: 1fr; }
  .about-teaser-inner { grid-template-columns: 1fr; }
}
