.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-hero-script {
  margin: 0;
  font-family: "Pacifico", cursive;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  color: var(--character-accent);
  line-height: 1.2;
}

.home-hero-script-heart {
  font-family: inherit;
  margin-left: 4px;
}

.home-hero-name {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.home-hero-tagline {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
}

.home-traits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.home-trait {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--border-light);
  font-size: 0.84rem;
  color: var(--text-muted);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.home-bio {
  margin: 8px 0 0;
  font-size: 1.05rem;
  color: var(--text-primary);
  max-width: 38ch;
  line-height: 1.55;
}

.home-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.home-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.home-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--character-accent-soft);
  color: var(--character-accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.home-currently {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--character-accent-soft);
  border-radius: var(--radius-md);
  border: 1px solid rgba(236, 72, 153, 0.12);
  max-width: 340px;
  margin-top: 8px;
}

.home-currently-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  font-size: 1.2rem;
}

.home-currently-label {
  margin: 0;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--character-accent);
  font-weight: 700;
}

.home-currently-text {
  margin: 3px 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
}

.home-currently-meta {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.home-hero-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  /* hello.png is 2:3; square frame + top anchor crops ~bottom third */
  aspect-ratio: 1 / 1;
  width: min(100%, 420px);
  max-height: 420px;
  margin-left: auto;
  background: #f3f4f6;
}

.home-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.featured-story {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  margin-bottom: 48px;
}

.featured-story-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.featured-story-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.featured-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.featured-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.featured-tag.is-primary {
  background: var(--character-accent);
  color: #fff;
}

.featured-tag.is-secondary {
  background: var(--character-accent-soft);
  color: var(--character-accent-dark);
}

.featured-story-title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.featured-story-excerpt {
  margin: 0 0 16px;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
  max-width: 52ch;
}

.featured-story-meta {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
  font-size: 0.84rem;
  color: var(--text-soft);
}

.featured-story-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--character-accent);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(236, 72, 153, 0.3);
  transition: transform 0.15s, box-shadow 0.15s;
}

.featured-story-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(236, 72, 153, 0.35);
}

.moments-section {
  margin-bottom: 48px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--character-accent);
}

.section-link:hover {
  text-decoration: underline;
}

.moments-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.moment-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #eee;
  box-shadow: var(--shadow-card);
}

.moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moment-time {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
}

.home-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.home-panel {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.home-panel-title {
  margin: 0 0 18px;
  font-size: 1.05rem;
  font-weight: 700;
}

.schedule-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.schedule-item.is-done {
  color: var(--text-soft);
}

.schedule-item.is-done .schedule-label {
  text-decoration: line-through;
}

.schedule-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--character-accent-muted);
  flex-shrink: 0;
  position: relative;
}

.schedule-item.is-done .schedule-check {
  background: var(--character-accent);
  border-color: var(--character-accent);
}

.schedule-item.is-done .schedule-check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.schedule-time {
  font-weight: 600;
  color: var(--text-primary);
  min-width: 76px;
}

.panel-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--character-accent);
}

.journal-teaser {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: start;
}

.journal-teaser-photo {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  object-fit: cover;
}

.journal-teaser-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.journal-teaser-excerpt {
  margin: 0 0 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.journal-teaser-meta {
  margin: 0 0 10px;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.closer-band {
  width: 100%;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
  border-top: 1px solid var(--border-light);
  padding: 48px 24px 56px;
  margin-top: 8px;
}

.closer-band-inner {
  max-width: var(--shell-max);
  margin: 0 auto;
}

.closer-header {
  text-align: center;
  margin-bottom: 28px;
}

.closer-header h2 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-primary);
}

.closer-wrap {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 28px;
  align-items: start;
}

.closer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.closer-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(236, 72, 153, 0.1);
  box-shadow: 0 2px 8px rgba(236, 72, 153, 0.06);
}

.closer-card h3 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 700;
}

.closer-card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.closer-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 10px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--character-accent);
  color: #fff;
  border-radius: var(--radius-pill);
}

.closer-aside {
  text-align: center;
}

.polaroid {
  background: #fff;
  padding: 12px 12px 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: rotate(4deg);
  border-radius: 4px;
}

.polaroid img {
  border-radius: 2px;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.polaroid-note {
  margin: 12px 0 0;
  font-family: "Pacifico", cursive;
  font-size: 0.9rem;
  color: var(--character-accent);
}

@media (max-width: 1024px) {
  .moments-strip {
    grid-auto-flow: column;
    grid-auto-columns: minmax(140px, 180px);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 900px) {
  .home-hero {
    grid-template-columns: 1fr;
  }

  .home-hero-photo {
    order: -1;
    width: min(100%, 360px);
    max-height: 360px;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 1 / 1;
  }

  .featured-story {
    grid-template-columns: 1fr;
  }

  .featured-story-media {
    max-width: 320px;
  }

  .home-two-col {
    grid-template-columns: 1fr;
  }

  .closer-wrap {
    grid-template-columns: 1fr;
  }

  .closer-grid {
    grid-template-columns: 1fr;
  }

  .closer-aside {
    display: none;
  }
}

@media (max-width: 600px) {
  .journal-teaser {
    grid-template-columns: 1fr;
  }

  .journal-teaser-photo {
    max-width: 140px;
  }
}
