:root {
  font-family: "Playfair Display", "Inter", system-ui, sans-serif;
  color: #1f1f1f;
  background-color: #fffaf4;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fffaf4 0%, #fceee0 100%);
  color: #1f1f1f;
}

a {
  color: inherit;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  padding: 72px clamp(24px, 6vw, 80px);
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: #c0835c;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
}

.lead {
  font-size: 1.1rem;
  max-width: 520px;
  color: #5e4f45;
}

.hero-visual {
  width: 100%;
  min-height: 380px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(182, 147, 115, 0.35);
}

.hero-visual--home {
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.75), transparent),
    linear-gradient(140deg, #f5d8c1, #f7b5a6, #f4848d);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  padding: 14px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #f3a180, #c0835c);
  color: #fff;
}

.btn-secondary {
  border: 1px solid rgba(199, 150, 110, 0.4);
  color: #c0835c;
  background: transparent;
}

.catalog {
  padding: 40px clamp(24px, 6vw, 80px);
}

.section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.party-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(154, 112, 86, 0.15);
  display: flex;
  flex-direction: column;
}

.party-card__photo {
  width: 100%;
  height: 220px;
  border-bottom: 1px solid rgba(192, 131, 92, 0.2);
  background-size: cover;
  background-position: center;
}

.party-card__photo[data-theme="dino-adventure"],
.gallery-panel[data-theme="dino-adventure"] {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent 60%),
    linear-gradient(135deg, #5fb97d, #3d8966);
}

.party-card__photo[data-theme="princess-parfait"],
.gallery-panel[data-theme="princess-parfait"] {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.7), transparent 70%),
    linear-gradient(135deg, #f8d1e0, #f0a1c2);
}

.party-card__photo[data-theme="midnight-masquerade"],
.gallery-panel[data-theme="midnight-masquerade"] {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 80%),
    linear-gradient(135deg, #0d0d22, #301646, #592b87);
}

.party-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.party-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tags span {
  font-size: 0.75rem;
  background: rgba(192, 131, 92, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 6px;
}

.process {
  padding: 60px clamp(24px, 6vw, 80px);
  background: rgba(255, 244, 232, 0.9);
}

.process ol {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process li {
  flex: 1;
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(184, 140, 108, 0.12);
}

.box-detail {
  padding: 40px clamp(24px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.box-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
}

.gallery-panel {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 12px;
  min-height: 140px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  font-size: 0.9rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.components {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(173, 126, 96, 0.15);
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.components-grid article {
  background: rgba(250, 244, 236, 0.8);
  border-radius: 16px;
  padding: 16px;
}

.muted {
  color: rgba(96, 78, 65, 0.7);
}

.not-found {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

@media (max-width: 720px) {
  .process ol {
    flex-direction: column;
  }
}
