:root {
  --bg-gradient: radial-gradient(circle at 10% 20%, #ff9eea 0%, #ffd86f 50%, #8ec5fc 100%);
  --text-color: #1f2144;
  --muted-color: rgba(31, 33, 68, 0.7);
  --card-radius: 24px;
  --shadow-soft: 0 20px 40px rgba(17, 19, 44, 0.14);
  --container-width: min(1100px, 90vw);
  --accent-pink: #ff6fd8;
  --accent-teal: #2cd8d5;
  --accent-yellow: #ffed6f;
  --accent-blue: #4facfe;
  --white: #fff;
}

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

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--bg-gradient);
  color: var(--text-color);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.spark-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  opacity: 0.6;
  pointer-events: none;
  mix-blend-mode: screen;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-name {
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-blue);
  transform: translateY(-2px);
}

.hero {
  padding: 120px 0 80px;
}

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

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

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted-color);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-blue));
  color: var(--white);
  box-shadow: 0 12px 25px rgba(255, 111, 216, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(79, 172, 254, 0.35);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--text-color);
  background: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.55);
}

.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted-color);
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.candle-stack {
  display: grid;
  gap: 16px;
  transform: rotate(-6deg);
}

.candle {
  width: 150px;
  height: 220px;
  border-radius: 120px 120px 24px 24px;
  position: relative;
  box-shadow: var(--shadow-soft);
}

.candle::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 35px;
  background: linear-gradient(180deg, rgba(248, 196, 113, 0.8), transparent);
  border-radius: 999px;
}

.candle::after {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 50px;
  background: radial-gradient(circle, #ffe066 0%, rgba(255, 224, 102, 0) 70%);
  filter: blur(0.5px);
  opacity: 0.9;
}

.candle-one {
  background: linear-gradient(180deg, #ff9a9e 0%, #fad0c4 100%);
}

.candle-two {
  background: linear-gradient(180deg, #a18cd1 0%, #fbc2eb 100%);
  margin-left: 60px;
}

.candle-three {
  background: linear-gradient(180deg, #f6d365 0%, #fda085 100%);
  margin-left: 120px;
}

.glow-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), transparent);
  filter: blur(6px);
  z-index: -1;
  animation: pulse 6s infinite ease-in-out;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.section-kicker {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 16px;
}

.section p {
  color: var(--muted-color);
}

.card-grid {
  display: grid;
  gap: 28px;
}

.card-grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card-grid.four {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  padding: 32px;
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-soft);
  color: var(--white);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.card p {
  color: rgba(255, 255, 255, 0.9);
}

.card .note {
  font-size: 0.85rem;
  opacity: 0.85;
}

.gradient.sunrise {
  background: linear-gradient(135deg, #ff9a8b 0%, #ff6a88 50%, #ff99ac 100%);
}

.gradient.aurora {
  background: linear-gradient(135deg, #43cea2 0%, #185a9d 100%);
}

.gradient.tropic {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.story {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 48px;
  margin: 0 5vw;
  box-shadow: var(--shadow-soft);
}

.story .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  padding: 72px 48px;
}

.story-media {
  position: relative;
}

.story-blob {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(79, 172, 254, 0.7), rgba(255, 111, 216, 0.6));
  filter: blur(50px);
  border-radius: 38% 62% 68% 32% / 41% 39% 61% 59%;
}

.story img {
  width: 100%;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-soft);
}

.story-text ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}

.story-text li {
  padding-left: 26px;
  position: relative;
  color: var(--muted-color);
}

.story-text li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-blue);
  font-size: 1.4rem;
  line-height: 1;
}

.feature-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 111, 216, 0.12), rgba(47, 216, 208, 0.12));
  z-index: -1;
}

.feature-card h3 {
  margin: 0 0 12px;
}

.feature-card p {
  margin: 0;
  color: var(--muted-color);
}

.collections {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4));
  margin: 0 5vw;
  border-radius: 48px;
  box-shadow: var(--shadow-soft);
}

.collection-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding-bottom: 12px;
}

.collection-card {
  padding: 28px;
  border-radius: 32px;
  background: rgba(31, 33, 68, 0.85);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.collection-card img{
  max-width:100%;
  border-radius:32px;
}

/* .collection-card::before { */
  /* content: ""; */
  /* position: absolute; */
  /* inset: -40% 30% 40% -30%; */
  /* background: linear-gradient(135deg, rgba(255, 111, 216, 0.4), rgba(47, 216, 208, 0.4)); */
  /* filter: blur(50px); */
/* } */

.collection-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
}

.collection-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.85);
}

.badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-teal));
  color: var(--text-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.featured-candles {
  margin-top: -24px;
}

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

.featured-card {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-rows: 280px auto;
}

.featured-media {
  position: relative;
  overflow: hidden;
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.featured-card:hover .featured-media img {
  transform: scale(1.04);
}

.featured-copy {
  padding: 32px;
  display: grid;
  gap: 16px;
}

.featured-copy h3 {
  margin: 0;
  font-size: 1.6rem;
}

.featured-copy p {
  margin: 0;
  color: var(--muted-color);
}

.featured-infused {
  font-weight: 600;
  color: var(--text-color);
}

.workshop {
  padding-top: 40px;
}

.workshop-card {
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.45));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.workshop-copy {
  padding: 60px 48px;
}

.workshop-copy p {
  color: var(--muted-color);
  margin-bottom: 24px;
}

.schedule {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  font-weight: 600;
}

.btn-contrast {
  background: var(--text-color);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(31, 33, 68, 0.35);
}

.btn-contrast:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(31, 33, 68, 0.45);
}

.workshop-visual {
  min-height: 320px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 109, 216, 0.8), rgba(79, 172, 254, 0.4));
}

.testimonials blockquote {
  background: rgba(255, 255, 255, 0.75);
  padding: 32px;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
  color: var(--muted-color);
  margin: 0;
  position: relative;
}

.testimonials blockquote::before {
  content: "“";
  font-size: 4rem;
  color: rgba(255, 111, 216, 0.4);
  position: absolute;
  top: -20px;
  left: 20px;
}

.testimonials blockquote cite {
  display: block;
  margin-top: 16px;
  font-weight: 600;
  color: var(--text-color);
}

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

.contact {
  padding-bottom: 140px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 48px;
  padding: 56px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  box-shadow: var(--shadow-soft);
}

.contact-copy h2 {
  margin-top: 0;
}

.contact-copy p {
  color: var(--muted-color);
  margin-bottom: 24px;
}

.contact-grid {
  display: grid;
  gap: 16px;
}

.contact-grid .label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  color: rgba(31, 33, 68, 0.6);
}

.contact-grid a,
.contact-grid p {
  margin: 0;
  color: var(--text-color);
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  font-size: 0.85rem;
  color: var(--muted-color);
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(31, 33, 68, 0.15);
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-color);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 4px rgba(79, 172, 254, 0.2);
}

.site-footer {
  padding: 32px 0;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
  color: var(--muted-color);
}

.footer-content {
  display: grid;
  gap: 24px;
  align-items: center;
  justify-items: center;
  margin-bottom: 16px;
}

.footer-links,
.social {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a,
.social a {
  color: var(--muted-color);
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover,
.social a:hover {
  color: var(--accent-pink);
}

.footer-note {
  margin: 0;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .site-header {
    position: static;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 80px;
  }

  .story {
    margin: 0;
    border-radius: 32px;
  }

  .story .container {
    padding: 56px 28px;
  }

  .collections {
    margin: 0;
    border-radius: 32px;
  }

  .featured-card {
    grid-template-rows: 220px auto;
  }

  .contact-card {
    padding: 32px;
  }
}
