/* ── Miloe Design System ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

:root {
  --black: #0C0C0C;
  --white: #FFFFFF;
  --stone: #F7F3EE;
  --stone-mid: #EDE7DC;
  --muted: #73685E;
  --copper: #A0723A;
  --border: #DDD6CB;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
.serif { font-family: var(--font-serif); font-weight: 400; }

/* ── Promo Bar ── */
.promo-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1rem;
}

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
}
.logo img { height: 30px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--copper); }
.nav-cta {
  background: var(--black);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  font-size: 12px !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase;
}
.nav-cta:hover { background: var(--copper) !important; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--copper); }
.btn-copper { background: var(--copper); color: var(--white); }
.btn-copper:hover { background: #8a6130; }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-lg { padding: 1.25rem 3rem; font-size: 13px; }
.btn-full { display: block; width: 100%; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.bg-stone { background: var(--stone); }
.bg-black { background: var(--black); color: var(--white); }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-copper { color: var(--copper); }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}
.divider { height: 1px; background: var(--border); margin: 3rem 0; }

/* ── Hero ── */
.hero {
  padding: 6rem 2rem 5rem;
  text-align: center;
  background: var(--stone);
}
.hero h1 { max-width: 820px; margin: 0 auto 1.5rem; }
.hero p { max-width: 560px; margin: 0 auto 2.5rem; color: var(--muted); font-size: 1.1rem; line-height: 1.75; }

.hero-dark {
  background: var(--black);
  color: var(--white);
  padding: 7rem 2rem 6rem;
  text-align: center;
}
.hero-dark p { color: rgba(255,255,255,0.6); }

/* Advertorial hero */
.hero-editorial {
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 2rem 3rem;
  text-align: center;
}
.hero-editorial .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.hero-editorial h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  max-width: 860px;
  margin: 0 auto 1.5rem;
  line-height: 1.15;
}
.hero-editorial .subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 1.5rem;
  line-height: 1.75;
}
.hero-editorial .meta { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }

/* ── Card Grid ── */
.card-grid { display: grid; gap: 1.5rem; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--black);
  transition: box-shadow 0.25s, transform 0.25s;
  display: block;
  overflow: hidden;
}
.card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-3px); }

.card-img {
  aspect-ratio: 16/10;
  background: var(--stone);
  overflow: hidden;
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.card:hover .card-img img { transform: scale(1.03); }

.card-body { padding: 1.75rem; }
.card-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--copper); margin-bottom: 0.5rem; }
.card-title { font-size: 1.15rem; font-weight: 700; line-height: 1.3; margin-bottom: 0.6rem; }
.card-text { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 1.1rem; }
.card-cta { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── Product Box ── */
.product-box {
  background: var(--stone);
  border: 1px solid var(--stone-mid);
  padding: 2.5rem;
  margin: 2.5rem 0;
}
.product-box-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.product-box-img {
  aspect-ratio: 1;
  background: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-box-img img { width: 100%; height: 100%; object-fit: cover; }
.product-box-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; line-height: 1.3; }
.product-box-sub { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 1.5rem; }
.price-row { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.price-now { font-size: 2.2rem; font-weight: 800; }
.price-was { font-size: 1.1rem; color: var(--muted); text-decoration: line-through; }
.price-badge { background: var(--copper); color: var(--white); font-size: 11px; font-weight: 700; padding: 0.25rem 0.6rem; letter-spacing: 0.05em; }

/* ── Feature List ── */
.features { list-style: none; margin: 1.25rem 0; }
.features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  line-height: 1.5;
}
.features li:last-child { border-bottom: none; }
.features li::before { content: "✓"; color: var(--copper); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* ── Feature Icons ── */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; margin: 3rem 0; }
.feature-item { text-align: center; }
.feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-label { font-size: 13px; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 0.35rem; text-transform: uppercase; }
.feature-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── Article Body ── */
.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 { font-size: 1.6rem; margin: 2.5rem 0 1rem; }
.article-body h3 { font-size: 1.2rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.article-body p { margin-bottom: 1.3rem; font-size: 1.05rem; line-height: 1.8; color: #282320; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.3rem; }
.article-body li { font-size: 1.05rem; line-height: 1.75; margin-bottom: 0.4rem; color: #282320; }
.article-body .lead { font-size: 1.2rem; color: var(--muted); line-height: 1.75; margin-bottom: 2rem; border-bottom: 1px solid var(--border); padding-bottom: 2rem; }
.article-body blockquote {
  border-left: 3px solid var(--copper);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--stone);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
}
.article-body .inline-cta {
  background: var(--stone);
  border: 1px solid var(--stone-mid);
  padding: 2rem;
  margin: 2.5rem 0;
  text-align: center;
}
.article-body .inline-cta p { font-size: 1rem; margin-bottom: 1rem; color: var(--black); }

/* ── CTA Banner ── */
.cta-banner {
  background: var(--black);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; font-size: 1.05rem; line-height: 1.7; }

/* ── Urgency Strip ── */
.urgency-strip {
  background: var(--copper);
  color: var(--white);
  text-align: center;
  padding: 0.85rem 1rem;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ── Testimonials ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  background: var(--stone);
  padding: 1.75rem;
}
.testimonial-stars { color: var(--copper); font-size: 13px; margin-bottom: 0.75rem; letter-spacing: 0.1em; }
.testimonial-text { font-size: 14px; line-height: 1.75; color: #282320; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-q { font-size: 1rem; font-weight: 700; margin-bottom: 0.65rem; }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── TOC ── */
.toc {
  background: var(--stone);
  border: 1px solid var(--stone-mid);
  padding: 1.75rem;
  margin: 2rem 0;
}
.toc-title { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 1rem; }
.toc ol { padding-left: 1.25rem; }
.toc li { font-size: 14px; margin-bottom: 0.4rem; }
.toc a { color: var(--copper); text-decoration: underline; text-underline-offset: 3px; }

/* ── Disclosure ── */
.disclosure {
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  line-height: 1.65;
}

/* ── Footer ── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 4rem 2rem 2.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}
.footer-brand .logo { color: var(--white); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 13px; max-width: 240px; line-height: 1.65; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.85rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .product-box-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .section, .section-lg { padding: 3rem 0; }
  .hero, .hero-dark { padding: 3.5rem 1.5rem 3rem; }
  .container, .container-narrow { padding: 0 1.25rem; }
  .product-box { padding: 1.5rem; }
  .footer-inner { gap: 2rem; }
}
