/* ============================
   PLACID — Base Styles
   Conservative Modernism
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Roboto+Slab:wght@400;700&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 1.6em;
  color: #333333;
  background: #F7F9FB;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #D77A61; text-decoration: none; transition: color .2s; }
a:hover { color: #b85f46; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Open Sans', sans-serif;
  color: #1A2E3C;
  line-height: 1.25;
  margin-bottom: 16px;
}
h1 { font-size: 48px; font-weight: 700; }
h2 { font-size: 36px; font-weight: 700; }
h3 { font-size: 24px; font-weight: 600; }
h4 { font-size: 20px; font-weight: 600; }
h5 { font-size: 17px; font-weight: 600; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 24px; margin-bottom: 16px; }
li { margin-bottom: 6px; }

/* ---- Layout ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
}

.col-4  { grid-column: span 4; }
.col-6  { grid-column: span 6; }
.col-8  { grid-column: span 8; }
.col-3  { grid-column: span 3; }
.col-9  { grid-column: span 9; }
.col-12 { grid-column: span 12; }

/* ---- Warning Banner ---- */
.warning-banner {
  background: #C0392B;
  color: #fff;
  text-align: center;
  padding: 12px 30px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .02em;
  position: relative;
  z-index: 1000;
}

/* ---- Header / Navigation ---- */
.site-header {
  background: #1A2E3C;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  background: #D77A61;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; color: #fff;
}
.logo-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px; font-weight: 700;
  color: #fff; letter-spacing: .04em;
}
.logo-tagline {
  font-size: 10px; color: #9EAFC2;
  font-weight: 400; letter-spacing: .06em;
  text-transform: uppercase;
  display: block; line-height: 1;
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: #D0DCE8;
  font-size: 14px; font-weight: 600;
  padding: 8px 14px;
  border-radius: 3px;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.main-nav a:hover, .main-nav a.active {
  background: rgba(215,122,97,.15);
  color: #D77A61;
}

.nav-cta {
  background: #D77A61 !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 4px !important;
  margin-left: 8px;
}
.nav-cta:hover { background: #b85f46 !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none; border: none;
}
.burger span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}

/* ---- Hero Section ---- */
.hero {
  background: #1A2E3C;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 50%; height: 100%;
  background: rgba(215,122,97,.05);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero p { color: #9EAFC2; font-size: 20px; margin-bottom: 40px; max-width: 600px; }

.hero-image-wrap {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  position: relative; z-index: 2;
}
.hero-image-wrap img {
  width: 100%; height: 360px;
  object-fit: cover;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 16px; font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .2s;
  text-align: center;
  text-decoration: none;
}
.btn-primary {
  background: #D77A61; color: #fff;
}
.btn-primary:hover {
  background: #b85f46; color: #fff;
  box-shadow: 0 6px 18px rgba(215,122,97,.35);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #D77A61;
  border: 2px solid #D77A61;
}
.btn-outline:hover {
  background: #D77A61; color: #fff;
}
.btn-light {
  background: #fff; color: #1A2E3C;
}
.btn-light:hover {
  background: #E0E6EB; color: #1A2E3C;
}
.btn-sm { padding: 9px 20px; font-size: 14px; }

/* ---- Section Styles ---- */
section { padding: 80px 0; }

.section-label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: #D77A61; margin-bottom: 12px;
  display: block;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 18px; color: #666;
  max-width: 640px; margin-bottom: 48px;
}

.bg-white     { background: #fff; }
.bg-light     { background: #E0E6EB; }
.bg-dark      { background: #1A2E3C; }
.bg-muted     { background: #F0F4F7; }

.text-white   { color: #fff; }
.text-center  { text-align: center; }
.text-left    { text-align: left; }

/* ---- Cards ---- */
.card {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #D1D8E0;
  box-shadow: 0 4px 8px rgba(0,0,0,.08);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,.13);
  transform: translateY(-3px);
}
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; }
.card-tag {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  color: #D77A61; margin-bottom: 10px;
  display: inline-block;
}
.card-title {
  font-size: 18px; font-weight: 700;
  color: #1A2E3C; margin-bottom: 10px;
  line-height: 1.3;
}
.card-text { font-size: 15px; color: #555; margin-bottom: 18px; line-height: 1.55; }
.card-meta { font-size: 13px; color: #888; display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- Podcast Card ---- */
.podcast-card {
  display: flex; gap: 20px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid #D1D8E0;
  box-shadow: 0 4px 8px rgba(0,0,0,.08);
  padding: 20px;
  transition: box-shadow .25s, transform .25s;
}
.podcast-card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,.13);
  transform: translateY(-3px);
}
.podcast-cover {
  width: 90px; height: 90px;
  border-radius: 4px; object-fit: cover;
  flex-shrink: 0;
}
.podcast-info { flex: 1; }
.podcast-title { font-size: 16px; font-weight: 700; color: #1A2E3C; margin-bottom: 6px; }
.podcast-host  { font-size: 13px; color: #888; margin-bottom: 8px; }
.podcast-desc  { font-size: 14px; color: #555; line-height: 1.5; margin-bottom: 10px; }
.rating { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #555; }
.stars { color: #D77A61; letter-spacing: 1px; }

/* ---- Stats Strip ---- */
.stats-strip {
  background: #D77A61;
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-num { font-size: 42px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 14px; color: rgba(255,255,255,.8); }

/* ---- Category Chips ---- */
.category-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.chip {
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 13px; font-weight: 600;
  background: #E0E6EB; color: #1A2E3C;
  border: 1px solid #C8D4DC;
  cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-block;
}
.chip:hover, .chip.active { background: #1A2E3C; color: #fff; border-color: #1A2E3C; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: #1A2E3C;
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p  { color: #9EAFC2; margin-bottom: 32px; font-size: 18px; }

/* ---- Expert Card ---- */
.expert-card {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #D1D8E0;
  box-shadow: 0 4px 8px rgba(0,0,0,.08);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.expert-card:hover {
  box-shadow: 0 12px 28px rgba(0,0,0,.13);
  transform: translateY(-3px);
}
.expert-photo {
  width: 100px; height: 100px;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid #E0E6EB;
}
.expert-name  { font-size: 18px; font-weight: 700; color: #1A2E3C; margin-bottom: 4px; }
.expert-role  { font-size: 13px; color: #D77A61; font-weight: 600; margin-bottom: 12px; }
.expert-bio   { font-size: 14px; color: #666; line-height: 1.55; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  background: #E0E6EB;
  padding: 14px 0;
  font-size: 14px; color: #666;
}
.breadcrumb a { color: #1A2E3C; }
.breadcrumb a:hover { color: #D77A61; }
.breadcrumb span { margin: 0 8px; color: #aaa; }

/* ---- Page Header ---- */
.page-header {
  background: #1A2E3C;
  padding: 64px 0;
}
.page-header h1 { color: #fff; margin-bottom: 12px; }
.page-header p  { color: #9EAFC2; font-size: 18px; max-width: 640px; }

/* ---- Sidebar ---- */
.sidebar-widget {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #D1D8E0;
  padding: 24px;
  margin-bottom: 30px;
}
.widget-title {
  font-size: 16px; font-weight: 700;
  color: #1A2E3C; margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid #D77A61;
}

/* ---- Quote Block ---- */
.pull-quote {
  border-left: 4px solid #D77A61;
  padding: 20px 28px;
  background: #F7F9FB;
  margin: 32px 0;
  border-radius: 0 4px 4px 0;
}
.pull-quote p {
  font-size: 19px; font-style: italic;
  color: #1A2E3C; line-height: 1.5; margin: 0;
}

/* ---- Table ---- */
.data-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.data-table th {
  background: #1A2E3C; color: #fff;
  padding: 12px 16px; font-size: 14px; font-weight: 600;
  text-align: left;
}
.data-table td { padding: 12px 16px; font-size: 15px; border-bottom: 1px solid #E0E6EB; }
.data-table tr:nth-child(even) td { background: #F7F9FB; }

/* ---- Forms ---- */
.form-group { margin-bottom: 24px; }
label {
  display: block;
  font-size: 14px; font-weight: 600;
  color: #1A2E3C; margin-bottom: 8px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #C8D4DC;
  border-radius: 4px;
  font-size: 16px; font-family: 'Open Sans', sans-serif;
  color: #333; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #1A2E3C;
  box-shadow: 0 0 0 3px rgba(26,46,60,.1);
}
textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 13px; color: #888; margin-top: 6px; }

/* ---- Pagination ---- */
.pagination {
  display: flex; gap: 6px; justify-content: center;
  margin-top: 48px;
}
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 4px;
  font-size: 14px; font-weight: 600;
  border: 1px solid #D1D8E0;
  color: #1A2E3C; background: #fff;
  text-decoration: none; transition: all .2s;
}
.pagination a:hover { background: #1A2E3C; color: #fff; border-color: #1A2E3C; }
.pagination .current { background: #D77A61; color: #fff; border-color: #D77A61; }

/* ---- Tag Cloud ---- */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 3px;
  background: #E0E6EB; color: #1A2E3C;
  text-decoration: none; transition: all .2s;
}
.tag:hover { background: #D77A61; color: #fff; }

/* ---- Review Score ---- */
.score-box {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  width: 80px; height: 80px;
  background: #D77A61; border-radius: 4px;
  flex-shrink: 0;
}
.score-num { font-size: 28px; font-weight: 700; color: #fff; line-height: 1; }
.score-label { font-size: 11px; color: rgba(255,255,255,.8); font-weight: 600; }

.score-bars { margin-top: 20px; }
.score-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.score-criterion { font-size: 14px; color: #555; width: 130px; flex-shrink: 0; }
.score-bar-wrap { flex: 1; height: 8px; background: #E0E6EB; border-radius: 4px; overflow: hidden; }
.score-bar-fill { height: 100%; background: #D77A61; border-radius: 4px; }
.score-val { font-size: 13px; font-weight: 700; color: #1A2E3C; width: 30px; text-align: right; }

/* ---- Accordion ---- */
.accordion-item {
  border: 1px solid #D1D8E0;
  border-radius: 4px; margin-bottom: 8px;
  overflow: hidden;
}
.accordion-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px; cursor: pointer;
  background: #fff; transition: background .2s;
}
.accordion-header:hover { background: #F7F9FB; }
.accordion-header h4 { margin: 0; font-size: 16px; color: #1A2E3C; }
.accordion-icon { font-size: 20px; color: #D77A61; transition: transform .3s; font-weight: 300; }
.accordion-body {
  display: none;
  padding: 0 24px 20px;
  background: #fff;
  font-size: 15px; color: #555; line-height: 1.65;
}
.accordion-item.open .accordion-body { display: block; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }

/* ---- Newsletter Strip ---- */
.newsletter-strip {
  background: #F0F4F7;
  padding: 64px 0;
}
.newsletter-form {
  display: flex; gap: 12px; max-width: 500px;
}
.newsletter-form input { flex: 1; }
.newsletter-form .btn { flex-shrink: 0; }

/* ---- Footer ---- */
.site-footer {
  background: #1A2E3C;
  padding: 64px 0 0;
  color: #9EAFC2;
  font-size: 15px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-about p { color: #9EAFC2; font-size: 14px; line-height: 1.7; margin-top: 14px; }
.footer-col h5 {
  color: #fff; font-size: 14px; font-weight: 700;
  margin-bottom: 18px; text-transform: uppercase;
  letter-spacing: .07em;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #9EAFC2; font-size: 14px; text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: #D77A61; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 14px; }
.footer-contact-item strong { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  font-size: 13px; color: #6A7F90;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: #6A7F90; font-size: 13px; }
.footer-bottom-links a:hover { color: #D77A61; }

/* ---- Back-to-Top ---- */
#back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: #D77A61; color: #fff;
  border-radius: 4px; border: none;
  font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  z-index: 800;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; }
#back-to-top:hover { background: #b85f46; transform: translateY(-2px); }

/* ---- Utility ---- */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-30 { gap: 30px; }

.divider { height: 1px; background: #D1D8E0; margin: 32px 0; }

.highlight-box {
  background: #E0E6EB;
  border-left: 4px solid #D77A61;
  padding: 20px 24px;
  border-radius: 0 4px 4px 0;
  margin: 24px 0;
}
.highlight-box p { margin: 0; font-size: 15px; color: #333; }

/* ---- Mobile ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .col-4 { grid-column: span 6; }
  .col-3 { grid-column: span 6; }
  .col-8 { grid-column: span 12; }
  .col-9 { grid-column: span 12; }
  .col-6 { grid-column: span 12; }
  .hero { padding: 80px 0; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #1A2E3C; padding: 16px; gap: 4px; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; }
  .burger { display: flex; }
  .col-4, .col-3 { grid-column: span 12; }
  .hero { padding: 60px 0; }
  .hero p { font-size: 17px; }
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .newsletter-form { flex-direction: column; }
  .podcast-card { flex-direction: column; }
  .score-row { flex-wrap: wrap; }
  .score-criterion { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 26px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
