/* OnlyEyelashes design system: warm ivory, soft blush, deep plum, charcoal */
:root {
  --ivory: #fbf6f0;
  --ivory-deep: #f3ece2;
  --blush: #f4dde2;
  --blush-deep: #e8bcc7;
  --plum: #4b2138;
  --plum-deep: #341527;
  --charcoal: #2a2521;
  --gold: #b8862f;
  --gold-soft: #d9b46a;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 8px 30px rgba(75, 33, 56, 0.08);
  --shadow-card: 0 4px 18px rgba(43, 37, 33, 0.08);
  --font-serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--plum); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--gold); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--plum); color: var(--white); padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--plum-deep);
  line-height: 1.2;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-top: 2.2em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(75,33,56,0.08);
  position: sticky; top: 0; z-index: 100;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0.9rem; padding-bottom: 0.9rem;
}
.brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
  color: var(--plum-deep); text-decoration: none;
}
.brand__mark { color: var(--gold); }
.nav-toggle {
  display: none; background: none; border: 2px solid var(--plum); border-radius: var(--radius-sm);
  padding: 0.5rem 0.7rem; cursor: pointer;
}
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--plum); position: relative;
}
.nav-toggle__bar::before { top: -6px; }
.nav-toggle__bar::after { top: 4px; }
.primary-nav ul {
  list-style: none; display: flex; gap: 1.5rem; margin: 0; padding: 0; flex-wrap: wrap;
}
.primary-nav a {
  text-decoration: none; color: var(--charcoal); font-weight: 600; font-size: 0.95rem;
}
.primary-nav a[aria-current="page"] { color: var(--plum); border-bottom: 2px solid var(--gold); }

@media (max-width: 780px) {
  .nav-toggle { display: inline-flex; align-items: center; }
  .primary-nav {
    display: none; width: 100%; order: 3; padding-top: 1rem;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 0.9rem; }
  .site-header__inner { flex-wrap: wrap; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--blush) 0%, var(--ivory) 60%);
  padding: 3.5rem 0;
  border-bottom: 1px solid rgba(75,33,56,0.06);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(184,134,47,0.12), transparent 45%);
  pointer-events: none;
}
.hero__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center;
}
@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
}
.hero__eyebrow {
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; font-weight: 700;
  color: var(--gold); margin-bottom: 0.75rem;
}
.hero__lede { font-size: 1.1rem; max-width: 46ch; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero__art {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft);
  background: var(--white);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.85rem 1.5rem; border-radius: 999px; font-weight: 700; text-decoration: none;
  font-size: 0.95rem; border: 2px solid transparent; transition: transform 0.15s ease, background 0.15s ease;
}
.btn--cta { background: var(--plum); color: var(--white); }
.btn--cta:hover { background: var(--plum-deep); color: var(--white); transform: translateY(-1px); }
.btn--ghost { border-color: var(--plum); color: var(--plum); background: transparent; }
.btn--ghost:hover { background: var(--plum); color: var(--white); }

/* Category tiles */
.category-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem;
  margin: 2rem 0;
}
.category-tile {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow-card); text-decoration: none; color: var(--charcoal);
  display: block; border: 1px solid rgba(75,33,56,0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.category-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); color: var(--charcoal); }
.category-tile h3 { margin-bottom: 0.35rem; }
.category-tile__icon { font-size: 1.8rem; margin-bottom: 0.6rem; display: block; }

/* Product grid */
.product-grid, .article-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
  margin: 2rem 0;
}
.product-card, .article-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-card); display: flex; flex-direction: column;
  border: 1px solid rgba(75,33,56,0.06);
}
.product-card__body, .article-card__body { padding: 1.1rem 1.25rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.product-card__category, .article-card__hub {
  text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.08em; font-weight: 700;
  color: var(--gold); margin-bottom: 0.4rem;
}
.product-card__category, .article-card__hub a { color: var(--gold); text-decoration: none; }
.product-card__title, .article-card__title { font-size: 1.1rem; margin-bottom: 0.5rem; }
.product-card__title a, .article-card__title a { text-decoration: none; color: var(--plum-deep); }
.product-card__desc, .article-card__excerpt { font-size: 0.92rem; color: #4a4038; }
.product-card__criteria { font-size: 0.82rem; color: #74665c; font-style: italic; margin-top: -0.4em; }
.product-card .btn { margin-top: auto; align-self: flex-start; }
.article-card__meta { font-size: 0.78rem; color: #8a7d73; margin-top: auto; }

/* Sections */
.section { padding: 2.5rem 0; }
.section--tinted { background: var(--ivory-deep); }
.section-header { max-width: 62ch; margin-bottom: 1.5rem; }

/* Methodology / how we choose */
.methodology-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1.5rem; margin-top: 1.5rem;
}
.methodology-item {
  background: var(--white); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow-card);
}

/* Breadcrumbs */
.breadcrumbs { margin: 1.25rem 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; padding: 0; margin: 0; font-size: 0.85rem; color: #6b5f56; }
.breadcrumbs a { color: #6b5f56; text-decoration: none; }
.breadcrumbs a:hover { color: var(--plum); }
.breadcrumbs li[aria-current="page"] { color: var(--plum); font-weight: 600; }
.crumb-sep { color: #b9ab9f; }

/* Article layout */
.article-header { padding: 2rem 0 0.5rem; }
.article-meta { color: #74665c; font-size: 0.9rem; margin-bottom: 1.5rem; }
.article-body { max-width: 74ch; }
.article-body h2 { border-top: 1px solid rgba(75,33,56,0.08); padding-top: 1.2em; }
.article-body img { border-radius: var(--radius); box-shadow: var(--shadow-card); margin: 1.5em 0; }
.article-body figcaption { font-size: 0.85rem; color: #74665c; margin-top: 0.5em; }
.article-body ul, .article-body ol { padding-left: 1.4em; }
.toc {
  background: var(--white); border: 1px solid rgba(75,33,56,0.08); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; max-width: 74ch; margin: 1.5rem 0 2rem;
}
.toc__label { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.75rem; font-weight: 700; color: var(--gold); margin-bottom: 0.5em; }
.toc ol { margin: 0; padding-left: 1.2em; }

.faq { max-width: 74ch; margin: 2.5rem 0; }
.faq-item { border-top: 1px solid rgba(75,33,56,0.08); padding: 1.1rem 0; }
.faq-item h3 { font-size: 1.05rem; }

.inline-cta {
  background: var(--blush); border-radius: var(--radius); padding: 1.25rem 1.5rem;
  max-width: 74ch; margin: 2rem 0;
}

.related-links { max-width: 74ch; margin: 2rem 0; }
.related-links ul { padding-left: 1.2em; }

.disclosure-note {
  background: var(--ivory-deep); border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem; border-radius: var(--radius-sm); font-size: 0.9rem; max-width: 74ch;
}

.editorial-standards ul { padding-left: 1.2em; }

/* Legal / simple pages */
.prose { max-width: 74ch; }
.prose h2 { margin-top: 1.6em; }

/* 404 */
.error-page { text-align: center; padding: 5rem 0; }

/* Footer */
.site-footer { background: var(--plum-deep); color: #ece3dd; margin-top: 4rem; }
.site-footer a { color: #ece3dd; }
.site-footer a:hover { color: var(--gold-soft); }
.site-footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; padding: 3rem 0 2rem;
}
@media (max-width: 780px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
.site-footer__col h2 { color: #ece3dd; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-sans); }
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer__tagline { opacity: 0.85; }
.site-footer__disclosure { font-size: 0.82rem; opacity: 0.8; }
.brand--footer { color: #ece3dd; }
.site-footer__legal { border-top: 1px solid rgba(255,255,255,0.12); padding: 1.25rem 0; font-size: 0.8rem; opacity: 0.75; }
