/* GENEVIEVE NATURAL COSMETICS — BAKUCHIOL DELUXE & VIT C */

:root {
  --yellow: #c8d62f;
  --yellow-dark: #a8b825;
  --yellow-light: #e8f0a0;
  --black: #1a1a1a;
  --gray: #666;
  --gray-light: #f7f7f5;
  --white: #ffffff;
  --cream: #faf9f6;
  --gold: #c9a227;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius: 12px;
  --transition: 0.3s ease;
}

*, *::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(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--yellow-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
}

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

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__icon {
  width: 40px;
  height: 40px;
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.logo__text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.3;
}

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

.nav__link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav__cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}

.nav__cta:hover {
  background: var(--yellow-dark);
  color: var(--black) !important;
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

/* ── Hero Banner ── */
.hero-banner {
  margin-top: 72px;
  position: relative;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 70vh;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.35) 0%, transparent 60%);
  display: flex;
  align-items: center;
}

.hero-banner__content {
  color: var(--white);
  max-width: 560px;
  padding: 0 48px;
}

.hero-banner__content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.hero-banner__content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--yellow);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--yellow-dark);
  color: var(--black);
}

/* ── Promo Banners ── */
.promo-banners { padding: 0; }

.promo-banner {
  display: block;
  position: relative;
  overflow: hidden;
}

.shop-link { cursor: pointer; }

.product-showcase__image.shop-link {
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-showcase__image.shop-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.15);
}

.promo-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.promo-banner--full { margin: 0; }

/* ── Section ── */
.section {
  padding: 100px 0;
}

.section--cream { background: var(--cream); }
.section--gray { background: var(--gray-light); }
.section--dark {
  background: var(--black);
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section__subtitle {
  color: var(--gray);
  font-size: 1.05rem;
}

.section--dark .section__subtitle { color: rgba(255,255,255,0.7); }

/* ── Product Showcase ── */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.product-showcase__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-showcase__badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.product-showcase__title {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.product-showcase__subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.product-showcase__price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.product-showcase__price span {
  font-size: 1rem;
  color: var(--gray);
  font-family: var(--font-body);
}

.product-features {
  list-style: none;
  margin-bottom: 32px;
}

.product-features li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.product-features li::before {
  content: '✓';
  color: var(--yellow-dark);
  font-weight: 700;
}

/* ── Benefits Grid ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefit-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.benefit-card:hover { transform: translateY(-4px); }

.benefit-card__icon {
  width: 64px;
  height: 64px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ── Gallery / Stories ── */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.story-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.story-card__image {
  height: 320px;
  overflow: hidden;
}

.story-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-card:hover .story-card__image img {
  transform: scale(1.05);
}

.story-card__body {
  padding: 28px;
}

.story-card__tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.story-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.story-card p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.story-card__link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.story-card__link::after {
  content: '→';
  transition: transform var(--transition);
}

.story-card:hover .story-card__link::after {
  transform: translateX(4px);
}

/* ── Ingredients ── */
.ingredients-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.ingredient-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.ingredient-item__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
  line-height: 1;
  min-width: 48px;
}

.ingredient-item h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.ingredient-item p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ── How to Use ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 auto 20px;
}

.step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 20px;
  font-style: italic;
  line-height: 1.8;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--yellow-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-card__meta {
  font-size: 0.75rem;
  color: var(--gray);
}

.reviews-summary {
  text-align: center;
  margin-bottom: 48px;
}

.reviews-summary__score {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
}

.reviews-summary__stars {
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 4px;
  margin: 8px 0;
}

.reviews-summary__count {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
}

.faq-item__question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform var(--transition);
}

.faq-item.active .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-item__answer p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ── CTA Section ── */
.cta-section {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--yellow-light) 0%, var(--cream) 100%);
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--gray);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand .logo__text { color: var(--white); }
.footer__brand .logo__icon { border-color: var(--white); color: var(--white); }

.footer__desc {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer h4 {
  color: var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer__links { list-style: none; }

.footer__links li { margin-bottom: 10px; }

.footer__links a {
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--yellow); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  color: var(--white);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.85rem;
  flex: 1;
  min-width: 280px;
}

.cookie-banner p a {
  color: var(--yellow);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
}

.cookie-banner .btn {
  padding: 10px 24px;
  font-size: 0.75rem;
}

.btn--accept {
  background: var(--yellow);
  color: var(--black);
}

.btn--decline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}

/* ── Page (subpages) ── */
.page-hero {
  margin-top: 72px;
  padding: 80px 0 60px;
  background: var(--cream);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 60px 0 100px;
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
}

.page-content h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
}

.page-content p {
  margin-bottom: 16px;
  color: var(--gray);
}

.page-content ul, .page-content ol {
  margin: 16px 0 16px 24px;
  color: var(--gray);
}

.page-content li { margin-bottom: 8px; }

/* ── Article Page ── */
.article-hero {
  margin-top: 72px;
  position: relative;
  height: 50vh;
  min-height: 400px;
  overflow: hidden;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 48px;
}

.article-hero__content {
  color: var(--white);
  max-width: 800px;
}

.article-hero__tag {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 600;
  margin-bottom: 12px;
}

.article-hero__content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.article-body p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #444;
}

.article-body h2 {
  font-size: 1.6rem;
  margin: 48px 0 16px;
}

.article-body h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}

.article-body blockquote {
  border-left: 4px solid var(--yellow);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--cream);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
}

.article-body ul {
  margin: 16px 0 24px 24px;
}

.article-body li {
  margin-bottom: 10px;
  color: #444;
}

.article-meta {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 40px;
  font-size: 0.85rem;
  color: var(--gray);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--gray);
}

.back-link:hover { color: var(--black); }

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 60px 0 100px;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 20px;
  transition: border-color var(--transition);
  background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--yellow);
}

.contact-form textarea { min-height: 140px; resize: vertical; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow);
    gap: 16px;
  }
  .burger { display: flex; }

  .product-showcase,
  .ingredients-section,
  .contact-grid { grid-template-columns: 1fr; }

  .stories-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }

  .hero-banner img { height: 50vh; min-height: 360px; }
  .hero-banner__overlay { background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 60%); align-items: flex-end; padding-bottom: 40px; }
  .hero-banner__content { padding: 0 24px; }
}
