/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f6f1eb;
  color: #2a2421;
  line-height: 1.5;
}

a {
  text-decoration: none;
}

/* HERO */
.hero {
  position: relative;
  height: 85vh;
  background: url("flowers-hero.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero__content {
  position: relative;
  color: white;
  max-width: 900px;
  padding: 20px;
}

.hero__tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 12px;
}

.hero__subtitle {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.hero__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero__chips {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__chips span {
  background: rgba(255,255,255,0.2);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 14px;
}

/* BUTTONS */
.btn {
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 600;
  display: inline-block;
}

.btn.primary {
  background: #8b1d2c;
  color: white;
}

.btn.secondary {
  background: rgba(255,255,255,0.25);
  color: white;
}

.btn.large {
  margin-top: 20px;
  font-size: 1.1rem;
}

/* SECTIONS */
.section {
  padding: 60px 20px;
}

.section.alt {
  background: #efe5dc;
}

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

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.info-box {
  background: #f1e3da;
  padding: 16px;
  border-radius: 14px;
  margin: 20px 0;
}

/* PLACEHOLDER */
.placeholder {
  background: #ddd;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  color: #555;
  text-align: center;
  padding: 20px;
}

/* FAQ */
details {
  background: white;
  padding: 14px 18px;
  border-radius: 14px;
  margin: 12px 0;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: #8b1d2c;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 24px;
  background: #1f1a17;
  color: white;
}
