/* =========================================================
   Aurolika — Wellness Informational Project
   Palette: Light · Sand · Silver · Gold · Terracotta
   ========================================================= */

:root {
  /* Core palette */
  --c-light:      #faf7f2;
  --c-light-2:    #f3ede3;
  --c-sand:       #e7d8c1;
  --c-sand-deep:  #cdb594;
  --c-silver:     #c9ccd1;
  --c-silver-2:   #9fa4ab;
  --c-gold:       #c9a24b;
  --c-gold-soft:  #e2c789;
  --c-terra:      #b56a4a;
  --c-terra-deep: #8f4f34;

  /* Functional */
  --c-ink:        #2c2620;
  --c-ink-soft:   #5b5247;
  --c-line:       #e3dac9;
  --c-card:       #fffdf9;

  --grad-hero: linear-gradient(135deg, rgba(231,216,193,0.92) 0%, rgba(201,162,75,0.42) 55%, rgba(181,106,74,0.55) 100%);
  --grad-soft: linear-gradient(160deg, var(--c-light) 0%, var(--c-light-2) 100%);
  --grad-gold: linear-gradient(120deg, var(--c-gold) 0%, var(--c-gold-soft) 100%);

  --shadow-sm: 0 2px 10px rgba(44,38,32,0.06);
  --shadow-md: 0 14px 40px rgba(44,38,32,0.12);
  --radius:    18px;
  --radius-sm: 11px;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Mulish", "Segoe UI", system-ui, sans-serif;

  --maxw: 1180px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--grad-soft);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--c-ink);
  letter-spacing: 0.2px;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.45rem; }
p  { color: var(--c-ink-soft); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-terra);
  font-weight: 700;
  margin-bottom: 14px;
}
.lead { font-size: 1.12rem; max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 14px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary {
  background: var(--grad-gold);
  color: #43340f;
  box-shadow: 0 8px 22px rgba(201,162,75,0.34);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(201,162,75,0.42); }
.btn-outline {
  background: transparent;
  color: var(--c-terra-deep);
  border: 1.5px solid var(--c-terra);
}
.btn-outline:hover { background: var(--c-terra); color: #fff; transform: translateY(-3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,247,242,0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  display: flex; align-items: center; gap: 10px;
}
.brand .dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--grad-gold);
  box-shadow: 0 0 0 4px rgba(201,162,75,0.18);
}
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 0.95rem; font-weight: 600; color: var(--c-ink-soft);
  position: relative; padding: 4px 0; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--c-gold); transition: width .25s;
}
.nav-links a:hover { color: var(--c-ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--c-terra-deep); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.menu-toggle span {
  width: 26px; height: 2.5px; background: var(--c-ink); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background: url("../img/hero.jpg") center/cover no-repeat;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad-hero);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(250,247,242,0.95), transparent 45%);
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }
.hero h1 { color: #36281a; }
.hero h1 span { color: var(--c-terra-deep); font-style: italic; }
.hero p { color: #4a3c2c; font-size: 1.18rem; margin: 22px 0 32px; max-width: 52ch; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Intro ---------- */
.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.split img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.intro-points { margin-top: 26px; display: grid; gap: 18px; }
.point {
  display: flex; gap: 14px; align-items: flex-start;
}
.point .ic {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 12px;
  background: var(--c-light-2); border: 1px solid var(--c-line);
  display: grid; place-items: center; color: var(--c-terra); font-weight: 800;
  font-family: var(--font-display); font-size: 1.2rem;
}
.point h4 { font-family: var(--font-body); font-weight: 800; font-size: 1.02rem; margin-bottom: 2px; }
.point p { font-size: 0.96rem; margin: 0; }

/* ---------- Section heads ---------- */
.sec-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.sec-head.left { margin-left: 0; text-align: left; }

/* ---------- Product ---------- */
.product-wrap { background: var(--c-light-2); }
.product-card {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0;
  background: var(--c-card); border: 1px solid var(--c-line);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md);
  max-width: 940px; margin: 0 auto;
}
.product-media {
  background: radial-gradient(circle at 50% 40%, var(--c-sand) 0%, var(--c-light-2) 75%);
  display: grid; place-items: center; padding: 40px;
}
.product-media img { max-height: 320px; width: auto; filter: drop-shadow(0 18px 30px rgba(143,79,52,0.22)); }
.product-body { padding: 44px 42px; }
.product-body .tag {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-silver-2); font-weight: 700;
}
.product-body h3 { font-size: 2rem; margin: 8px 0 14px; }
.product-body .price-note {
  display: inline-block; margin: 18px 0; font-size: 0.85rem;
  color: var(--c-ink-soft); background: var(--c-light-2);
  padding: 6px 14px; border-radius: 999px; border: 1px solid var(--c-line);
}
.product-features { display: grid; gap: 10px; margin: 16px 0 26px; }
.product-features li { display: flex; gap: 10px; align-items: center; font-size: 0.96rem; color: var(--c-ink-soft); }
.product-features li::before { content: "—"; color: var(--c-gold); font-weight: 800; }

/* ---------- Trust ---------- */
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.trust-card {
  background: var(--c-card); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 34px 28px; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.trust-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.trust-card .num {
  font-family: var(--font-display); font-size: 2.6rem; color: var(--c-terra);
  font-weight: 700; line-height: 1;
}
.trust-card h4 { font-family: var(--font-body); font-weight: 800; margin: 14px 0 8px; }
.trust-card p { font-size: 0.94rem; margin: 0; }

/* ---------- Band / CTA ---------- */
.band {
  background: var(--grad-gold);
  border-radius: var(--radius); padding: 56px 44px; text-align: center;
  box-shadow: var(--shadow-md);
}
.band h2 { color: #43340f; }
.band p { color: #5a4717; max-width: 56ch; margin: 14px auto 26px; }

/* ---------- Generic page hero ---------- */
.page-hero {
  background: var(--grad-soft);
  border-bottom: 1px solid var(--c-line);
  padding: 70px 0 56px;
}
.page-hero .eyebrow { color: var(--c-gold); }

/* ---------- Prose / legal ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.7rem; margin: 38px 0 14px; }
.prose h3 { font-size: 1.25rem; margin: 26px 0 10px; font-family: var(--font-body); font-weight: 800; }
.prose p { margin-bottom: 16px; }
.prose ul { margin: 0 0 18px 0; display: grid; gap: 9px; }
.prose ul li { padding-left: 22px; position: relative; color: var(--c-ink-soft); }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--c-gold); }
.prose .note {
  background: var(--c-light-2); border-left: 4px solid var(--c-terra);
  border-radius: var(--radius-sm); padding: 18px 22px; margin: 24px 0; font-size: 0.96rem;
}

/* ---------- About values ---------- */
.value-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.value-card {
  background: var(--c-card); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 30px;
}
.value-card .k {
  font-family: var(--font-display); font-size: 1.5rem; color: var(--c-terra-deep); margin-bottom: 8px;
}

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; color: var(--c-ink); }
.field input, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.98rem;
  background: var(--c-card); color: var(--c-ink); transition: border-color .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--c-gold); }
.field textarea { min-height: 130px; resize: vertical; }
.field .err { color: var(--c-terra-deep); font-size: 0.82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid textarea { border-color: var(--c-terra); }
.field.invalid .err { display: block; }
.form-msg {
  margin-top: 14px; padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--c-light-2); border: 1px solid var(--c-line);
  font-size: 0.94rem; display: none;
}
.form-msg.show { display: block; }
.contact-info .row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.contact-info .row .lbl { font-weight: 800; min-width: 95px; color: var(--c-ink); }

/* ---------- Success ---------- */
.success-wrap { min-height: 70vh; display: grid; place-items: center; text-align: center; }
.success-card {
  max-width: 580px; background: var(--c-card); border: 1px solid var(--c-line);
  border-radius: var(--radius); padding: 56px 44px; box-shadow: var(--shadow-md);
}
.success-mark {
  width: 76px; height: 76px; margin: 0 auto 24px; border-radius: 50%;
  background: var(--grad-gold); display: grid; place-items: center;
  font-size: 2.2rem; color: #43340f;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-ink); color: var(--c-light-2);
  padding: 60px 0 26px; margin-top: 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.site-footer .brand { color: #fff; }
.site-footer p { color: rgba(250,247,242,0.72); font-size: 0.95rem; }
.footer-col h4 {
  color: var(--c-gold-soft); font-family: var(--font-body); font-weight: 800;
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a { color: rgba(250,247,242,0.78); font-size: 0.95rem; display: block; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--c-gold-soft); }
.footer-contact div { font-size: 0.93rem; color: rgba(250,247,242,0.78); margin-bottom: 8px; }
.footer-bottom {
  padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 0.85rem; color: rgba(250,247,242,0.55);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; gap: 0;
    background: var(--c-light);
    border-bottom: 1px solid var(--c-line);
    padding: 12px 22px 22px;
    transform: translateY(-130%);
    transition: transform .35s ease;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--c-line); width: 100%; }
  .split, .product-card, .trust-grid, .value-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { gap: 18px; }
  .split { gap: 34px; }
  .product-media { padding: 34px; }
  .product-body { padding: 34px 28px; }
  .section { padding: 60px 0; }
}
@media (max-width: 540px) {
  body { font-size: 16px; }
  .footer-bottom { flex-direction: column; }
  .band { padding: 40px 24px; }
  .success-card { padding: 40px 26px; }
}
