:root {
  --bg: #f8f2e6;
  --bg-soft: #fff9ef;
  --surface: rgba(255, 255, 255, 0.55);
  --card: rgba(255, 251, 242, 0.8);
  --line: rgba(186, 146, 43, 0.18);

  --gold: #d7aa27;
  --gold-deep: #b98c14;
  --cream: #efe3bf;
  --text: #4d3a1f;
  --muted: #7d6848;

  --shadow: 0 18px 45px rgba(159, 124, 35, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 220, 135, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 235, 178, 0.28), transparent 30%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 90px 0;
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.1;
}

p {
  line-height: 1.75;
  color: var(--muted);
}

.bg-blur {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  opacity: 0.45;
  z-index: 0;
}

.blur-1 {
  width: 260px;
  height: 260px;
  top: 8%;
  left: -70px;
  background: rgba(255, 214, 102, 0.35);
}

.blur-2 {
  width: 300px;
  height: 300px;
  bottom: 8%;
  right: -90px;
  background: rgba(255, 240, 190, 0.45);
}

.sparkles {
  position: fixed;
  color: rgba(215, 170, 39, 0.55);
  font-size: 1.2rem;
  z-index: 1;
  pointer-events: none;
}

.sparkle-1 {
  top: 14%;
  left: 10%;
}

.sparkle-2 {
  top: 30%;
  right: 12%;
}

.sparkle-3 {
  bottom: 18%;
  left: 14%;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 70px 0 40px;
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 251, 242, 0.75);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--gold-deep);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.logo-wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto 22px;
  border-radius: 50%;
  padding: 10px;
  background: rgba(255, 251, 242, 0.72);
  border: 1px solid rgba(215, 170, 39, 0.15);
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.7rem);
  color: var(--gold-deep);
  margin-bottom: 16px;
}

.hero-subtitle {
  max-width: 700px;
  margin: 0 auto 28px;
  font-size: 1.08rem;
}

.hero-buttons,
.featured-buttons,
.footer-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f0c84b);
  color: white;
  box-shadow: 0 14px 28px rgba(185, 140, 20, 0.22);
}

.btn-secondary {
  background: rgba(255, 251, 242, 0.85);
  border: 1px solid var(--line);
  color: var(--gold-deep);
  box-shadow: var(--shadow);
}

.hero-card {
  margin: 42px auto 0;
  max-width: 450px;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: rgba(255, 251, 242, 0.75);
  border: 1px solid rgba(215, 170, 39, 0.16);
  box-shadow: var(--shadow);
}

.hero-card-glow {
  position: absolute;
  inset: auto 0 -30px 0;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 211, 89, 0.32), transparent 65%);
  z-index: 1;
  pointer-events: none;
}

.hero-image {
  aspect-ratio: 4 / 5;
  position: relative;
  z-index: 2;
}

.about-grid,
.featured-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.about-text h2,
.section-head h2,
.featured-text h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.mini-card {
  width: min(100%, 360px);
  padding: 34px 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 251, 242, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  text-align: center;
  font-weight: 600;
  color: var(--gold-deep);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.candle-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 251, 242, 0.82);
  border: 1px solid rgba(215, 170, 39, 0.12);
  box-shadow: var(--shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.candle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(159, 124, 35, 0.16);
}

.card-image-wrap {
  overflow: hidden;
}

.card-image-wrap img {
  aspect-ratio: 4 / 5;
  transition: transform 0.45s ease;
}

.candle-card:hover .card-image-wrap img {
  transform: scale(1.05);
}

.card-body {
  padding: 20px 18px 22px;
}

.card-body h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
  color: var(--gold-deep);
}

.featured-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: rgba(255, 251, 242, 0.8);
  border: 1px solid rgba(215, 170, 39, 0.16);
}

.featured-image img {
  aspect-ratio: 4 / 5;
  position: relative;
  z-index: 2;
}

.featured-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 211, 89, 0.32), transparent 70%);
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  z-index: 1;
  pointer-events: none;
}

.featured-text p {
  margin-bottom: 24px;
}

.footer {
  padding: 34px 0 42px;
  border-top: 1px solid rgba(215, 170, 39, 0.12);
  background: rgba(255, 251, 242, 0.55);
  position: relative;
  z-index: 2;
}

.footer-inner {
  text-align: center;
}

.footer-inner h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--gold-deep);
}

.footer-inner p {
  margin-bottom: 18px;
}

.footer-links a {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  color: var(--gold-deep);
  transition: transform 0.25s ease;
}

.footer-links a:hover {
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .about-grid,
  .featured-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-card {
    max-width: 380px;
  }

  .about-text,
  .featured-text,
  .section-head {
    text-align: center;
  }

  .featured-buttons {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .logo-wrap {
    width: 120px;
    height: 120px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-buttons,
  .featured-buttons,
  .footer-links {
    flex-direction: column;
    align-items: center;
  }

  .card-body h3 {
    font-size: 1.3rem;
  }
}