/* === TOKENS === */
:root {
  --bg: #FAF8F5;
  --fg: #1A1A1A;
  --accent: #1B3D2F;
  --accent-warm: #D4A853;
  --text-muted: #6B6B6B;
  --border: #E5E0D8;
  --card-bg: #FFFFFF;
  --tag-bg: #1B3D2F;
  --tag-text: #FAF8F5;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

a { color: inherit; text-decoration: none; }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.site-nav {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--accent); }

/* === HERO === */
.hero {
  padding: 5rem 2rem 0;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-lede {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--bg);
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: #14302A;
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--border);
  color: var(--fg);
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero visual grid */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  width: 320px;
  height: 320px;
  position: relative;
}

.grid-label {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 1rem;
  transition: border-color 0.2s, color 0.2s;
}

.grid-label:hover { border-color: var(--accent-warm); color: var(--accent); }

.grid-label-tl { border-top: 3px solid var(--accent-warm); }
.grid-label-tr { border-top: 3px solid var(--accent); }
.grid-label-bl { border-bottom: 3px solid var(--accent); }
.grid-label-br { border-bottom: 3px solid var(--accent-warm); }

.grid-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: var(--bg);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(27, 61, 47, 0.25);
}

.grid-count {
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(250, 248, 245, 0.85);
}

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2.5rem 0;
  margin-top: 4rem;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.trust-item strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
}

.trust-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 5rem 2rem;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.philosophy-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 5rem;
  align-items: start;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 1rem;
}

.philosophy h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.philosophy-text p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.philosophy-stats {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 0.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent-warm);
}

.stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* === FEATURED REVIEWS === */
.featured-reviews {
  padding: 5rem 2rem;
  max-width: 1180px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.5rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.review-card:hover {
  border-color: var(--accent-warm);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(27, 61, 47, 0.08);
}

.review-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 4px 4px;
}

.review-badge-new { background: var(--accent-warm); color: var(--fg); }
.review-badge-guide { background: var(--text-muted); }

.review-img-placeholder {
  height: 160px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.35;
}

.review-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.review-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.review-highlights span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(27, 61, 47, 0.06);
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}

/* === CATEGORIES === */
.categories {
  padding: 5rem 2rem;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.category-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.category-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.2s, background 0.2s;
  background: var(--bg);
}

.category-card:hover {
  border-color: var(--accent);
  background: var(--card-bg);
}

.category-icon {
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.category-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.category-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.category-count {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-warm);
  margin-top: auto;
}

/* === CLOSING === */
.closing {
  padding: 6rem 2rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* === FOOTER === */
.site-footer {
  background: var(--accent);
  color: var(--bg);
  padding: 4rem 2rem 0;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 248, 245, 0.15);
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.6);
  margin-top: 0.75rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 248, 245, 0.5);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.8);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--bg); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(250, 248, 245, 0.45);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .trust-bar { grid-template-columns: 1fr; gap: 1.25rem; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .philosophy-stats { flex-direction: row; border-left: none; }
  .stat { border-left: 3px solid var(--accent-warm); border-top: none; padding-left: 1.5rem; padding-top: 0; }
  .review-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero { padding-top: 3rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-links { grid-template-columns: 1fr; }
  .section-header h2, .philosophy h2, .closing h2 { font-size: 1.5rem; }
  .stat-number { font-size: 2.25rem; }
}