/*
Theme Name: Jewish Community Azerbaijan
Theme URI: https://mmm.jevishworld.com
Description: Custom theme for the Jewish Community of Azerbaijan news portal
Author: JewishAZ
Version: 1.0
Text Domain: jewish-community
*/

/* ===== CSS VARIABLES ===== */
:root {
  --cream: #FDF8F0;
  --warm-white: #FFFCF7;
  --sand: #F5EDE0;
  --golden: #C9A84C;
  --golden-light: #E8D5A0;
  --golden-hover: #B8953E;
  --deep-blue: #1B2B4B;
  --deep-blue-light: #2A3D66;
  --text-primary: #2C2418;
  --text-secondary: #6B5D4F;
  --text-muted: #9B8E7E;
  --border-soft: rgba(201, 168, 76, 0.15);
  --shadow-warm: 0 4px 24px rgba(44, 36, 24, 0.06);
  --shadow-card: 0 8px 32px rgba(44, 36, 24, 0.08);
  --shadow-hover: 0 12px 48px rgba(44, 36, 24, 0.12);
  --glass-bg: rgba(255, 252, 247, 0.72);
  --glass-border: rgba(201, 168, 76, 0.2);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --success: #4ade80;
  --error: #f87171;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ===== BACKGROUND ATMOSPHERE ===== */
body::before {
  content: '';
  position: fixed;
  top: -30%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: '';
  position: fixed;
  bottom: -20%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(27,43,75,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--deep-blue);
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  padding: 8px 0;
  position: relative;
  z-index: 100;
}
.topbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar a {
  color: var(--golden-light);
  text-decoration: none;
  transition: color 0.3s;
}
.topbar a:hover { color: var(--golden); }
.topbar-lang {
  display: flex;
  gap: 6px;
}
.topbar-lang a {
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.15);
}
.topbar-lang a.active {
  background: var(--golden);
  color: var(--deep-blue);
  border-color: var(--golden);
}
.topbar-lang a:hover:not(.active) {
  border-color: var(--golden-light);
  background: rgba(201,168,76,0.15);
}

/* ===== HEADER ===== */
.header {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 99;
  transition: box-shadow 0.4s;
}
.header.scrolled {
  box-shadow: 0 4px 32px rgba(44,36,24,0.1);
}
.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--golden) 0%, var(--golden-light) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(201,168,76,0.25);
  position: relative;
  overflow: hidden;
}
.logo-icon::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
}
.logo-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--deep-blue);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-title {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--deep-blue);
  letter-spacing: -0.3px;
}
.logo-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== NAV ===== */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a, .nav .menu-item a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  position: relative;
}
.nav a:hover, .nav .menu-item a:hover {
  color: var(--deep-blue);
  background: rgba(201,168,76,0.1);
}
.nav a.active, .nav .current-menu-item a, .nav .current_page_item a {
  color: var(--deep-blue);
  background: rgba(201,168,76,0.12);
}
.nav a.active::after, .nav .current-menu-item a::after, .nav .current_page_item a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2.5px;
  background: var(--golden);
  border-radius: 2px;
}
/* WP menu reset */
.nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.nav li { list-style: none; }

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-btn {
  width: 42px;
  height: 42px;
  border: none;
  background: var(--sand);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  color: var(--text-secondary);
}
.search-btn:hover {
  background: var(--golden-light);
  color: var(--deep-blue);
  transform: scale(1.05);
}
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--deep-blue);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== BREAKING NEWS TICKER ===== */
.ticker {
  background: linear-gradient(90deg, var(--deep-blue), var(--deep-blue-light));
  padding: 10px 0;
  overflow: hidden;
  position: relative;
  z-index: 50;
}
.ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--golden);
  color: var(--deep-blue);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 2;
}
.ticker-label::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 0;
  bottom: 0;
  width: 32px;
  background: linear-gradient(90deg, var(--golden), transparent);
}
.ticker-content {
  display: flex;
  animation: ticker-scroll 40s linear infinite;
  padding-left: 160px;
}
.ticker-item {
  white-space: nowrap;
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  padding-right: 60px;
  position: relative;
}
.ticker-item::after {
  content: '\2726';
  position: absolute;
  right: 24px;
  color: var(--golden);
  font-size: 0.6rem;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== READING PROGRESS BAR ===== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--golden), var(--golden-light));
  z-index: 200;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(201,168,76,0.4);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 20px 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumbs a:hover { color: var(--golden); }
.breadcrumbs .sep { color: var(--golden-light); font-size: 0.7rem; }

/* ===== MAIN LAYOUT ===== */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  padding: 40px 0;
}

/* ===== HERO / FEATURED ===== */
.hero-section { margin-bottom: 48px; }
.hero-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
}
.hero-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.hero-card:hover img {
  transform: scale(1.05);
}
.hero-main {
  grid-row: 1 / 3;
}
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(27,43,75,0.92) 0%, rgba(27,43,75,0.4) 60%, transparent 100%);
  color: #fff;
}
.hero-main .hero-overlay { padding: 40px; }
.hero-cat {
  display: inline-block;
  background: var(--golden);
  color: var(--deep-blue);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
}
.hero-main .hero-title { font-size: 1.75rem; }
.hero-card:not(.hero-main) .hero-title { font-size: 1.05rem; }
.hero-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-meta span { display: flex; align-items: center; gap: 4px; }

/* ===== SECTION TITLES ===== */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep-blue);
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-title::before {
  content: '';
  width: 4px;
  height: 28px;
  background: linear-gradient(to bottom, var(--golden), var(--golden-light));
  border-radius: 2px;
}
.section-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--golden);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}
.section-more:hover {
  color: var(--golden-hover);
  gap: 10px;
}
.section-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  max-width: 550px;
}

/* ===== NEWS CARDS ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.news-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--golden-light);
}
.news-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s;
}
.news-card:hover .news-card-img {
  transform: scale(1.04);
}
.news-card-img-wrap {
  overflow: hidden;
  position: relative;
}
.news-card-img-wrap .hero-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  margin-bottom: 0;
}
.news-card-body {
  padding: 22px;
}
.news-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--deep-blue);
  margin-bottom: 10px;
  transition: color 0.3s;
}
.news-card:hover .news-card-title { color: var(--golden-hover); }
.news-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: var(--text-muted);
}
.news-card-date { display: flex; align-items: center; gap: 4px; }
.news-card-read {
  color: var(--golden);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.3s;
}
.news-card:hover .news-card-read { gap: 8px; }

/* ===== LIST ARTICLES ===== */
.news-list { margin-bottom: 48px; }
.news-list-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
  cursor: pointer;
  transition: all 0.3s;
}
.news-list-item:last-child { border-bottom: none; }
.news-list-item:hover { padding-left: 8px; }
.news-list-img {
  width: 140px;
  min-width: 140px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform 0.5s;
}
.news-list-item:hover .news-list-img { transform: scale(1.03); }
.news-list-img-wrap {
  overflow: hidden;
  border-radius: var(--radius-sm);
  width: 140px;
  min-width: 140px;
}
.news-list-body { flex: 1; }
.news-list-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--golden);
  margin-bottom: 4px;
}
.news-list-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--deep-blue);
  margin-bottom: 6px;
  transition: color 0.3s;
}
.news-list-item:hover .news-list-title { color: var(--golden-hover); }
.news-list-meta {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 48px;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s;
}
.pagination a {
  color: var(--text-secondary);
  background: var(--warm-white);
  border: 1px solid var(--border-soft);
}
.pagination a:hover {
  background: var(--golden-light);
  color: var(--deep-blue);
  border-color: var(--golden-light);
}
.pagination .current, .pagination span.current {
  background: var(--golden);
  color: var(--deep-blue);
  border: none;
  box-shadow: 0 4px 12px rgba(201,168,76,0.3);
}
.page-numbers.dots { border: none; background: none; }

/* ===== SIDEBAR ===== */
.sidebar { display: flex; flex-direction: column; gap: 32px; }

.sidebar-widget {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border-soft);
}
.sidebar-widget-title, .sidebar-widget h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border-soft);
  position: relative;
}
.sidebar-widget-title::after, .sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--golden);
}

/* About Widget */
.about-widget {
  background: linear-gradient(145deg, var(--deep-blue) 0%, var(--deep-blue-light) 100%);
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
}
.about-widget::before {
  content: '\2721';
  position: absolute;
  top: -20px;
  right: -10px;
  font-size: 8rem;
  opacity: 0.04;
  color: var(--golden);
}
.about-widget .sidebar-widget-title, .about-widget h3 {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.15);
}
.about-widget .sidebar-widget-title::after, .about-widget h3::after { background: var(--golden); }
.about-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 18px;
}
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--golden);
  color: var(--deep-blue);
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}
.about-btn:hover {
  background: var(--golden-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

/* Popular Widget */
.popular-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  cursor: pointer;
  transition: all 0.3s;
}
.popular-item:last-child { border-bottom: none; }
.popular-item:hover { padding-left: 4px; }
.popular-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--golden-light);
  line-height: 1;
  min-width: 30px;
}
.popular-item:hover .popular-num { color: var(--golden); }
.popular-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1.35;
  transition: color 0.3s;
}
.popular-item:hover .popular-title { color: var(--golden-hover); }
.popular-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Tags Widget */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--sand);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.tag-cloud a:hover {
  background: var(--golden-light);
  color: var(--deep-blue);
  border-color: var(--golden);
  transform: translateY(-1px);
}

/* Subscribe Widget */
.subscribe-widget {
  background: linear-gradient(145deg, var(--sand) 0%, var(--warm-white) 100%);
  text-align: center;
  border: 1px solid var(--golden-light);
}
.subscribe-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--golden) 0%, var(--golden-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(201,168,76,0.25);
}
.subscribe-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.6;
}
.subscribe-form { display: flex; flex-direction: column; gap: 10px; }
.subscribe-input {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--warm-white);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: all 0.3s;
}
.subscribe-input:focus {
  border-color: var(--golden);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.subscribe-btn {
  width: 100%;
  padding: 12px;
  background: var(--golden);
  color: var(--deep-blue);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s;
}
.subscribe-btn:hover {
  background: var(--golden-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}

/* Events Widget */
.events-list { display: flex; flex-direction: column; gap: 14px; }
.event-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: var(--sand);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  cursor: pointer;
}
.event-item:hover {
  background: var(--golden-light);
  transform: translateX(4px);
}
.event-date-box {
  min-width: 52px;
  text-align: center;
  background: var(--deep-blue);
  color: #fff;
  padding: 8px 10px;
  border-radius: 10px;
}
.event-day {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
.event-month {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}
.event-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--deep-blue);
  line-height: 1.3;
}
.event-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* TOC Widget */
.toc-list { list-style: none; padding: 0; margin: 0; }
.toc-list li { margin-bottom: 2px; }
.toc-list a {
  display: block;
  padding: 10px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}
.toc-list a:hover {
  background: rgba(201,168,76,0.08);
  color: var(--deep-blue);
  border-left-color: var(--golden-light);
}
.toc-list a.active {
  background: rgba(201,168,76,0.12);
  color: var(--deep-blue);
  border-left-color: var(--golden);
}

/* ===== COMMUNITY SECTION ===== */
.community-section {
  background: linear-gradient(145deg, var(--deep-blue), var(--deep-blue-light));
  padding: 64px 0;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.community-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}
.community-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.community-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  color: #fff;
  transition: all 0.4s;
  cursor: pointer;
}
.community-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.community-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}
.community-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--golden);
  margin-bottom: 4px;
}
.community-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== ARTICLE PAGE ===== */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  padding-bottom: 64px;
}
.article-hero {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
  max-height: 520px;
}
.article-hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.article-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px;
  background: linear-gradient(to top, rgba(27,43,75,0.95) 0%, rgba(27,43,75,0.6) 50%, transparent 100%);
  color: #fff;
}
.article-cat {
  display: inline-block;
  background: var(--golden);
  color: var(--deep-blue);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.article-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 700px;
}
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  flex-wrap: wrap;
}
.article-hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.author-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--golden), var(--golden-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--deep-blue);
  border: 2px solid rgba(255,255,255,0.3);
}

/* Article Toolbar */
.article-toolbar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  float: left;
  margin-left: -72px;
  margin-top: 0;
  z-index: 10;
}
.toolbar-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-soft);
  background: var(--warm-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
  color: var(--text-secondary);
  position: relative;
}
.toolbar-btn:hover {
  background: var(--golden-light);
  border-color: var(--golden);
  color: var(--deep-blue);
  transform: scale(1.08);
}
.toolbar-btn.liked {
  background: #fee2e2;
  border-color: #f87171;
  color: #ef4444;
}
.toolbar-count {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: -6px;
}
.toolbar-divider {
  width: 24px;
  height: 1px;
  background: var(--border-soft);
  margin: 4px 0;
}

/* Article Content */
.article-content { max-width: 760px; }
.article-body {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem;
  line-height: 1.85;
  color: var(--text-primary);
}
.article-body p { margin-bottom: 1.5em; }
.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin: 2em 0 0.8em;
  position: relative;
  padding-left: 20px;
}
.article-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: linear-gradient(to bottom, var(--golden), var(--golden-light));
  border-radius: 2px;
}
.article-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin: 1.5em 0 0.6em;
}
.article-body blockquote,
.pull-quote {
  margin: 2.5em 0;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--sand), var(--warm-white));
  border-left: 4px solid var(--golden);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  font-weight: 500;
  color: var(--deep-blue);
  line-height: 1.7;
}
.article-body blockquote::before,
.pull-quote::before {
  content: '\00AB';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--golden-light);
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
  opacity: 0.5;
}
.article-body blockquote cite {
  font-size: 0.88rem;
  font-style: normal;
  font-family: 'Nunito Sans', sans-serif;
  color: var(--golden-hover);
  font-weight: 600;
  display: block;
  margin-top: 12px;
}

/* Article figure */
.article-figure {
  margin: 2.5em -40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.article-figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s;
}
.article-figure:hover img { transform: scale(1.02); }
.article-caption, .wp-caption-text {
  padding: 14px 24px;
  background: var(--sand);
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Info Box */
.info-box {
  margin: 2em 0;
  padding: 28px 32px;
  background: linear-gradient(145deg, var(--deep-blue), var(--deep-blue-light));
  border-radius: var(--radius-md);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.info-box::before {
  content: '\2721';
  position: absolute;
  top: -15px;
  right: -5px;
  font-size: 6rem;
  opacity: 0.04;
}
.info-box-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--golden);
}
.info-box p {
  font-size: 0.92rem;
  font-family: 'Nunito Sans', sans-serif;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin-bottom: 0;
}

/* Gallery */
.article-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 2em 0;
}
.article-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.4s;
}
.article-gallery img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

/* Article Tags */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2.5em 0;
  padding-top: 2em;
  border-top: 1px solid var(--border-soft);
}
.article-tags span {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-right: 4px;
}
.article-tags a {
  display: inline-block;
  padding: 5px 14px;
  background: var(--sand);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.article-tags a:hover {
  background: var(--golden-light);
  color: var(--deep-blue);
  border-color: var(--golden);
}

/* Share Bar */
.share-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 0;
  margin-bottom: 2em;
  border-bottom: 1px solid var(--border-soft);
}
.share-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.share-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--text-secondary);
}
.share-btn:hover { transform: translateY(-2px); }
.share-btn.fb:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.share-btn.tw:hover { background: #1DA1F2; color: #fff; border-color: #1DA1F2; }
.share-btn.tg:hover { background: #0088cc; color: #fff; border-color: #0088cc; }
.share-btn.wa:hover { background: #25D366; color: #fff; border-color: #25D366; }
.share-btn.copy:hover { background: var(--golden); color: var(--deep-blue); border-color: var(--golden); }

/* Author Card */
.author-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--warm-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
}
.author-card-avatar {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--golden), var(--golden-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--deep-blue);
}
.author-card-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--deep-blue);
  margin-bottom: 4px;
}
.author-card-role {
  font-size: 0.82rem;
  color: var(--golden);
  font-weight: 600;
  margin-bottom: 10px;
}
.author-card-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Article Nav (prev/next) */
.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.article-nav-item {
  padding: 24px;
  background: var(--warm-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.article-nav-item:hover {
  border-color: var(--golden-light);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.article-nav-label {
  font-size: 0.75rem;
  color: var(--golden);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.article-nav-item.next { text-align: right; }
.article-nav-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1.35;
}

/* Related Articles */
.related-section { margin-bottom: 48px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--golden-light);
}
.related-card-img-wrap { overflow: hidden; }
.related-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.6s;
}
.related-card:hover .related-card-img { transform: scale(1.05); }
.related-card-body { padding: 20px; }
.related-card-cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--golden);
  margin-bottom: 6px;
}
.related-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--deep-blue);
  margin-bottom: 8px;
  transition: color 0.3s;
}
.related-card:hover .related-card-title { color: var(--golden-hover); }
.related-card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== COMMENTS ===== */
.comments-section { margin-bottom: 48px; }
.comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.comments-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-blue);
  display: flex;
  align-items: center;
  gap: 10px;
}
.comments-count {
  font-size: 0.78rem;
  background: var(--golden-light);
  color: var(--deep-blue);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 700;
  font-family: 'Nunito Sans', sans-serif;
}
.comment-form-area {
  background: var(--warm-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 32px;
}
.comment-form-area label {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--deep-blue);
  display: block;
  margin-bottom: 16px;
}
.comment-form-area .comment-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.comment-form-area input[type="text"],
.comment-form-area input[type="email"],
.comment-form-area input[type="url"],
.comment-form-area textarea {
  width: 100%;
  padding: 12px 18px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: all 0.3s;
  color: var(--text-primary);
}
.comment-form-area input:focus,
.comment-form-area textarea:focus {
  border-color: var(--golden);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: var(--warm-white);
}
.comment-form-area textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 14px;
}
.comment-form-area .submit,
.comment-submit {
  padding: 12px 32px;
  background: var(--golden);
  color: var(--deep-blue);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s;
}
.comment-form-area .submit:hover,
.comment-submit:hover {
  background: var(--golden-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.3);
}
.comment-list { list-style: none; padding: 0; margin: 0; }
.comment-list .comment {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-soft);
}
.comment-list .comment:last-child { border-bottom: none; }
.comment-list .comment .avatar,
.comment-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.comment-author-name, .comment-author {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--deep-blue);
}
.comment-date, .comment-metadata {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: 10px;
}
.comment-content, .comment-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 6px;
}
.comment-reply-link {
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
  text-decoration: none;
}
.comment-reply-link:hover { color: var(--golden); }
.comment-list .children {
  list-style: none;
  margin-left: 66px;
  padding-left: 20px;
  border-left: 2px solid var(--golden-light);
}

/* ===== CONTACTS PAGE ===== */
.page-hero {
  background: linear-gradient(145deg, var(--deep-blue), var(--deep-blue-light));
  border-radius: var(--radius-xl);
  padding: 64px 72px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero::after {
  content: '\2721';
  position: absolute;
  bottom: -40px; right: -20px;
  font-size: 14rem;
  opacity: 0.03;
  color: var(--golden);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-label {
  display: inline-block;
  background: var(--golden);
  color: var(--deep-blue);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.7;
}

/* Contact Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.contact-card {
  background: var(--warm-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--golden), var(--golden-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--golden-light);
}
.contact-card:hover::before { opacity: 1; }
.contact-card-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--sand), var(--cream));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  transition: all 0.4s;
  border: 2px solid var(--border-soft);
}
.contact-card:hover .contact-card-icon {
  background: linear-gradient(135deg, var(--golden), var(--golden-light));
  border-color: var(--golden);
  transform: scale(1.1) rotate(5deg);
}
.contact-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 8px;
}
.contact-card-value {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.contact-card-value a {
  color: var(--golden-hover);
  text-decoration: none;
  font-weight: 600;
}
.contact-card-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Contact Form */
.contact-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
.form-section {
  background: var(--warm-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.form-title::before {
  content: '';
  width: 4px; height: 26px;
  background: linear-gradient(to bottom, var(--golden), var(--golden-light));
  border-radius: 2px;
}
.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-label .required { color: var(--golden); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-primary);
  outline: none;
  transition: all 0.3s;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--golden);
  background: var(--warm-white);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}
.form-textarea { min-height: 150px; resize: vertical; }
.form-select {
  appearance: none;
  cursor: pointer;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.form-checkbox input[type="checkbox"] {
  width: 20px; height: 20px;
  min-width: 20px;
  accent-color: var(--golden);
}
.form-submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--golden), var(--golden-hover));
  color: var(--deep-blue);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.4s;
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
}

/* Map */
.map-section { display: flex; flex-direction: column; gap: 24px; }
.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-soft);
  flex: 1;
  min-height: 340px;
  position: relative;
  background: var(--sand);
}
.map-wrapper iframe { width: 100%; height: 100%; min-height: 340px; border: none; display: block; }
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.info-card {
  background: var(--warm-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.3s;
}
.info-card:hover { border-color: var(--golden-light); box-shadow: var(--shadow-card); }
.info-card-icon { font-size: 1.3rem; margin-bottom: 10px; }
.info-card-title { font-weight: 700; font-size: 0.85rem; color: var(--deep-blue); margin-bottom: 4px; }
.info-card-text { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }

/* Branches */
.branches-section { margin-bottom: 64px; }
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.branch-card {
  background: var(--warm-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.branch-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--golden-light);
}
.branch-card-img-wrap { overflow: hidden; height: 200px; position: relative; }
.branch-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.branch-card:hover .branch-card-img { transform: scale(1.06); }
.branch-card-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--golden);
  color: var(--deep-blue);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
}
.branch-card-body { padding: 26px; }
.branch-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 14px;
}
.branch-info-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.branch-info-row a { color: var(--golden-hover); text-decoration: none; font-weight: 600; }
.branch-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}
.branch-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: 'Nunito Sans', sans-serif;
}
.branch-btn-primary { background: var(--golden); color: var(--deep-blue); }
.branch-btn-primary:hover { background: var(--golden-hover); transform: translateY(-1px); }
.branch-btn-outline { background: transparent; color: var(--text-secondary); border: 1.5px solid var(--border-soft); }
.branch-btn-outline:hover { border-color: var(--golden); color: var(--golden-hover); }

/* Social Section */
.social-section {
  background: linear-gradient(145deg, var(--deep-blue), var(--deep-blue-light));
  border-radius: var(--radius-xl);
  padding: 56px;
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.social-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.social-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.social-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  transition: all 0.4s;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  display: block;
}
.social-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}
.social-card-icon { font-size: 2rem; margin-bottom: 12px; }
.social-card-name { font-weight: 700; font-size: 0.92rem; margin-bottom: 4px; }
.social-card-handle { font-size: 0.78rem; color: var(--golden-light); }
.social-card-followers { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 6px; }

/* FAQ Section */
.faq-section { margin-bottom: 64px; }
.faq-list { max-width: 820px; }
.faq-item {
  background: var(--warm-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item:hover { border-color: var(--golden-light); }
.faq-item.active { border-color: var(--golden); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--deep-blue);
  transition: all 0.3s;
  gap: 16px;
}
.faq-item.active .faq-question { color: var(--golden-hover); }
.faq-toggle {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 50%;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all 0.4s;
  color: var(--text-muted);
}
.faq-item.active .faq-toggle {
  background: var(--golden);
  color: var(--deep-blue);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s;
  padding: 0 28px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--deep-blue);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--golden), var(--golden-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--deep-blue);
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
}
.footer-about {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--golden);
  color: var(--deep-blue);
  transform: translateY(-2px);
}
.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a::before {
  content: '\203A';
  color: var(--golden);
  font-weight: 700;
}
.footer-links a:hover {
  color: var(--golden-light);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.footer-contact-icon {
  color: var(--golden);
  font-size: 0.9rem;
  min-width: 20px;
  text-align: center;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: var(--golden-light);
  text-decoration: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  opacity: 0;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Sidebar Banner */
.sidebar-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s;
}
.sidebar-banner:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.sidebar-banner img { width: 100%; height: auto; display: block; }
.sidebar-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(27,43,75,0.85), rgba(27,43,75,0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  color: #fff;
}
.sidebar-banner-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 2px; color: var(--golden-light); margin-bottom: 10px; }
.sidebar-banner-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; line-height: 1.3; margin-bottom: 14px; }
.sidebar-banner-btn {
  padding: 10px 24px;
  background: var(--golden);
  color: var(--deep-blue);
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s;
}

/* Form success */
.form-success { display: none; text-align: center; padding: 48px 32px; }
.form-success.show { display: block; }
.form-success-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--golden), var(--golden-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem;
}
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--deep-blue); margin-bottom: 10px; }
.form-success p { font-size: 0.92rem; color: var(--text-secondary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .article-toolbar { display: none; }
}
@media (max-width: 1024px) {
  .main-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { order: 2; }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-main { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero-bento {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 180px 180px;
  }
  .hero-main { grid-row: auto; }
  .news-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .community-card { padding: 24px; }
  .article-hero img { height: 320px; }
  .article-hero-title { font-size: 1.6rem; }
  .article-hero-overlay { padding: 28px; }
  .article-figure { margin: 2em 0; }
  .related-grid { grid-template-columns: 1fr; }
  .article-nav { grid-template-columns: 1fr; }
  .author-card { flex-direction: column; align-items: center; text-align: center; }
  .comment-form-area .comment-form-row { grid-template-columns: 1fr; }
  .article-gallery { grid-template-columns: 1fr; }
  .page-hero { padding: 40px 32px; }
  .page-hero-title { font-size: 2rem; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .form-section { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .social-section { padding: 40px 24px; }
  .info-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .topbar-inner { font-size: 0.72rem; }
  .header-inner { height: 64px; }
  .logo-title { font-size: 1rem; }
  .logo-icon { width: 44px; height: 44px; }
}
@media (max-width: 480px) {
  .community-grid { grid-template-columns: 1fr; }
  .hero-bento { grid-template-rows: 240px 160px 160px; }
  .contact-cards { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .page-hero-title { font-size: 1.6rem; }
  .article-hero img { height: 260px; }
  .article-hero-title { font-size: 1.3rem; }
  .container { padding: 0 16px; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb {
  background: var(--golden-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--golden); }
