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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffe76a;
  color: #222;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 0;
  background: #ffc400;
  min-height: 60vh;
}

.hero-media img,
.hero-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-placeholder {
  background: radial-gradient(circle at top left, #ffe76a, #ffc400);
}

.hero-content {
  padding: 2rem 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  font-weight: 800;
  margin: 0 0 0.3rem;
}

.logo span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: normal;
}

.subtitle {
  margin: 0;
  font-size: 0.9rem;
}

.dates {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
}

.headline {
  margin-top: 1rem;
  font-size: 1.6rem;
  max-width: 32rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.btn.primary {
  background: #e30613;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn.primary:hover {
  background: #c00510;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.btn.secondary {
  background: #fff;
  color: #111;
  border-color: #111;
}

.btn.secondary:hover {
  background: #111;
  color: #fff;
}

.btn.ghost {
  background: transparent;
  border-color: #111;
  color: #111;
}

.btn.ghost:hover {
  background: #111;
  color: #fff;
}

.btn.small {
  padding: 0.45rem 1.2rem;
  font-size: 0.85rem;
}

.countdown-box {
  margin-top: 1.2rem;
}

.count-label {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
}

.countdown {
  display: inline-flex;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.13);
  gap: 0.25rem;
}

.countdown div {
  min-width: 3.1rem;
  text-align: center;
}

.countdown span {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}

.countdown small {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.count-message {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Sections */

.section {
  padding: 2.5rem 1.25rem;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.highlights {
  background: #fffbe2;
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 1.4rem;
}

.grid article {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.grid h3 {
  margin-top: 0;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.catalog {
  background: #ffe76a;
}

.catalog .intro {
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.catalog-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  height: auto;
}

.card figcaption {
  padding: 0.8rem 0.9rem 1.1rem;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.center {
  text-align: center;
  margin-top: 1.6rem;
}

.terms {
  background: #fff;
}

.terms ul {
  padding-left: 1.2rem;
  font-size: 0.95rem;
}

.terms li + li {
  margin-top: 0.3rem;
}

.note {
  font-size: 0.9rem;
  margin: 0.9rem 0 1rem;
  color: #444;
}

/* Footer */

.footer {
  background: #111;
  color: #f5f5f5;
  padding: 1.8rem 1.25rem 1.2rem;
}

.footer a {
  color: #ffe76a;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  align-items: flex-start;
}

.footer h3,
.footer h4 {
  margin-top: 0;
}

.footer .small {
  font-size: 0.85rem;
}

.footer-bottom {
  margin-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 0.7rem;
  font-size: 0.8rem;
  text-align: center;
}

/* Responsive */

@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-media {
    order: 2;
  }
  .hero-content {
    order: 1;
    padding: 1.6rem 1.25rem 1.8rem;
  }
  .headline {
    font-size: 1.4rem;
  }
  .logo {
    font-size: 1.5rem;
  }
}

@media (max-width: 520px) {
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .countdown {
    width: 100%;
    justify-content: space-between;
  }
}
