:root {
  --purple: #6b2fa0;
  --purple-dark: #4a1f70;
  --orange: #e85a0f;
  --orange-light: #ff7a35;
  --cream: #fff8f0;
  --red: #c0392b;
  --text-dark: #1a0a00;
  --text-mid: #4a3020;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Nunito", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 3rem;
}
.nav-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-right: 50px;
}

.nav-links a {
  color: var(--purple);

  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--orange-light);
}

.hero {
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--purple-dark) 0%,
    var(--purple) 45%,
    var(--orange) 100%
  );
  display: flex;
  align-items: center;
  padding: 6rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(255, 120, 50, 0.25) 0%,
    transparent 60%
  );
}
.hero-content {
  flex: 1;
  z-index: 2;
  max-width: 560px;
}
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 0.35rem 1.2rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  animation: fadeUp 0.6s 0.15s ease both;
}
.hero h1 span {
  color: var(--orange-light);
  font-style: italic;
}
.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.2rem;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.45s ease both;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232, 90, 15, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 90, 15, 0.6);
}
.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}
.hero-image {
  flex: 0 0 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  animation: floatIn 0.8s 0.3s ease both;
}
.hero-image img {
  width: 340px;
  border-radius: 24px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 8px rgba(255, 255, 255, 0.08);
  transform: rotate(3deg);
}


.section {
  padding: 6rem 3rem;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-tag {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--purple-dark);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.section-body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 680px;
}


.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.vm-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  border-left: 5px solid var(--purple);
  box-shadow: 0 4px 24px rgba(107, 47, 160, 0.08);
  transition: transform 0.25s;
}
.vm-card:hover {
  transform: translateY(-4px);
}
.vm-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--purple);
  margin-bottom: 0.8rem;
}
.vm-card p {
  color: var(--text-mid);
  line-height: 1.7;
}


.product-section {
  background: var(--purple-dark);
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-img img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.product-text .section-title {
  color: #fff;
}
.product-text .section-tag {
  color: var(--orange-light);
}
.product-text .section-body {
  color: rgba(255, 255, 255, 0.8);
}
.product-features {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.5;
}
.feature-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #fff;
  font-weight: 700;
}


.goals-section {
  background: #fff;
}
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.goal-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  border-top: 4px solid var(--orange);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.goal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(232, 90, 15, 0.15);
}
.goal-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}
.goal-card h4 {
  font-family: "Playfair Display", serif;
  color: var(--purple);
  font-size: 1.1rem;
}



.buy-section {
   background: linear-gradient(
    135deg,
    var(--purple-dark) 0%,
    var(--purple) 45%,
    var(--orange) 100%
  );
}
.buy-section .section-title {
  color: #fff;
}
.buy-section .section-tag {
  color: var(--orange-light);
}
.stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.store-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s;
}
.store-card:hover {
  background: rgba(255, 255, 255, 0.18);
}
.store-icon {
  font-size: 1.8rem;
}
.store-card span {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}


 .contact-section {
    background: var(--cream);
    padding: 1rem 1rem;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .contact-left,
  .contact-right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    background: var(--purple);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.25s ease;
  }

  .contact-item:hover .contact-icon {
    transform: translateY(-4px);
  }

  .contact-item h4 {
    font-weight: 700;
    color: var(--purple);
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
  }

  .contact-item p,
  .contact-item a {
    color: var(--text-mid);
    font-size: 1.05rem;
    line-height: 1.6;
    text-decoration: none;
  }

  .contact-item a:hover,
  .contact-item a:focus {
    color: var(--orange);
    text-decoration: underline;
  }

  .hours-table {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  }

  .hours-table h4 {
    color: var(--purple);
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }

  .hours-table dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.6rem 1.5rem;
  }

  .hours-table dt {
    font-weight: 600;
    color: var(--text-mid);
  }

  .hours-table dd {
    margin: 0;
    color: var(--text-mid);
  }

  .info-blurb {
    background: rgba(var(--purple-rgb), 0.05);
    padding: 1.8rem;
    border-radius: 12px;
    border-left: 5px solid var(--purple);
  }

  

footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 2rem 3rem;
  font-size: 0.9rem;
}
footer strong {
  color: rgba(255, 255, 255, 0.85);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatIn {
  from {
    opacity: 0;
    transform: rotate(3deg) translateX(40px);
  }
  to {
    opacity: 1;
    transform: rotate(3deg) translateX(0);
  }
}


.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

  @media (min-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr 1fr;
    }

    .contact-left {
      order: 1;
    }

    .contact-right {
      order: 2;
    }
  }

  @media (max-width: 767px) {
    .contact-right {
      text-align: center;
    }
  }

@media (max-width: 820px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 5rem 1.5rem 3rem;
  }
  .hero-image {
    flex: none;
    margin-top: 2rem;
  }
  .hero-image img {
    width: 240px;
  }
  .vm-grid,
  .product-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  nav {
    padding: 0.8rem 1.5rem;
  }
  .nav-links {
    gap: 1rem;
  }
  .section {
    padding: 4rem 1.5rem;
  }
  .hero-btns {
    justify-content: center;
  }
}

