@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --navy-deep: #0A1628;
  --navy-primary: #1A237E;
  --navy-accent: #0D47A1;
  --navy-light: #1565C0;
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --cream: #F5F0E8;
  --cream-light: #FAF7F2;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text-muted: #5A5A7A;
  --text-light: #8A8AA0;
  --sage: #7A9E7E;
  --sage-light: #E8F0E9;
  --border: rgba(26, 35, 126, 0.08);
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy-primary);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

a {
  color: var(--navy-accent);
  text-decoration: none;
  transition: var(--transition);
}
a:hover { color: var(--gold); }

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

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

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy-primary);
  letter-spacing: 0.05em;
  text-transform: lowercase;
}
.logo span { color: var(--gold); }

.nav-desktop { display: flex; gap: 32px; align-items: center; }
.nav-desktop a {
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-desktop a:hover { color: var(--navy-primary); }
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a.active { color: var(--navy-primary); }
.nav-desktop a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-primary);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-mobile.open { display: flex; opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--navy-primary);
}
.nav-mobile a:hover { color: var(--gold); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--navy-primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--navy-primary);
  border: 1.5px solid var(--navy-primary);
}
.btn-outline:hover {
  background: var(--navy-primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-primary) 40%, var(--navy-accent) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream-light), transparent);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { color: var(--cream); }
.hero-content .eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-content .eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 300;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-image img {
  max-height: 500px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
  animation: floatUp 6s ease-in-out infinite;
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 0;
}
.section-sm { padding: 60px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-header .eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ========== CARDS ========== */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card { text-align: center; }
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-primary), var(--navy-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.92rem; }

/* ========== PRODUCT ========== */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.product-image-wrap {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-primary));
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-image-wrap::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 70%, rgba(201, 168, 76, 0.1), transparent 50%);
}
.product-image-wrap img {
  position: relative;
  z-index: 1;
  max-height: 400px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.product-info h2 { margin-bottom: 16px; }
.product-info > p { color: var(--text-muted); margin-bottom: 24px; }

.ingredient-list {
  list-style: none;
  margin-bottom: 32px;
}
.ingredient-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.ingredient-list li:last-child { border-bottom: none; }
.ingredient-list .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

.price-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--navy-primary);
  font-weight: 600;
  margin-bottom: 24px;
}
.price-tag small {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
}

/* ========== FORMS ========== */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--navy-accent);
  box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ========== FAQ ========== */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  border: none;
  background: none;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover { background: rgba(26, 35, 126, 0.02); }
.faq-question .icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== CONTACT ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-primary));
  border-radius: var(--radius-lg);
  padding: 48px;
  color: var(--cream);
}
.contact-info-card h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.contact-info-card p {
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail .icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-detail .info { font-size: 0.95rem; }
.contact-detail .info strong {
  display: block;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-detail .info a { color: var(--gold-light); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--border);
}

/* ========== ROUTINE ========== */
.routine-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}
.routine-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--navy-accent));
}
.routine-step {
  position: relative;
  padding-left: 72px;
  margin-bottom: 40px;
}
.routine-step .step-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream-light);
  border: 3px solid var(--gold);
  z-index: 1;
}
.routine-step .step-time {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.routine-step h3 { margin-bottom: 8px; }
.routine-step p { color: var(--text-muted); font-size: 0.95rem; }
.routine-step .product-mention {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 6px 14px;
  background: var(--sage-light);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--sage);
  font-weight: 400;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-primary));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.08), transparent 60%);
}
.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero p {
  color: rgba(245, 240, 232, 0.7);
  max-width: 540px;
  margin: 16px auto 0;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

/* ========== PHILOSOPHY ========== */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.philosophy-card {
  padding: 48px;
}
.philosophy-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}
.philosophy-card h3 { margin-bottom: 12px; }
.philosophy-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ========== FOOTER ========== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(245, 240, 232, 0.6);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
  display: inline-block;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--gold); }

.footer-disclaimer {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 24px;
}
.footer-disclaimer p {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.35);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.3);
}

/* ========== COOKIE MODAL ========== */
.cookie-modal {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  display: none;
  border: 1px solid var(--border);
  animation: slideUp 0.5s ease;
}
.cookie-modal.show { display: block; }
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.cookie-modal p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.cookie-actions { display: flex; gap: 12px; }
.cookie-actions .btn { padding: 10px 24px; font-size: 0.8rem; }

/* ========== SUCCESS PAGE ========== */
.success-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.success-card {
  max-width: 520px;
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--white);
}
.success-card h1 { margin-bottom: 16px; font-size: 2.2rem; }
.success-card p { color: var(--text-muted); margin-bottom: 32px; }

/* ========== LEGAL ========== */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.legal-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
}
.legal-content h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
}
.legal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.legal-content ul {
  margin: 12px 0 20px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.legal-content ul li { margin-bottom: 8px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin: 0 auto 40px; }
  .hero-content .eyebrow { justify-content: center; }
  .hero-image { margin-top: 40px; }
  .hero-image img { max-height: 350px; }
  .features-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .product-showcase { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 480px) {
  .hero { padding-top: 70px; }
  .section { padding: 60px 0; }
  .card { padding: 28px; }
  .contact-info-card, .contact-form-card { padding: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-modal { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
  .cookie-actions { flex-direction: column; }
}

/* ========== 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);
}

/* Stagger children */
.stagger-children .fade-in:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-in:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-in:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-in:nth-child(4) { transition-delay: 0.3s; }
