/* LuluTox UK — Minimal Wellness Lifestyle */
/* Palette: Sage #8B9E7E, Cream #F5F0EB, Warm White #FAFAF7, Deep Forest #3A4A3A, Soft Peach #E8D5C4, Muted Gold #C9B99A */

:root {
  --sage: #8B9E7E;
  --sage-light: #A8B89E;
  --sage-dark: #6B7E5E;
  --cream: #F5F0EB;
  --warm-white: #FAFAF7;
  --forest: #3A4A3A;
  --peach: #E8D5C4;
  --gold: #C9B99A;
  --text: #3A3A3A;
  --text-light: #6A6A6A;
  --border: #E0DDD8;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.25;
  color: var(--forest);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1rem; }

a {
  color: var(--sage-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--forest); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- HEADER / NAV --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.05em;
}
.logo span { color: var(--sage); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--sage);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--sage) !important;
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-size: 0.82rem !important;
  letter-spacing: 0.1em;
  transition: background 0.3s !important;
}
.nav-cta:hover { background: var(--sage-dark) !important; }
.nav-cta::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  margin: 5px 0;
  transition: 0.3s;
}

/* --- HERO --- */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  overflow: hidden;
}

.hero-content {
  padding: 4rem 2rem 4rem 4rem;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--sage);
  border: 1px solid var(--sage-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-image {
  height: 100vh;
  min-height: 600px;
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn--primary {
  background: var(--sage);
  color: #fff;
}
.btn--primary:hover {
  background: var(--sage-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139, 158, 126, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--sage-dark);
  border: 1.5px solid var(--sage);
}
.btn--outline:hover {
  background: var(--sage);
  color: #fff;
}

/* --- PHILOSOPHY SECTION --- */
.philosophy {
  padding: 7rem 0;
  background: var(--cream);
}

.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-image {
  border-radius: 8px;
  overflow: hidden;
}
.philosophy-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.philosophy-text h2 {
  margin-bottom: 1.5rem;
}
.philosophy-text p {
  color: var(--text-light);
  font-size: 1.02rem;
}

/* --- RITUAL STRIP --- */
.ritual-strip {
  padding: 5rem 0;
  text-align: center;
}

.ritual-strip h2 {
  margin-bottom: 1rem;
}
.ritual-strip .subtitle {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 3.5rem;
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.ritual-step {
  text-align: center;
  padding: 2rem;
}

.ritual-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--sage-dark);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.ritual-step h3 {
  margin-bottom: 0.8rem;
}
.ritual-step p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- INGREDIENTS SECTION --- */
.ingredients {
  padding: 7rem 0;
  background: var(--forest);
  color: var(--cream);
}

.ingredients h2 {
  color: var(--cream);
  text-align: center;
  margin-bottom: 1rem;
}
.ingredients .subtitle {
  text-align: center;
  color: var(--sage-light);
  max-width: 550px;
  margin: 0 auto 3.5rem;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ingredients-image {
  border-radius: 8px;
  overflow: hidden;
}
.ingredients-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.ingredient-list {
  list-style: none;
}
.ingredient-list li {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ingredient-list li:last-child { border-bottom: none; }

.ingredient-icon {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sage-light);
  flex-shrink: 0;
  margin-top: 8px;
}

.ingredient-list strong {
  display: block;
  color: #fff;
  margin-bottom: 0.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.05rem;
}
.ingredient-list span {
  font-size: 0.9rem;
  color: var(--sage-light);
  line-height: 1.6;
}

/* --- LIFESTYLE GALLERY --- */
.gallery {
  padding: 7rem 0;
}
.gallery h2 {
  text-align: center;
  margin-bottom: 3.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item .caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(58,74,58,0.7));
  color: #fff;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover .caption { opacity: 1; }

/* --- TESTIMONIALS --- */
.testimonials {
  padding: 7rem 0;
  background: var(--cream);
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.85rem;
  color: var(--sage-dark);
  font-weight: 600;
}

/* --- PRICING / ORDER SECTION --- */
.order-section {
  padding: 7rem 0;
}
.order-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.order-section .subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 3.5rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.pricing-card.featured {
  border-color: var(--sage);
  box-shadow: 0 8px 32px rgba(139,158,126,0.2);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: #fff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1.2rem;
  border-radius: 100px;
}

.pricing-card h3 {
  margin-bottom: 0.5rem;
}
.pricing-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--forest);
  margin-bottom: 0.3rem;
}
.pricing-card .price-note {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.pricing-card .price-features {
  list-style: none;
  margin-bottom: 2rem;
  text-align: left;
}
.pricing-card .price-features li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
.pricing-card .price-features li:last-child { border: none; }
.pricing-card .price-features li::before {
  content: '\2713';
  color: var(--sage);
  margin-right: 0.6rem;
  font-weight: 700;
}

/* --- ORDER FORM --- */
.order-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.order-form-wrap h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--warm-white);
  transition: border-color 0.3s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
}

.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 1.5rem 0;
}
.consent-group input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--sage);
}
.consent-group label {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.form-submit {
  text-align: center;
  margin-top: 1.5rem;
}
.form-submit .btn { width: 100%; max-width: 320px; }

/* --- FAQ --- */
.faq {
  padding: 7rem 0;
  background: var(--cream);
}
.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-size: 1.05rem;
  font-family: 'Playfair Display', serif;
  color: var(--forest);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--sage);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}
.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--forest);
  color: var(--sage-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--sage-light);
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: var(--sage-light);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-col ul a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  margin: 0;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: var(--sage-light);
}
.footer-legal a:hover { color: #fff; }

/* --- INNER PAGES --- */
.page-hero {
  padding: 10rem 0 4rem;
  background: var(--cream);
  text-align: center;
}
.page-hero h1 { margin-bottom: 0.8rem; }
.page-hero p {
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto;
}

.page-content {
  padding: 4rem 0 6rem;
}
.page-content h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.4rem;
}
.page-content h3 {
  margin: 2rem 0 0.8rem;
}
.page-content ul, .page-content ol {
  margin: 1rem 0 1rem 1.5rem;
  color: var(--text-light);
}
.page-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.page-content p {
  color: var(--text-light);
}
.page-content a {
  text-decoration: underline;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--forest);
  color: var(--cream);
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
.cookie-banner.show { display: flex; }
.cookie-banner p {
  font-size: 0.88rem;
  margin: 0;
  flex: 1;
  min-width: 280px;
}
.cookie-banner a { color: var(--sage-light); text-decoration: underline; }
.cookie-btns {
  display: flex;
  gap: 0.8rem;
}
.cookie-btn {
  padding: 0.6rem 1.6rem;
  border-radius: 100px;
  font-size: 0.82rem;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: inherit;
  transition: 0.3s;
}
.cookie-accept {
  background: var(--sage);
  color: #fff;
}
.cookie-accept:hover { background: var(--sage-dark); }
.cookie-decline {
  background: transparent;
  color: var(--sage-light);
  border: 1px solid var(--sage-light);
}
.cookie-decline:hover { background: rgba(255,255,255,0.1); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 6rem 2rem 3rem; text-align: center; }
  .hero-subtitle { margin: 0 auto 2.5rem; }
  .hero-image { height: 50vh; min-height: 350px; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 2rem; }
  .ingredients-grid { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 4rem; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--warm-white);
    padding: 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.2rem;
  }
  .nav-toggle { display: block; }
  .ritual-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 260px; }
  .form-row { grid-template-columns: 1fr; }
  .order-form-wrap { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- UTILITY --- */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
