
:root {
  --paper: #f8f4f1;
  --surface: #fffdfb;
  --ink: #201a18;
  --muted: #746965;
  --line: #ded3cd;
  --accent: #9a5d58;
  --accent-dark: #6f3e3a;
  --soft: #efe3df;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: white;
  padding: .75rem 1rem;
  z-index: 30;
}
.skip-link:focus { top: 1rem; }
.site-header {
  background: rgba(255,253,251,.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}
.fj-top-strip {
  min-height: 34px;
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.fj-masthead {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.brand-lockup img { width: 52px; height: 52px; }
.fj-nav {
  display: flex;
  justify-content: center;
  gap: 1.65rem;
  align-items: center;
  min-height: 48px;
  border-top: 1px solid var(--line);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  overflow-x: auto;
  white-space: nowrap;
}
.fj-nav a:hover, .footer-links a:hover, .text-link:hover { color: var(--accent-dark); }
main { min-height: 60vh; }
.kicker {
  margin: 0 0 .75rem;
  color: var(--accent-dark);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.04em;
  line-height: .98;
}
h1 { font-size: clamp(3.2rem, 8vw, 7.9rem); margin: 0; }
h2 { font-size: clamp(2.2rem, 5vw, 4.8rem); margin: 0; }
h3 { font-size: clamp(1.45rem, 2.4vw, 2.1rem); margin: 0; }
p { color: var(--muted); }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: .85rem 1.15rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
}
.button.secondary {
  background: transparent;
  color: var(--ink);
}
.button:active { transform: translateY(1px); }
.text-link {
  font-weight: 800;
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.fj-hero {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, .82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 54px auto 64px;
}
.fj-hero-photo {
  min-height: min(720px, 78dvh);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}
.fj-hero-copy p:not(.kicker) {
  max-width: 36rem;
  font-size: 1.08rem;
}
.fj-hero-copy h1 {
  font-size: clamp(3.4rem, 6.4vw, 6.2rem);
}
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.7rem; }
.fj-lead-story {
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lead-copy {
  background: var(--surface);
  padding: clamp(2rem, 6vw, 5rem);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lead-copy p { max-width: 34rem; }
.lead-image {
  min-height: 540px;
  background-size: cover;
  background-position: center;
}
.section-title {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 1.6rem;
  text-align: center;
}
.section-title p { margin-left: auto; margin-right: auto; max-width: 42rem; }
.fj-trending-tabs,
.home-managed-zone,
.fj-category-rail,
.related-posts {
  padding: clamp(3rem, 7vw, 6.5rem) 0;
}
.trend-tabs {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--surface);
}
.trend-tab {
  min-height: 118px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}
.trend-tab:last-child { border-right: 0; }
.trend-tab span {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
}
.trend-tab strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  letter-spacing: -.04em;
}
.fj-shop-edit {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 2rem;
  align-items: stretch;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.5rem) 0;
}
.shop-intro {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 3rem);
}
.shop-intro p { max-width: 34rem; }
.shop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.shop-card {
  min-height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  border: 1px solid var(--line);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  overflow: hidden;
}
.shop-card:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32,26,24,0), rgba(32,26,24,.66));
}
.shop-card span {
  position: relative;
  color: #fff;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.fj-post-grid {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.post-card {
  background: var(--surface);
  border: 1px solid var(--line);
}
.post-card-image {
  display: block;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
}
.post-card-copy { padding: 1.1rem; }
.post-card-copy h3 { margin: .65rem 0 .55rem; }
.post-card-copy p { font-size: .95rem; margin-bottom: .8rem; }
.post-card-copy span:not(.chip) {
  color: var(--muted);
  font-size: .8rem;
}
.featured-card {
  grid-column: span 2;
}
.featured-card .post-card-image { aspect-ratio: 16 / 10; }
.chip {
  display: inline-flex;
  border: 1px solid var(--line);
  padding: .35rem .55rem;
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-dark);
  background: var(--paper);
}
.fj-notebook {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(3rem, 7vw, 6rem);
  display: grid;
  grid-template-columns: .8fr 1fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.fj-notebook > div,
.fj-notebook li { padding: clamp(1.5rem, 4vw, 3rem); }
.fj-notebook ul { list-style: none; padding: 0; margin: 0; border-left: 1px solid var(--line); }
.fj-notebook li + li { border-top: 1px solid var(--line); }
.fj-notebook strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.6rem; letter-spacing: -.04em; }
.fj-notebook span { color: var(--muted); }
.fj-subscribe {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fj-subscribe > div {
  min-height: 440px;
  background-size: cover;
  background-position: center;
}
.fj-subscribe article {
  padding: clamp(2rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fj-dailies,
.fj-loving-lately,
.fj-elsewhere {
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.daily-strip {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
  background: var(--surface);
}
.daily-strip a {
  min-height: 180px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}
.daily-strip a:last-child { border-right: 0; }
.daily-strip span,
.daily-strip strong {
  color: var(--accent-dark);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-style: normal;
}
.daily-strip em {
  font-family: Georgia, "Times New Roman", serif;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.05;
  letter-spacing: -.04em;
}
.loving-grid {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.loving-grid a,
.fj-elsewhere a {
  min-height: 360px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
.loving-grid a:before,
.fj-elsewhere a:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32,26,24,0), rgba(32,26,24,.62));
}
.loving-grid strong,
.loving-grid span,
.fj-elsewhere span {
  position: relative;
  color: #fff;
}
.loving-grid strong,
.fj-elsewhere span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -.04em;
}
.loving-grid span {
  margin-top: .45rem;
  color: rgba(255,255,255,.78);
}
.fj-elsewhere {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--ink);
}
.fj-elsewhere h2 {
  text-align: center;
  margin: clamp(2rem, 5vw, 4rem) 0 1.5rem;
}
.fj-elsewhere > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.fj-category-hero {
  display: grid;
  grid-template-columns: .72fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.fj-category-hero > div:first-child {
  padding: clamp(2rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.category-hero-image {
  min-height: 460px;
  background-size: cover;
  background-position: center;
}
.category-grid .post-card:first-child { grid-column: span 2; }
.fj-article-shell {
  width: min(920px, calc(100% - 36px));
  margin: clamp(2rem, 6vw, 5rem) auto;
}
.article-hero { text-align: center; }
.article-hero .chip { margin-bottom: 1.2rem; }
.article-hero p { max-width: 52rem; margin: 1rem auto; font-size: 1.1rem; }
.article-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: var(--muted);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 1.2rem 0 2rem;
}
.article-main-image {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}
.affiliate-note {
  margin: 2rem 0;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  background: var(--surface);
  display: grid;
  gap: .25rem;
}
.affiliate-note span { color: var(--muted); }
.article-body {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 4vw, 3.5rem);
}
.article-body h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  margin: 2.4rem 0 1rem;
}
.article-body h3 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  margin: 1.8rem 0 .7rem;
}
.article-body p, .article-body li { color: #463d39; }
.article-body a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 4px; }
.roundup-card-grid,
.roundup-item-grid,
.roundup-procon-grid {
  display: grid;
  gap: 1rem;
}
.roundup-card-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.roundup-item-grid { grid-template-columns: minmax(0, 1fr) minmax(220px, .36fr); }
.roundup-procon-grid { grid-template-columns: 1fr 1fr; }
.roundup-pick-card,
.roundup-product-card,
.roundup-pros,
.roundup-cons {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 1rem;
}
.roundup-pick-ribbon,
.roundup-verdict-bar,
.roundup-kicker {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .72rem;
  font-weight: 800;
}
.score-bar {
  background: #eaded8;
  min-height: 20px;
  margin: .65rem 0;
}
.score-bar span {
  display: block;
  background: var(--accent);
  color: white;
  font-size: .75rem;
  padding: .15rem .4rem;
}
.review-button {
  display: inline-flex;
  padding: .7rem .9rem;
  border: 1px solid var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
}
.review-button-primary { background: var(--ink); color: white; }
.fixed-page-shell {
  width: min(1180px, calc(100% - 36px));
  margin: clamp(2rem, 6vw, 5rem) auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.4rem;
}
.fixed-page-sidebar {
  align-self: start;
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 1.2rem;
  display: grid;
  gap: .5rem;
}
.fixed-page-sidebar span {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 800;
}
.fixed-page-sidebar strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
  letter-spacing: -.04em;
}
.fixed-page-sidebar em { color: var(--muted); font-style: normal; }
.fixed-page-content {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 4vw, 3.6rem);
}
.fixed-page-content h1 { margin-bottom: 1rem; }
.fixed-page-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin: 2rem 0 .55rem;
}
.fixed-page-content a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 4px; }
.fixed-intro { font-size: 1.1rem; max-width: 58rem; }
.lp-hero {
  width: min(1180px, calc(100% - 36px));
  margin: clamp(2rem, 6vw, 5rem) auto;
  display: grid;
  grid-template-columns: .72fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}
.lp-hero > div:first-child {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 4vw, 3.5rem);
}
.lp-hero > div:last-child {
  min-height: 460px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
}
.lp-checklist {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto clamp(3rem, 7vw, 6rem);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 4vw, 3rem);
}
.lp-checklist h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.deals-edit { padding-top: 0; }
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .7fr);
  gap: 2rem;
}
.site-footer p { color: rgba(255,255,255,.72); max-width: 34rem; }
.footer-brand h2 { margin: .8rem 0 .4rem; font-size: clamp(2rem, 4vw, 3rem); }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem; align-content: start; }
.footer-links a {
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 800;
}
@media (max-width: 900px) {
  .fj-hero,
  .fj-lead-story,
  .fj-shop-edit,
  .fj-notebook,
  .fj-subscribe,
  .fj-category-hero,
  .fixed-page-shell,
  .lp-hero,
  .site-footer {
    grid-template-columns: 1fr;
  }
  .fj-hero { margin-top: 28px; }
  .fj-hero-photo,
  .lead-image,
  .category-hero-image,
  .fj-subscribe > div,
  .lp-hero > div:last-child { min-height: 320px; }
  .trend-tabs,
  .fj-post-grid,
  .shop-cards,
  .daily-strip,
  .loving-grid,
  .fj-elsewhere > div {
    grid-template-columns: 1fr;
  }
  .daily-strip a { border-right: 0; border-bottom: 1px solid var(--line); }
  .trend-tab { border-right: 0; border-bottom: 1px solid var(--line); }
  .featured-card,
  .category-grid .post-card:first-child { grid-column: auto; }
  .roundup-item-grid,
  .roundup-procon-grid { grid-template-columns: 1fr; }
  .fj-top-strip { display: none; }
  .fj-masthead { min-height: 76px; }
  .brand-lockup { font-size: clamp(2rem, 10vw, 3.1rem); }
}
@media (max-width: 560px) {
  .fj-nav { justify-content: flex-start; padding: 0 1rem; gap: 1rem; }
  h1 { font-size: clamp(2.8rem, 16vw, 4.8rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .article-meta { flex-direction: column; gap: .35rem; }
}
@media (prefers-reduced-motion: no-preference) {
  .post-card,
  .shop-card,
  .trend-tab,
  .button {
    transition: transform .22s ease, color .22s ease, border-color .22s ease;
  }
  .post-card:hover,
  .shop-card:hover,
  .trend-tab:hover {
    transform: translateY(-3px);
  }
}
