@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Merriweather:ital,wght@0,300;0,400;0,700;1,400&display=swap');

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

:root {
  --color-primary: #1A2E35;
  --color-secondary: #F5F7FA;
  --color-accent: #8C472A;
  --color-highlight: #D1D9E0;
  --color-white: #FFFFFF;
  --color-text-muted: #5a6872;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Merriweather', serif;
  --container-max: 1200px;
  --section-gap-lg: 100px;
  --section-gap-md: 60px;
  --radius: 4px;
  --shadow-card: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-hover: 0 6px 24px rgba(0,0,0,0.10);
  --transition: 0.25s ease;
}

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

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--color-primary);
  background-color: var(--color-secondary);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: #6b3520; }
ul, ol { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: 48px; color: var(--color-accent); }
h2 { font-size: 36px; color: var(--color-primary); }
h3 { font-size: 24px; color: var(--color-primary); font-weight: 600; }
h4 { font-size: 20px; color: var(--color-primary); font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); font-size: 15px; }
.font-montserrat { font-family: var(--font-heading); }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* ===== HEADER ===== */
.site-header {
  background: var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--color-accent);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 80px);
  height: 70px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.logo-tagline {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 400;
  color: var(--color-highlight);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.logo:hover .logo-name { color: var(--color-highlight); }

/* NAV */
.main-nav { display: flex; align-items: center; gap: 0; }
.nav-list { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--color-highlight);
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--color-white); }
.nav-link.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  position: absolute;
  bottom: 0;
  left: 0;
}

/* DROPDOWN */
.nav-item.has-dropdown:hover .dropdown { display: block; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color-primary);
  min-width: 240px;
  border-top: 2px solid var(--color-accent);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 999;
}
.dropdown a {
  display: block;
  padding: 11px 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-highlight);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition), color var(--transition);
}
.dropdown a:hover { background: rgba(140,71,42,0.2); color: var(--color-white); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  background: var(--color-primary);
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-highlight);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mobile-nav a:hover { color: var(--color-white); }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  background-color: var(--color-primary);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 100px clamp(20px, 5vw, 80px);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}
.hero-content { max-width: 680px; }
.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  color: var(--color-white);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero h1 span { color: var(--color-accent); }
.hero-desc {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-highlight);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: #6b3520;
  border-color: #6b3520;
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(140,71,42,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}
.btn-sm { padding: 9px 22px; font-size: 13px; }

/* ===== SECTION WRAPPER ===== */
.section { padding: var(--section-gap-lg) 0; }
.section-alt { background-color: var(--color-white); }
.section-dark { background-color: var(--color-primary); color: var(--color-secondary); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--color-white); }
.section-dark p, .section-dark li { color: var(--color-highlight); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--color-text-muted); max-width: 640px; margin: 0 auto; }
.section-divider {
  width: 56px;
  height: 3px;
  background: var(--color-accent);
  margin: 16px auto 0;
}
.section-divider-left {
  width: 56px;
  height: 3px;
  background: var(--color-accent);
  margin: 16px 0 0;
}

/* ===== CARDS ===== */
.card {
  background: var(--color-white);
  border: 1px solid var(--color-highlight);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.005);
}
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 24px; }
.card-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.card-title {
  font-size: 19px;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}
.card-title a { color: var(--color-primary); }
.card-title a:hover { color: var(--color-accent); }
.card-excerpt { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 16px; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--color-text-muted);
  padding-top: 14px;
  border-top: 1px solid var(--color-highlight);
}

/* 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: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }

/* ===== STAT STRIP ===== */
.stat-strip { background: var(--color-accent); padding: 50px 0; }
.stat-strip .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* ===== FEATURED IMAGE BLOCK ===== */
.featured-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.featured-block.reverse { direction: rtl; }
.featured-block.reverse > * { direction: ltr; }
.featured-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}
.featured-content { display: flex; flex-direction: column; gap: 20px; }
.featured-content h2 { margin-bottom: 0; }
.featured-content p { font-size: 17px; color: var(--color-text-muted); }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 36px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-highlight);
}
.timeline-item { position: relative; margin-bottom: 44px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-accent);
}
.timeline-year {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-accent);
  margin-bottom: 6px;
}
.timeline-title { font-size: 20px; margin-bottom: 8px; }
.timeline-text { font-size: 16px; color: var(--color-text-muted); }

/* ===== QUOTE BLOCK ===== */
.blockquote-fancy {
  border-left: 4px solid var(--color-accent);
  padding: 24px 32px;
  background: var(--color-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow-card);
  margin: 40px 0;
}
.blockquote-fancy p {
  font-size: 21px;
  font-style: italic;
  line-height: 1.6;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.blockquote-fancy cite {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.5px;
  font-style: normal;
}

/* ===== TAGS ===== */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--color-secondary);
  border: 1px solid var(--color-highlight);
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.3px;
  transition: all var(--transition);
  cursor: default;
}
.tag:hover { background: var(--color-accent); color: var(--color-white); border-color: var(--color-accent); }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-highlight);
  padding: 12px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-muted);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}
.breadcrumb a { color: var(--color-accent); font-weight: 500; }
.breadcrumb a:hover { color: #6b3520; }
.breadcrumb-sep { color: var(--color-highlight); font-size: 11px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--color-primary);
  padding: 64px 0;
  border-bottom: 3px solid var(--color-accent);
}
.page-hero h1 { color: var(--color-white); font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.page-hero p { color: var(--color-highlight); font-size: 17px; max-width: 580px; margin-top: 10px; }

/* ===== CONTACT FORM ===== */
.contact-form-wrap {
  background: var(--color-white);
  border: 1px solid var(--color-highlight);
  border-radius: var(--radius);
  padding: 44px 48px;
  box-shadow: var(--shadow-card);
}
.form-group { margin-bottom: 22px; }
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-primary);
  background: var(--color-secondary);
  border: 1px solid var(--color-highlight);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(140,71,42,0.1);
  background: var(--color-white);
}
textarea.form-control { min-height: 140px; resize: vertical; }
.form-select { appearance: none; cursor: pointer; }
.form-note { font-size: 13px; color: var(--color-text-muted); margin-top: 6px; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--color-text-muted); }
.form-consent input[type="checkbox"] { margin-top: 3px; accent-color: var(--color-accent); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== CONTACT INFO ===== */
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.info-block { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(140,71,42,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; stroke: var(--color-accent); fill: none; }
.info-text h4 { font-size: 14px; font-weight: 600; font-family: var(--font-heading); margin-bottom: 4px; letter-spacing: 0.5px; text-transform: uppercase; }
.info-text p, .info-text a { font-size: 16px; color: var(--color-text-muted); }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 50px; }
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--color-highlight);
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 32px; }
.sidebar-widget {
  background: var(--color-white);
  border: 1px solid var(--color-highlight);
  border-radius: var(--radius);
  padding: 28px;
}
.widget-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-accent);
}
.widget-link-list li { padding: 9px 0; border-bottom: 1px solid var(--color-highlight); }
.widget-link-list li:last-child { border-bottom: none; }
.widget-link-list a {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-primary);
  transition: color var(--transition);
}
.widget-link-list a:hover { color: var(--color-accent); }

/* ===== ARTICLE CONTENT ===== */
.article-content h2 { margin: 40px 0 18px; }
.article-content h3 { margin: 32px 0 14px; }
.article-content p { font-size: 17px; line-height: 1.75; margin-bottom: 20px; color: #2a3e47; }
.article-content ul, .article-content ol { padding-left: 28px; margin-bottom: 20px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { font-size: 17px; line-height: 1.7; color: #2a3e47; margin-bottom: 8px; }
.article-content img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 32px 0;
}
.article-content .caption {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: -22px;
  margin-bottom: 28px;
}
.article-meta-top {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-highlight);
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-muted);
}
.article-meta-top span { display: flex; align-items: center; gap: 5px; }
.article-title-main { margin-bottom: 20px; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26,46,53,0.85));
  color: var(--color-white);
  padding: 30px 18px 18px;
  font-family: var(--font-heading);
  font-size: 13px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-caption { opacity: 1; }

/* ===== EXPERT CARD ===== */
.expert-card {
  background: var(--color-white);
  border: 1px solid var(--color-highlight);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.expert-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.expert-photo {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--color-highlight);
}
.expert-info { flex: 1; }
.expert-name { font-size: 18px; margin-bottom: 4px; }
.expert-role { font-family: var(--font-heading); font-size: 13px; color: var(--color-accent); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 10px; }
.expert-bio { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; }

/* ===== RESOURCE ROW ===== */
.resource-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-highlight);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: box-shadow var(--transition);
}
.resource-row:hover { box-shadow: var(--shadow-hover); }
.resource-icon {
  width: 48px;
  height: 48px;
  background: rgba(140,71,42,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.resource-icon svg { width: 22px; height: 22px; stroke: var(--color-accent); fill: none; }
.resource-type {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 4px;
}
.resource-title { font-size: 17px; margin-bottom: 6px; }
.resource-desc { font-size: 14px; color: var(--color-text-muted); }

/* ===== EVENT CARD ===== */
.event-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 28px;
  background: var(--color-white);
  border: 1px solid var(--color-highlight);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }
.event-date-block {
  text-align: center;
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.event-month {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.event-day {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}
.event-year {
  font-family: var(--font-heading);
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}
.event-info h3 { font-size: 20px; margin-bottom: 8px; }
.event-where {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.event-desc { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; }

/* ===== NEWSLETTER ===== */
.newsletter-strip {
  background: var(--color-primary);
  padding: 60px 0;
}
.newsletter-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-text h3 { color: var(--color-white); font-size: 26px; margin-bottom: 8px; }
.newsletter-text p { color: var(--color-highlight); font-size: 16px; margin: 0; }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-input {
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  color: var(--color-white);
  width: 280px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus { border-color: var(--color-accent); }

/* ===== FOOTER ===== */
.site-footer {
  background: #111d22;
  color: var(--color-highlight);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-name { font-size: 22px; color: var(--color-white); letter-spacing: 3px; }
.footer-brand .logo-tagline { font-size: 9px; color: var(--color-highlight); letter-spacing: 2px; margin-top: 2px; display: block; }
.footer-desc {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(209,217,224,0.7);
}
.footer-addr {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(209,217,224,0.7);
  line-height: 1.8;
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(209,217,224,0.7);
  transition: color var(--transition);
  font-family: var(--font-heading);
  font-weight: 400;
}
.footer-links a:hover { color: var(--color-white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-family: var(--font-heading);
  font-size: 13px;
  color: rgba(209,217,224,0.5);
}
.footer-policy-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-policy-links a {
  font-family: var(--font-heading);
  font-size: 13px;
  color: rgba(209,217,224,0.5);
  transition: color var(--transition);
}
.footer-policy-links a:hover { color: var(--color-white); }

/* ===== THANK YOU PAGE ===== */
.thankyou-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.thankyou-box { max-width: 560px; }
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: rgba(140,71,42,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.thankyou-icon svg { width: 40px; height: 40px; stroke: var(--color-accent); fill: none; }
.thankyou-box h1 { color: var(--color-primary); font-size: 38px; margin-bottom: 16px; }
.thankyou-box p { font-size: 17px; color: var(--color-text-muted); margin-bottom: 32px; }

/* ===== POLICY PAGES ===== */
.policy-content { max-width: 860px; margin: 0 auto; }
.policy-content h2 { font-size: 26px; margin: 40px 0 14px; padding-top: 20px; border-top: 1px solid var(--color-highlight); }
.policy-content h2:first-of-type { border-top: none; padding-top: 0; }
.policy-content h3 { font-size: 20px; margin: 28px 0 10px; }
.policy-content p { font-size: 16px; line-height: 1.8; margin-bottom: 16px; color: #2a3e47; }
.policy-content ul, .policy-content ol { padding-left: 28px; margin-bottom: 16px; }
.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }
.policy-content li { font-size: 16px; line-height: 1.7; color: #2a3e47; margin-bottom: 8px; }
.policy-content a { color: var(--color-accent); }
.policy-meta {
  background: var(--color-white);
  border: 1px solid var(--color-highlight);
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-bottom: 36px;
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-text-muted);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.policy-meta strong { color: var(--color-primary); }

/* ===== NOTICE BOX ===== */
.notice-box {
  background: rgba(140,71,42,0.07);
  border-left: 4px solid var(--color-accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}
.notice-box p { font-size: 15px; color: var(--color-primary); margin: 0; }
.notice-box strong { font-family: var(--font-heading); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  border-top: 3px solid var(--color-accent);
  padding: 18px clamp(20px, 5vw, 80px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-highlight);
  margin: 0;
  flex: 1;
  min-width: 260px;
}
.cookie-banner a { color: var(--color-accent); }
.cookie-actions { display: flex; gap: 10px; }

/* ===== FILTER TABS ===== */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 9px 22px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid var(--color-highlight);
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* ===== TABLE ===== */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 28px 0;
}
.data-table thead tr { background: var(--color-primary); }
.data-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
}
.data-table tbody tr { border-bottom: 1px solid var(--color-highlight); transition: background var(--transition); }
.data-table tbody tr:last-child { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(209,217,224,0.3); }
.data-table td { padding: 13px 18px; color: #2a3e47; line-height: 1.5; }
.data-table td:first-child { font-weight: 600; color: var(--color-primary); }

/* ===== SEARCH ===== */
.search-bar {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
}
.search-input {
  flex: 1;
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-primary);
  background: var(--color-white);
  border: 1px solid var(--color-highlight);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  outline: none;
  transition: border-color var(--transition);
}
.search-input:focus { border-color: var(--color-accent); }
.search-btn {
  padding: 13px 24px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.search-btn:hover { background: #6b3520; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(140,71,42,0.35);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: #6b3520; transform: translateY(-2px); }
.back-to-top svg { width: 20px; height: 20px; stroke: currentColor; fill: none; }

/* ===== PROGRESS BAR ===== */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--color-accent);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mt-10 { margin-top: 40px; }
.mt-8 { margin-top: 32px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ===== FADE-IN ANIMATION ===== */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2-1 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .featured-block { grid-template-columns: 1fr; }
  .featured-block.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .contact-form-wrap { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip .container { justify-content: center; }
  .newsletter-strip .container { flex-direction: column; text-align: center; }
  .expert-card { flex-direction: column; }
  .event-card { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
