/* ============================================================
   EVERYDAY DECOR FINDS — Design System
   Playfair Display + Inter · warm cream / olive / terracotta
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Surfaces */
  --bg:            #FEFAF6;
  --surface:       #F8F0E6;
  --border:        #E8E0D6;

  /* Ink */
  --ink:           #14181B;
  --body:          #4A4644;
  --muted:         #7A736D;

  /* Brand */
  --olive:         #565734;
  --olive-dark:    #454629;
  --terracotta:    #A54D2B;
  --terracotta-dark: #8E3F22;

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-hero:   56px;
  --fs-h1:     48px;
  --fs-h2:     36px;
  --fs-h2-sm:  32px;
  --fs-h3:     26px;
  --fs-card:   17px;
  --fs-body:   17px;
  --fs-sm:     15px;
  --fs-meta:   13px;

  /* Shape */
  --radius:    8px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --shadow:    0 2px 12px rgba(20, 24, 27, 0.06);
  --shadow-lg: 0 8px 32px rgba(20, 24, 27, 0.10);

  /* Layout */
  --maxw:   1440px;
  --gutter: 40px;
  --gap:    24px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 150ms var(--ease);
  --t-med:  400ms var(--ease);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; display: block; }

a { color: var(--terracotta); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--terracotta-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}

p { margin: 0; }

button { font: inherit; cursor: pointer; }

ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ---------- 3. LAYOUT ---------- */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.container--narrow { max-width: 780px; }
.container--mid    { max-width: 1100px; }

.section        { padding-top: 96px; }
.section--tight { padding-top: 64px; }
.section--end   { padding-bottom: 96px; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}
.section-head h2 { font-size: var(--fs-h2-sm); line-height: 1.25; }
.section-head p  { margin-top: 12px; }

.head-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.head-row h2 { font-size: var(--fs-h2-sm); line-height: 1.25; }
.head-row a { font-size: var(--fs-sm); font-weight: 600; }

/* ---------- 4. TYPOGRAPHY UTILITIES ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}

.lede { font-size: var(--fs-body); line-height: 1.6; }

.meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: var(--fs-meta);
  font-weight: 500;
  color: var(--body);
  flex-wrap: wrap;
}
.meta .dot { color: var(--border); }

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1;
  padding: 14px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.btn--primary       { background: var(--terracotta); color: var(--bg); }
.btn--primary:hover { background: var(--terracotta-dark); color: var(--bg); }

.btn--olive       { background: var(--olive); color: var(--bg); }
.btn--olive:hover { background: var(--olive-dark); color: var(--bg); }

.btn--ghost       { background: transparent; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { background: var(--surface); color: var(--ink); border-color: var(--olive); }

.btn--sm    { font-size: var(--fs-meta); padding: 9px 16px; }
.btn--block { width: 100%; }

/* ---------- 6. ANNOUNCEMENT BAR ---------- */
.announce {
  background: var(--olive);
  color: var(--bg);
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  text-align: center;
  font-size: var(--fs-meta);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- 7. HEADER / NAV ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--bg);
  height: 72px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 var(--gutter);
}

.brand {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  white-space: nowrap;
  flex: 0 0 auto;
}
.brand:hover { color: var(--olive); }

.nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}
.nav a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.nav a:hover { color: var(--olive); border-bottom-color: var(--border); }
.nav a.is-active { border-bottom-color: var(--olive); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.icon-btn:hover { background: var(--surface); border-color: var(--border); }
.icon-btn svg { width: 20px; height: 20px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: flex-start;
  justify-content: center;
  background: none;
  border: 0;
  padding: 0;
  flex: 0 0 auto;
  margin-left: -10px;
}
.burger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
}

/* Search drawer */
.search-bar {
  display: none;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 16px var(--gutter);
}
.search-bar.is-open { display: block; }
.search-bar form {
  max-width: 640px; margin: 0 auto;
  display: flex; gap: 12px;
}

/* Mobile drawer */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  padding: 24px var(--gutter) 40px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 300ms var(--ease);
  visibility: hidden;
}
.nav-mobile.is-open { transform: translateX(0); visibility: visible; }
.nav-mobile__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.nav-mobile__close {
  background: none; border: 0; font-size: 24px; line-height: 1;
  color: var(--ink); padding: 8px;
}
.nav-mobile__link {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile__link:hover { color: var(--olive); }
.nav-mobile .btn { margin-top: 28px; }

body.nav-locked { overflow: hidden; }

/* ---------- 8. HERO ---------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--surface);
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__panel {
  position: relative;
  width: 38%;
  margin: 48px 5%;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}
.hero__panel h1 { font-size: var(--fs-hero); line-height: 1.15; }
.hero__panel p  { margin-top: 24px; max-width: 42ch; }
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

/* Compact page hero (interior pages) */
.page-hero {
  padding: 64px var(--gutter) 0;
  max-width: var(--maxw);
  margin: 0 auto;
}
.page-hero__inner { text-align: center; max-width: 640px; margin: 0 auto; }
.page-hero h1 { font-size: var(--fs-h1); line-height: 1.15; }
.page-hero .eyebrow { display: block; margin-bottom: 12px; }
.page-hero p  { margin-top: 16px; }
.page-hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Category banner (image + caption) */
.cat-hero {
  position: relative;
  max-width: var(--maxw);
  margin: 32px auto 0;
  padding: 0 var(--gutter);
}
.cat-hero__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--surface);
}
.cat-hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.cat-hero__badge {
  position: absolute;
  left: 24px; bottom: 24px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 14px 24px;
  box-shadow: var(--shadow);
}
.cat-hero__badge span { font-family: var(--font-display); font-size: 20px; color: var(--ink); }

/* ---------- 9. CARDS ---------- */
.card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  color: inherit;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}
.card:hover {
  color: inherit;
  border-color: #D8CEC0;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card__media {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--surface);
}
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-med);
}
.card:hover .card__media img { transform: scale(1.04); }

.card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.card__body h3 {
  font-family: var(--font-body);
  font-size: var(--fs-card);
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}
.card__body p { font-size: var(--fs-sm); }
.card__meta {
  font-size: var(--fs-meta);
  font-weight: 500;
  margin-top: auto;
  padding-top: 8px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Newsletter tile inside a card grid */
.tile-signup {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.tile-signup h3 { font-size: var(--fs-h3); line-height: 1.25; }
.tile-signup p  { font-size: var(--fs-sm); }

/* ---------- 10. FEATURED / SPLIT ---------- */
.split {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  color: inherit;
}
.split:hover { color: inherit; }
.split__media { overflow: hidden; aspect-ratio: 16 / 10; background: var(--surface); }
.split__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-med);
}
.split:hover .split__media img { transform: scale(1.03); }
.split__body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--surface);
}
.split__body h2 { font-size: var(--fs-h2); line-height: 1.2; margin-top: 16px; }
.split__body p  { margin-top: 16px; max-width: 52ch; }
.split__body .meta { margin-top: 24px; }
.split__cta { margin-top: 32px; }

/* Newsletter split band */
.band {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.band__media { aspect-ratio: 2 / 1; background: var(--surface); }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.band__body h2 { font-size: var(--fs-h2-sm); line-height: 1.25; }
.band__body p  { max-width: 52ch; }

/* ---------- 11. FORMS ---------- */
.field {
  flex: 1;
  width: 100%;
  height: 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--body);
  transition: border-color var(--t-fast);
}
.field::placeholder { color: var(--muted); }
.field:focus { outline: none; border-color: var(--olive); }

textarea.field { height: auto; min-height: 140px; padding: 14px 16px; line-height: 1.6; resize: vertical; }

.signup {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  max-width: 520px;
}
.signup .btn { padding-top: 0; padding-bottom: 0; height: 48px; }

.form-note {
  font-size: var(--fs-meta);
  color: var(--muted);
  margin-top: 4px;
}
.form-status {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--olive);
  margin-top: 8px;
  min-height: 1.6em;
}

.form-stack { display: flex; flex-direction: column; gap: 16px; max-width: 560px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: var(--fs-meta); font-weight: 600; color: var(--ink); }

/* ---------- 12. CATEGORY TILES ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap);
}
.tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  color: inherit;
}
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-med);
}
.tile:hover img { transform: scale(1.05); }
.tile__label {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 10px 16px;
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow);
}

/* ---------- 13. GUIDE CARDS (image + caption bar) ---------- */
.guide {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  color: inherit;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.guide:hover { color: inherit; border-color: #D8CEC0; box-shadow: var(--shadow); }
.guide__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface); }
.guide__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-med); }
.guide:hover .guide__media img { transform: scale(1.05); }
.guide__label {
  display: block;
  padding: 14px 16px;
  font-size: var(--fs-sm);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
  border-top: 1px solid var(--border);
}

/* Two-column row: guides beside finds (homepage) */
.duo {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}
.duo .guide__label { font-size: var(--fs-meta); padding: 12px 14px; }
.duo .grid { gap: 12px; }

/* ---------- 14. PRODUCT ("FINDS") CARDS ---------- */
.finds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.find {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: inherit;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.find:hover { color: inherit; border-color: #D8CEC0; box-shadow: var(--shadow); }
.find__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.find__media img { width: 68%; height: 68%; object-fit: contain; }
.find__name {
  font-size: var(--fs-meta);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
}
.find__price { font-size: var(--fs-meta); color: var(--muted); }
.find .btn { margin-top: auto; }

/* ---------- 15. SHOP THE LOOK ---------- */
.look {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--gap);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px;
}
.look__scene {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg);
}
.look__scene img { width: 100%; height: 100%; object-fit: cover; }
.look__title {
  position: absolute;
  top: 16px; left: 16px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  background: rgba(254, 250, 246, 0.92);
  padding: 8px 16px;
  border-radius: var(--radius);
}
.hotspot {
  position: absolute;
  width: 28px; height: 28px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--olive);
  color: var(--bg);
  border: 2px solid var(--bg);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: transform var(--t-fast), background var(--t-fast);
}
.hotspot:hover, .hotspot.is-active {
  background: var(--terracotta);
  transform: translate(-50%, -50%) scale(1.15);
}
.look__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.look__products .find { position: relative; }
.look__products .find.is-active { border-color: var(--terracotta); box-shadow: var(--shadow); }
.find__num {
  position: absolute;
  top: 8px; left: 8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- 16. ARTICLE ---------- */
.article-head {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px var(--gutter) 0;
  text-align: center;
}
.article-head h1 { font-size: var(--fs-h1); line-height: 1.15; margin-top: 16px; }
.article-head .lede { margin-top: 20px; }
.article-head .meta { justify-content: center; margin-top: 20px; }

.article-hero {
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 0 var(--gutter);
}
.article-hero img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 16/9; object-fit: cover; }
.article-hero figcaption { font-size: var(--fs-meta); color: var(--muted); margin-top: 10px; text-align: center; }

.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  font-size: var(--fs-body);
  line-height: 1.75;
}
.prose > * + * { margin-top: 24px; }
.prose h2 { font-size: var(--fs-h2-sm); line-height: 1.25; margin-top: 56px; }
.prose h3 { font-family: var(--font-body); font-size: 20px; font-weight: 600; color: var(--ink); margin-top: 40px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: 10px; }
.prose blockquote {
  border-left: 3px solid var(--olive);
  padding: 4px 0 4px 24px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink);
}
.prose img { border-radius: var(--radius); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

/* Affiliate disclosure */
.disclosure {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: var(--fs-meta);
  line-height: 1.6;
  color: var(--body);
}
.disclosure strong { color: var(--ink); }

/* Product block inside an article */
.product {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
}
.product__media {
  aspect-ratio: 1 / 1;
  background: var(--bg);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.product__media img { width: 70%; height: 70%; object-fit: contain; }
.product h3 { margin-top: 8px; }
.product__badge {
  display: inline-block;
  background: var(--olive);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}
.product p { font-size: var(--fs-sm); margin-top: 8px; }
.product .btn { margin-top: 16px; }

/* Comparison table */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
table.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  min-width: 620px;
  background: var(--bg);
}
table.compare th, table.compare td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
table.compare thead th {
  background: var(--surface);
  font-size: var(--fs-meta);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive);
}
table.compare tbody tr:last-child td { border-bottom: 0; }

/* Pros / cons */
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.proscons__col {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--bg);
}
.proscons__col h4 {
  font-family: var(--font-body);
  font-size: var(--fs-meta);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 12px;
}
.proscons ul { font-size: var(--fs-sm); }
.proscons li { padding-left: 22px; position: relative; }
.proscons li + li { margin-top: 8px; }
.proscons li::before {
  content: "";
  position: absolute; left: 0; top: 11px;
  width: 10px; height: 2px; background: var(--olive);
}
.proscons__col--cons h4 { color: var(--terracotta); }
.proscons__col--cons li::before { background: var(--terracotta); }

/* ---------- 17. STEP / VALUE LISTS ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.step {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  padding: 32px;
}
.step__num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--olive);
  display: block;
  margin-bottom: 12px;
}
.step h3 { font-family: var(--font-body); font-size: var(--fs-card); font-weight: 600; }
.step p { font-size: var(--fs-sm); margin-top: 8px; }

/* ---------- 18. PAGINATION ---------- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.pagination .screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.pagination a, .pagination span {
  min-width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink);
  padding: 0 12px;
}
.pagination a:hover { background: var(--surface); border-color: var(--olive); color: var(--ink); }
.pagination .is-current { background: var(--olive); border-color: var(--olive); color: var(--bg); }

/* ---------- 19. SIDEBAR ---------- */
.with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.widget {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
}
.widget + .widget { margin-top: 24px; }
.widget h3 { font-family: var(--font-body); font-size: var(--fs-card); font-weight: 600; margin-bottom: 12px; }
.widget ul { font-size: var(--fs-sm); }
.widget li + li { margin-top: 10px; }
.widget li a { color: var(--body); }
.widget li a:hover { color: var(--terracotta); }

/* ---------- 20. FOOTER ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 48px var(--gutter);
  margin-top: 96px;
}
.footer-top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a, .footer-legal a { font-size: var(--fs-sm); color: var(--body); }
.footer-nav a:hover, .footer-legal a:hover { color: var(--terracotta); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--ink);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}
.footer-social a:hover { background: var(--surface); border-color: var(--olive); color: var(--olive); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 32px auto 0;
  font-size: var(--fs-meta);
  line-height: 1.6;
  color: var(--body);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---------- 21. REVEAL ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* ---------- 22. RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .nav { display: none; }
  .burger { display: flex; }
  .site-header { justify-content: space-between; gap: 16px; }
  .tiles { grid-template-columns: repeat(3, 1fr); }
  .grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .split, .band, .look { grid-template-columns: 1fr; }
  .band__media { aspect-ratio: 21/9; }
  .with-sidebar { grid-template-columns: 1fr; gap: 32px; }
  .duo { grid-template-columns: 1fr; gap: 48px; }
  .duo .guide__label { font-size: var(--fs-sm); padding: 14px 16px; }
  .hero__panel { width: 52%; padding: 32px; }
  .hero__panel h1 { font-size: 40px; }
  .finds { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  :root { --gutter: 24px; --fs-h1: 38px; --fs-h2: 30px; --fs-h2-sm: 27px; }
  .hero { flex-direction: column; align-items: stretch; min-height: 0; }
  .hero__img { position: relative; width: 100%; height: 320px; }
  .hero__panel { width: auto; align-self: stretch; margin: -48px 20px 24px; }
  .hero__panel h1 { font-size: 34px; overflow-wrap: break-word; }
  .split__body, .band__body, .look { padding: 32px; }
  .site-header { gap: 12px; }
  .brand { font-size: 16px; letter-spacing: 0.12em; }
  .section { padding-top: 64px; }
  .site-footer { margin-top: 64px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .cat-hero__frame { aspect-ratio: 16/9; }
}

@media (max-width: 720px) {
  .grid, .grid--2, .grid--4, .steps, .proscons { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .finds, .look__products { grid-template-columns: repeat(2, 1fr); }
  .signup { flex-direction: column; }
  .signup .btn { width: 100%; }
  .product { grid-template-columns: 1fr; }
  .product__media { width: 140px; }
  .prose blockquote { font-size: 21px; }
  .footer-bottom { flex-direction: column; }
  /* The header CTA lives in the mobile drawer at this width. */
  .header-actions .btn { display: none; }
  .brand { font-size: 14px; letter-spacing: 0.10em; }
  .site-header { padding: 0 16px; gap: 8px; }
  .hero__panel { padding: 24px; margin: -48px 16px 24px; }
}
