/* ===== Lamplight — warm vintage cozy oil-lamp aesthetic ===== */
:root {
  --gold: #f4b81e;
  --gold-deep: #d99a12;
  --flame: #e0791b;
  --flame-deep: #c25e0d;
  --brown: #7a3b2e;
  --brown-deep: #5a291f;
  --cream: #f6efe2;
  --cream-soft: #fbf6ec;
  --paper: #fdfaf3;
  --ink: #2b211a;
  --ink-soft: #5c4f43;
  --line: #e7dcc8;
  --dark: #1a1410;
  --dark-2: #241b14;
  --dark-3: #2f2419;
  --shadow: 0 10px 30px rgba(40, 26, 12, .12);
  --shadow-lg: 0 22px 50px rgba(40, 26, 12, .18);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .wordmark { font-family: 'Playfair Display', Georgia, serif; }
img { max-width: 100%; display: block; }
a { color: var(--flame-deep); text-decoration: none; }
.wrap { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 22px; }
.wrap-narrow { max-width: 760px; }

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  background: linear-gradient(180deg, var(--flame) 0%, var(--flame-deep) 100%);
  color: #fff;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(194, 94, 13, .32);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(194, 94, 13, .42); filter: brightness(1.04); }
.btn-lg { padding: 15px 32px; font-size: 1.05rem; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .3px;
}

/* ----- Brand lockup / emblem ----- */
.brand-lockup { display: inline-flex; align-items: center; gap: 11px; }
.emblem { flex: 0 0 auto; filter: drop-shadow(0 2px 5px rgba(224, 121, 27, .35)); }
.wordmark {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  line-height: 1;
}
.wordmark sup { font-size: .5em; top: -.8em; }

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 250, 243, .92);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 70px; }
.brand { display: inline-flex; }
.nav { display: flex; gap: 26px; align-items: center; }
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: .98rem;
  position: relative;
}
.nav a:hover { color: var(--flame-deep); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}
.nav a:hover::after { width: 100%; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* ----- Hero (banner background + overlay) ----- */
.hero {
  position: relative;
  color: var(--cream);
  background: #120d09 url('/images/lamplight-banner.jpg') center center / cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 75% at 78% 50%, rgba(224, 121, 27, .28) 0%, rgba(224, 121, 27, 0) 60%),
    linear-gradient(90deg, rgba(15, 10, 7, .92) 0%, rgba(15, 10, 7, .72) 45%, rgba(15, 10, 7, .35) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 96px 22px 104px; }
.hero-text { max-width: 620px; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.7rem);
  line-height: 1.08;
  margin: 0 0 18px;
  font-weight: 800;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0, 0, 0, .5);
}
.hero p { font-size: 1.12rem; color: #e9ddc9; margin: 0 0 28px; max-width: 540px; }
.hero-cta { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

/* ----- Strip (icon trio) ----- */
.strip { background: var(--dark-2); color: var(--cream); border-bottom: 3px solid var(--gold); }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 26px 22px; }
.strip-item { display: flex; align-items: center; gap: 14px; }
.strip-ico { font-size: 1.7rem; color: var(--gold); flex: 0 0 auto; }
.strip-item strong { display: block; font-size: 1rem; }
.strip-item span { display: block; color: #c9bba6; font-size: .9rem; }

/* ----- Section heads ----- */
.section-head { text-align: center; max-width: 680px; margin: 0 auto 38px; }
.section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin: 0 0 10px; color: var(--brown-deep); }
.section-head p { color: var(--ink-soft); margin: 0; font-size: 1.05rem; }

/* ----- Stats bar ----- */
.stats { background: var(--cream-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 38px 22px; text-align: center; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; color: var(--flame-deep); line-height: 1; }
.stat-label { color: var(--ink-soft); font-size: .92rem; }

/* ----- Products ----- */
.products { padding: 72px 0; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 26px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #e3cfa6; }
.card-img { background: linear-gradient(160deg, #fbf6ec, #f3ead8); padding: 18px; }
.card-img img { width: 100%; height: 230px; object-fit: contain; }
.card-body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card-title { font-size: 1.08rem; line-height: 1.3; margin: 0 0 10px; color: var(--ink); font-weight: 700; }
.card-feats { list-style: none; margin: 0 0 14px; padding: 0; color: var(--ink-soft); font-size: .88rem; }
.card-feats li { position: relative; padding-left: 18px; margin-bottom: 5px; }
.card-feats li::before { content: "\2022"; position: absolute; left: 2px; color: var(--gold-deep); font-weight: 700; }
.price { margin: auto 0 14px; display: flex; align-items: baseline; gap: 9px; }
.price .now { font-size: 1.4rem; font-weight: 800; color: var(--brown-deep); font-family: 'Playfair Display', serif; }
.price .list { text-decoration: line-through; color: #a59683; font-size: 1rem; }
.card .btn { text-align: center; }

/* ----- Lifestyle band ----- */
.lifestyle { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: var(--dark); color: var(--cream); }
.lifestyle-photo {
  min-height: 380px;
  background: #120d09 url('/images/lamplight-banner.jpg') center center / cover no-repeat;
}
.lifestyle-copy { padding: 64px 56px; display: flex; flex-direction: column; justify-content: center; }
.lifestyle-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin: 0 0 16px; color: var(--gold); }
.lifestyle-copy p { color: #ddcfba; font-size: 1.08rem; margin: 0 0 26px; max-width: 460px; }

/* ----- Certs / why ----- */
.certs { padding: 72px 0; background: var(--cream-soft); }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cert {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow);
}
.cert-ico {
  font-size: 1.9rem;
  width: 58px; height: 58px;
  margin: 0 auto 6px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #fff3d6, #f7e2b0);
  color: var(--flame-deep);
}
.cert strong { font-size: 1.05rem; color: var(--brown-deep); }
.cert span { color: var(--ink-soft); font-size: .92rem; }

/* ----- Reviews ----- */
.reviews { padding: 72px 0; }
.big-rating { font-family: 'Playfair Display', serif; font-weight: 800; color: var(--flame-deep); font-size: 1.3rem; }
.big-stars { color: var(--gold); letter-spacing: 2px; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  margin: 0;
  box-shadow: var(--shadow);
}
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 12px; }
.review blockquote { margin: 0 0 16px; font-size: .98rem; color: var(--ink); line-height: 1.6; }
.review figcaption { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.review-name { font-weight: 700; color: var(--brown-deep); }
.review-badge { color: #3f8a5e; font-size: .82rem; font-weight: 600; }

/* ----- FAQ ----- */
.faq { padding: 72px 0; background: var(--cream-soft); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px 22px;
  box-shadow: 0 4px 14px rgba(40, 26, 12, .06);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--brown-deep);
  padding: 16px 0;
  list-style: none;
  position: relative;
  padding-right: 30px;
  font-size: 1.04rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 2px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold-deep);
  font-weight: 400;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 0 0 18px; color: var(--ink-soft); }

/* ----- Service / prose pages ----- */
.page { padding: 60px 0 80px; }
.page-title { font-size: clamp(2rem, 4.4vw, 2.9rem); color: var(--brown-deep); margin: 0 0 26px; }
.prose { font-size: 1.05rem; color: var(--ink); }
.prose .lead { font-size: 1.2rem; color: var(--ink-soft); line-height: 1.6; margin: 0 0 28px; }
.prose h3 { font-size: 1.35rem; color: var(--brown-deep); margin: 32px 0 10px; }
.prose p { margin: 0 0 16px; }
.prose ol, .prose ul { margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.prose ol li::marker { color: var(--flame-deep); font-weight: 700; }
.prose a { color: var(--flame-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ----- Footer ----- */
.site-footer { background: var(--dark); color: #cdbfa9; padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.footer-brand p { margin: 16px 0 0; max-width: 380px; font-size: .95rem; line-height: 1.6; }
.footer-links h4 { color: var(--cream); margin: 4px 0 14px; font-size: 1rem; }
.footer-links a { display: block; color: #cdbfa9; padding: 5px 0; font-size: .95rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { padding-top: 24px; }
.footer-bottom .disclaimer { font-size: .8rem; color: #8a7c68; line-height: 1.55; margin: 0 0 12px; }
.footer-bottom .copy { font-size: .85rem; color: #a4937c; margin: 0; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lifestyle { grid-template-columns: 1fr; }
  .lifestyle-photo { min-height: 240px; }
  .lifestyle-copy { padding: 48px 34px; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .nav.open { max-height: 340px; }
  .nav a { padding: 14px 22px; width: 100%; border-top: 1px solid var(--line); }
  .nav a::after { display: none; }
  .burger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .strip-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 560px) {
  .hero-inner { padding: 70px 22px 76px; }
  .hero-cta { gap: 14px; }
  .cert-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .lifestyle-copy { padding: 40px 24px; }
  .products, .certs, .reviews, .faq { padding: 52px 0; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
