/* =============================================
   QUORUM — Аналіз фінансових аудіоматеріалів
   Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Serif+4:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap');

/* === CSS Variables === */
:root {
  --charcoal:     #232323;
  --charcoal-md:  #3a3a3a;
  --charcoal-lt:  #555555;
  --cream:        #F8F5F0;
  --cream-dark:   #EDE9E1;
  --cream-darker: #DDD8CE;
  --gold:         #B8963E;
  --gold-light:   #D4AF6A;
  --gold-dark:    #8A6D2A;
  --green:        #1E3A2F;
  --green-mid:    #2D5016;
  --green-light:  #3B6B2A;
  --white:        #FFFFFF;
  --border:       #D8D2C6;
  --border-light: #ECE8E0;
  --text-main:    #2C2A26;
  --text-muted:   #6E6860;
  --text-light:   #9A9288;
  --shadow-sm:    0 2px 8px rgba(35,35,35,0.06);
  --shadow-md:    0 4px 20px rgba(35,35,35,0.10);
  --shadow-lg:    0 8px 40px rgba(35,35,35,0.14);
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    14px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;
  --font-ui:      'Inter', system-ui, sans-serif;
  --transition:   all 0.22s ease;
  --max-width:    1220px;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--cream);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-dark); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: inherit; }

/* === Container === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container--wide   { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* === Header / Navigation === */
.site-header {
  background: var(--green);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
}
.logo-sub {
  font-family: var(--font-ui);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 2px;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: var(--transition);
}
.nav-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.08); }
.nav-link.active { color: var(--gold-light); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--green);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  padding: 9px 18px;
  transition: var(--transition);
}
.nav-dropdown a:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.06);
}
.nav-arrow {
  font-size: 10px;
  margin-left: 4px;
  opacity: 0.6;
  display: inline-block;
  transition: var(--transition);
}
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-phone {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.02em;
}
.header-phone:hover { color: var(--gold-light); }

/* === Breadcrumb === */
.breadcrumb-bar {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 12.5px;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--gold-dark); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--text-light); }

/* === Hero (Homepage) === */
.hero {
  background: var(--green);
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,47,0.95) 40%, rgba(45,80,22,0.80) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.28;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 72px 0;
}
.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 38px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* === Section Layouts === */
.section { padding: 72px 0; }
.section--sm { padding: 48px 0; }
.section--lg { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--dark { background: var(--green); }
.section--dark * { color: var(--white); }
.section--gray { background: var(--cream-dark); }

.section-header {
  margin-bottom: 48px;
}
.section-header--center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.26;
  margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section--dark .section-title { color: var(--white); }
.section-lead {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}
.section--dark .section-lead { color: rgba(255,255,255,0.72); }

/* === Grid Systems === */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }

/* === Cards === */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--border);
}
.card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.card-body { padding: 24px; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.card-cat {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
  display: block;
}
.card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.32;
  margin-bottom: 10px;
}
.card-title a { color: inherit; }
.card-title a:hover { color: var(--gold-dark); }
.card-excerpt {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 18px;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid var(--border-light);
  background: var(--cream);
}
.card-link {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 5px;
}
.card-link:hover { color: var(--gold); }
.card-link .arrow { font-size: 16px; transition: var(--transition); }
.card-link:hover .arrow { transform: translateX(3px); }

/* Featured card */
.card-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.card-featured .card-img {
  aspect-ratio: 4/3;
  height: 100%;
  object-fit: cover;
}
.card-featured .card-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-featured .card-title { font-size: 26px; margin-bottom: 14px; }
.card-featured .card-excerpt { font-size: 15.5px; }

/* === Audio Player Card === */
.audio-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.audio-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.audio-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.audio-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.audio-icon svg { fill: var(--gold); }
.audio-info { flex: 1; }
.audio-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.audio-meta {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  gap: 12px;
}
.audio-player {
  margin: 14px 0;
}
.audio-player audio {
  width: 100%;
  height: 36px;
  outline: none;
  border-radius: var(--radius-sm);
  accent-color: var(--gold);
}
.audio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.tag {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--cream-dark);
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.tag--gold { background: rgba(184,150,62,0.12); color: var(--gold-dark); }
.tag--green { background: rgba(30,58,47,0.10); color: var(--green); }

/* === Rating === */
.rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.rating-star {
  width: 14px;
  height: 14px;
  color: var(--gold);
}
.rating-val {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 6px;
}

/* === Statistics Strip === */
.stats-strip {
  background: var(--green);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* === Category Pills === */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.cat-pill {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 24px;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.cat-pill:hover,
.cat-pill.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* === Two-column article layout === */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.sidebar { position: sticky; top: 88px; }

/* === Article Content === */
.article-content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 40px 0 16px;
  line-height: 1.3;
}
.article-content h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 32px 0 12px;
}
.article-content h4 {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal-md);
  margin: 24px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.article-content p {
  font-size: 17px;
  line-height: 1.78;
  color: var(--text-main);
  margin-bottom: 20px;
}
.article-content ul,
.article-content ol {
  margin: 18px 0 24px 24px;
}
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 8px;
}
.article-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--cream-dark);
  padding: 18px 24px;
  margin: 28px 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.article-content blockquote p {
  font-size: 18px;
  font-style: italic;
  color: var(--charcoal-md);
  margin-bottom: 0;
}
.article-content figure { margin: 32px 0; }
.article-content figure img { border-radius: var(--radius-md); width: 100%; }
.article-content figcaption {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-light);
  margin-top: 8px;
  text-align: center;
}

/* Article header */
.article-header { padding: 56px 0 40px; }
.article-category {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: block;
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 760px;
}
.article-subtitle {
  font-size: 19px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 660px;
  margin-bottom: 28px;
}
.article-byline {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.byline-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream-darker);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
}
.byline-info {
  flex: 1;
}
.byline-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}
.byline-date {
  font-family: var(--font-ui);
  font-size: 12.5px;
  color: var(--text-light);
}
.article-read-time {
  font-family: var(--font-ui);
  font-size: 12.5px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* === Sidebar Widgets === */
.widget {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.widget-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 18px;
}
.widget-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}
.widget-list li:last-child { border-bottom: none; padding-bottom: 0; }
.widget-list a {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.5;
  transition: var(--transition);
}
.widget-list a:hover { color: var(--gold-dark); }
.widget-cat-count {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--text-light);
  float: right;
  background: var(--cream-dark);
  padding: 2px 8px;
  border-radius: 10px;
}

/* === Page Hero (inner pages) === */
.page-hero {
  background: var(--green);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(184,150,62,0.08);
  pointer-events: none;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 14px;
}
.page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.7;
}

/* === Team Card === */
.team-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.team-card-body { padding: 22px 20px; }
.team-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.team-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === Contact form === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal-md);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-main);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,62,0.14);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-hint {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-light);
  margin-top: 5px;
}
.form-success {
  display: none;
  background: #d4edda;
  border: 1.5px solid #28a745;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 20px;
}
.form-success.visible { display: block; }
.form-success p {
  font-family: var(--font-ui);
  font-size: 15px;
  color: #155724;
  font-weight: 500;
  margin-bottom: 0;
}

.contact-info-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  color: var(--white);
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 24px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.contact-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(184,150,62,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-info-text h4 {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.contact-info-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
}
.contact-info-text a {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
}
.contact-info-text a:hover { color: var(--gold-light); }

/* === FAQ === */
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { background: var(--cream); color: var(--gold-dark); }
.faq-question.open { color: var(--gold-dark); background: var(--cream); }
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold-dark);
  font-family: var(--font-ui);
}
.faq-question.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--white); }
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.78;
}
.faq-answer.open { display: block; }

/* === Policy Pages === */
.policy-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 36px 0 14px;
  padding-top: 36px;
  border-top: 1px solid var(--border-light);
}
.policy-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.policy-content h3 {
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal-md);
  margin: 24px 0 10px;
}
.policy-content p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.policy-content ul {
  margin: 12px 0 20px 24px;
  list-style: disc;
}
.policy-content li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 8px;
}
.policy-content a { color: var(--gold-dark); }
.policy-meta {
  background: var(--cream-dark);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 36px;
}
.policy-meta p {
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 0;
}
.policy-toc {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 36px;
}
.policy-toc h4 {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--charcoal-md);
  margin-bottom: 12px;
}
.policy-toc ol {
  list-style: decimal;
  padding-left: 18px;
}
.policy-toc li {
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.policy-toc a { color: var(--gold-dark); }

/* === Pagination === */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}
.page-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-muted);
  background: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.page-link:hover, .page-link.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

/* === Horizontal Rule === */
.divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 40px 0;
}
.divider--gold { border-top-color: var(--gold); }

/* === Inline info boxes === */
.info-box {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box--note {
  background: rgba(184,150,62,0.08);
  border-color: var(--gold);
}
.info-box p { font-size: 15px; color: var(--text-muted); margin-bottom: 0; }

/* === Map placeholder === */
.map-box {
  width: 100%;
  height: 280px;
  background: var(--cream-darker);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-light);
  font-family: var(--font-ui);
  font-size: 14px;
  overflow: hidden;
  margin-top: 22px;
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* === Footer === */
.site-footer {
  background: var(--charcoal);
  padding: 60px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { font-size: 20px; margin-bottom: 14px; display: block; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.52);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-brand .footer-contact {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 1.9;
}
.footer-brand .footer-contact a {
  color: rgba(255,255,255,0.58);
}
.footer-brand .footer-contact a:hover { color: var(--gold-light); }
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.58);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--font-ui);
  font-size: 12.5px;
  color: rgba(255,255,255,0.36);
}
.footer-policy-links {
  display: flex;
  gap: 20px;
}
.footer-policy-links a {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(255,255,255,0.36);
}
.footer-policy-links a:hover { color: var(--gold-light); }

/* === Utilities === */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.flex         { display: flex; }
.flex-wrap    { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.w-full { width: 100%; }
.separator { height: 1px; background: var(--border-light); margin: 32px 0; }

/* === Cookie Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--charcoal);
  padding: 18px 24px;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.22);
}
.cookie-banner.visible { display: flex; }
.cookie-banner p {
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
  line-height: 1.6;
  margin: 0;
}
.cookie-banner a { color: var(--gold-light); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept {
  background: var(--gold);
  color: var(--green);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-accept:hover { background: var(--gold-dark); color: var(--white); }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.24);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}
.cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* === Back to top === */
.back-to-top {
  position: fixed;
  bottom: 80px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 900;
  transition: var(--transition);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { background: var(--gold-dark); }

/* === Reading progress === */
.reading-progress {
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  height: 3px;
  background: rgba(184,150,62,0.2);
  z-index: 999;
}
.reading-progress-bar {
  height: 100%;
  background: var(--gold);
  width: 0;
  transition: width 0.1s linear;
}

/* === Newsletter === */
.newsletter-box {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
}
.newsletter-box h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 10px;
}
.newsletter-box p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-success {
  display: none;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  margin-top: 16px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--gold-light);
}
.newsletter-success.visible { display: block; }

/* === Sitemap page === */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.sitemap-col h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 16px;
}
.sitemap-col ul { list-style: none; }
.sitemap-col li {
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
}
.sitemap-col li:last-child { border-bottom: none; }
.sitemap-col a {
  font-size: 14.5px;
  color: var(--text-muted);
}
.sitemap-col a:hover { color: var(--gold-dark); }

/* === Highlight box === */
.highlight-box {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 32px;
  align-items: center;
  margin: 56px 0;
}
.highlight-box h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 12px;
}
.highlight-box p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.highlight-box-cta { text-align: center; }
.highlight-box-cta .btn { width: 100%; justify-content: center; }

/* === Page Hero variants === */
.page-hero--short { padding: 40px 0; }
.page-hero-inner { max-width: 760px; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  margin-bottom: 12px;
}
.page-lead {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 580px;
}

/* === Contact form extras === */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-main);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,62,0.14);
}
.form-input::placeholder { color: var(--text-light); }
.form-textarea { min-height: 160px; resize: vertical; }
select.form-input { cursor: pointer; appearance: auto; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* === FAQ variants === */
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.faq-q::after {
  content: '+';
  font-size: 22px;
  line-height: 1;
  color: var(--gold-dark);
  flex-shrink: 0;
  font-family: var(--font-ui);
  font-weight: 300;
  transition: var(--transition);
}
.faq-q:hover { background: var(--cream); color: var(--gold-dark); }
.faq-q.open { color: var(--gold-dark); background: var(--cream); }
.faq-q.open::after { content: '−'; }
.faq-a {
  display: none;
  padding: 0 24px 22px;
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.78;
}
.faq-a.open { display: block; }
.faq-a p { margin-bottom: 10px; font-size: 15.5px; line-height: 1.78; }
.faq-a p:last-child { margin-bottom: 0; }

/* === Responsive === */
@media (max-width: 1100px) {
  .article-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .highlight-box { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .card-featured { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:last-child { border-bottom: none; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--green); padding: 12px 0 20px; flex-direction: column; align-items: stretch; border-top: 1px solid rgba(255,255,255,0.1); }
  .main-nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-phone { display: none; }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-radius: 0; padding: 0 0 0 20px; background: rgba(0,0,0,0.15); display: none; }
  .nav-item:hover .nav-dropdown { display: block; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero { min-height: 440px; }
  .section { padding: 48px 0; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .category-pills { gap: 6px; }
}
