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

:root {
  --pearl: #F0EDE8;
  --pearl-light: #F7F5F2;
  --nude: #D4C5B5;
  --nude-light: #E8DDD3;
  --nude-dark: #B8A696;
  --champagne: #C9B99A;
  --champagne-dark: #A89468;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --text-dark: #1E1E1E;
  --text-medium: #5A5A5A;
  --text-light: #8A8A8A;
  --white: #FFFFFF;
  --overlay: rgba(30, 30, 30, 0.7);
  --gold-accent: #C4A265;
  --border-subtle: rgba(180, 160, 130, 0.25);
  --shadow-soft: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.08);
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', 'Helvetica Neue', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--pearl-light);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { font-size: 0.95rem; color: var(--text-medium); margin-bottom: 1rem; }

.label-text {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne-dark);
  font-weight: 600;
}

/* ─── Layout ─── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--pearl);
}
.btn-primary:hover {
  background: var(--charcoal-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-secondary:hover {
  background: var(--charcoal);
  color: var(--pearl);
}

.btn-gold {
  background: var(--gold-accent);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--champagne-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(196,162,101,0.3);
}

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

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.04em;
}
.logo span { color: var(--gold-accent); }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-medium);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-accent);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--charcoal); }
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--pearl-light);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: var(--transition);
}
.mobile-menu.open { display: flex; opacity: 1; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--charcoal);
}
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* ─── Hero ─── */
.hero {
  margin-top: 72px;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--pearl) 0%, var(--nude-light) 50%, var(--pearl-light) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,162,101,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid var(--gold-accent);
  border-radius: 2px;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-accent);
  font-weight: 600;
}
.hero-content h1 {
  margin-bottom: 20px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-accent);
}
.hero-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image img {
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.1));
}
.hero-image::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.08) 0%, transparent 70%);
}

/* ─── Trust Bar ─── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-medium);
  font-weight: 500;
}
.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-accent);
}

/* ─── Cards ─── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--pearl);
  margin-bottom: 20px;
  color: var(--gold-accent);
}
.card h3 { margin-bottom: 12px; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── Section Header ─── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-header .label-text { margin-bottom: 12px; display: block; }
.section-header h2 { margin-bottom: 16px; }

/* ─── Divider ─── */
.divider {
  width: 60px;
  height: 1.5px;
  background: var(--gold-accent);
  margin: 0 auto 20px;
}

/* ─── Steps ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  counter-increment: step;
}
.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--nude);
  line-height: 1;
  margin-bottom: 16px;
}
.step-card h4 { margin-bottom: 10px; }
.step-card p { font-size: 0.88rem; }

/* ─── Form ─── */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(196,162,101,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.order-form {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 500px;
}
.order-form h3 { margin-bottom: 24px; text-align: center; }

.price-display {
  text-align: center;
  padding: 20px;
  background: var(--pearl);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.price-display .price {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--charcoal);
}
.price-display .price-note {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ─── FAQ ─── */
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--charcoal);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 4px 0;
}
.faq-question .icon {
  font-size: 1.4rem;
  transition: var(--transition);
  color: var(--gold-accent);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding-top: 12px;
}
.faq-answer p { font-size: 0.9rem; }

/* ─── Footer ─── */
.site-footer {
  background: var(--charcoal);
  color: var(--nude-light);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { color: var(--pearl); margin-bottom: 16px; display: block; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }

.footer-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pearl);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--gold-accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal a:hover { color: var(--gold-accent); }

.medical-disclaimer {
  background: rgba(0,0,0,0.2);
  padding: 20px 0;
  margin-top: 0;
}
.medical-disclaimer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

/* ─── Cookie Modal ─── */
.cookie-modal {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.1);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
  border-top: 1px solid var(--border-subtle);
}
.cookie-modal.show { display: block; }
.cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-medium);
  flex: 1;
}
.cookie-inner a { color: var(--gold-accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btns .btn { padding: 10px 24px; font-size: 0.72rem; }

/* ─── Page Header (inner pages) ─── */
.page-header {
  margin-top: 72px;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--pearl) 0%, var(--nude-light) 100%);
  text-align: center;
  position: relative;
}
.page-header .label-text { margin-bottom: 12px; display: block; }
.page-header h1 { margin-bottom: 16px; }
.page-header p { max-width: 560px; margin: 0 auto; }

/* ─── Contact Info ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-item:last-child { border-bottom: none; }
.contact-item svg { flex-shrink: 0; color: var(--gold-accent); margin-top: 2px; }
.contact-item h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-item p { font-size: 0.88rem; margin: 0; }

/* ─── Product Detail ─── */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-image-wrap {
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-image-wrap img {
  max-height: 420px;
  object-fit: contain;
}

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

/* ─── Success Page ─── */
.success-wrap {
  margin-top: 72px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}
.success-box {
  max-width: 520px;
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--gold-accent);
}
.success-box h1 { margin-bottom: 16px; font-size: 2rem; }
.success-box p { margin-bottom: 32px; }

/* ─── Legal Pages ─── */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 36px 0 16px;
}
.legal-content h3 {
  font-size: 1.15rem;
  margin: 24px 0 12px;
}
.legal-content p, .legal-content li {
  font-size: 0.9rem;
  line-height: 1.8;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content li { margin-bottom: 6px; }

/* ─── Responsive ─── */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin: 0 auto 32px; }
  .hero-image { margin-top: 40px; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { min-height: auto; padding: 60px 0; }
  .order-form { padding: 28px 20px; }
  .cookie-inner { flex-direction: column; text-align: center; }
}
