:root {
  --bg-top: #fff5e7;
  --bg-bottom: #fffdf9;
  --ink: #1d1d1b;
  --muted: #5f5a51;
  --line: rgba(29, 29, 27, 0.12);
  --card: rgba(255, 255, 255, 0.84);
  --accent: #ff6b2c;
  --accent-soft: #ffe1d2;
  --shadow: 0 22px 70px rgba(68, 34, 9, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 167, 115, 0.35), transparent 32%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
}

.page-shell {
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.hero-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--card);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  padding: 42px;
  overflow: hidden;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Source Serif 4", serif;
  line-height: 0.98;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 5.6vw, 5.1rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}

.lede,
.panel p,
.detail-list {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.lede {
  max-width: 58ch;
  margin: 24px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 30%, rgba(141, 206, 255, 0.52), transparent 34%),
    radial-gradient(circle at 50% 75%, rgba(255, 174, 129, 0.45), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(250, 244, 237, 0.94));
  border: 1px solid rgba(29, 29, 27, 0.08);
}

.hero-cat {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  filter: drop-shadow(0 26px 32px rgba(60, 96, 166, 0.2));
}

.glow-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
}

.glow-orb-left {
  width: 120px;
  height: 120px;
  left: 48px;
  top: 52px;
  background: rgba(255, 152, 109, 0.34);
}

.glow-orb-right {
  width: 170px;
  height: 170px;
  right: 38px;
  bottom: 66px;
  background: rgba(110, 194, 255, 0.3);
}

.hero-badge {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(29, 29, 27, 0.08);
  box-shadow: 0 18px 36px rgba(39, 46, 78, 0.12);
  backdrop-filter: blur(12px);
}

.hero-badge img {
  width: 52px;
  height: 52px;
  border-radius: 15px;
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.95rem;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease;
}

.primary-link {
  color: #fff;
  background: var(--accent);
}

.secondary-link {
  color: var(--ink);
  background: var(--accent-soft);
}

.primary-link:hover,
.secondary-link:hover {
  transform: translateY(-1px);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.panel {
  padding: 32px;
}

.celebration-panel {
  grid-column: 1 / -1;
}

.celebration-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.celebration-cat {
  width: 100%;
  max-width: 240px;
  justify-self: center;
  filter: drop-shadow(0 18px 24px rgba(255, 137, 70, 0.16));
}

.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.detail-list span {
  color: var(--muted);
}

.detail-list strong {
  color: var(--ink);
  text-align: right;
}

@media (max-width: 800px) {
  .page-shell {
    width: min(100% - 20px, 1080px);
    padding: 20px 0 44px;
  }

  .hero-card,
  .panel {
    border-radius: 22px;
  }

  .hero-card {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

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

  .panel {
    padding: 24px 22px;
  }

  .hero-art {
    min-height: 380px;
    padding: 20px;
  }

  .hero-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .celebration-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .detail-list li {
    flex-direction: column;
    gap: 4px;
  }

  .detail-list strong {
    text-align: left;
  }
}
