/* ELORA Landing — premium skincare, mobile-first */

:root {
  --cream: #faf7f2;
  --cream-dark: #f0ebe3;
  --champagne: #e8dcc8;
  --gold: #c9a227;
  --gold-soft: #e6cf7a;
  --gold-glow: rgba(201, 162, 39, 0.45);
  --plum: #5c0d2e;
  --plum-deep: #3a061c;
  --plum-muted: #7a2344;
  --ink: #2a1a22;
  --muted: #5c4a52;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(201, 162, 39, 0.35);
  --shadow-soft: 0 18px 50px rgba(58, 6, 28, 0.08);
  --shadow-card: 0 12px 40px rgba(42, 26, 34, 0.06);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Outfit", system-ui, -apple-system, Segoe UI, sans-serif;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--plum);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

.container--narrow {
  width: min(720px, 100% - 2rem);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(92, 13, 46, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.5rem;
}

.brand__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
  position: relative;
  transition: color 0.25s var(--ease-out);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}

.nav a:hover {
  color: var(--plum);
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

.btn__icon {
  flex-shrink: 0;
}

.btn--header {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  background: var(--plum);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn--header:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(92, 13, 46, 0.25);
}

.btn--primary {
  background: linear-gradient(135deg, #1fa855 0%, #128c43 100%);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 28px rgba(18, 140, 67, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 40px rgba(18, 140, 67, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.btn--ghost {
  background: transparent;
  color: var(--plum);
  border-color: rgba(92, 13, 46, 0.2);
}

.btn--ghost:hover {
  background: rgba(92, 13, 46, 0.04);
  border-color: var(--plum);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--plum);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn--xl {
  padding: 1.05rem 1.75rem;
  font-size: 1.05rem;
}

/* Hero */

.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background: radial-gradient(ellipse 80% 60% at 70% 0%, var(--gold-glow), transparent 55%),
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(232, 220, 200, 0.9), transparent 50%);
  pointer-events: none;
  animation: glow-shift 14s ease-in-out infinite alternate;
}

@keyframes glow-shift {
  from {
    opacity: 0.85;
    transform: scale(1);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1.05fr;
  }
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum-muted);
  font-weight: 600;
  margin: 0 0 1rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 5.5vw, 3.35rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--plum);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.text-shine {
  background: linear-gradient(110deg, var(--plum) 0%, var(--gold) 45%, #f4e4a8 55%, var(--gold) 65%, var(--plum) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 6s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.hero__lead {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 36ch;
}

.hero__lead strong {
  color: var(--plum);
  font-weight: 600;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--plum-muted));
  box-shadow: 0 0 10px var(--gold-glow);
}

.hero__visual {
  position: relative;
}

.hero__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft), 0 0 0 1px var(--glass-border);
  background: linear-gradient(160deg, var(--white), var(--cream-dark));
}

.hero__frame img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transition: transform 0.6s var(--ease-out);
}

.hero__frame:hover img {
  transform: scale(1.03);
}

.hero__float-card {
  position: absolute;
  bottom: 8%;
  left: -4%;
  max-width: min(240px, 55vw);
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-card);
  animation: float-y 5s ease-in-out infinite;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (min-width: 900px) {
  .hero__float-card {
    left: -8%;
  }
}

.hero__float-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--plum-muted);
  font-weight: 600;
}

.hero__float-text {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.45;
}

/* Sections */

.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section--cream {
  background: var(--cream);
}

.section--plum {
  background: linear-gradient(165deg, var(--plum-deep) 0%, var(--plum) 45%, #4a0f28 100%);
  color: rgba(255, 255, 255, 0.92);
}

.section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section__head--light .section__subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 700;
  color: var(--plum);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.section--plum .section__title {
  color: var(--white);
}

.section__title--left {
  text-align: left;
}

.section__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Cards benefits */

.cards {
  display: grid;
  gap: 1.25rem;
}

.cards--benefits {
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .cards--benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .cards--benefits {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.2);
  box-shadow: var(--shadow-card);
}

.card--lift {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.card--lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(58, 6, 28, 0.1);
  border-color: rgba(201, 162, 39, 0.45);
}

.card__icon {
  color: var(--plum);
  margin-bottom: 0.75rem;
}

.card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--plum);
}

.card__text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Split */

.section--split {
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.split__media {
  position: relative;
}

.split__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5 / 5.5;
}

.split__caption {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
}

.split__caption p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
}

.glass-panel {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: var(--shadow-card);
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.lead em {
  color: var(--plum);
  font-style: italic;
  font-family: var(--font-serif);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 12px var(--gold-glow);
}

/* Vitamin cards */

.cards--vitamin {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .cards--vitamin {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .cards--vitamin {
    grid-template-columns: repeat(4, 1fr);
  }
}

.glass-card {
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 0.35s var(--ease-out), background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.glass-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(230, 207, 122, 0.45);
}

.glass-card__icon {
  color: var(--gold-soft);
  margin-bottom: 0.65rem;
}

.glass-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 0.45rem;
  color: var(--white);
}

.glass-card__text {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

/* Steps */

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(92, 13, 46, 0.08);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--plum-muted));
  opacity: 0.85;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(58, 6, 28, 0.08);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--plum);
  border: 1px solid rgba(201, 162, 39, 0.5);
  margin-bottom: 0.75rem;
  background: linear-gradient(145deg, rgba(230, 207, 122, 0.25), transparent);
}

.step__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--plum);
  margin: 0 0 0.4rem;
}

.step__text {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* Trust */

.section--trust {
  background: var(--cream);
}

.trust-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .trust-grid {
    grid-template-columns: 0.9fr 1.4fr;
    align-items: start;
  }
}

.trust-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem;
}

.trust-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--plum);
  min-width: 88px;
}

.trust-icon svg {
  color: var(--plum-muted);
}

.reviews {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .reviews {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review {
  margin: 0;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(201, 162, 39, 0.18);
  font-size: 0.92rem;
  color: var(--muted);
}

.review p {
  margin: 0 0 0.75rem;
}

.review footer {
  font-size: 0.8rem;
  color: var(--plum-muted);
  font-weight: 500;
}

/* FAQ */

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq__item {
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(92, 13, 46, 0.08);
  padding: 0 1rem;
  box-shadow: var(--shadow-card);
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--plum);
  padding: 1rem 0;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0.85rem;
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.25s var(--ease-out);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Final CTA */

.final-cta {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: linear-gradient(180deg, var(--plum-deep), var(--plum));
  color: var(--white);
  overflow: hidden;
}

.final-cta__shine {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% -10%, rgba(230, 207, 122, 0.35), transparent 55%);
  pointer-events: none;
}

.final-cta__inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.final-cta__text {
  margin: 0 0 1.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.final-cta__note {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
}

/* Footer */

.site-footer {
  padding: 2rem 0 calc(5rem + env(safe-area-inset-bottom));
  background: var(--cream-dark);
  border-top: 1px solid rgba(92, 13, 46, 0.06);
}

@media (min-width: 768px) {
  .site-footer {
    padding-bottom: 2rem;
  }
}

.footer__inner {
  text-align: center;
}

.footer__brand {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--plum);
  margin: 0 0 0.5rem;
}

.footer__legal {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 520px;
  margin-inline: auto;
}

/* WhatsApp FAB */

.wa-fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 100;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #25d366, #128c43);
  color: var(--white);
  box-shadow: 0 10px 35px rgba(18, 140, 67, 0.45);
  text-decoration: none;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 45px rgba(18, 140, 67, 0.55);
}

.wa-fab__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: pulse-ring 2.5s ease-out infinite;
  pointer-events: none;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .wa-fab {
    width: 62px;
    height: 62px;
    bottom: max(1.5rem, env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero__glow,
  .text-shine,
  .hero__float-card,
  .wa-fab__pulse {
    animation: none;
  }

  .btn--primary:hover,
  .btn--ghost:hover,
  .btn--header:hover,
  .btn--secondary:hover,
  .card--lift:hover,
  .glass-card:hover,
  .step:hover,
  .hero__frame:hover img,
  .wa-fab:hover {
    transform: none;
  }
}
