/* ================= RESET ================= */
:root {
  --primary: #0B1F3A;
  --accent: #C9A227;
  --bg: #F2F4F7;
  --surface: #FFFFFF;
  --text: #1a1a1a;
  --muted: #5c6578;
  --line: #E3E7EE;
  --soft: #F8FAFC;
  --shadow: 0 4px 22px rgba(11, 31, 58, 0.06);
  --shadow-hover: 0 12px 32px rgba(11, 31, 58, 0.1);
  --radius: 10px;
  --radius-lg: 14px;
  --gap: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-top {
    transition: none;
  }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
  line-height: 1.65;
  position: relative;
}

::selection {
  background: rgba(201, 162, 39, 0.22);
  color: var(--primary);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

/* ================= LAYOUT ================= */
.container,
.main-container,
.inner-page-main {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

.main-container {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 280px;
  gap: var(--gap);
  margin-block: 28px;
  align-items: start;
}

.content,
.sidebar,
.inner-page-main {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.inner-page-main {
  max-width: 980px;
  margin-block: 28px;
}

.section,
.sidebar-box,
.featured-news,
.latest-news-section,
.blog-section,
.events-section,
.page-hero,
.feature-card,
.contact-form-section,
.explore-section,
.about-panel,
.contact-panel {
  background: var(--surface);
  border: 1px solid rgba(227, 231, 238, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.section,
.featured-news,
.latest-news-section,
.blog-section,
.events-section,
.page-hero,
.contact-form-section {
  padding: 22px;
}

.sidebar-box {
  padding: 18px;
}

/* ================= HEADER ================= */
.header {
  background: var(--primary);
  border-bottom: 2px solid rgba(201, 162, 39, 0.35);
  box-shadow: 0 4px 18px rgba(11, 31, 58, 0.12);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  align-items: center;
  display: flex;
  gap: 18px;
  min-height: 70px;
}

.logo img {
  height: 46px;
  width: auto;
}

.nav {
  display: flex;
  gap: 16px;
  margin-left: auto;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 0;
  position: relative;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.nav a.active::after {
  background: var(--accent);
  border-radius: 1px;
  bottom: 4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
}

/* ================= SEARCH ================= */
.page-search-bar {
  display: flex;
  justify-content: flex-end;
}

.site-search {
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(227, 231, 238, 0.95);
  border-radius: 10px;
  box-shadow:
    0 1px 2px rgba(11, 31, 58, 0.04),
    0 8px 18px rgba(11, 31, 58, 0.06);
  display: flex;
  gap: 8px;
  min-height: 36px;
  padding: 0 6px 0 11px;
  position: sticky;
  top: 78px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  z-index: 5;
}

.site-search:focus-within {
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow:
    0 0 0 3px rgba(201, 162, 39, 0.12),
    0 8px 20px rgba(11, 31, 58, 0.08);
}

.site-search__icon {
  color: #94a3b8;
  display: flex;
  flex-shrink: 0;
  line-height: 0;
}

.site-search__input {
  background: transparent;
  border: 0;
  color: var(--text);
  flex: 1;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  min-width: 0;
  outline: 0;
  padding: 8px 0;
}

.site-search__input::placeholder {
  color: #94a3b8;
  font-weight: 500;
}

.site-search__submit {
  align-items: center;
  background: var(--primary);
  border: 0;
  border-radius: 7px;
  color: #fff;
  display: inline-flex;
  flex-shrink: 0;
  height: 26px;
  justify-content: center;
  line-height: 0;
  transition: background 0.2s ease, transform 0.2s ease;
  width: 26px;
}

.site-search__submit:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

.site-search--standalone {
  max-width: 260px;
  position: static;
}

.hamburger {
  background: transparent;
  border: 0;
  color: #fff;
  display: none;
  font-size: 26px;
  line-height: 1;
}

/* ================= TYPOGRAPHY ================= */
h1,
h2,
h3,
h4 {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

h1 {
  font-size: clamp(24px, 3.6vw, 34px);
}

h2 {
  font-size: clamp(18px, 2.4vw, 24px);
}

h3 {
  font-size: 17px;
}

h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.kicker,
.news-kicker,
.blog-kicker,
.discover-label {
  color: var(--accent);
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.meta,
.news-meta,
.blog-meta,
.event-meta {
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 8px 14px;
}

.section-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.section-header h2 {
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0;
}

.section-header a,
.section-header button {
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.section-header button {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.section-header a:hover,
.section-header button:hover {
  color: var(--accent);
}

.section-header button.is-hidden {
  display: none;
}

/* ================= COMPONENTS ================= */
.btn,
.submit-btn,
.subscribe-btn,
.read-more-btn,
.event-btn,
.load-more,
.contact-submit-btn {
  align-items: center;
  background: var(--primary);
  border: 0;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  padding: 10px 15px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:hover,
.submit-btn:hover,
.subscribe-btn:hover,
.read-more-btn:hover,
.event-btn:hover,
.load-more:hover,
.contact-submit-btn:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

.submit-btn,
.read-more-btn,
.contact-submit-btn {
  width: fit-content;
}

.read-more-btn {
  background: var(--accent);
}

.subscribe-btn,
.contact-submit-btn {
  background: var(--primary);
}

.subscribe-btn:hover,
.contact-submit-btn:hover {
  background: var(--accent);
  color: #fff;
}

.submit-btn {
  width: 100%;
  background: var(--primary);
}

.submit-btn:hover {
  background: var(--accent);
  color: #fff;
}

.section-header .submit-btn {
  color: #fff;
  text-transform: none;
  width: auto;
}

.section-header .submit-btn:hover {
  background: var(--accent);
  color: #fff;
}

.card-hover,
.news-card,
.blog-item,
.event-card,
.news-story-card,
.blog-story-card,
.discover-card,
.explore-card,
.explore-event-card,
.explore-category-nav__item,
.contact-help-card,
.founder-story-grid div,
.editor-pick-item {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card-hover:hover,
.news-card:hover,
.blog-item:hover,
.event-card:hover,
.news-story-card:hover,
.blog-story-card:hover,
.discover-card:hover,
.explore-card:hover,
.explore-event-card:hover,
.explore-category-nav__item:hover,
.contact-help-card:hover,
.founder-story-grid div:hover,
.editor-pick-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.site-search__status {
  color: #b42318;
  font-size: 11px;
  margin: 8px 0 0;
}

.site-search__status.is-error {
  color: #b42318;
}

.scroll-top {
  align-items: center;
  background: var(--primary);
  border: 0;
  border-radius: 50%;
  bottom: 24px;
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.22);
  color: #fff;
  display: inline-flex;
  font-size: 18px;
  height: 42px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 24px;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  width: 42px;
  z-index: 40;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--accent);
}

/* ================= SKYLINE ================= */
.skyline-section {
  border: 1px solid rgba(227, 231, 238, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.skyline-section::before {
  background: linear-gradient(90deg, var(--accent), rgba(201, 162, 39, 0.15));
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  width: 140px;
  z-index: 1;
}

.skyline-section img {
  display: block;
  height: 150px;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.page-hero {
  display: grid;
  gap: 10px;
}

.feature-card,
.news-lead-card,
.blog-feature-card {
  display: grid;
  grid-template-columns: minmax(240px, 42%) minmax(0, 1fr);
  overflow: hidden;
}

.feature-card img,
.news-lead-card img,
.blog-feature-card img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  width: 100%;
}

.feature-card > div,
.news-lead-content,
.blog-feature-content {
  padding: 24px;
}

.badge,
.news-badge,
.blog-badge {
  background: var(--primary);
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
  padding: 5px 10px;
}

.blog-badge,
.news-story-content .news-badge {
  background: var(--accent);
}

/* ================= ADS ================= */
/* WordPress: swap href + img src in each slot (PNG recommended), or replace the whole .site-ad block */
.site-ad {
  margin: 0;
  overflow: hidden;
}

.site-ad a {
  display: block;
  line-height: 0;
}

.site-ad img {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.site-ad--banner img {
  aspect-ratio: 1200 / 220;
}

.site-ad--inline img {
  aspect-ratio: 1200 / 180;
}

.footer-ad-wrap {
  margin-top: 28px;
}

.footer-ad-layout {
  margin-block: 0;
}

.footer-ad-gutter {
  min-height: 0;
  padding: 0;
  pointer-events: none;
  visibility: hidden;
}

.footer-ad-content {
  gap: 0;
}

.footer-ad-wrap + .footer {
  margin-top: 28px;
}

.site-ad--sidebar img {
  aspect-ratio: 300 / 250;
}

/* ================= SIDEBARS ================= */
.quick-links-head,
.popular-topics-head,
.social-box-head {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.quick-links-head h3,
.popular-topics-head h3,
.social-box-head h3 {
  font-size: 14px;
  letter-spacing: 0.02em;
  margin: 0;
}

.quick-links-head span,
.popular-topics-head span,
.social-box-head span {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-links-box,
.popular-topics-box,
.social-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.quick-link {
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(227, 231, 238, 0.95);
  border-radius: 8px;
  color: var(--primary);
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 10px;
  justify-content: space-between;
  padding: 10px 12px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.quick-link span {
  line-height: 1.3;
}

.quick-link svg {
  color: #94a3b8;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.quick-link:hover {
  background: #fff;
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 6px 16px rgba(11, 31, 58, 0.06);
  transform: translateX(2px);
}

.quick-link:hover svg {
  color: var(--accent);
  transform: translateX(2px);
}

.quick-link.active {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 8px 18px rgba(11, 31, 58, 0.14);
  color: #fff;
}

.quick-link.active svg {
  color: var(--accent);
}

.newsletter-box,
.home-contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-title {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0;
}

.newsletter-box p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.newsletter-box input,
.home-contact-form input,
.home-contact-form select,
.home-contact-form textarea {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  padding: 11px 12px;
  width: 100%;
}

.newsletter-box input:focus,
.home-contact-form input:focus,
.home-contact-form select:focus,
.home-contact-form textarea:focus {
  background: #fff;
  border-color: var(--accent);
  outline: 0;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.icon {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  height: 32px;
  justify-content: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  width: 32px;
}

.icon:hover {
  box-shadow: 0 6px 14px rgba(11, 31, 58, 0.14);
  transform: translateY(-2px);
}

.fb { background: #1877f2; }
.tw { background: #1da1f2; }
.ig { background: #c13584; }
.yt { background: #ff0000; }

.trend-item,
.event-mini {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 10px;
  grid-template-columns: 66px minmax(0, 1fr);
  padding: 12px 0;
}

.trend-item:first-of-type,
.event-mini:first-of-type {
  padding-top: 4px;
}

.trend-item:last-child,
.event-mini:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.trend-item img {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  object-fit: cover;
  width: 66px;
}

.trend-item p,
.event-mini p {
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.trend-item span,
.event-mini span {
  color: #777;
  font-size: 11px;
}

.trend-item--placeholder {
  grid-template-columns: minmax(0, 1fr);
}

.sidebar-empty-note {
  color: #777;
  font-size: 12px;
  line-height: 1.55;
  margin: 6px 0 0;
}

.sidebar-empty-link {
  margin: 8px 0 0;
}

.sidebar-empty-link a {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.date-box,
.discover-date {
  align-items: center;
  background: var(--primary);
  border-radius: 6px;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 58px;
  justify-content: center;
  width: 52px;
}

.date-box span,
.discover-date span {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.date-box strong,
.discover-date strong {
  font-size: 18px;
}

.sidebar-box > h3 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
}

.sidebar-box > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.topic-tag {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(227, 231, 238, 0.95);
  border-radius: 999px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  padding: 7px 11px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.topic-tag:hover {
  background: #fff;
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.06);
  transform: translateY(-1px);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags a,
.tags span {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
}

.upcoming-events-widget,
.birthday-database-widget {
  display: grid;
  gap: 10px;
}

.birthday-database-widget .event-mini {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr auto;
}

.birthday-database-widget .event-mini__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.birthday-database-widget .event-mini__body p {
  margin: 0;
}

.birthday-database-widget .event-mini__thumb {
  border-radius: 8px;
  height: 40px;
  object-fit: cover;
  width: 40px;
}

.birthday-today-badge {
  color: #166534;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.date-box--today {
  background: #ecfdf3;
  border-color: #86efac;
  color: #166534;
}

.event-mini--today .date-box strong {
  color: #166534;
}

/* ================= HOME ================= */
.featured-news {
  padding: 24px;
}

.featured-news h1 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 10px;
}

.featured-news .excerpt {
  font-size: 14px;
  line-height: 1.75;
}

.featured-news h2 {
  margin-bottom: 8px;
}

.featured-image {
  margin-top: 16px;
  position: relative;
}

.featured-image img {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.image-stats {
  background: rgba(255,255,255,0.94);
  border-radius: 999px;
  bottom: 12px;
  display: flex;
  gap: 10px;
  padding: 6px 11px;
  position: absolute;
  right: 12px;
}

.excerpt {
  margin-top: 14px;
}

.excerpt a {
  color: var(--primary);
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.actions .share-btn {
  background: var(--soft);
  color: var(--primary);
}

.latest-news-grid,
.news-page-grid,
.blog-page-grid,
.events-grid,
.discover-card-grid,
.founder-story-grid,
.founder-achievement-grid {
  display: grid;
  gap: 16px;
}

.latest-news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-card img,
.discover-card img {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

.news-card h4,
.blog-content h4 {
  margin-top: 9px;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.blog-item {
  background: var(--soft);
  border-radius: var(--radius);
  display: grid;
  gap: 14px;
  grid-template-columns: 118px minmax(0, 1fr);
  padding: 12px;
}

.blog-item img {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  height: 100%;
  object-fit: cover;
  width: 118px;
}

.events-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.event-card {
  background: var(--soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.event-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.event-content {
  padding: 14px;
}

/* ================= LISTING PAGES ================= */
.news-filter-bar,
.blog-filter-bar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
}

.news-filter-bar button,
.blog-filter-bar button {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  font-weight: 700;
  padding: 8px 14px;
}

.news-filter-bar button.active,
.news-filter-bar button:hover,
.blog-filter-bar button.active,
.blog-filter-bar button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.news-page-grid,
.blog-page-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-story-card,
.blog-story-card,
.discover-card,
.editor-pick-item,
.founder-story-grid div {
  background: var(--soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.news-story-card img,
.blog-story-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.news-story-content,
.blog-story-content,
.discover-card div,
.founder-story-grid div {
  padding: 15px;
}

.news-story-content p,
.blog-story-content p,
.discover-card p,
.founder-story-grid p {
  font-size: 13px;
  margin-top: 6px;
}

.load-more {
  margin: 22px auto 0;
}

.load-more.is-hidden {
  display: none;
}

.load-more-hidden {
  display: none;
}

.is-filter-hidden {
  display: none !important;
}

.filter-empty-state {
  color: var(--muted);
  font-size: 13px;
  margin-top: 16px;
  text-align: center;
}

.skip-link {
  background: var(--accent);
  border-radius: 4px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  left: 12px;
  padding: 10px 14px;
  position: absolute;
  text-decoration: none;
  top: -48px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

#main-content {
  scroll-margin-top: 96px;
}

.aanm-breadcrumbs {
  margin: 0 0 18px;
}

.aanm-breadcrumbs ol {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aanm-breadcrumbs li + li::before {
  color: #cbd5e1;
  content: "/";
  margin-right: 8px;
}

.aanm-breadcrumbs a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.aanm-breadcrumbs a:hover {
  text-decoration: underline;
}

.aanm-related-posts {
  margin-top: 28px;
}

.aanm-related-posts__grid {
  display: grid;
  gap: 14px;
}

.aanm-back-link {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 10px;
  margin-top: 18px;
}

.aanm-back-link a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.aanm-back-link a:hover {
  text-decoration: underline;
}

.aanm-empty-section {
  background: var(--soft);
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.aanm-empty-section p {
  margin: 0 0 10px;
}

.aanm-empty-section__hint {
  color: var(--muted);
  font-size: 12px;
}

.contact-form__status,
.newsletter-status {
  font-size: 12px;
  line-height: 1.55;
  margin: 10px 0 0;
  text-align: center;
}

.contact-form__status.is-success,
.newsletter-status.is-success {
  color: #166534;
}

.contact-form__status.is-error,
.newsletter-status.is-error {
  color: #b42318;
}

/* ================= READ MORE ================= */
.read-expand {
  display: grid;
  gap: 12px;
}

.read-expand__full {
  display: none;
}

.read-expand.is-expanded .read-expand__full {
  display: block;
}

.read-expand__full p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  margin: 0;
}

.read-expand__full p + p {
  margin-top: 10px;
}

.read-more-toggle {
  align-self: flex-start;
  background: none;
  border: 0;
  color: var(--accent);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

button.read-more-btn,
button.event-btn,
button.load-more,
button.explore-card__cta {
  cursor: pointer;
  font-family: inherit;
}

.read-more-toggle:hover {
  color: var(--primary);
}

.read-more-toggle.is-link-style {
  text-transform: none;
}

.is-expanded .read-expand__full,
.read-expand.is-expanded .read-expand__full {
  display: block;
}

.featured-news .read-expand,
.news-lead-content .read-expand,
.blog-feature-content .read-expand {
  margin-top: 4px;
}

.event-content .read-expand__full,
.explore-event-card__body .read-expand__full,
.explore-card__body .read-expand__full,
.editor-pick-item .read-expand__full {
  border-top: 1px dashed var(--line);
  margin-top: 4px;
  padding-top: 12px;
}

.explore-event-card.is-expanded .explore-card__cta {
  background: var(--accent);
}

.editor-pick-list {
  display: grid;
  gap: 12px;
}

.editor-pick-item {
  display: grid;
  gap: 14px;
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 14px;
}

.editor-pick-item > span,
.founder-achievement-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

/* ================= EXPLORE ================= */
.explore-intro {
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, #123a63 55%, #1a4d7a 100%);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.16);
  color: #fff;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 24px 26px;
}

.explore-intro__content {
  min-width: 0;
}

.explore-intro__label {
  color: var(--accent);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 8px;
  max-width: 100%;
  text-transform: uppercase;
  white-space: normal;
  word-break: break-word;
}

.explore-intro h1 {
  color: #fff;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.2;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.explore-intro p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(12px, 2.8vw, 13px);
  line-height: 1.6;
  margin: 0;
  max-width: 52ch;
  overflow-wrap: anywhere;
}

.explore-intro__stats {
  display: grid;
  gap: 10px;
  min-width: 0;
  width: 100%;
}

.explore-stat {
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: center;
}

.explore-stat strong {
  color: #fff;
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.explore-stat span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: normal;
  word-break: break-word;
}

.explore-category-nav {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.explore-category-nav__item {
  align-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(227, 231, 238, 0.95);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(11, 31, 58, 0.05);
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 10px;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.explore-category-nav__item:hover {
  border-color: rgba(201, 162, 39, 0.5);
  color: var(--primary);
}

.explore-category-nav__icon {
  align-items: center;
  background: rgba(11, 31, 58, 0.06);
  border-radius: 999px;
  color: var(--primary);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.explore-category-nav__item strong {
  font-size: 12px;
  line-height: 1.2;
}

.explore-category-nav__item span:last-child {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.explore-section {
  background: #fff;
  border: 1px solid rgba(227, 231, 238, 0.9);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 22px;
  scroll-margin-top: 88px;
}

.explore-section__empty {
  margin-top: 4px;
}

.explore-section__header {
  align-items: flex-end;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.explore-section__label {
  color: var(--accent);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.explore-section__header h2 {
  font-size: 20px;
  line-height: 1.2;
  margin: 0;
}

.explore-section__link {
  background: none;
  border: 0;
  color: var(--primary);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  padding: 0;
  white-space: nowrap;
}

.explore-section__link:hover {
  color: var(--accent);
}

.explore-section__link.is-hidden {
  display: none;
}

.explore-event-grid {
  display: grid;
  gap: 12px;
}

.explore-event-card {
  align-items: stretch;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(227, 231, 238, 0.95);
  border-radius: 10px;
  display: grid;
  gap: 14px;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  padding: 14px;
}

.explore-event-card__date {
  align-items: center;
  align-self: start;
  background: var(--primary);
  border-radius: 8px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 62px;
  padding: 8px 6px;
}

.explore-event-card__date span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.explore-event-card__date strong {
  font-size: 20px;
  line-height: 1;
}

.explore-event-card__body h3 {
  font-size: 15px;
  line-height: 1.35;
  margin: 6px 0 4px;
}

.explore-event-card__body p {
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.explore-event-card__meta {
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  gap: 6px 12px;
  margin-top: 8px;
}

.explore-card-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.explore-card {
  background: #fff;
  border: 1px solid rgba(227, 231, 238, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(11, 31, 58, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.explore-card__media {
  display: block;
  overflow: hidden;
  position: relative;
}

.explore-card__media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
  width: 100%;
}

.explore-card:hover .explore-card__media img {
  transform: scale(1.04);
}

.explore-card__badge {
  background: var(--accent);
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  left: 12px;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  position: absolute;
  top: 12px;
}

.explore-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px 15px 15px;
}

.explore-card__body h3 {
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 6px;
}

.explore-card__body p {
  flex: 1;
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
}

.explore-card__foot {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
}

.explore-card__foot span {
  color: #94a3b8;
  flex: 1;
  font-size: 11px;
  font-weight: 600;
  min-width: 0;
}

a.explore-card__cta,
a.event-btn {
  text-decoration: none;
}

.explore-card__cta {
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.explore-card__foot .explore-card__cta {
  background: var(--primary);
  border-radius: 6px;
  color: #fff;
  margin-left: auto;
  min-height: 32px;
  padding: 7px 12px;
  text-transform: none;
}

.explore-card__foot .explore-card__cta:hover {
  background: var(--accent);
  color: #fff;
}

.explore-card__cta:hover {
  color: var(--accent);
}

.explore-card__cta--block {
  display: inline-flex;
  margin-top: 14px;
  text-align: center;
  width: fit-content;
}

.explore-event-card .explore-card__cta {
  align-self: center;
  background: var(--primary);
  border-radius: 7px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  min-height: 36px;
  padding: 9px 14px;
  text-decoration: none;
  text-transform: none;
}

.explore-event-card .explore-card__cta:hover {
  background: var(--accent);
  color: #fff;
}

.event-content .event-btn {
  display: inline-flex;
  margin-top: 10px;
  text-decoration: none;
  width: fit-content;
}

.explore-event-card__body h3 a,
.explore-card__body h3 a {
  color: inherit;
}

.explore-event-card__body h3 a:hover,
.explore-card__body h3 a:hover {
  color: var(--accent);
}

/* Legacy discover styles (kept for compatibility) */
.discover-hero,
.discover-section,
.discover-mini-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.discover-stats,
.discover-categories {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.discover-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.discover-categories {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.discover-stats div,
.discover-categories article,
.discover-list-item,
.discover-mini-panel li {
  background: var(--soft);
  border-radius: var(--radius);
  padding: 14px;
}

.discover-stats strong,
.discover-categories span,
.discover-card span {
  color: var(--primary);
  display: block;
  font-weight: 700;
}

.discover-stats span,
.discover-categories p {
  color: var(--muted);
  font-size: 12px;
}

.discover-list {
  display: grid;
  gap: 12px;
}

.discover-list-item {
  display: grid;
  gap: 14px;
  grid-template-columns: 56px minmax(0, 1fr);
}

.discover-split-section {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.discover-mini-panel ul {
  display: grid;
  gap: 10px;
  list-style: none;
}

/* ================= ABOUT & CONTACT ================= */
.about-page-main {
  gap: 18px;
}

.about-divider {
  background: none;
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
  width: 100%;
}

.about-divider--center {
  margin-inline: auto;
  max-width: 72px;
}

.about-hero {
  background: #fff;
  border: 1px solid rgba(227, 231, 238, 0.9);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(11, 31, 58, 0.08);
  padding: 28px 28px 30px;
  text-align: center;
}

.about-hero__photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.about-hero__photo {
  align-items: center;
  background: linear-gradient(145deg, var(--primary) 0%, #123a63 100%);
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(11, 31, 58, 0.16);
  color: #fff;
  display: flex;
  height: 152px;
  justify-content: center;
  overflow: hidden;
  width: 152px;
}

.about-hero__photo strong {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  font-size: 34px;
  font-weight: 700;
  height: 88px;
  justify-content: center;
  width: 88px;
}

.about-hero__photo.has-photo {
  background: var(--soft);
  padding: 0;
}

.about-hero__photo.has-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-hero__label,
.about-panel__label {
  color: var(--accent);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.about-hero h1 {
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.15;
  margin-bottom: 6px;
}

.about-hero__role {
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
}

.about-hero__bio {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 18px auto 0;
  max-width: 58ch;
}

.about-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.about-hero__tags span {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 22px;
}

.about-hero__actions .share-btn {
  background: var(--soft);
  color: var(--primary);
}

.about-panel,
.contact-panel {
  background: #fff;
  border: 1px solid rgba(227, 231, 238, 0.9);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 26px 28px;
}

.about-panel__head h2 {
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.2;
  margin: 0;
}

.about-panel__lead {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin: 18px 0 0;
}

.about-stats {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
  overflow: hidden;
}

.about-stat {
  background: var(--soft);
  padding: 16px 14px;
  text-align: center;
}

.about-stat strong {
  color: var(--primary);
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.about-stat span {
  color: #94a3b8;
  font-size: 11px;
  font-weight: 600;
}

.about-timeline {
  border-left: 1px solid var(--line);
  display: grid;
  gap: 0;
  margin-left: 10px;
  margin-top: 22px;
  padding-left: 28px;
}

.about-timeline__item {
  display: grid;
  gap: 14px;
  grid-template-columns: 42px minmax(0, 1fr);
  padding-bottom: 28px;
  position: relative;
}

.about-timeline__item:last-child {
  padding-bottom: 0;
}

.about-timeline__item::before {
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #fff;
  content: "";
  height: 11px;
  left: -34px;
  position: absolute;
  top: 6px;
  width: 11px;
}

.about-timeline__step {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  padding-top: 2px;
}

.about-timeline__content h3 {
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 6px;
}

.about-timeline__content p {
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.about-achievement-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.about-achievement-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  border-top: 2px solid var(--accent);
  padding: 20px 18px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.about-achievement-card:hover {
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.08);
  transform: translateY(-3px);
}

.about-achievement-card__num {
  color: var(--accent);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.about-achievement-card h3 {
  font-size: 15px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.about-achievement-card p {
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
}

.about-coverage-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
  overflow: hidden;
}

.about-coverage-card {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 20px 18px;
}

.about-coverage-card span {
  color: var(--accent);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.about-coverage-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.about-coverage-card p {
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.about-vision-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.about-vision-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
}

.about-vision-card__icon {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--primary);
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  margin-bottom: 14px;
  width: 38px;
}

.about-vision-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.about-vision-card p {
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
}

.about-panel--vision .about-divider:last-of-type {
  margin-top: 24px;
}

.about-cta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin-top: 22px;
}

.about-cta p {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

/* ================= CONTACT PAGE ================= */
.contact-page-main {
  gap: 18px;
}

#contact-form {
  scroll-margin-top: 96px;
}

.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #123a63 55%, #1a4d7a 100%);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(11, 31, 58, 0.14);
  color: #fff;
  padding: 32px 28px;
  text-align: center;
}

.contact-hero__label,
.contact-panel__label {
  color: var(--accent);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.contact-hero h1 {
  color: #fff;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.15;
  margin-bottom: 0;
}

.contact-hero__lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.75;
  margin: 18px auto 0;
  max-width: 60ch;
}

.contact-quick-info__item a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-quick-info__item a:hover {
  color: var(--accent);
}

.contact-quick-info {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 24px auto 0;
  max-width: 920px;
  overflow: hidden;
  width: 100%;
}

.contact-quick-info__item {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 72px;
  padding: 16px 14px;
  text-align: center;
}

.contact-quick-info__item strong {
  color: #fff;
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
  width: 100%;
}

.contact-quick-info__item span {
  color: rgba(255, 255, 255, 0.75);
  display: block;
  font-size: 11px;
  font-weight: 600;
  width: 100%;
}

.contact-hero .about-divider {
  border-top-color: rgba(255, 255, 255, 0.2);
  margin-top: 18px;
}

.contact-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.9fr);
}

.contact-panel__head h2 {
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: 1.2;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.contact-form__row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-form__field span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  padding: 12px 13px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  background: #fff;
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
  outline: 0;
}

.contact-form__field textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .contact-submit-btn {
  margin-top: 4px;
  width: 100%;
}

.contact-form__note {
  color: #94a3b8;
  font-size: 11px;
  line-height: 1.55;
  margin: 0;
  text-align: center;
}

.contact-form__intro {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 16px;
}

.contact-form__hp {
  display: none !important;
}

.contact-form__status {
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  padding: 12px 14px;
}

.contact-form__status.is-success {
  background: #ecfdf3;
  color: #166534;
}

.contact-form__status.is-error {
  background: #fef2f2;
  color: #b42318;
}

.contact-quick-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-bottom: 18px;
}

.contact-quick-actions__btn {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--primary);
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-quick-actions__btn:hover {
  border-color: rgba(11, 31, 58, 0.2);
  box-shadow: 0 8px 20px rgba(11, 31, 58, 0.08);
  transform: translateY(-1px);
}

.contact-quick-actions__btn span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-quick-actions__btn small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  word-break: break-word;
}

.contact-quick-actions__btn--whatsapp {
  background: #ecfdf5;
  border-color: #bbf7d0;
}

.contact-topic-picker {
  margin-bottom: 16px;
}

.contact-topic-picker__label {
  color: var(--primary);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-topic-picker__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-topic-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.contact-topic-chip:hover,
.contact-topic-chip.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.contact-aside-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin-top: 18px;
}

.contact-aside-list li {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.contact-aside-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-aside-list strong {
  color: var(--primary);
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

.contact-aside-list p {
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.contact-aside-cta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 18px;
}

.contact-aside-cta p {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
}

.contact-help-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.contact-help-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 18px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-help-card:hover {
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.08);
  transform: translateY(-3px);
}

.contact-help-card__num {
  color: var(--accent);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.contact-help-card h3 {
  font-size: 15px;
  margin-bottom: 8px;
}

.contact-help-card p {
  font-size: 12px;
  line-height: 1.65;
  margin: 0;
}

.founder-feature-grid {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: 220px minmax(0, 1fr);
}

.founder-initial-card,
.founder-photo-card {
  align-items: center;
  background: var(--primary);
  border-radius: var(--radius);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  min-height: 150px;
  padding: 18px;
}

.founder-initial-card strong,
.founder-photo-card strong {
  align-items: center;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  font-size: 28px;
  height: 76px;
  justify-content: center;
  width: 76px;
}

.founder-photo-card {
  aspect-ratio: 4 / 5;
  min-height: 240px;
  overflow: hidden;
  text-align: center;
}

.founder-photo-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.5;
}

.founder-photo-card.has-photo {
  background: var(--soft);
  padding: 0;
}

.founder-photo-card.has-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.founder-achievement-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.founder-story-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-contact-form .form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-contact-form label {
  color: var(--primary);
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 700;
  gap: 7px;
}

.form-note {
  color: #777;
  font-size: 12px;
}

/* ================= FOOTER ================= */
.footer {
  background: var(--primary);
  color: #fff;
  margin-top: 40px;
  padding: 28px 20px 22px;
}

.footer-inner {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 1200px;
}

.footer-brand {
  flex: 0 1 auto;
}

.footer-brand strong {
  display: block;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
  max-width: 36ch;
}

.footer-nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-contact {
  display: grid;
  flex: 0 1 auto;
  gap: 10px;
  min-width: 200px;
}

.footer-contact strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact__email {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  word-break: break-word;
}

.footer-contact__email:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  margin: 20px auto 0;
  max-width: 1200px;
  padding-top: 16px;
  text-align: center;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1120px) {
  .main-container {
    grid-template-columns: 200px minmax(0, 1fr) 250px;
  }

  .explore-intro {
    grid-template-columns: 1fr;
  }

  .explore-intro__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .header-container {
    min-height: 64px;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .nav {
    background: var(--primary);
    border-top: 1px solid rgba(255,255,255,0.12);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 10px 16px 16px;
    position: absolute;
    right: 0;
    top: 64px;
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 12px 0;
  }

  .main-container {
    display: flex;
    flex-direction: column;
  }

  .content {
    order: 1;
  }

  .sidebar.right {
    order: 2;
  }

  .sidebar.left {
    order: 3;
  }

  .sidebar {
    width: 100%;
  }

  .site-search {
    position: static;
  }

  .site-search--standalone {
    max-width: none;
  }

  .page-search-bar {
    justify-content: stretch;
  }

  .latest-news-grid,
  .explore-category-nav,
  .explore-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .explore-intro {
    grid-template-columns: 1fr;
  }

  .explore-intro__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-card,
  .news-lead-card,
  .blog-feature-card {
    grid-template-columns: 1fr;
  }

  .feature-card img,
  .news-lead-card img,
  .blog-feature-card img {
    min-height: 240px;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-achievement-grid,
  .about-vision-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout,
  .contact-help-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container,
  .main-container,
  .inner-page-main {
    width: min(100% - 20px, 1200px);
  }

  .section,
  .featured-news,
  .latest-news-section,
  .blog-section,
  .events-section,
  .page-hero,
  .contact-form-section,
  .discover-hero,
  .discover-section,
  .discover-mini-panel,
  .explore-section {
    padding: 18px;
  }

  .explore-intro {
    padding: 18px;
    gap: 16px;
  }

  .explore-intro p {
    max-width: none;
  }

  .explore-intro__label {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .explore-intro h1 {
    font-size: clamp(20px, 5.8vw, 26px);
  }

  .explore-stat {
    padding: 10px 8px;
  }

  .explore-stat strong {
    font-size: 16px;
  }

  .explore-stat span {
    font-size: 9px;
    letter-spacing: 0.02em;
  }

  .latest-news-grid,
  .news-page-grid,
  .blog-page-grid,
  .events-grid,
  .discover-card-grid,
  .explore-card-grid,
  .explore-category-nav,
  .discover-stats,
  .discover-categories,
  .discover-split-section,
  .founder-story-grid,
  .founder-achievement-grid,
  .home-contact-form .form-row,
  .founder-feature-grid {
    grid-template-columns: 1fr;
  }

  .blog-item {
    grid-template-columns: 1fr;
  }

  .blog-item img {
    aspect-ratio: 16 / 10;
    width: 100%;
  }

  .explore-event-card {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .explore-event-card .explore-card__cta {
    grid-column: 1 / -1;
    justify-self: start;
    width: fit-content;
  }

  .about-stats,
  .about-achievement-grid,
  .about-vision-grid,
  .about-coverage-grid,
  .contact-quick-info,
  .contact-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .about-stats {
    gap: 10px;
  }

  .about-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .about-cta .btn {
    width: 100%;
  }

  .about-panel,
  .contact-panel {
    padding: 20px 18px;
  }

  .about-hero {
    padding: 22px 18px 24px;
  }

  .contact-hero {
    padding: 24px 18px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-aside-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-aside-cta .btn {
    width: 100%;
  }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    margin-top: 32px;
    padding: 32px 18px 22px;
  }

  .footer-inner {
    align-items: center;
    flex-direction: column;
    gap: 26px;
    text-align: center;
  }

  .footer-brand {
    max-width: 420px;
    width: 100%;
  }

  .footer-brand::after {
    background: var(--accent);
    border-radius: 999px;
    content: "";
    display: block;
    height: 3px;
    margin: 14px auto 0;
    width: 42px;
  }

  .footer-brand strong {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .footer-brand p {
    margin-inline: auto;
    max-width: 36ch;
  }

  .footer-nav {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    max-width: 420px;
    width: 100%;
  }

  .footer-nav a {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    line-height: 1.35;
    padding: 11px 10px;
    text-align: center;
    white-space: normal;
  }

  .footer-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
  }

  .footer-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    gap: 12px;
    justify-items: center;
    max-width: 360px;
    min-width: 0;
    padding-top: 22px;
    width: 100%;
  }

  .footer-contact strong {
    color: rgba(255, 255, 255, 0.92);
  }

  .footer-contact__email {
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
  }

  .footer-social {
    gap: 10px;
    justify-content: center;
    margin-top: 2px;
  }

  .footer-social .icon {
    height: 36px;
    width: 36px;
  }

  .footer-copy {
    font-size: 10px;
    line-height: 1.55;
    margin-top: 24px;
    padding-inline: 8px;
    padding-top: 18px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 13px;
  }

  .logo img {
    height: 38px;
  }

  .main-container,
  .inner-page-main {
    margin-block: 20px;
  }

  .skyline-section img {
    height: 130px;
  }

  .footer {
    padding: 28px 14px 18px;
  }

  .footer-inner {
    gap: 22px;
  }

  .footer-brand strong {
    font-size: 16px;
  }

  .footer-brand p {
    font-size: 12px;
    max-width: none;
    padding-inline: 2px;
  }

  .footer-nav {
    gap: 7px;
    max-width: none;
  }

  .footer-nav a {
    font-size: 10px;
    letter-spacing: 0.04em;
    padding: 10px 8px;
  }

  .footer-contact__email {
    font-size: 12px;
  }

  .contact-quick-info {
    grid-template-columns: 1fr;
  }

  .footer-ad-gutter {
    display: none;
  }

  .footer-ad-wrap {
    margin-top: 20px;
  }

  .footer-ad-wrap + .footer {
    margin-top: 20px;
  }

  .actions {
    flex-direction: column;
  }

  .actions .btn {
    width: 100%;
  }

  .explore-intro__stats {
    gap: 8px;
  }
}

@media (max-width: 400px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-nav a {
    padding: 11px 12px;
  }
}

/* ================= AANM THEME FIXES ================= */
.meta,
.news-meta,
.blog-meta,
.event-meta {
  color: var(--muted);
}

.logo img,
.custom-logo-link img {
  display: block;
  height: 44px;
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

.news-card img,
.blog-item img,
.event-card img,
.news-story-card img,
.blog-story-card img,
.explore-card img,
.featured-image img,
.news-lead-card img,
.blog-feature-card img {
  object-fit: cover;
}

.btn,
.submit-btn,
.subscribe-btn,
.read-more-btn,
.event-btn,
.load-more,
.contact-submit-btn {
  min-height: 40px;
  padding: 10px 16px;
}

.is-filter-hidden {
  display: none !important;
}

.aanm-pagination {
  margin-top: 24px;
}

.aanm-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aanm-pagination a,
.aanm-pagination span {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--primary);
  display: inline-block;
  font-weight: 600;
  padding: 8px 12px;
  text-decoration: none;
}

.aanm-pagination .current {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.form-status {
  font-weight: 600;
  margin-bottom: 14px;
}

.form-status--success {
  color: #166534;
}

.form-status--error {
  color: #b42318;
}

.entry-content {
  line-height: 1.7;
}

.entry-content p {
  margin-bottom: 14px;
}

@media (max-width: 600px) {
  .logo img,
  .custom-logo-link img {
    height: 38px;
    max-height: 38px;
  }
}
