/* Review Insider Hub – Editorial Light Theme */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #f8f6f2;
  --bg-card: #ffffff;
  --bg-elevated: #fffefb;
  --border: #e5e0d8;
  --border-strong: #d4cfc4;
  --text: #1a1a18;
  --text-muted: #5c5a54;
  --accent: #1a1a18;
  --accent-hover: #3d3d38;
  --accent-soft: rgba(26, 26, 24, 0.06);
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 20px rgba(26, 26, 24, 0.06);
  --shadow-lg: 0 8px 40px rgba(26, 26, 24, 0.08);
  --transition: 0.2s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Banner – full-width hero */
.site-banner {
  width: 100%;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}
.site-banner .banner-inner {
  max-width: 900px;
  margin: 0 auto;
}
.site-banner .banner-logo {
  max-width: 100%;
  width: 420px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Header – minimal nav bar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 242, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.site-header .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-header .brand { display: flex; align-items: center; }
.site-header .logo {
  height: 42px;
  width: auto;
  display: block;
}
.site-header .logo-link { display: flex; align-items: center; text-decoration: none; color: inherit; }
.site-header nav { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.site-header nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.site-header nav a:hover { color: var(--accent); background: var(--accent-soft); }
.site-header nav a.nav-btn {
  color: var(--bg-card);
  background: var(--accent);
  margin-left: 0.25rem;
}
.site-header nav a.nav-btn:hover {
  background: var(--accent-hover);
  color: var(--bg-card);
}

.wrap { max-width: 720px; margin: 0 auto; padding: 3rem 2rem; }
.home-layout { max-width: 100%; margin: 0; padding: 0; }

/* Home hero – different structure */
.home-hero {
  width: 100%;
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.home-hero .hero-logo {
  max-width: 380px;
  width: 100%;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}
.home-hero .hero-tagline {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 400;
}

.home-content-wrap { max-width: 720px; margin: 0 auto; padding: 3rem 2rem; }
.home-intro {
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.home-lead { font-size: 1.1rem; color: var(--text-muted); margin: 0; line-height: 1.7; font-style: italic; }
.home-content { margin-top: 0; }
.home-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 1.75rem;
  color: var(--text);
}

.page-text { background: transparent; border: none; padding: 0; box-shadow: none; color: var(--text); }
h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  margin: 0 0 1.25rem;
  color: var(--text);
}
h2 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 2.5rem 0 0.75rem;
  color: var(--text);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
p { margin: 0 0 1.25rem; color: var(--text); }
.page-text > p { color: var(--text); }
ul { margin: 0 0 1.25rem; padding-left: 1.5rem; }
li { margin-bottom: 0.5rem; color: var(--text); }
li::marker { color: var(--text-muted); }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
th, td { padding: 1rem 1.25rem; text-align: left; color: var(--text); border-bottom: 1px solid var(--border); }
th {
  background: var(--bg);
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--accent-soft); }

.page-text a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}
.page-text a:hover { color: var(--text-muted); }

.faq-block {
  margin: 3.5rem 0 0;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.faq-block-inner { padding: 0; }
.faq-block-header {
  text-align: left;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.faq-block-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.faq-block-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.faq-block-intro { margin: 0; font-size: 0.95rem; color: var(--text-muted); }
.faq p {
  margin-bottom: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--border-strong);
}
.faq p:last-child { margin-bottom: 0; }
.faq strong { display: block; margin-bottom: 0.4rem; color: var(--text); }

.site-footer {
  margin-top: 4rem;
  padding: 2.5rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}
.site-footer .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.site-footer .footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  width: 100%;
}
.site-footer .logo {
  height: 40px;
  width: auto;
  opacity: 0.85;
}
.site-footer .brand .logo-link { display: block; }
.site-footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem 2rem; }
.site-footer nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.site-footer nav a:hover { color: var(--text); }
.site-footer .copy { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* Contact page */
.cp-hero { text-align: left; padding: 0 0 1.5rem; max-width: 100%; }
.cp-hero h1 { font-size: 2rem; margin: 0 0 0.5rem; }
.cp-hero .tagline { font-size: 1rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.cp-channels { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; padding: 2rem 0; }
.cp-channel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: left;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.cp-channel:hover { box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.cp-channel .ico { font-size: 1.5rem; margin-bottom: 0.5rem; }
.cp-channel .title { color: var(--text); font-weight: 600; font-size: 0.95rem; margin-bottom: 0.5rem; }
.cp-channel .value { margin: 0 0 0.5rem; font-weight: 500; }
.cp-channel .extra { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
.cp-section { padding: 1.5rem 0; border-top: 1px solid var(--border); }
.cp-section h2 { margin-top: 0; }
.cp-note {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.cp-channel .value a { color: var(--text); text-decoration: underline; }
.cp-channel .value a:hover { color: var(--text-muted); }
.cp-section a, .cp-note a, .help-box a { color: var(--text); text-decoration: underline; }
.cp-section a:hover, .cp-note a:hover, .help-box a:hover { color: var(--text-muted); }
.help-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.site-hero { width: 100%; padding: 2.5rem 2rem; text-align: center; background: var(--bg-card); border-bottom: 1px solid var(--border); }
.site-hero .hero-logo { max-width: 300px; height: auto; display: block; margin: 0 auto; }
.site-hero.hero-compact { padding: 2rem; }
.site-hero.hero-compact .hero-logo { max-width: 220px; }
.hero-inner { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.hero-tagline { font-family: var(--font-body); font-size: 1rem; color: var(--text-muted); margin: 0; }
.home-quick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.home-quick a {
  display: block;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  text-align: left;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.home-quick a:hover { border-color: var(--border-strong); box-shadow: var(--shadow-lg); }

@media (max-width: 768px) {
  .site-banner { padding: 1.5rem 1rem; }
  .site-banner .banner-logo { width: 100%; max-width: 320px; }
  .site-header .inner { padding: 0.75rem 1rem; }
  .site-header .logo { height: 36px; }
  .site-header nav a { font-size: 0.8rem; padding: 0.4rem 0.75rem; }
  .home-hero { padding: 2rem 1rem; }
  .home-hero .hero-logo { max-width: 280px; }
  .wrap, .home-content-wrap { padding: 2rem 1rem; }
  .home-title { font-size: 2rem; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.15rem; }
  .cp-hero h1 { font-size: 1.65rem; }
  .cp-channels { grid-template-columns: 1fr; }
  .home-quick { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .site-header nav a:not(.nav-btn) { display: none; }
  .site-header nav a.nav-btn { margin-left: 0; }
  .home-quick { grid-template-columns: 1fr; }
}

.page-text img,
.home-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.page-text img + em,
.home-content img + em {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}
