/* ═══════════════════════════════════════════════════════
   New Wave Nutrition — Custom Styles
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Navbar ── */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 249, 238, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107, 47, 91, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav-fixed.scrolled {
  box-shadow: 0 4px 30px rgba(107, 47, 91, 0.1);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #6B2F5B;
}
.nav-brand-icon { color: #6B2F5B; }
.nav-brand-text { letter-spacing: -0.01em; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #6B2F5B;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover { background: rgba(107, 47, 91, 0.08); }
.nav-cta {
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: #6B2F5B;
  border-radius: 100px;
  margin-left: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.nav-cta:hover {
  background: #58274d;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(107, 47, 91, 0.3);
}
.nav-toggle { display: none; }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fef9ee 0%, #faf0f7 50%, #fdf3d8 100%);
  overflow: hidden;
  padding: 100px 24px 0;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(107, 47, 91, 0.04) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(245, 192, 101, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(107, 47, 91, 0.08);
  color: #6B2F5B;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.hero-badge svg { opacity: 0.7; }
.hero-headline {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: #34172e;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: #6B2F5B;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #6B2F5B;
  opacity: 0.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.25s ease;
}
.btn-primary {
  color: #fff;
  background: #6B2F5B;
  box-shadow: 0 4px 20px rgba(107, 47, 91, 0.25);
}
.btn-primary:hover {
  background: #58274d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107, 47, 91, 0.35);
}
.btn-outline {
  color: #6B2F5B;
  background: transparent;
  border: 2px solid rgba(107, 47, 91, 0.25);
}
.btn-outline:hover {
  border-color: #6B2F5B;
  background: rgba(107, 47, 91, 0.05);
}
.btn-full { width: 100%; justify-content: center; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-number {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #6B2F5B;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: #6B2F5B;
  opacity: 0.6;
  font-weight: 600;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(107, 47, 91, 0.2);
}
.hero-visual {
  position: relative;
  height: 680px;
}
.hero-img-main {
  width: 100%;
  height: 560px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(107, 47, 91, 0.15);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-float {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(107, 47, 91, 0.18);
}
.hero-img-float img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-left {
  bottom: 60px;
  left: -40px;
  width: 280px;
  height: 200px;
  animation: float-slow 6s ease-in-out infinite;
}
.hero-img-right {
  top: 40px;
  right: -30px;
  width: 260px;
  height: 180px;
  animation: float-slow 7s ease-in-out infinite reverse;
}
.hero-accent-circle {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 192, 101, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  color: #fef9ee;
}
.hero-wave svg { width: 100%; height: 80px; }

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ── Section Utilities ── */
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(107, 47, 91, 0.08);
  color: #6B2F5B;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #34172e;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #6B2F5B;
  opacity: 0.7;
}

/* ── Products ── */
.products {
  background: #fef9ee;
  padding: 100px 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.product-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(107, 47, 91, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(107, 47, 91, 0.12);
}
.product-img-wrap {
  height: 240px;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 47, 91, 0.08);
  color: #6B2F5B;
  border-radius: 14px;
}
.product-card-body h3 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #34172e;
}
.product-card-body p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6B2F5B;
  opacity: 0.75;
}

/* ── About ── */
.about {
  background: #faf0f7;
  padding: 100px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(107, 47, 91, 0.12);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 260px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(107, 47, 91, 0.15);
  border: 5px solid #faf0f7;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-experience-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 130px;
  height: 130px;
  background: #6B2F5B;
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  box-shadow: 0 10px 30px rgba(107, 47, 91, 0.3);
  z-index: 2;
}
.about-exp-number {
  font-family: 'Lora', serif;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.about-exp-text {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
}
.about-experience-badge svg { opacity: 0.5; margin-top: 2px; }
.about-content { max-width: 520px; }
.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #6B2F5B;
  opacity: 0.8;
  margin-bottom: 20px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-value {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.6);
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #34172e;
}
.about-value-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 47, 91, 0.1);
  color: #6B2F5B;
  border-radius: 8px;
}

/* ── Testimonials ── */
.testimonials {
  background: #fef9ee;
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  position: relative;
  box-shadow: 0 4px 20px rgba(107, 47, 91, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(107, 47, 91, 0.1);
}
.testimonial-quote-mark {
  font-family: 'Lora', serif;
  font-size: 4rem;
  line-height: 1;
  color: #6B2F5B;
  opacity: 0.12;
  position: absolute;
  top: 16px;
  left: 28px;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #6B2F5B;
  opacity: 0.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 47, 91, 0.08);
  color: #6B2F5B;
  border-radius: 50%;
  flex-shrink: 0;
}
.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #34172e;
}
.testimonial-location {
  font-size: 0.8rem;
  color: #6B2F5B;
  opacity: 0.6;
}

/* ── Visit ── */
.visit {
  background: #faf0f7;
  padding: 100px 0;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.visit-info { display: flex; flex-direction: column; gap: 28px; }
.visit-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #6B2F5B;
  opacity: 0.75;
}
.visit-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.visit-detail {
  display: flex;
  gap: 16px;
}
.visit-detail-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 47, 91, 0.08);
  color: #6B2F5B;
  border-radius: 14px;
}
.visit-detail > div { display: flex; flex-direction: column; gap: 4px; }
.visit-detail-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6B2F5B;
  opacity: 0.55;
}
.visit-detail-value {
  font-size: 0.95rem;
  color: #34172e;
  font-weight: 600;
  line-height: 1.5;
}
.hover-underline {
  transition: color 0.2s, text-decoration 0.2s;
}
.hover-underline:hover {
  color: #6B2F5B;
  text-decoration: underline;
}
.visit-map {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(107, 47, 91, 0.12);
  min-height: 420px;
}

/* ── Contact ── */
.contact {
  background: #6B2F5B;
  padding: 100px 0;
  color: #fff;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact .section-tag { background: rgba(255,255,255,0.15); color: #fff; }
.contact .section-title { color: #fff; }
.contact .section-desc { color: rgba(255,255,255,0.7); }
.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.contact-direct-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.contact-direct-item:hover { color: #F5C065; }
.contact-form-wrap {
  background: rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Nunito', sans-serif;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.35); }
.form-input:focus {
  border-color: #F5C065;
  background: rgba(255,255,255,0.14);
}
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.btn-gold {
  color: #6B2F5B;
  background: #F5C065;
  box-shadow: 0 4px 20px rgba(245, 192, 101, 0.3);
}
.btn-gold:hover {
  background: #e8a832;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 192, 101, 0.4);
}

/* ── Form Success ── */
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 192, 101, 0.2);
  color: #F5C065;
  border-radius: 50%;
}
.form-success-title {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.form-success-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}
.hidden { display: none !important; }

/* ── Footer ── */
.footer {
  background: #34172e;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo span { color: #F5C065; }
.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-heading {
  font-family: 'Lora', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.footer-link {
  display: block;
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-link:hover { color: #F5C065; padding-left: 6px; }
.footer-address {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.footer-phone, .footer-email {
  display: block;
  font-size: 0.9rem;
  color: #F5C065;
  transition: opacity 0.2s;
}
.footer-phone:hover, .footer-email:hover { opacity: 0.8; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #6B2F5B;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(107, 47, 91, 0.3);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: #58274d; }

/* ── Mobile Menu ── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(52, 23, 46, 0.5);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #6B2F5B;
  border-radius: 12px;
  transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(107, 47, 91, 0.08); }

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 520px; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 320px; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #fef9ee;
    flex-direction: column;
    align-items: stretch;
    padding: 90px 32px 40px;
    gap: 4px;
    box-shadow: -10px 0 40px rgba(107, 47, 91, 0.15);
    transition: right 0.35s ease;
    z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-menu.open .mobile-overlay { pointer-events: auto; }
  .nav-link { padding: 14px 16px; font-size: 1rem; border-radius: 12px; }
  .nav-link:hover { background: rgba(107, 47, 91, 0.08); }
  .nav-cta {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    display: block;
  }
  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .hero { padding-top: 90px; min-height: auto; padding-bottom: 80px; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form-wrap { padding: 28px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section-container { padding: 0 16px; }
  .products, .about, .testimonials, .visit, .contact { padding: 72px 0; }
}
