@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ============================================================
   VERINA — CORE RESET & VARIABLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1a2744;
  --navy-light:#253460;
  --orange:    #e8620a;
  --orange-hover: #c95308;
  --gray-bg:   #f2f4f7;
  --gray-mid:  #e0e4ec;
  --gray-dark: #6b7280;
  --gray-text: #374151;
  --white:     #ffffff;
  --border:    #d1d5db;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', Arial, sans-serif;
  --max-w: 1200px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
ul { list-style: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 64px 0; }
.section--gray { background: var(--gray-bg); }
.section--navy { background: var(--navy); color: var(--white); }

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--font-body);
}

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title--white { color: var(--white); }
.section-desc {
  font-size: 17px;
  color: var(--gray-dark);
  max-width: 580px;
  line-height: 1.75;
}
.section-desc--white { color: rgba(255,255,255,0.75); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
}
.logo-mark svg { fill: var(--white); }
.logo-text {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.logo-text span { color: var(--orange); }

.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--orange);
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--gray-text);
  border-bottom: 1px solid var(--gray-bg);
  border-left: none;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--gray-bg); color: var(--navy); }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.search-btn {
  background: none; border: none; cursor: pointer;
  color: var(--navy); padding: 6px;
  transition: color var(--transition);
}
.search-btn:hover { color: var(--orange); }
.search-btn svg { width: 20px; height: 20px; display: block; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.2s;
}

/* Top bar */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 12.5px;
  padding: 7px 0;
  font-family: var(--font-body);
}
.top-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: var(--white); }
.top-bar-cats { display: flex; gap: 20px; }
.top-bar-date { flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--gray-bg);
  padding: 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  min-height: 520px;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 56px 60px 0;
}
.hero-meta {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.hero-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--font-body);
}
.hero-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gray-dark); }
.hero-date { font-size: 13px; color: var(--gray-dark); }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero-lead {
  font-size: 17px;
  color: var(--gray-dark);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================================
   ARTICLE CARDS
   ============================================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: 0 8px 28px rgba(26,39,68,0.1); transform: translateY(-2px); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.card:hover .card-img img { transform: scale(1.03); }
.card-body { padding: 22px 22px 24px; }
.card-tag { margin-bottom: 10px; }
.card-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 10px;
}
.card-title a { color: inherit; }
.card-title a:hover { color: var(--orange); }
.card-excerpt {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.65;
  margin-bottom: 16px;
}
.card-meta {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--gray-dark);
  border-top: 1px solid var(--gray-mid);
  padding-top: 14px;
  flex-wrap: wrap;
}
.card-meta-author { font-weight: 600; color: var(--navy); }
.card-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-dark); flex-shrink: 0; }
.card-read { font-size: 13px; color: var(--orange); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; margin-top: 8px; }
.card-read:hover { color: var(--orange-hover); }

/* Card featured (large) */
.card-featured { display: grid; grid-template-columns: 1fr 1fr; border-radius: 4px; }
.card-featured .card-img { aspect-ratio: auto; min-height: 340px; }
.card-featured .card-body { padding: 36px 32px; display: flex; flex-direction: column; justify-content: center; }
.card-featured .card-title { font-size: 26px; }

/* Grid layouts */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */
.layout-2col {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.layout-2col-wide { grid-template-columns: 1fr 340px; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar { display: flex; flex-direction: column; gap: 36px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  padding: 24px;
}
.widget-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-mid);
}

/* Popular posts widget */
.popular-list { display: flex; flex-direction: column; gap: 18px; }
.popular-item { display: flex; gap: 14px; align-items: flex-start; }
.popular-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-mid);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}
.popular-title { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.45; }
.popular-title a { color: inherit; }
.popular-title a:hover { color: var(--orange); }
.popular-meta { font-size: 12px; color: var(--gray-dark); margin-top: 4px; }

/* Tags widget */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
  display: inline-block;
  padding: 5px 12px;
  background: var(--gray-bg);
  color: var(--navy);
  font-size: 13px;
  border-radius: 2px;
  border: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}
.tag-cloud a:hover { background: var(--navy); color: var(--white); }

/* Category widget */
.cat-list { display: flex; flex-direction: column; }
.cat-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-mid);
  font-size: 14px;
}
.cat-item:last-child { border-bottom: none; }
.cat-item a { color: var(--navy); font-weight: 500; }
.cat-item a:hover { color: var(--orange); }
.cat-count {
  background: var(--gray-bg);
  color: var(--gray-dark);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 20px;
}

/* ============================================================
   ARTICLE / SINGLE PAGE
   ============================================================ */
.article-header { padding: 48px 0 36px; border-bottom: 1px solid var(--gray-mid); margin-bottom: 40px; }
.article-category { margin-bottom: 14px; }
.article-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.article-subtitle {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 20px;
  color: var(--gray-dark);
  margin-bottom: 22px;
  line-height: 1.5;
}
.article-byline {
  display: flex; align-items: center; gap: 16px;
  font-size: 14px; color: var(--gray-dark);
  flex-wrap: wrap;
}
.byline-author { display: flex; align-items: center; gap: 8px; }
.byline-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); overflow: hidden; flex-shrink: 0;
}
.byline-avatar img { width: 100%; height: 100%; object-fit: cover; }
.byline-name { font-weight: 600; color: var(--navy); font-size: 14px; }
.byline-sep { color: var(--border); }
.byline-read { color: var(--gray-dark); }

.article-hero-img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 40px;
}
.article-body {
  font-size: 17.5px;
  line-height: 1.8;
  color: var(--gray-text);
}
.article-body p { margin-bottom: 24px; }
.article-body h2 {
  font-family: var(--font-head);
  font-size: 26px; font-weight: 700;
  color: var(--navy);
  margin: 44px 0 18px;
  line-height: 1.25;
}
.article-body h3 {
  font-family: var(--font-head);
  font-size: 21px; font-weight: 600;
  color: var(--navy);
  margin: 36px 0 14px;
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--navy); font-weight: 600; }
.article-body a { color: var(--orange); text-decoration: underline; }

.pullquote {
  border-left: 4px solid var(--orange);
  margin: 40px 0;
  padding: 20px 28px;
  background: var(--gray-bg);
}
.pullquote p {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 10px;
}
.pullquote cite {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: 0.04em;
}

.article-tags { margin: 40px 0 0; padding-top: 24px; border-top: 1px solid var(--gray-mid); }
.article-tags h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-dark); margin-bottom: 12px;
}

/* Author box */
.author-box {
  display: flex; gap: 24px;
  background: var(--gray-bg);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 4px;
  margin-top: 48px;
}
.author-box-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: var(--navy);
}
.author-box-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-box-name {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}
.author-box-role { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.author-box-bio { font-size: 15px; color: var(--gray-dark); line-height: 1.65; }

/* ============================================================
   CATEGORIES STRIP
   ============================================================ */
.cats-strip {
  display: flex; gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.cat-pill {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gray-bg);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  border-radius: 2px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.cat-pill:hover, .cat-pill.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--navy);
  padding: 40px 0;
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  display: block;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  background: var(--navy);
  padding: 60px 0;
  text-align: center;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.newsletter-desc {
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.2);
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 14px 18px;
  border: none;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button {
  padding: 14px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--orange-hover); }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--gray-text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,39,68,0.1);
}
textarea.form-control { resize: vertical; min-height: 140px; }

.form-success {
  display: none;
  background: #edf7f0;
  border: 1px solid #6db886;
  border-left: 4px solid #3a9e5f;
  padding: 18px 22px;
  border-radius: 3px;
  color: #1d5e35;
  font-size: 15px;
  font-weight: 500;
  margin-top: 20px;
}
.form-success.visible { display: flex; align-items: center; gap: 12px; }
.form-success svg { flex-shrink: 0; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 56px 0 52px;
  color: var(--white);
}
.page-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.page-hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--gray-dark);
  padding: 14px 0;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-dark); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--navy); font-weight: 500; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex; align-items: center; gap: 6px;
  justify-content: center;
  margin-top: 48px;
}
.page-num {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
  transition: all var(--transition);
}
.page-num:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.page-num.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.page-arrow { font-size: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {}
.footer-logo { margin-bottom: 16px; }
.footer-logo .logo-text { color: var(--white); }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 700;
  transition: background var(--transition);
}
.social-icon:hover { background: var(--orange); color: var(--white); }

.footer-col-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: rgba(255,255,255,0.65);
  margin-bottom: 12px;
}
.footer-contact-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom-links { display: flex; gap: 18px; }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-text);
}
.policy-body h2 {
  font-family: var(--font-head);
  font-size: 22px; font-weight: 700;
  color: var(--navy);
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.policy-body h3 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 600;
  color: var(--navy);
  margin: 28px 0 10px;
}
.policy-body p { margin-bottom: 18px; }
.policy-body ul { list-style: disc; padding-left: 22px; margin-bottom: 18px; }
.policy-body li { margin-bottom: 7px; }
.policy-body a { color: var(--orange); text-decoration: underline; }
.policy-body strong { font-weight: 600; color: var(--navy); }
.policy-date {
  display: inline-block;
  background: var(--gray-bg);
  border: 1px solid var(--border);
  padding: 10px 18px;
  font-size: 14px;
  color: var(--gray-dark);
  border-radius: 2px;
  margin-bottom: 32px;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 64px 0;
}
.about-intro img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 4px; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 8px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  padding: 28px 22px;
  border-radius: 2px;
}
.value-icon { font-size: 28px; margin-bottom: 14px; color: var(--navy); }
.value-title {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-desc { font-size: 14px; color: var(--gray-dark); line-height: 1.65; }

/* Team grid */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 20px;
  border-radius: 4px;
}
.team-card:hover { box-shadow: 0 6px 24px rgba(26,39,68,0.08); }
.team-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  background: var(--gray-mid);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 13px; color: var(--gray-dark); line-height: 1.6; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-question {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gray-bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background var(--transition);
  color: var(--navy);
}
.faq-item.open .faq-icon { background: var(--navy); color: var(--white); }
.faq-answer {
  display: none;
  font-size: 16px;
  color: var(--gray-dark);
  line-height: 1.75;
  padding-top: 16px;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   SEARCH
   ============================================================ */
.search-box-wrap {
  max-width: 680px;
  margin: 0 auto 48px;
}
.search-box {
  display: flex;
  border: 2px solid var(--navy);
  border-radius: 3px;
  overflow: hidden;
}
.search-box input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  font-size: 17px;
  font-family: var(--font-body);
  color: var(--gray-text);
  outline: none;
}
.search-box button {
  padding: 14px 24px;
  background: var(--navy);
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.search-box button:hover { background: var(--navy-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 48px 0 0; }
  .hero-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .layout-2col { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 99;
    padding: 8px 0;
  }
  .main-nav.open a { padding: 12px 24px; border-bottom: 1px solid var(--gray-bg); border-left: none; }
  .hamburger { display: flex; }
  .site-header { position: relative; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .card-featured { grid-template-columns: 1fr; }
  .top-bar-cats { display: none; }
  .about-values { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"], .newsletter-form button { width: 100%; }
  .header-cta .btn { display: none; }
  .nav-dropdown .dropdown-menu { position: static; border: none; box-shadow: none; background: var(--gray-bg); }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
