/* aurevane — Earthy / Friendly theme */
:root {
  --primary: #795548;
  --secondary: #BCAAA4;
  --accent: #8BC34A;
  --accent-dark: #689F38;
  --neutral: #F5F3F0;
  --text: #3E2723;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 14px 40px rgba(62, 39, 35, 0.12);
}

html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Quicksand", system-ui, sans-serif;
  color: var(--text);
  background: var(--neutral);
  margin: 0;
  line-height: 1.7;
}

h1,
h2,
h3,
h4 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--text);
  line-height: 1.15;
  margin: 0 0 .5em;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover,
a:focus {
  color: var(--accent-dark);
}

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: none;
  cursor: pointer;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  border-radius: 999px;
  padding: .95rem 2rem;
  transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
  text-align: center;
  line-height: 1.1;
}
.btn:hover,
.btn:focus {
  transform: translateY(-3px);
}
.btn-cta {
  background: var(--accent);
  color: var(--text);
  box-shadow: 0 10px 24px rgba(139, 195, 74, .45);
  font-size: 1.12rem;
}
.btn-cta:hover {
  background: var(--accent-dark);
  color: #fff;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: #5d4037;
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.btn-ghost:hover {
  border-color: var(--primary);
}

/* ---------- Layout helpers ---------- */
.flex {
  display: flex;
  flex-wrap: wrap;
}
.section {
  padding: 4.5rem 0;
}
.section-tight {
  padding: 3rem 0;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}
.eyebrow {
  display: inline-block;
  background: rgba(139, 195, 74, .18);
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .8rem;
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ---------- Header / Banner ---------- */
.topbar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: .95rem;
  padding: .6rem 1rem;
}
.topbar strong {
  color: #DCEDC8;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 243, 240, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(188, 170, 164, .4);
}
.site-header .inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 20px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: .02em;
}
.brand:hover { color: var(--accent-dark); }
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
}
.main-nav a {
  font-weight: 600;
  color: var(--text);
}
.main-nav a:hover { color: var(--accent-dark); }
.header-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.header-phone {
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}
.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--neutral);
  border: 1px solid var(--secondary);
  border-radius: 999px;
  padding: .4rem .9rem;
  font-weight: 600;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--primary);
}
.header-centered .inner { flex-direction: column; text-align: center; }
.header-centered .main-nav { justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(110deg, rgba(245,243,240,.96) 42%, rgba(245,243,240,.55) 100%),
    var(--secondary);
  background-size: cover;
  background-position: center;
}
.hero .grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  padding: 4rem 0;
}
.hero-copy { flex: 1 1 420px; }
.hero-form { flex: 1 1 340px; }
.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .9rem;
  margin: 1.2rem 0;
}
.price-now {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "Fraunces", serif;
  color: var(--accent-dark);
}
.price-old {
  text-decoration: line-through;
  color: var(--secondary);
  font-size: 1.3rem;
  font-weight: 600;
}
.price-badge {
  background: var(--accent);
  color: var(--text);
  font-weight: 700;
  border-radius: 999px;
  padding: .25rem .8rem;
  font-size: .9rem;
}
.tick-list { list-style: none; padding: 0; margin: 1rem 0; }
.tick-list li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin: .55rem 0;
  font-weight: 600;
}
.tick-list li::before {
  content: "✓";
  color: var(--accent-dark);
  font-weight: 800;
}
.hero-img-figure {
  flex: 1 1 320px;
}
.rounded-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Forms ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
}
.form-card h3 { margin-top: 0; }
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-weight: 600;
  margin-bottom: .35rem;
  font-size: .95rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid var(--secondary);
  border-radius: 14px;
  padding: .8rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  background: var(--neutral);
  color: var(--text);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
.form-note { font-size: .82rem; color: #6d5b54; margin-top: .4rem; }

/* ---------- Benefit cards ---------- */
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.benefit-card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.8rem;
  transition: transform .2s ease;
}
.benefit-card:hover { transform: translateY(-6px); }
.benefit-icon {
  width: 58px; height: 58px;
  border-radius: 18px;
  background: rgba(139, 195, 74, .18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

/* ---------- Accordion / expandable ---------- */
.accordion-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.3rem 1.6rem;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.accordion-trigger .chev { transition: transform .25s ease; color: var(--accent-dark); }
.accordion-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }
.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 1.6rem;
}
.accordion-panel .inner-pad { padding-bottom: 1.4rem; }

/* ---------- Order process ---------- */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  counter-reset: step;
}
.step {
  flex: 1 1 200px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
}
.step:hover { transform: translateY(-5px); }
.step.active { border-color: var(--accent); }
.step .num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin-bottom: .8rem;
}
.step-detail {
  margin-top: 1.4rem;
  background: rgba(139,195,74,.12);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--primary), #5d4037);
  color: #fff;
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.4rem;
}

/* ---------- Reviews ---------- */
.review-grid { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.review {
  flex: 1 1 280px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
}
.stars { color: #FBC02D; letter-spacing: .1em; }
.review .who { font-weight: 700; margin-top: .8rem; }

/* ---------- FAQ search ---------- */
.faq-search {
  width: 100%;
  box-sizing: border-box;
  border: 2px solid var(--secondary);
  border-radius: 999px;
  padding: .9rem 1.4rem;
  font-size: 1.05rem;
  background: #fff;
  margin-bottom: 1.6rem;
}
.faq-empty { display: none; color: #6d5b54; font-style: italic; }

/* ---------- Calculator ---------- */
.calc {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: stretch;
}
.calc .panel { flex: 1 1 260px; }
.calc-result {
  background: rgba(139,195,74,.14);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.calc-result .total {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Fraunces", serif;
  color: var(--accent-dark);
}
.qty-control { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem; }
.qty-control button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--secondary);
  background: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  font-weight: 700;
}

/* ---------- Disclaimer ---------- */
.disclaimer {
  background: rgba(188,170,164,.22);
  border-left: 4px solid var(--secondary);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  font-size: .88rem;
  color: #5d4a43;
  margin-top: 2rem;
}

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--text);
  color: #e8ded9;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}
.site-footer a { color: #DCEDC8; }
.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}
.footer-cols .col { flex: 1 1 220px; }
.footer-cols h4 { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 2rem;
  padding-top: 1.2rem;
  font-size: .85rem;
  text-align: center;
  color: #c9bcb5;
}
.footer-compact {
  background: var(--text);
  color: #e8ded9;
  text-align: center;
  padding: 2rem 0 1.4rem;
  margin-top: 3rem;
}
.footer-compact nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  justify-content: center;
  margin-bottom: 1rem;
}

/* ---------- Cookie consent ---------- */
.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  box-shadow: 0 -10px 30px rgba(62,39,35,.15);
  padding: 1.2rem;
  z-index: 80;
  display: none;
}
.cookie-bar.show { display: block; }
.cookie-bar .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-bar p { margin: 0; flex: 1 1 320px; font-size: .92rem; }
.cookie-bar .actions { display: flex; flex-wrap: wrap; gap: .7rem; }
.cookie-bar .actions .btn { padding: .7rem 1.3rem; font-size: .95rem; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(62,39,35,.55);
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-backdrop.show { display: flex; }
.modal {
  background: #fff;
  border-radius: var(--radius);
  max-width: 540px;
  width: 100%;
  padding: 2rem;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-cat {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--neutral);
}
.switch { position: relative; width: 52px; height: 28px; flex: 0 0 auto; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; inset: 0;
  background: var(--secondary);
  border-radius: 999px;
  transition: .25s;
  cursor: pointer;
}
.slider::before {
  content: "";
  position: absolute;
  height: 20px; width: 20px;
  left: 4px; top: 4px;
  background: #fff;
  border-radius: 50%;
  transition: .25s;
}
.switch input:checked + .slider { background: var(--accent); }
.switch input:checked + .slider::before { transform: translateX(24px); }
.switch input:disabled + .slider { opacity: .7; cursor: not-allowed; }

/* ---------- Misc ---------- */
.center { text-align: center; }
.lead { font-size: 1.15rem; color: #5d4a43; }
.legal-content h2 { margin-top: 2rem; }
.legal-content ul { padding-left: 1.2rem; }
.legal-content li { margin: .4rem 0; }
.muted { color: #6d5b54; }
.split {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
}
.split > * { flex: 1 1 360px; }

@media (max-width: 820px) {
  .main-nav { display: none; width: 100%; flex-direction: column; align-items: flex-start; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .price-now { font-size: 2.1rem; }
  .cta-band { padding: 2rem 1.3rem; }
}
